blob: bd073836e1414e2b667902c0ee83c108a0bcec25 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/reiserfs/xattr.c
4 *
5 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
6 *
7 */
8
9/*
10 * In order to implement EA/ACLs in a clean, backwards compatible manner,
11 * they are implemented as files in a "private" directory.
12 * Each EA is in it's own file, with the directory layout like so (/ is assumed
13 * to be relative to fs root). Inside the /.reiserfs_priv/xattrs directory,
14 * directories named using the capital-hex form of the objectid and
15 * generation number are used. Inside each directory are individual files
16 * named with the name of the extended attribute.
17 *
18 * So, for objectid 12648430, we could have:
19 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_access
20 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_default
21 * /.reiserfs_priv/xattrs/C0FFEE.0/user.Content-Type
22 * .. or similar.
23 *
24 * The file contents are the text of the EA. The size is known based on the
25 * stat data describing the file.
26 *
27 * In the case of system.posix_acl_access and system.posix_acl_default, since
28 * these are special cases for filesystem ACLs, they are interpreted by the
29 * kernel, in addition, they are negatively and positively cached and attached
30 * to the inode so that unnecessary lookups are avoided.
Jeff Mahoneyd9845612009-03-30 14:02:35 -040031 *
32 * Locking works like so:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -040033 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
34 * The xattrs themselves are protected by the xattr_sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
Al Virof466c6f2012-03-17 01:16:43 -040037#include "reiserfs.h"
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080038#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/dcache.h>
40#include <linux/namei.h>
41#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/fs.h>
44#include <linux/file.h>
45#include <linux/pagemap.h>
46#include <linux/xattr.h>
Al Viroc45ac882012-03-17 00:59:06 -040047#include "xattr.h"
Al Viroa3063ab2012-03-17 01:03:10 -040048#include "acl.h"
Fabian Frederick170939912014-08-08 14:21:12 -070049#include <linux/uaccess.h>
Al Viro3277c392006-11-14 21:13:53 -080050#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/stat.h>
Jeff Mahoney6c176752009-03-30 14:02:34 -040052#include <linux/quotaops.h>
Christoph Hellwig431547b2009-11-13 09:52:56 +000053#include <linux/security.h>
Christoph Hellwig47f70d02013-12-20 05:16:49 -080054#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define PRIVROOT_NAME ".reiserfs_priv"
57#define XAROOT_NAME "xattrs"
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Jeff Mahoney098297b2014-04-23 10:00:36 -040060/*
61 * Helpers for inode ops. We do this so that we don't have all the VFS
Jeff Mahoney6c176752009-03-30 14:02:34 -040062 * overhead and also for proper i_mutex annotation.
Jeff Mahoney098297b2014-04-23 10:00:36 -040063 * dir->i_mutex must be held for all of them.
64 */
Jeff Mahoney3a355cc2009-03-30 16:49:58 -040065#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney6c176752009-03-30 14:02:34 -040066static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Al Viro59551022016-01-22 15:40:57 -050068 BUG_ON(!inode_is_locked(dir));
Christian Brauner549c7292021-01-21 14:19:43 +010069 return dir->i_op->create(&init_user_ns, dir, dentry, mode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
Jeff Mahoney3a355cc2009-03-30 16:49:58 -040071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Al Viro18bb1db2011-07-26 01:41:39 -040073static int xattr_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Jeff Mahoney6c176752009-03-30 14:02:34 -040074{
Al Viro59551022016-01-22 15:40:57 -050075 BUG_ON(!inode_is_locked(dir));
Christian Brauner549c7292021-01-21 14:19:43 +010076 return dir->i_op->mkdir(&init_user_ns, dir, dentry, mode);
Jeff Mahoney6c176752009-03-30 14:02:34 -040077}
78
Jeff Mahoney098297b2014-04-23 10:00:36 -040079/*
80 * We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
Jeff Mahoney6c176752009-03-30 14:02:34 -040081 * mutation ops aren't called during rename or splace, which are the
82 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
Jeff Mahoney098297b2014-04-23 10:00:36 -040083 * better than allocating another subclass just for this code.
84 */
Jeff Mahoney6c176752009-03-30 14:02:34 -040085static int xattr_unlink(struct inode *dir, struct dentry *dentry)
86{
87 int error;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -070088
Al Viro59551022016-01-22 15:40:57 -050089 BUG_ON(!inode_is_locked(dir));
Jeff Mahoney6c176752009-03-30 14:02:34 -040090
Al Viro59551022016-01-22 15:40:57 -050091 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
Jeff Mahoney6c176752009-03-30 14:02:34 -040092 error = dir->i_op->unlink(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -050093 inode_unlock(d_inode(dentry));
Jeff Mahoney6c176752009-03-30 14:02:34 -040094
95 if (!error)
96 d_delete(dentry);
97 return error;
98}
99
100static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
101{
102 int error;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700103
Al Viro59551022016-01-22 15:40:57 -0500104 BUG_ON(!inode_is_locked(dir));
Jeff Mahoney6c176752009-03-30 14:02:34 -0400105
Al Viro59551022016-01-22 15:40:57 -0500106 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400107 error = dir->i_op->rmdir(dir, dentry);
108 if (!error)
David Howells2b0143b2015-03-17 22:25:59 +0000109 d_inode(dentry)->i_flags |= S_DEAD;
Al Viro59551022016-01-22 15:40:57 -0500110 inode_unlock(d_inode(dentry));
Jeff Mahoney6c176752009-03-30 14:02:34 -0400111 if (!error)
112 d_delete(dentry);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400113
114 return error;
115}
116
Jeff Mahoney6c176752009-03-30 14:02:34 -0400117#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
118
Jeff Mahoney6c176752009-03-30 14:02:34 -0400119static struct dentry *open_xa_root(struct super_block *sb, int flags)
120{
121 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400122 struct dentry *xaroot;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700123
David Howells2b0143b2015-03-17 22:25:59 +0000124 if (d_really_is_negative(privroot))
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400125 return ERR_PTR(-EOPNOTSUPP);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400126
Al Viro59551022016-01-22 15:40:57 -0500127 inode_lock_nested(d_inode(privroot), I_MUTEX_XATTR);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400128
129 xaroot = dget(REISERFS_SB(sb)->xattr_root);
Jeff Mahoneyceb5edc2009-05-17 01:02:02 -0400130 if (!xaroot)
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400131 xaroot = ERR_PTR(-EOPNOTSUPP);
David Howells2b0143b2015-03-17 22:25:59 +0000132 else if (d_really_is_negative(xaroot)) {
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400133 int err = -ENODATA;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700134
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400135 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000136 err = xattr_mkdir(d_inode(privroot), xaroot, 0700);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400137 if (err) {
138 dput(xaroot);
139 xaroot = ERR_PTR(err);
140 }
141 }
142
Al Viro59551022016-01-22 15:40:57 -0500143 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400144 return xaroot;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400145}
146
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700147static struct dentry *open_xa_dir(const struct inode *inode, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700149 struct dentry *xaroot, *xadir;
150 char namebuf[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Jeff Mahoney6c176752009-03-30 14:02:34 -0400152 xaroot = open_xa_root(inode->i_sb, flags);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700153 if (IS_ERR(xaroot))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700154 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700156 snprintf(namebuf, sizeof(namebuf), "%X.%X",
157 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
158 inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Al Viro59551022016-01-22 15:40:57 -0500160 inode_lock_nested(d_inode(xaroot), I_MUTEX_XATTR);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400161
162 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
David Howells2b0143b2015-03-17 22:25:59 +0000163 if (!IS_ERR(xadir) && d_really_is_negative(xadir)) {
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400164 int err = -ENODATA;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700165
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400166 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000167 err = xattr_mkdir(d_inode(xaroot), xadir, 0700);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400168 if (err) {
169 dput(xadir);
170 xadir = ERR_PTR(err);
171 }
172 }
173
Al Viro59551022016-01-22 15:40:57 -0500174 inode_unlock(d_inode(xaroot));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700175 dput(xaroot);
176 return xadir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Jeff Mahoney098297b2014-04-23 10:00:36 -0400179/*
180 * The following are side effects of other operations that aren't explicitly
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400181 * modifying extended attributes. This includes operations such as permissions
Jeff Mahoney098297b2014-04-23 10:00:36 -0400182 * or ownership changes, object deletions, etc.
183 */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400184struct reiserfs_dentry_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400185 struct dir_context ctx;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400186 struct dentry *xadir;
187 int count;
Jann Hornb10298d2018-10-30 15:06:38 -0700188 int err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400189 struct dentry *dentries[8];
190};
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400191
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400192static int
Miklos Szerediac7576f2014-10-30 17:37:34 +0100193fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
194 loff_t offset, u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400195{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100196 struct reiserfs_dentry_buf *dbuf =
197 container_of(ctx, struct reiserfs_dentry_buf, ctx);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400198 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700199
Al Viro59551022016-01-22 15:40:57 -0500200 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf->xadir)));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400201
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400202 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
203 return -ENOSPC;
204
Jan Kara35e5cbc2013-03-29 15:39:16 +0100205 if (name[0] == '.' && (namelen < 2 ||
206 (namelen == 2 && name[1] == '.')))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400207 return 0;
208
209 dentry = lookup_one_len(name, dbuf->xadir, namelen);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400210 if (IS_ERR(dentry)) {
Jann Hornb10298d2018-10-30 15:06:38 -0700211 dbuf->err = PTR_ERR(dentry);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400212 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000213 } else if (d_really_is_negative(dentry)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400214 /* A directory entry exists, but no file? */
215 reiserfs_error(dentry->d_sb, "xattr-20003",
Al Viroa4555892014-10-21 20:11:25 -0400216 "Corrupted directory: xattr %pd listed but "
217 "not found for file %pd.\n",
218 dentry, dbuf->xadir);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400219 dput(dentry);
Jann Hornb10298d2018-10-30 15:06:38 -0700220 dbuf->err = -EIO;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400221 return -EIO;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400222 }
223
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400224 dbuf->dentries[dbuf->count++] = dentry;
225 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400226}
227
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400228static void
229cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400230{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400231 int i;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700232
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400233 for (i = 0; i < buf->count; i++)
234 if (buf->dentries[i])
235 dput(buf->dentries[i]);
236}
237
238static int reiserfs_for_each_xattr(struct inode *inode,
239 int (*action)(struct dentry *, void *),
240 void *data)
241{
242 struct dentry *dir;
243 int i, err = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400244 struct reiserfs_dentry_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400245 .ctx.actor = fill_with_dentries,
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400246 };
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400247
248 /* Skip out, an xattr has no xattrs associated with it */
249 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
250 return 0;
251
Jeff Mahoney6c176752009-03-30 14:02:34 -0400252 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400253 if (IS_ERR(dir)) {
254 err = PTR_ERR(dir);
255 goto out;
David Howells2b0143b2015-03-17 22:25:59 +0000256 } else if (d_really_is_negative(dir)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400257 err = 0;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400258 goto out_dir;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400259 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400260
Al Viro59551022016-01-22 15:40:57 -0500261 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
Frederic Weisbecker27026a02009-12-30 05:06:21 +0100262
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400263 buf.xadir = dir;
Al Virocd62cda2013-05-17 22:58:58 -0400264 while (1) {
David Howells2b0143b2015-03-17 22:25:59 +0000265 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Virocd62cda2013-05-17 22:58:58 -0400266 if (err)
267 break;
Jann Hornb10298d2018-10-30 15:06:38 -0700268 if (buf.err) {
269 err = buf.err;
270 break;
271 }
Al Virocd62cda2013-05-17 22:58:58 -0400272 if (!buf.count)
273 break;
274 for (i = 0; !err && i < buf.count && buf.dentries[i]; i++) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400275 struct dentry *dentry = buf.dentries[i];
276
David Howellse36cb0b2015-01-29 12:02:35 +0000277 if (!d_is_dir(dentry))
Al Virocd62cda2013-05-17 22:58:58 -0400278 err = action(dentry, data);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400279
280 dput(dentry);
281 buf.dentries[i] = NULL;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400282 }
Al Virocd62cda2013-05-17 22:58:58 -0400283 if (err)
284 break;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400285 buf.count = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400286 }
Al Viro59551022016-01-22 15:40:57 -0500287 inode_unlock(d_inode(dir));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400288
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400289 cleanup_dentry_buf(&buf);
290
291 if (!err) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400292 /*
293 * We start a transaction here to avoid a ABBA situation
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400294 * between the xattr root's i_mutex and the journal lock.
295 * This doesn't incur much additional overhead since the
296 * new transaction will just nest inside the
Jeff Mahoney098297b2014-04-23 10:00:36 -0400297 * outer transaction.
298 */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400299 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
300 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
301 struct reiserfs_transaction_handle th;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700302
Jeff Mahoney4c051412013-08-08 17:27:19 -0400303 reiserfs_write_lock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400304 err = journal_begin(&th, inode->i_sb, blocks);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400305 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400306 if (!err) {
307 int jerror;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700308
Al Viro59551022016-01-22 15:40:57 -0500309 inode_lock_nested(d_inode(dir->d_parent),
Jeff Mahoney4c051412013-08-08 17:27:19 -0400310 I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400311 err = action(dir, data);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400312 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400313 jerror = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400314 reiserfs_write_unlock(inode->i_sb);
Al Viro59551022016-01-22 15:40:57 -0500315 inode_unlock(d_inode(dir->d_parent));
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400316 err = jerror ?: err;
317 }
318 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400319out_dir:
320 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400321out:
Jeff Mahoney394440d2020-01-15 13:00:59 -0500322 /*
323 * -ENODATA: this object doesn't have any xattrs
324 * -EOPNOTSUPP: this file system doesn't have xattrs enabled on disk.
325 * Neither are errors
326 */
327 if (err == -ENODATA || err == -EOPNOTSUPP)
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400328 err = 0;
329 return err;
330}
331
332static int delete_one_xattr(struct dentry *dentry, void *data)
333{
David Howells2b0143b2015-03-17 22:25:59 +0000334 struct inode *dir = d_inode(dentry->d_parent);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400335
336 /* This is the xattr dir, handle specially. */
David Howellse36cb0b2015-01-29 12:02:35 +0000337 if (d_is_dir(dentry))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400338 return xattr_rmdir(dir, dentry);
339
340 return xattr_unlink(dir, dentry);
341}
342
343static int chown_one_xattr(struct dentry *dentry, void *data)
344{
345 struct iattr *attrs = data;
Jeff Mahoney4a857012013-05-31 15:54:17 -0400346 int ia_valid = attrs->ia_valid;
347 int err;
348
349 /*
350 * We only want the ownership bits. Otherwise, we'll do
351 * things like change a directory to a regular file if
352 * ATTR_MODE is set.
353 */
354 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
Christian Brauner549c7292021-01-21 14:19:43 +0100355 err = reiserfs_setattr(&init_user_ns, dentry, attrs);
Jeff Mahoney4a857012013-05-31 15:54:17 -0400356 attrs->ia_valid = ia_valid;
357
358 return err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400359}
360
361/* No i_mutex, but the inode is unconnected. */
362int reiserfs_delete_xattrs(struct inode *inode)
363{
364 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700365
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400366 if (err)
367 reiserfs_warning(inode->i_sb, "jdm-20004",
368 "Couldn't delete all xattrs (%d)\n", err);
369 return err;
370}
371
372/* inode->i_mutex: down */
373int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
374{
375 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700376
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400377 if (err)
378 reiserfs_warning(inode->i_sb, "jdm-20007",
379 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400380 return err;
381}
382
383#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney098297b2014-04-23 10:00:36 -0400384/*
385 * Returns a dentry corresponding to a specific extended attribute file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * for the inode. If flags allow, the file is created. Otherwise, a
Jeff Mahoney098297b2014-04-23 10:00:36 -0400387 * valid or negative dentry, or an error is returned.
388 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400389static struct dentry *xattr_lookup(struct inode *inode, const char *name,
390 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700392 struct dentry *xadir, *xafile;
393 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700395 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400396 if (IS_ERR(xadir))
David Howellse231c2e2008-02-07 00:15:26 -0800397 return ERR_CAST(xadir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Al Viro59551022016-01-22 15:40:57 -0500399 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700400 xafile = lookup_one_len(name, xadir, strlen(name));
401 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400402 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700403 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
David Howells2b0143b2015-03-17 22:25:59 +0000406 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
Jeff Mahoney6c176752009-03-30 14:02:34 -0400407 err = -EEXIST;
408
David Howells2b0143b2015-03-17 22:25:59 +0000409 if (d_really_is_negative(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400410 err = -ENODATA;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400411 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000412 err = xattr_create(d_inode(xadir), xafile,
Jeff Mahoney6c176752009-03-30 14:02:34 -0400413 0700|S_IFREG);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Jeff Mahoney6c176752009-03-30 14:02:34 -0400416 if (err)
417 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400418out:
Al Viro59551022016-01-22 15:40:57 -0500419 inode_unlock(d_inode(xadir));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700420 dput(xadir);
421 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400422 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800423 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700427static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700429 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300430 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400433static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700435 struct address_space *mapping = dir->i_mapping;
436 struct page *page;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400437 /*
438 * We can deadlock if we try to free dentries,
439 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
440 */
Al Viroc4cdd032005-10-21 03:22:39 -0400441 mapping_set_gfp_mask(mapping, GFP_NOFS);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300442 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700443 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700444 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700445 if (PageError(page))
446 goto fail;
447 }
448 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400450fail:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700451 reiserfs_put_page(page);
452 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700455static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Bharath Vedartham672cdd52019-05-14 15:44:29 -0700457 /*
458 * csum_partial() gives different results for little-endian and
459 * big endian hosts. Images created on little-endian hosts and
460 * mounted on big-endian hosts(and vice versa) will see csum mismatches
461 * when trying to fetch xattrs. Treating the hash as __wsum_t would
462 * lower the frequency of mismatch. This is an endianness bug in
463 * reiserfs. The return statement would result in a sparse warning. Do
464 * not fix the sparse warning so as to not hide a reminder of the bug.
465 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700466 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700469int reiserfs_commit_write(struct file *f, struct page *page,
470 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700471
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400472static void update_ctime(struct inode *inode)
473{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700474 struct timespec64 now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700475
Al Viro1d3382cb2010-10-23 15:19:20 -0400476 if (inode_unhashed(inode) || !inode->i_nlink ||
Deepa Dinamani95582b02018-05-08 19:36:02 -0700477 timespec64_equal(&inode->i_ctime, &now))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400478 return;
479
Deepa Dinamani02027d42016-09-14 07:48:05 -0700480 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400481 mark_inode_dirty(inode);
482}
483
484static int lookup_and_delete_xattr(struct inode *inode, const char *name)
485{
486 int err = 0;
487 struct dentry *dentry, *xadir;
488
489 xadir = open_xa_dir(inode, XATTR_REPLACE);
490 if (IS_ERR(xadir))
491 return PTR_ERR(xadir);
492
Al Viro59551022016-01-22 15:40:57 -0500493 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400494 dentry = lookup_one_len(name, xadir, strlen(name));
495 if (IS_ERR(dentry)) {
496 err = PTR_ERR(dentry);
497 goto out_dput;
498 }
499
David Howells2b0143b2015-03-17 22:25:59 +0000500 if (d_really_is_positive(dentry)) {
501 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400502 update_ctime(inode);
503 }
504
505 dput(dentry);
506out_dput:
Al Viro59551022016-01-22 15:40:57 -0500507 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400508 dput(xadir);
509 return err;
510}
511
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* Generic extended attribute operations that can be used by xa plugins */
514
515/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800516 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
518int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400519reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
520 struct inode *inode, const char *name,
521 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700523 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800524 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700525 struct page *page;
526 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700527 size_t file_pos = 0;
528 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400529 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700530 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700532 if (get_inode_sd_version(inode) == STAT_DATA_V1)
533 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100535 if (!buffer) {
536 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100537 return err;
538 }
539
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400540 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400541 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400542 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100544 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100545
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400546 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700547 while (buffer_pos < buffer_size || buffer_pos == 0) {
548 size_t chunk;
549 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300550 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700551
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300552 if (buffer_size - buffer_pos > PAGE_SIZE)
553 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700554 else
555 chunk = buffer_size - buffer_pos;
556
David Howells2b0143b2015-03-17 22:25:59 +0000557 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700558 if (IS_ERR(page)) {
559 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400560 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700561 }
562
563 lock_page(page);
564 data = page_address(page);
565
566 if (file_pos == 0) {
567 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700568
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700569 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300570 if (chunk + skip > PAGE_SIZE)
571 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700572 rxh = (struct reiserfs_xattr_header *)data;
573 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
574 rxh->h_hash = cpu_to_le32(xahash);
575 }
576
Jeff Mahoney4c051412013-08-08 17:27:19 -0400577 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200578 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700579 if (!err) {
580 if (buffer)
581 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800582 err = reiserfs_commit_write(NULL, page, page_offset,
583 page_offset + chunk +
584 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700585 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400586 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700587 unlock_page(page);
588 reiserfs_put_page(page);
589 buffer_pos += chunk;
590 file_pos += chunk;
591 skip = 0;
592 if (err || buffer_size == 0 || !buffer)
593 break;
594 }
595
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400596 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000597 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400598 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700599 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400600 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400601 .ia_valid = ATTR_SIZE | ATTR_CTIME,
602 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100603
Al Viro59551022016-01-22 15:40:57 -0500604 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000605 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100606
Christian Brauner549c7292021-01-21 14:19:43 +0100607 err = reiserfs_setattr(&init_user_ns, dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500608 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400609 } else
610 update_ctime(inode);
611out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400612 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800613 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400614 return err;
615}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700616
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400617/* We need to start a transaction to maintain lock ordering */
618int reiserfs_xattr_set(struct inode *inode, const char *name,
619 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400620{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400621
622 struct reiserfs_transaction_handle th;
623 int error, error2;
624 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
625
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400626 /* Check before we start a transaction and then do nothing. */
627 if (!d_really_is_positive(REISERFS_SB(inode->i_sb)->priv_root))
628 return -EOPNOTSUPP;
629
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400630 if (!(flags & XATTR_REPLACE))
631 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
632
633 reiserfs_write_lock(inode->i_sb);
634 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400635 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400636 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400637 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700638 }
639
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400640 error = reiserfs_xattr_set_handle(&th, inode, name,
641 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700642
Jeff Mahoney4c051412013-08-08 17:27:19 -0400643 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400644 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400645 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400646 if (error == 0)
647 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400648
649 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800653 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
655int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400656reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700657 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700659 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800660 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700661 size_t isize;
662 size_t file_pos = 0;
663 size_t buffer_pos = 0;
664 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700665 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700667 if (name == NULL)
668 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jeff Mahoney098297b2014-04-23 10:00:36 -0400670 /*
671 * We can't have xattrs attached to v1 items since they don't have
672 * generation numbers
673 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700674 if (get_inode_sd_version(inode) == STAT_DATA_V1)
675 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jan Karac2bb80b2020-09-30 17:08:20 +0200677 /*
678 * priv_root needn't be initialized during mount so allow initial
679 * lookups to succeed.
680 */
681 if (!REISERFS_SB(inode->i_sb)->priv_root)
682 return 0;
683
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400684 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800685 if (IS_ERR(dentry)) {
686 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700687 goto out;
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400690 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400691
David Howells2b0143b2015-03-17 22:25:59 +0000692 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700694 /* Just return the size needed */
695 if (buffer == NULL) {
696 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400697 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700700 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
701 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400702 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700705 while (file_pos < isize) {
706 size_t chunk;
707 char *data;
708 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700709
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300710 if (isize - file_pos > PAGE_SIZE)
711 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700712 else
713 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
David Howells2b0143b2015-03-17 22:25:59 +0000715 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700716 if (IS_ERR(page)) {
717 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400718 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700721 lock_page(page);
722 data = page_address(page);
723 if (file_pos == 0) {
724 struct reiserfs_xattr_header *rxh =
725 (struct reiserfs_xattr_header *)data;
726 skip = file_pos = sizeof(struct reiserfs_xattr_header);
727 chunk -= skip;
728 /* Magic doesn't match up.. */
729 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
730 unlock_page(page);
731 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400732 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700733 "Invalid magic for xattr (%s) "
734 "associated with %k", name,
735 INODE_PKEY(inode));
736 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400737 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700738 }
739 hash = le32_to_cpu(rxh->h_hash);
740 }
741 memcpy(buffer + buffer_pos, data + skip, chunk);
742 unlock_page(page);
743 reiserfs_put_page(page);
744 file_pos += chunk;
745 buffer_pos += chunk;
746 skip = 0;
747 }
748 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700750 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
751 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400752 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700753 "Invalid hash for xattr (%s) associated "
754 "with %k", name, INODE_PKEY(inode));
755 err = -EIO;
756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400758out_unlock:
759 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800760 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400762out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700763 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400766/*
767 * In order to implement different sets of xattr operations for each xattr
768 * prefix with the generic xattr API, a filesystem should create a
769 * null-terminated array of struct xattr_handler (one for each prefix) and
770 * hang a pointer to it off of the s_xattr field of the superblock.
771 *
772 * The generic_fooxattr() functions will use this list to dispatch xattr
773 * operations to the correct xattr_handler.
774 */
775#define for_each_xattr_handler(handlers, handler) \
776 for ((handler) = *(handlers)++; \
777 (handler) != NULL; \
778 (handler) = *(handlers)++)
779
780/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700781static inline const struct xattr_handler *
782find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400783 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700785 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400787 if (!handlers)
788 return NULL;
789
790 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100791 const char *prefix = xattr_prefix(xah);
792 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400793 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400796 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400799struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400800 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400801 size_t size;
802 size_t pos;
803 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000804 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805};
806
Miklos Szerediac7576f2014-10-30 17:37:34 +0100807static int listxattr_filler(struct dir_context *ctx, const char *name,
808 int namelen, loff_t offset, u64 ino,
809 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100811 struct listxattr_buf *b =
812 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400813 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700814
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400815 if (name[0] != '.' ||
816 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700817 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700818
Christoph Hellwig431547b2009-11-13 09:52:56 +0000819 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400820 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100821 if (!handler /* Unsupported xattr name */ ||
822 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400823 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100824 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400825 if (b->buf) {
Jann Horna13f0852018-08-21 21:59:37 -0700826 if (b->pos + size > b->size) {
827 b->pos = -ERANGE;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400828 return -ERANGE;
Jann Horna13f0852018-08-21 21:59:37 -0700829 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100830 memcpy(b->buf + b->pos, name, namelen);
831 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700832 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400833 b->pos += size;
834 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838/*
839 * Inode operation listxattr()
840 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400841 * We totally ignore the generic listxattr here because it would be stupid
842 * not to. Since the xattrs are organized in a directory, we can just
843 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700845ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700847 struct dentry *dir;
848 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400849 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400850 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000851 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400852 .buf = buffer,
853 .size = buffer ? size : 0,
854 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
David Howells2b0143b2015-03-17 22:25:59 +0000856 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700857 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400859 if (get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700860 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
David Howells2b0143b2015-03-17 22:25:59 +0000862 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700863 if (IS_ERR(dir)) {
864 err = PTR_ERR(dir);
865 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400866 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700867 goto out;
868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Al Viro59551022016-01-22 15:40:57 -0500870 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000871 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500872 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400874 if (!err)
875 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Jeff Mahoney3227e142008-02-15 14:37:22 -0800877 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400878out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700879 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400882static int create_privroot(struct dentry *dentry)
883{
884 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000885 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700886
Al Viro59551022016-01-22 15:40:57 -0500887 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400888
Jeff Mahoney6c176752009-03-30 14:02:34 -0400889 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000890 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400891 reiserfs_warning(dentry->d_sb, "jdm-20006",
892 "xattrs/ACLs enabled and couldn't "
893 "find/create .reiserfs_priv. "
894 "Failing mount.");
895 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
David Howells2b0143b2015-03-17 22:25:59 +0000898 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400899 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
Al Viroedcc37a2009-05-03 06:00:05 -0400900 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
901 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Al Viroedcc37a2009-05-03 06:00:05 -0400903 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400904}
905
Jeff Mahoney12abb352009-05-17 01:02:01 -0400906#else
907int __init reiserfs_xattr_register_handlers(void) { return 0; }
908void reiserfs_xattr_unregister_handlers(void) {}
909static int create_privroot(struct dentry *dentry) { return 0; }
910#endif
911
912/* Actual operations that are exported to VFS-land */
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400913const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400914#ifdef CONFIG_REISERFS_FS_XATTR
915 &reiserfs_xattr_user_handler,
916 &reiserfs_xattr_trusted_handler,
917#endif
918#ifdef CONFIG_REISERFS_FS_SECURITY
919 &reiserfs_xattr_security_handler,
920#endif
921#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800922 &posix_acl_access_xattr_handler,
923 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400924#endif
925 NULL
926};
927
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400928static int xattr_mount_check(struct super_block *s)
929{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400930 /*
931 * We need generation numbers to ensure that the oid mapping is correct
932 * v3.5 filesystems don't have them.
933 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400934 if (old_format_only(s)) {
935 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400936 /*
937 * Old format filesystem, but optional xattrs have
938 * been enabled. Error out.
939 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400940 reiserfs_warning(s, "jdm-2005",
941 "xattrs/ACLs not supported "
942 "on pre-v3.6 format filesystems. "
943 "Failing mount.");
944 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700945 }
946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Christian Brauner549c7292021-01-21 14:19:43 +0100951int reiserfs_permission(struct user_namespace *mnt_userns, struct inode *inode,
952 int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400953{
954 /*
955 * We don't do permission checks on the internal objects.
956 * Permissions are determined by the "owning" object.
957 */
958 if (IS_PRIVATE(inode))
959 return 0;
960
Christian Brauner47291ba2021-01-21 14:19:24 +0100961 return generic_permission(&init_user_ns, inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400962}
963
Al Viro0b728e12012-06-10 16:03:43 -0400964static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400966 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Al Viroe16404e2009-02-20 05:55:13 +0000969static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400970 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971};
972
Al Viroedcc37a2009-05-03 06:00:05 -0400973int reiserfs_lookup_privroot(struct super_block *s)
974{
975 struct dentry *dentry;
976 int err = 0;
977
978 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500979 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400980 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
981 strlen(PRIVROOT_NAME));
982 if (!IS_ERR(dentry)) {
983 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100984 d_set_d_op(dentry, &xattr_lookup_poison_ops);
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400985 if (d_really_is_positive(dentry)) {
David Howells2b0143b2015-03-17 22:25:59 +0000986 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney60e4cf62019-10-24 10:31:27 -0400987 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
988 }
Al Viroedcc37a2009-05-03 06:00:05 -0400989 } else
990 err = PTR_ERR(dentry);
Al Viro59551022016-01-22 15:40:57 -0500991 inode_unlock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400992
993 return err;
994}
995
Jeff Mahoney098297b2014-04-23 10:00:36 -0400996/*
997 * We need to take a copy of the mount flags since things like
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800998 * SB_RDONLY don't get set until *after* we're called.
Jeff Mahoney098297b2014-04-23 10:00:36 -0400999 * mount_flags != mount_options
1000 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001001int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001003 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001004 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001006 err = xattr_mount_check(s);
1007 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001008 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001010 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
Al Viro59551022016-01-22 15:40:57 -05001011 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -04001012 err = create_privroot(REISERFS_SB(s)->priv_root);
Al Viro59551022016-01-22 15:40:57 -05001013 inode_unlock(d_inode(s->s_root));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001014 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001015
David Howells2b0143b2015-03-17 22:25:59 +00001016 if (d_really_is_positive(privroot)) {
Al Viro59551022016-01-22 15:40:57 -05001017 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001018 if (!REISERFS_SB(s)->xattr_root) {
1019 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -07001020
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001021 dentry = lookup_one_len(XAROOT_NAME, privroot,
1022 strlen(XAROOT_NAME));
1023 if (!IS_ERR(dentry))
1024 REISERFS_SB(s)->xattr_root = dentry;
1025 else
1026 err = PTR_ERR(dentry);
1027 }
Al Viro59551022016-01-22 15:40:57 -05001028 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001029 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001030
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001031error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001032 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001033 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1034 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001037 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001038 if (reiserfs_posixacl(s))
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001039 s->s_flags |= SB_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001040 else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001041 s->s_flags &= ~SB_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001043 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}