blob: 0a397f179fd6ad16495dad44e8e2f9a000f28bec [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));
Al Viroebfc3b42012-06-10 18:05:36 -040069 return dir->i_op->create(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));
Jeff Mahoney6c176752009-03-30 14:02:34 -040076 return dir->i_op->mkdir(dir, dentry, mode);
77}
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 Mahoney7b3ea9b2019-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 Mahoney7b3ea9b2019-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 Hornee380532018-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 Hornee380532018-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 Hornee380532018-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 Hornee380532018-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 Mahoneyd28d6072020-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);
355 err = reiserfs_setattr(dentry, attrs);
356 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{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700457 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700460int reiserfs_commit_write(struct file *f, struct page *page,
461 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700462
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400463static void update_ctime(struct inode *inode)
464{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700465 struct timespec64 now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700466
Al Viro1d3382cb2010-10-23 15:19:20 -0400467 if (inode_unhashed(inode) || !inode->i_nlink ||
Deepa Dinamani95582b02018-05-08 19:36:02 -0700468 timespec64_equal(&inode->i_ctime, &now))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400469 return;
470
Deepa Dinamani02027d42016-09-14 07:48:05 -0700471 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400472 mark_inode_dirty(inode);
473}
474
475static int lookup_and_delete_xattr(struct inode *inode, const char *name)
476{
477 int err = 0;
478 struct dentry *dentry, *xadir;
479
480 xadir = open_xa_dir(inode, XATTR_REPLACE);
481 if (IS_ERR(xadir))
482 return PTR_ERR(xadir);
483
Al Viro59551022016-01-22 15:40:57 -0500484 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400485 dentry = lookup_one_len(name, xadir, strlen(name));
486 if (IS_ERR(dentry)) {
487 err = PTR_ERR(dentry);
488 goto out_dput;
489 }
490
David Howells2b0143b2015-03-17 22:25:59 +0000491 if (d_really_is_positive(dentry)) {
492 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400493 update_ctime(inode);
494 }
495
496 dput(dentry);
497out_dput:
Al Viro59551022016-01-22 15:40:57 -0500498 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400499 dput(xadir);
500 return err;
501}
502
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/* Generic extended attribute operations that can be used by xa plugins */
505
506/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800507 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 */
509int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400510reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
511 struct inode *inode, const char *name,
512 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700514 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800515 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700516 struct page *page;
517 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700518 size_t file_pos = 0;
519 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400520 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700521 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700523 if (get_inode_sd_version(inode) == STAT_DATA_V1)
524 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100526 if (!buffer) {
527 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100528 return err;
529 }
530
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400531 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400532 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400533 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100535 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100536
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400537 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700538 while (buffer_pos < buffer_size || buffer_pos == 0) {
539 size_t chunk;
540 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300541 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700542
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300543 if (buffer_size - buffer_pos > PAGE_SIZE)
544 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700545 else
546 chunk = buffer_size - buffer_pos;
547
David Howells2b0143b2015-03-17 22:25:59 +0000548 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700549 if (IS_ERR(page)) {
550 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400551 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700552 }
553
554 lock_page(page);
555 data = page_address(page);
556
557 if (file_pos == 0) {
558 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700559
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700560 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300561 if (chunk + skip > PAGE_SIZE)
562 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700563 rxh = (struct reiserfs_xattr_header *)data;
564 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
565 rxh->h_hash = cpu_to_le32(xahash);
566 }
567
Jeff Mahoney4c051412013-08-08 17:27:19 -0400568 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200569 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700570 if (!err) {
571 if (buffer)
572 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800573 err = reiserfs_commit_write(NULL, page, page_offset,
574 page_offset + chunk +
575 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700576 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400577 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700578 unlock_page(page);
579 reiserfs_put_page(page);
580 buffer_pos += chunk;
581 file_pos += chunk;
582 skip = 0;
583 if (err || buffer_size == 0 || !buffer)
584 break;
585 }
586
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400587 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000588 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400589 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700590 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400591 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400592 .ia_valid = ATTR_SIZE | ATTR_CTIME,
593 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100594
Al Viro59551022016-01-22 15:40:57 -0500595 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000596 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100597
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400598 err = reiserfs_setattr(dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500599 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400600 } else
601 update_ctime(inode);
602out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400603 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800604 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400605 return err;
606}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700607
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400608/* We need to start a transaction to maintain lock ordering */
609int reiserfs_xattr_set(struct inode *inode, const char *name,
610 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400611{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400612
613 struct reiserfs_transaction_handle th;
614 int error, error2;
615 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
616
Jeff Mahoney7b3ea9b2019-10-24 10:31:27 -0400617 /* Check before we start a transaction and then do nothing. */
618 if (!d_really_is_positive(REISERFS_SB(inode->i_sb)->priv_root))
619 return -EOPNOTSUPP;
620
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400621 if (!(flags & XATTR_REPLACE))
622 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
623
624 reiserfs_write_lock(inode->i_sb);
625 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400626 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400627 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400628 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700629 }
630
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400631 error = reiserfs_xattr_set_handle(&th, inode, name,
632 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700633
Jeff Mahoney4c051412013-08-08 17:27:19 -0400634 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400635 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400636 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400637 if (error == 0)
638 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400639
640 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800644 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
646int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400647reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700648 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700650 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800651 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700652 size_t isize;
653 size_t file_pos = 0;
654 size_t buffer_pos = 0;
655 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700656 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700658 if (name == NULL)
659 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Jeff Mahoney098297b2014-04-23 10:00:36 -0400661 /*
662 * We can't have xattrs attached to v1 items since they don't have
663 * generation numbers
664 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700665 if (get_inode_sd_version(inode) == STAT_DATA_V1)
666 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jan Kara9fd231b2020-09-30 17:08:20 +0200668 /*
669 * priv_root needn't be initialized during mount so allow initial
670 * lookups to succeed.
671 */
672 if (!REISERFS_SB(inode->i_sb)->priv_root)
673 return 0;
674
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400675 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800676 if (IS_ERR(dentry)) {
677 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700678 goto out;
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400681 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400682
David Howells2b0143b2015-03-17 22:25:59 +0000683 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700685 /* Just return the size needed */
686 if (buffer == NULL) {
687 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400688 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700691 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
692 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400693 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700696 while (file_pos < isize) {
697 size_t chunk;
698 char *data;
699 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700700
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300701 if (isize - file_pos > PAGE_SIZE)
702 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700703 else
704 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
David Howells2b0143b2015-03-17 22:25:59 +0000706 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700707 if (IS_ERR(page)) {
708 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400709 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700712 lock_page(page);
713 data = page_address(page);
714 if (file_pos == 0) {
715 struct reiserfs_xattr_header *rxh =
716 (struct reiserfs_xattr_header *)data;
717 skip = file_pos = sizeof(struct reiserfs_xattr_header);
718 chunk -= skip;
719 /* Magic doesn't match up.. */
720 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
721 unlock_page(page);
722 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400723 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700724 "Invalid magic for xattr (%s) "
725 "associated with %k", name,
726 INODE_PKEY(inode));
727 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400728 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700729 }
730 hash = le32_to_cpu(rxh->h_hash);
731 }
732 memcpy(buffer + buffer_pos, data + skip, chunk);
733 unlock_page(page);
734 reiserfs_put_page(page);
735 file_pos += chunk;
736 buffer_pos += chunk;
737 skip = 0;
738 }
739 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700741 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
742 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400743 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700744 "Invalid hash for xattr (%s) associated "
745 "with %k", name, INODE_PKEY(inode));
746 err = -EIO;
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400749out_unlock:
750 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800751 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400753out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700754 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400757/*
758 * In order to implement different sets of xattr operations for each xattr
759 * prefix with the generic xattr API, a filesystem should create a
760 * null-terminated array of struct xattr_handler (one for each prefix) and
761 * hang a pointer to it off of the s_xattr field of the superblock.
762 *
763 * The generic_fooxattr() functions will use this list to dispatch xattr
764 * operations to the correct xattr_handler.
765 */
766#define for_each_xattr_handler(handlers, handler) \
767 for ((handler) = *(handlers)++; \
768 (handler) != NULL; \
769 (handler) = *(handlers)++)
770
771/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700772static inline const struct xattr_handler *
773find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400774 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700776 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400778 if (!handlers)
779 return NULL;
780
781 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100782 const char *prefix = xattr_prefix(xah);
783 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400787 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400790struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400791 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400792 size_t size;
793 size_t pos;
794 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000795 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
Miklos Szerediac7576f2014-10-30 17:37:34 +0100798static int listxattr_filler(struct dir_context *ctx, const char *name,
799 int namelen, loff_t offset, u64 ino,
800 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100802 struct listxattr_buf *b =
803 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400804 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700805
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400806 if (name[0] != '.' ||
807 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700808 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700809
Christoph Hellwig431547b2009-11-13 09:52:56 +0000810 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400811 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100812 if (!handler /* Unsupported xattr name */ ||
813 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400814 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100815 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400816 if (b->buf) {
Jann Horna13f0852018-08-21 21:59:37 -0700817 if (b->pos + size > b->size) {
818 b->pos = -ERANGE;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400819 return -ERANGE;
Jann Horna13f0852018-08-21 21:59:37 -0700820 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100821 memcpy(b->buf + b->pos, name, namelen);
822 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700823 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400824 b->pos += size;
825 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829/*
830 * Inode operation listxattr()
831 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400832 * We totally ignore the generic listxattr here because it would be stupid
833 * not to. Since the xattrs are organized in a directory, we can just
834 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700836ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700838 struct dentry *dir;
839 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400840 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400841 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000842 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400843 .buf = buffer,
844 .size = buffer ? size : 0,
845 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
David Howells2b0143b2015-03-17 22:25:59 +0000847 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700848 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Jeff Mahoney7b3ea9b2019-10-24 10:31:27 -0400850 if (get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700851 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
David Howells2b0143b2015-03-17 22:25:59 +0000853 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700854 if (IS_ERR(dir)) {
855 err = PTR_ERR(dir);
856 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400857 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700858 goto out;
859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Al Viro59551022016-01-22 15:40:57 -0500861 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000862 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500863 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400865 if (!err)
866 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Jeff Mahoney3227e142008-02-15 14:37:22 -0800868 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400869out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700870 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400873static int create_privroot(struct dentry *dentry)
874{
875 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000876 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700877
Al Viro59551022016-01-22 15:40:57 -0500878 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400879
Jeff Mahoney6c176752009-03-30 14:02:34 -0400880 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000881 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400882 reiserfs_warning(dentry->d_sb, "jdm-20006",
883 "xattrs/ACLs enabled and couldn't "
884 "find/create .reiserfs_priv. "
885 "Failing mount.");
886 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
David Howells2b0143b2015-03-17 22:25:59 +0000889 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney7b3ea9b2019-10-24 10:31:27 -0400890 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
Al Viroedcc37a2009-05-03 06:00:05 -0400891 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
892 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Al Viroedcc37a2009-05-03 06:00:05 -0400894 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400895}
896
Jeff Mahoney12abb352009-05-17 01:02:01 -0400897#else
898int __init reiserfs_xattr_register_handlers(void) { return 0; }
899void reiserfs_xattr_unregister_handlers(void) {}
900static int create_privroot(struct dentry *dentry) { return 0; }
901#endif
902
903/* Actual operations that are exported to VFS-land */
Jeff Mahoney7b3ea9b2019-10-24 10:31:27 -0400904const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400905#ifdef CONFIG_REISERFS_FS_XATTR
906 &reiserfs_xattr_user_handler,
907 &reiserfs_xattr_trusted_handler,
908#endif
909#ifdef CONFIG_REISERFS_FS_SECURITY
910 &reiserfs_xattr_security_handler,
911#endif
912#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800913 &posix_acl_access_xattr_handler,
914 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400915#endif
916 NULL
917};
918
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400919static int xattr_mount_check(struct super_block *s)
920{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400921 /*
922 * We need generation numbers to ensure that the oid mapping is correct
923 * v3.5 filesystems don't have them.
924 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400925 if (old_format_only(s)) {
926 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400927 /*
928 * Old format filesystem, but optional xattrs have
929 * been enabled. Error out.
930 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400931 reiserfs_warning(s, "jdm-2005",
932 "xattrs/ACLs not supported "
933 "on pre-v3.6 format filesystems. "
934 "Failing mount.");
935 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700936 }
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400939 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Al Viro10556cb2011-06-20 19:28:19 -0400942int reiserfs_permission(struct inode *inode, int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400943{
944 /*
945 * We don't do permission checks on the internal objects.
946 * Permissions are determined by the "owning" object.
947 */
948 if (IS_PRIVATE(inode))
949 return 0;
950
Al Viro2830ba72011-06-20 19:16:29 -0400951 return generic_permission(inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400952}
953
Al Viro0b728e12012-06-10 16:03:43 -0400954static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400956 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
Al Viroe16404e2009-02-20 05:55:13 +0000959static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400960 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961};
962
Al Viroedcc37a2009-05-03 06:00:05 -0400963int reiserfs_lookup_privroot(struct super_block *s)
964{
965 struct dentry *dentry;
966 int err = 0;
967
968 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500969 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400970 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
971 strlen(PRIVROOT_NAME));
972 if (!IS_ERR(dentry)) {
973 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100974 d_set_d_op(dentry, &xattr_lookup_poison_ops);
Jeff Mahoney7b3ea9b2019-10-24 10:31:27 -0400975 if (d_really_is_positive(dentry)) {
David Howells2b0143b2015-03-17 22:25:59 +0000976 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney7b3ea9b2019-10-24 10:31:27 -0400977 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
978 }
Al Viroedcc37a2009-05-03 06:00:05 -0400979 } else
980 err = PTR_ERR(dentry);
Al Viro59551022016-01-22 15:40:57 -0500981 inode_unlock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400982
983 return err;
984}
985
Jeff Mahoney098297b2014-04-23 10:00:36 -0400986/*
987 * We need to take a copy of the mount flags since things like
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800988 * SB_RDONLY don't get set until *after* we're called.
Jeff Mahoney098297b2014-04-23 10:00:36 -0400989 * mount_flags != mount_options
990 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700991int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700993 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400994 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400996 err = xattr_mount_check(s);
997 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700998 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001000 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
Al Viro59551022016-01-22 15:40:57 -05001001 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -04001002 err = create_privroot(REISERFS_SB(s)->priv_root);
Al Viro59551022016-01-22 15:40:57 -05001003 inode_unlock(d_inode(s->s_root));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001004 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001005
David Howells2b0143b2015-03-17 22:25:59 +00001006 if (d_really_is_positive(privroot)) {
Al Viro59551022016-01-22 15:40:57 -05001007 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001008 if (!REISERFS_SB(s)->xattr_root) {
1009 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -07001010
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001011 dentry = lookup_one_len(XAROOT_NAME, privroot,
1012 strlen(XAROOT_NAME));
1013 if (!IS_ERR(dentry))
1014 REISERFS_SB(s)->xattr_root = dentry;
1015 else
1016 err = PTR_ERR(dentry);
1017 }
Al Viro59551022016-01-22 15:40:57 -05001018 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001019 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001020
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001021error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001022 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001023 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1024 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001027 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001028 if (reiserfs_posixacl(s))
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001029 s->s_flags |= SB_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001030 else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001031 s->s_flags &= ~SB_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001033 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}