blob: ff94fad477e461435e335030dd7baf99c0783636 [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 Mahoney6c176752009-03-30 14:02:34 -0400125 return ERR_PTR(-ENODATA);
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)
131 xaroot = ERR_PTR(-ENODATA);
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;
188 struct dentry *dentries[8];
189};
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400190
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400191static int
Miklos Szerediac7576f2014-10-30 17:37:34 +0100192fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
193 loff_t offset, u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400194{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100195 struct reiserfs_dentry_buf *dbuf =
196 container_of(ctx, struct reiserfs_dentry_buf, ctx);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400197 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700198
Al Viro59551022016-01-22 15:40:57 -0500199 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf->xadir)));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400200
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400201 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
202 return -ENOSPC;
203
Jan Kara35e5cbc2013-03-29 15:39:16 +0100204 if (name[0] == '.' && (namelen < 2 ||
205 (namelen == 2 && name[1] == '.')))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400206 return 0;
207
208 dentry = lookup_one_len(name, dbuf->xadir, namelen);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400209 if (IS_ERR(dentry)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400210 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000211 } else if (d_really_is_negative(dentry)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400212 /* A directory entry exists, but no file? */
213 reiserfs_error(dentry->d_sb, "xattr-20003",
Al Viroa4555892014-10-21 20:11:25 -0400214 "Corrupted directory: xattr %pd listed but "
215 "not found for file %pd.\n",
216 dentry, dbuf->xadir);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400217 dput(dentry);
218 return -EIO;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400219 }
220
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400221 dbuf->dentries[dbuf->count++] = dentry;
222 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400223}
224
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400225static void
226cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400227{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400228 int i;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700229
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400230 for (i = 0; i < buf->count; i++)
231 if (buf->dentries[i])
232 dput(buf->dentries[i]);
233}
234
235static int reiserfs_for_each_xattr(struct inode *inode,
236 int (*action)(struct dentry *, void *),
237 void *data)
238{
239 struct dentry *dir;
240 int i, err = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400241 struct reiserfs_dentry_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400242 .ctx.actor = fill_with_dentries,
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400243 };
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400244
245 /* Skip out, an xattr has no xattrs associated with it */
246 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
247 return 0;
248
Jeff Mahoney6c176752009-03-30 14:02:34 -0400249 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400250 if (IS_ERR(dir)) {
251 err = PTR_ERR(dir);
252 goto out;
David Howells2b0143b2015-03-17 22:25:59 +0000253 } else if (d_really_is_negative(dir)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400254 err = 0;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400255 goto out_dir;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400256 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400257
Al Viro59551022016-01-22 15:40:57 -0500258 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
Frederic Weisbecker27026a02009-12-30 05:06:21 +0100259
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400260 buf.xadir = dir;
Al Virocd62cda2013-05-17 22:58:58 -0400261 while (1) {
David Howells2b0143b2015-03-17 22:25:59 +0000262 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Virocd62cda2013-05-17 22:58:58 -0400263 if (err)
264 break;
265 if (!buf.count)
266 break;
267 for (i = 0; !err && i < buf.count && buf.dentries[i]; i++) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400268 struct dentry *dentry = buf.dentries[i];
269
David Howellse36cb0b2015-01-29 12:02:35 +0000270 if (!d_is_dir(dentry))
Al Virocd62cda2013-05-17 22:58:58 -0400271 err = action(dentry, data);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400272
273 dput(dentry);
274 buf.dentries[i] = NULL;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400275 }
Al Virocd62cda2013-05-17 22:58:58 -0400276 if (err)
277 break;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400278 buf.count = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400279 }
Al Viro59551022016-01-22 15:40:57 -0500280 inode_unlock(d_inode(dir));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400281
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400282 cleanup_dentry_buf(&buf);
283
284 if (!err) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400285 /*
286 * We start a transaction here to avoid a ABBA situation
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400287 * between the xattr root's i_mutex and the journal lock.
288 * This doesn't incur much additional overhead since the
289 * new transaction will just nest inside the
Jeff Mahoney098297b2014-04-23 10:00:36 -0400290 * outer transaction.
291 */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400292 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
293 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
294 struct reiserfs_transaction_handle th;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700295
Jeff Mahoney4c051412013-08-08 17:27:19 -0400296 reiserfs_write_lock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400297 err = journal_begin(&th, inode->i_sb, blocks);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400298 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400299 if (!err) {
300 int jerror;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700301
Al Viro59551022016-01-22 15:40:57 -0500302 inode_lock_nested(d_inode(dir->d_parent),
Jeff Mahoney4c051412013-08-08 17:27:19 -0400303 I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400304 err = action(dir, data);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400305 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400306 jerror = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400307 reiserfs_write_unlock(inode->i_sb);
Al Viro59551022016-01-22 15:40:57 -0500308 inode_unlock(d_inode(dir->d_parent));
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400309 err = jerror ?: err;
310 }
311 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400312out_dir:
313 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400314out:
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400315 /* -ENODATA isn't an error */
316 if (err == -ENODATA)
317 err = 0;
318 return err;
319}
320
321static int delete_one_xattr(struct dentry *dentry, void *data)
322{
David Howells2b0143b2015-03-17 22:25:59 +0000323 struct inode *dir = d_inode(dentry->d_parent);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400324
325 /* This is the xattr dir, handle specially. */
David Howellse36cb0b2015-01-29 12:02:35 +0000326 if (d_is_dir(dentry))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400327 return xattr_rmdir(dir, dentry);
328
329 return xattr_unlink(dir, dentry);
330}
331
332static int chown_one_xattr(struct dentry *dentry, void *data)
333{
334 struct iattr *attrs = data;
Jeff Mahoney4a857012013-05-31 15:54:17 -0400335 int ia_valid = attrs->ia_valid;
336 int err;
337
338 /*
339 * We only want the ownership bits. Otherwise, we'll do
340 * things like change a directory to a regular file if
341 * ATTR_MODE is set.
342 */
343 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
344 err = reiserfs_setattr(dentry, attrs);
345 attrs->ia_valid = ia_valid;
346
347 return err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400348}
349
350/* No i_mutex, but the inode is unconnected. */
351int reiserfs_delete_xattrs(struct inode *inode)
352{
353 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700354
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400355 if (err)
356 reiserfs_warning(inode->i_sb, "jdm-20004",
357 "Couldn't delete all xattrs (%d)\n", err);
358 return err;
359}
360
361/* inode->i_mutex: down */
362int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
363{
364 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700365
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400366 if (err)
367 reiserfs_warning(inode->i_sb, "jdm-20007",
368 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400369 return err;
370}
371
372#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney098297b2014-04-23 10:00:36 -0400373/*
374 * Returns a dentry corresponding to a specific extended attribute file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * for the inode. If flags allow, the file is created. Otherwise, a
Jeff Mahoney098297b2014-04-23 10:00:36 -0400376 * valid or negative dentry, or an error is returned.
377 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400378static struct dentry *xattr_lookup(struct inode *inode, const char *name,
379 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700381 struct dentry *xadir, *xafile;
382 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700384 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400385 if (IS_ERR(xadir))
David Howellse231c2e2008-02-07 00:15:26 -0800386 return ERR_CAST(xadir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Al Viro59551022016-01-22 15:40:57 -0500388 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700389 xafile = lookup_one_len(name, xadir, strlen(name));
390 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400391 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700392 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
David Howells2b0143b2015-03-17 22:25:59 +0000395 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
Jeff Mahoney6c176752009-03-30 14:02:34 -0400396 err = -EEXIST;
397
David Howells2b0143b2015-03-17 22:25:59 +0000398 if (d_really_is_negative(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400399 err = -ENODATA;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400400 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000401 err = xattr_create(d_inode(xadir), xafile,
Jeff Mahoney6c176752009-03-30 14:02:34 -0400402 0700|S_IFREG);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Jeff Mahoney6c176752009-03-30 14:02:34 -0400405 if (err)
406 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400407out:
Al Viro59551022016-01-22 15:40:57 -0500408 inode_unlock(d_inode(xadir));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700409 dput(xadir);
410 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400411 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800412 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700416static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700418 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300419 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400422static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700424 struct address_space *mapping = dir->i_mapping;
425 struct page *page;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400426 /*
427 * We can deadlock if we try to free dentries,
428 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
429 */
Al Viroc4cdd032005-10-21 03:22:39 -0400430 mapping_set_gfp_mask(mapping, GFP_NOFS);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300431 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700432 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700433 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700434 if (PageError(page))
435 goto fail;
436 }
437 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400439fail:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700440 reiserfs_put_page(page);
441 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700444static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700446 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700449int reiserfs_commit_write(struct file *f, struct page *page,
450 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700451
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400452static void update_ctime(struct inode *inode)
453{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700454 struct timespec64 now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700455
Al Viro1d3382cb2010-10-23 15:19:20 -0400456 if (inode_unhashed(inode) || !inode->i_nlink ||
Deepa Dinamani95582b02018-05-08 19:36:02 -0700457 timespec64_equal(&inode->i_ctime, &now))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400458 return;
459
Deepa Dinamani02027d42016-09-14 07:48:05 -0700460 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400461 mark_inode_dirty(inode);
462}
463
464static int lookup_and_delete_xattr(struct inode *inode, const char *name)
465{
466 int err = 0;
467 struct dentry *dentry, *xadir;
468
469 xadir = open_xa_dir(inode, XATTR_REPLACE);
470 if (IS_ERR(xadir))
471 return PTR_ERR(xadir);
472
Al Viro59551022016-01-22 15:40:57 -0500473 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400474 dentry = lookup_one_len(name, xadir, strlen(name));
475 if (IS_ERR(dentry)) {
476 err = PTR_ERR(dentry);
477 goto out_dput;
478 }
479
David Howells2b0143b2015-03-17 22:25:59 +0000480 if (d_really_is_positive(dentry)) {
481 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400482 update_ctime(inode);
483 }
484
485 dput(dentry);
486out_dput:
Al Viro59551022016-01-22 15:40:57 -0500487 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400488 dput(xadir);
489 return err;
490}
491
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493/* Generic extended attribute operations that can be used by xa plugins */
494
495/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800496 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 */
498int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400499reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
500 struct inode *inode, const char *name,
501 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700503 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800504 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700505 struct page *page;
506 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700507 size_t file_pos = 0;
508 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400509 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700510 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700512 if (get_inode_sd_version(inode) == STAT_DATA_V1)
513 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100515 if (!buffer) {
516 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100517 return err;
518 }
519
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400520 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400521 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400522 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100524 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100525
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400526 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700527 while (buffer_pos < buffer_size || buffer_pos == 0) {
528 size_t chunk;
529 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300530 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700531
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300532 if (buffer_size - buffer_pos > PAGE_SIZE)
533 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700534 else
535 chunk = buffer_size - buffer_pos;
536
David Howells2b0143b2015-03-17 22:25:59 +0000537 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700538 if (IS_ERR(page)) {
539 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400540 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700541 }
542
543 lock_page(page);
544 data = page_address(page);
545
546 if (file_pos == 0) {
547 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700548
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700549 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300550 if (chunk + skip > PAGE_SIZE)
551 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700552 rxh = (struct reiserfs_xattr_header *)data;
553 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
554 rxh->h_hash = cpu_to_le32(xahash);
555 }
556
Jeff Mahoney4c051412013-08-08 17:27:19 -0400557 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200558 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700559 if (!err) {
560 if (buffer)
561 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800562 err = reiserfs_commit_write(NULL, page, page_offset,
563 page_offset + chunk +
564 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700565 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400566 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700567 unlock_page(page);
568 reiserfs_put_page(page);
569 buffer_pos += chunk;
570 file_pos += chunk;
571 skip = 0;
572 if (err || buffer_size == 0 || !buffer)
573 break;
574 }
575
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400576 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000577 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400578 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700579 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400580 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400581 .ia_valid = ATTR_SIZE | ATTR_CTIME,
582 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100583
Al Viro59551022016-01-22 15:40:57 -0500584 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000585 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100586
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400587 err = reiserfs_setattr(dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500588 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400589 } else
590 update_ctime(inode);
591out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400592 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800593 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400594 return err;
595}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700596
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400597/* We need to start a transaction to maintain lock ordering */
598int reiserfs_xattr_set(struct inode *inode, const char *name,
599 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400600{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400601
602 struct reiserfs_transaction_handle th;
603 int error, error2;
604 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
605
606 if (!(flags & XATTR_REPLACE))
607 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
608
609 reiserfs_write_lock(inode->i_sb);
610 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400611 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400612 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400613 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700614 }
615
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400616 error = reiserfs_xattr_set_handle(&th, inode, name,
617 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700618
Jeff Mahoney4c051412013-08-08 17:27:19 -0400619 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400620 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400621 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400622 if (error == 0)
623 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400624
625 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800629 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
631int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400632reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700633 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700635 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800636 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700637 size_t isize;
638 size_t file_pos = 0;
639 size_t buffer_pos = 0;
640 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700641 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700643 if (name == NULL)
644 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Jeff Mahoney098297b2014-04-23 10:00:36 -0400646 /*
647 * We can't have xattrs attached to v1 items since they don't have
648 * generation numbers
649 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700650 if (get_inode_sd_version(inode) == STAT_DATA_V1)
651 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400653 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800654 if (IS_ERR(dentry)) {
655 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700656 goto out;
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400659 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400660
David Howells2b0143b2015-03-17 22:25:59 +0000661 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700663 /* Just return the size needed */
664 if (buffer == NULL) {
665 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400666 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700669 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
670 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400671 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700674 while (file_pos < isize) {
675 size_t chunk;
676 char *data;
677 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700678
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300679 if (isize - file_pos > PAGE_SIZE)
680 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700681 else
682 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
David Howells2b0143b2015-03-17 22:25:59 +0000684 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700685 if (IS_ERR(page)) {
686 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400687 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700690 lock_page(page);
691 data = page_address(page);
692 if (file_pos == 0) {
693 struct reiserfs_xattr_header *rxh =
694 (struct reiserfs_xattr_header *)data;
695 skip = file_pos = sizeof(struct reiserfs_xattr_header);
696 chunk -= skip;
697 /* Magic doesn't match up.. */
698 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
699 unlock_page(page);
700 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400701 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700702 "Invalid magic for xattr (%s) "
703 "associated with %k", name,
704 INODE_PKEY(inode));
705 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400706 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700707 }
708 hash = le32_to_cpu(rxh->h_hash);
709 }
710 memcpy(buffer + buffer_pos, data + skip, chunk);
711 unlock_page(page);
712 reiserfs_put_page(page);
713 file_pos += chunk;
714 buffer_pos += chunk;
715 skip = 0;
716 }
717 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700719 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
720 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400721 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700722 "Invalid hash for xattr (%s) associated "
723 "with %k", name, INODE_PKEY(inode));
724 err = -EIO;
725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400727out_unlock:
728 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800729 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400731out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700732 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400735/*
736 * In order to implement different sets of xattr operations for each xattr
737 * prefix with the generic xattr API, a filesystem should create a
738 * null-terminated array of struct xattr_handler (one for each prefix) and
739 * hang a pointer to it off of the s_xattr field of the superblock.
740 *
741 * The generic_fooxattr() functions will use this list to dispatch xattr
742 * operations to the correct xattr_handler.
743 */
744#define for_each_xattr_handler(handlers, handler) \
745 for ((handler) = *(handlers)++; \
746 (handler) != NULL; \
747 (handler) = *(handlers)++)
748
749/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700750static inline const struct xattr_handler *
751find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400752 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700754 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400756 if (!handlers)
757 return NULL;
758
759 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100760 const char *prefix = xattr_prefix(xah);
761 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400762 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400765 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400768struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400769 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400770 size_t size;
771 size_t pos;
772 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000773 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774};
775
Miklos Szerediac7576f2014-10-30 17:37:34 +0100776static int listxattr_filler(struct dir_context *ctx, const char *name,
777 int namelen, loff_t offset, u64 ino,
778 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100780 struct listxattr_buf *b =
781 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400782 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700783
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400784 if (name[0] != '.' ||
785 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700786 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700787
Christoph Hellwig431547b2009-11-13 09:52:56 +0000788 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400789 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100790 if (!handler /* Unsupported xattr name */ ||
791 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400792 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100793 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400794 if (b->buf) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400795 if (size > b->size)
796 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100797 memcpy(b->buf + b->pos, name, namelen);
798 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700799 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400800 b->pos += size;
801 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700802 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805/*
806 * Inode operation listxattr()
807 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400808 * We totally ignore the generic listxattr here because it would be stupid
809 * not to. Since the xattrs are organized in a directory, we can just
810 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700812ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700814 struct dentry *dir;
815 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400816 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400817 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000818 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400819 .buf = buffer,
820 .size = buffer ? size : 0,
821 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
David Howells2b0143b2015-03-17 22:25:59 +0000823 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700824 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Jeff Mahoney677c9b22009-05-05 15:30:17 -0400826 if (!dentry->d_sb->s_xattr ||
David Howells2b0143b2015-03-17 22:25:59 +0000827 get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700828 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
David Howells2b0143b2015-03-17 22:25:59 +0000830 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700831 if (IS_ERR(dir)) {
832 err = PTR_ERR(dir);
833 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400834 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700835 goto out;
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Al Viro59551022016-01-22 15:40:57 -0500838 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000839 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500840 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400842 if (!err)
843 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Jeff Mahoney3227e142008-02-15 14:37:22 -0800845 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400846out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700847 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400850static int create_privroot(struct dentry *dentry)
851{
852 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000853 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700854
Al Viro59551022016-01-22 15:40:57 -0500855 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400856
Jeff Mahoney6c176752009-03-30 14:02:34 -0400857 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000858 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400859 reiserfs_warning(dentry->d_sb, "jdm-20006",
860 "xattrs/ACLs enabled and couldn't "
861 "find/create .reiserfs_priv. "
862 "Failing mount.");
863 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
David Howells2b0143b2015-03-17 22:25:59 +0000866 d_inode(dentry)->i_flags |= S_PRIVATE;
Al Viroedcc37a2009-05-03 06:00:05 -0400867 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
868 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Al Viroedcc37a2009-05-03 06:00:05 -0400870 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400871}
872
Jeff Mahoney12abb352009-05-17 01:02:01 -0400873#else
874int __init reiserfs_xattr_register_handlers(void) { return 0; }
875void reiserfs_xattr_unregister_handlers(void) {}
876static int create_privroot(struct dentry *dentry) { return 0; }
877#endif
878
879/* Actual operations that are exported to VFS-land */
Sachin Kamatda02eb72012-08-23 17:28:57 +0200880static const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400881#ifdef CONFIG_REISERFS_FS_XATTR
882 &reiserfs_xattr_user_handler,
883 &reiserfs_xattr_trusted_handler,
884#endif
885#ifdef CONFIG_REISERFS_FS_SECURITY
886 &reiserfs_xattr_security_handler,
887#endif
888#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800889 &posix_acl_access_xattr_handler,
890 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400891#endif
892 NULL
893};
894
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400895static int xattr_mount_check(struct super_block *s)
896{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400897 /*
898 * We need generation numbers to ensure that the oid mapping is correct
899 * v3.5 filesystems don't have them.
900 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400901 if (old_format_only(s)) {
902 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400903 /*
904 * Old format filesystem, but optional xattrs have
905 * been enabled. Error out.
906 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400907 reiserfs_warning(s, "jdm-2005",
908 "xattrs/ACLs not supported "
909 "on pre-v3.6 format filesystems. "
910 "Failing mount.");
911 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700912 }
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Al Viro10556cb2011-06-20 19:28:19 -0400918int reiserfs_permission(struct inode *inode, int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400919{
920 /*
921 * We don't do permission checks on the internal objects.
922 * Permissions are determined by the "owning" object.
923 */
924 if (IS_PRIVATE(inode))
925 return 0;
926
Al Viro2830ba72011-06-20 19:16:29 -0400927 return generic_permission(inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400928}
929
Al Viro0b728e12012-06-10 16:03:43 -0400930static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400932 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
Al Viroe16404e2009-02-20 05:55:13 +0000935static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400936 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937};
938
Al Viroedcc37a2009-05-03 06:00:05 -0400939int reiserfs_lookup_privroot(struct super_block *s)
940{
941 struct dentry *dentry;
942 int err = 0;
943
944 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500945 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400946 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
947 strlen(PRIVROOT_NAME));
948 if (!IS_ERR(dentry)) {
949 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100950 d_set_d_op(dentry, &xattr_lookup_poison_ops);
David Howells2b0143b2015-03-17 22:25:59 +0000951 if (d_really_is_positive(dentry))
952 d_inode(dentry)->i_flags |= S_PRIVATE;
Al Viroedcc37a2009-05-03 06:00:05 -0400953 } else
954 err = PTR_ERR(dentry);
Al Viro59551022016-01-22 15:40:57 -0500955 inode_unlock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400956
957 return err;
958}
959
Jeff Mahoney098297b2014-04-23 10:00:36 -0400960/*
961 * We need to take a copy of the mount flags since things like
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800962 * SB_RDONLY don't get set until *after* we're called.
Jeff Mahoney098297b2014-04-23 10:00:36 -0400963 * mount_flags != mount_options
964 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700965int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700967 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400968 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400970 err = xattr_mount_check(s);
971 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700972 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800974 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
Al Viro59551022016-01-22 15:40:57 -0500975 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400976 err = create_privroot(REISERFS_SB(s)->priv_root);
Al Viro59551022016-01-22 15:40:57 -0500977 inode_unlock(d_inode(s->s_root));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700978 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400979
David Howells2b0143b2015-03-17 22:25:59 +0000980 if (d_really_is_positive(privroot)) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400981 s->s_xattr = reiserfs_xattr_handlers;
Al Viro59551022016-01-22 15:40:57 -0500982 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400983 if (!REISERFS_SB(s)->xattr_root) {
984 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700985
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400986 dentry = lookup_one_len(XAROOT_NAME, privroot,
987 strlen(XAROOT_NAME));
988 if (!IS_ERR(dentry))
989 REISERFS_SB(s)->xattr_root = dentry;
990 else
991 err = PTR_ERR(dentry);
992 }
Al Viro59551022016-01-22 15:40:57 -0500993 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400994 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400995
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400996error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700997 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -0400998 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
999 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001002 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001003 if (reiserfs_posixacl(s))
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001004 s->s_flags |= SB_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001005 else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001006 s->s_flags &= ~SB_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001008 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}