blob: 32d8986c26fb1fa2d3c5140d9fb7629eaf9b865f [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;
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 Mahoneya41f1a42009-03-30 14:02:40 -0400322 /* -ENODATA isn't an error */
323 if (err == -ENODATA)
324 err = 0;
325 return err;
326}
327
328static int delete_one_xattr(struct dentry *dentry, void *data)
329{
David Howells2b0143b2015-03-17 22:25:59 +0000330 struct inode *dir = d_inode(dentry->d_parent);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400331
332 /* This is the xattr dir, handle specially. */
David Howellse36cb0b2015-01-29 12:02:35 +0000333 if (d_is_dir(dentry))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400334 return xattr_rmdir(dir, dentry);
335
336 return xattr_unlink(dir, dentry);
337}
338
339static int chown_one_xattr(struct dentry *dentry, void *data)
340{
341 struct iattr *attrs = data;
Jeff Mahoney4a857012013-05-31 15:54:17 -0400342 int ia_valid = attrs->ia_valid;
343 int err;
344
345 /*
346 * We only want the ownership bits. Otherwise, we'll do
347 * things like change a directory to a regular file if
348 * ATTR_MODE is set.
349 */
350 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
351 err = reiserfs_setattr(dentry, attrs);
352 attrs->ia_valid = ia_valid;
353
354 return err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400355}
356
357/* No i_mutex, but the inode is unconnected. */
358int reiserfs_delete_xattrs(struct inode *inode)
359{
360 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700361
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400362 if (err)
363 reiserfs_warning(inode->i_sb, "jdm-20004",
364 "Couldn't delete all xattrs (%d)\n", err);
365 return err;
366}
367
368/* inode->i_mutex: down */
369int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
370{
371 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700372
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400373 if (err)
374 reiserfs_warning(inode->i_sb, "jdm-20007",
375 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400376 return err;
377}
378
379#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney098297b2014-04-23 10:00:36 -0400380/*
381 * Returns a dentry corresponding to a specific extended attribute file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * for the inode. If flags allow, the file is created. Otherwise, a
Jeff Mahoney098297b2014-04-23 10:00:36 -0400383 * valid or negative dentry, or an error is returned.
384 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400385static struct dentry *xattr_lookup(struct inode *inode, const char *name,
386 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700388 struct dentry *xadir, *xafile;
389 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700391 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400392 if (IS_ERR(xadir))
David Howellse231c2e2008-02-07 00:15:26 -0800393 return ERR_CAST(xadir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Al Viro59551022016-01-22 15:40:57 -0500395 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700396 xafile = lookup_one_len(name, xadir, strlen(name));
397 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400398 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700399 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
David Howells2b0143b2015-03-17 22:25:59 +0000402 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
Jeff Mahoney6c176752009-03-30 14:02:34 -0400403 err = -EEXIST;
404
David Howells2b0143b2015-03-17 22:25:59 +0000405 if (d_really_is_negative(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400406 err = -ENODATA;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400407 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000408 err = xattr_create(d_inode(xadir), xafile,
Jeff Mahoney6c176752009-03-30 14:02:34 -0400409 0700|S_IFREG);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Jeff Mahoney6c176752009-03-30 14:02:34 -0400412 if (err)
413 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400414out:
Al Viro59551022016-01-22 15:40:57 -0500415 inode_unlock(d_inode(xadir));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700416 dput(xadir);
417 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400418 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800419 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700423static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700425 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300426 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400429static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700431 struct address_space *mapping = dir->i_mapping;
432 struct page *page;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400433 /*
434 * We can deadlock if we try to free dentries,
435 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
436 */
Al Viroc4cdd032005-10-21 03:22:39 -0400437 mapping_set_gfp_mask(mapping, GFP_NOFS);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300438 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700439 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700440 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700441 if (PageError(page))
442 goto fail;
443 }
444 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400446fail:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700447 reiserfs_put_page(page);
448 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700451static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700453 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700456int reiserfs_commit_write(struct file *f, struct page *page,
457 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700458
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400459static void update_ctime(struct inode *inode)
460{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700461 struct timespec64 now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700462
Al Viro1d3382cb2010-10-23 15:19:20 -0400463 if (inode_unhashed(inode) || !inode->i_nlink ||
Deepa Dinamani95582b02018-05-08 19:36:02 -0700464 timespec64_equal(&inode->i_ctime, &now))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400465 return;
466
Deepa Dinamani02027d42016-09-14 07:48:05 -0700467 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400468 mark_inode_dirty(inode);
469}
470
471static int lookup_and_delete_xattr(struct inode *inode, const char *name)
472{
473 int err = 0;
474 struct dentry *dentry, *xadir;
475
476 xadir = open_xa_dir(inode, XATTR_REPLACE);
477 if (IS_ERR(xadir))
478 return PTR_ERR(xadir);
479
Al Viro59551022016-01-22 15:40:57 -0500480 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400481 dentry = lookup_one_len(name, xadir, strlen(name));
482 if (IS_ERR(dentry)) {
483 err = PTR_ERR(dentry);
484 goto out_dput;
485 }
486
David Howells2b0143b2015-03-17 22:25:59 +0000487 if (d_really_is_positive(dentry)) {
488 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400489 update_ctime(inode);
490 }
491
492 dput(dentry);
493out_dput:
Al Viro59551022016-01-22 15:40:57 -0500494 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400495 dput(xadir);
496 return err;
497}
498
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/* Generic extended attribute operations that can be used by xa plugins */
501
502/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800503 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 */
505int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400506reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
507 struct inode *inode, const char *name,
508 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700510 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800511 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700512 struct page *page;
513 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700514 size_t file_pos = 0;
515 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400516 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700517 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700519 if (get_inode_sd_version(inode) == STAT_DATA_V1)
520 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100522 if (!buffer) {
523 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100524 return err;
525 }
526
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400527 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400528 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400529 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100531 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100532
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400533 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700534 while (buffer_pos < buffer_size || buffer_pos == 0) {
535 size_t chunk;
536 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300537 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700538
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300539 if (buffer_size - buffer_pos > PAGE_SIZE)
540 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700541 else
542 chunk = buffer_size - buffer_pos;
543
David Howells2b0143b2015-03-17 22:25:59 +0000544 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700545 if (IS_ERR(page)) {
546 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400547 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700548 }
549
550 lock_page(page);
551 data = page_address(page);
552
553 if (file_pos == 0) {
554 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700555
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700556 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300557 if (chunk + skip > PAGE_SIZE)
558 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700559 rxh = (struct reiserfs_xattr_header *)data;
560 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
561 rxh->h_hash = cpu_to_le32(xahash);
562 }
563
Jeff Mahoney4c051412013-08-08 17:27:19 -0400564 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200565 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700566 if (!err) {
567 if (buffer)
568 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800569 err = reiserfs_commit_write(NULL, page, page_offset,
570 page_offset + chunk +
571 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700572 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400573 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700574 unlock_page(page);
575 reiserfs_put_page(page);
576 buffer_pos += chunk;
577 file_pos += chunk;
578 skip = 0;
579 if (err || buffer_size == 0 || !buffer)
580 break;
581 }
582
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400583 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000584 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400585 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700586 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400587 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400588 .ia_valid = ATTR_SIZE | ATTR_CTIME,
589 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100590
Al Viro59551022016-01-22 15:40:57 -0500591 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000592 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100593
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400594 err = reiserfs_setattr(dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500595 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400596 } else
597 update_ctime(inode);
598out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400599 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800600 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400601 return err;
602}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700603
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400604/* We need to start a transaction to maintain lock ordering */
605int reiserfs_xattr_set(struct inode *inode, const char *name,
606 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400607{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400608
609 struct reiserfs_transaction_handle th;
610 int error, error2;
611 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
612
613 if (!(flags & XATTR_REPLACE))
614 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
615
616 reiserfs_write_lock(inode->i_sb);
617 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400618 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400619 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400620 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700621 }
622
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400623 error = reiserfs_xattr_set_handle(&th, inode, name,
624 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700625
Jeff Mahoney4c051412013-08-08 17:27:19 -0400626 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400627 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400628 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400629 if (error == 0)
630 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400631
632 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800636 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
638int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400639reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700640 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700642 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800643 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700644 size_t isize;
645 size_t file_pos = 0;
646 size_t buffer_pos = 0;
647 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700648 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700650 if (name == NULL)
651 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Jeff Mahoney098297b2014-04-23 10:00:36 -0400653 /*
654 * We can't have xattrs attached to v1 items since they don't have
655 * generation numbers
656 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700657 if (get_inode_sd_version(inode) == STAT_DATA_V1)
658 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400660 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800661 if (IS_ERR(dentry)) {
662 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700663 goto out;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400666 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400667
David Howells2b0143b2015-03-17 22:25:59 +0000668 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700670 /* Just return the size needed */
671 if (buffer == NULL) {
672 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400673 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700676 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
677 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400678 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700681 while (file_pos < isize) {
682 size_t chunk;
683 char *data;
684 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700685
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300686 if (isize - file_pos > PAGE_SIZE)
687 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700688 else
689 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
David Howells2b0143b2015-03-17 22:25:59 +0000691 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700692 if (IS_ERR(page)) {
693 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400694 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700697 lock_page(page);
698 data = page_address(page);
699 if (file_pos == 0) {
700 struct reiserfs_xattr_header *rxh =
701 (struct reiserfs_xattr_header *)data;
702 skip = file_pos = sizeof(struct reiserfs_xattr_header);
703 chunk -= skip;
704 /* Magic doesn't match up.. */
705 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
706 unlock_page(page);
707 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400708 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700709 "Invalid magic for xattr (%s) "
710 "associated with %k", name,
711 INODE_PKEY(inode));
712 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400713 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700714 }
715 hash = le32_to_cpu(rxh->h_hash);
716 }
717 memcpy(buffer + buffer_pos, data + skip, chunk);
718 unlock_page(page);
719 reiserfs_put_page(page);
720 file_pos += chunk;
721 buffer_pos += chunk;
722 skip = 0;
723 }
724 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700726 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
727 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400728 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700729 "Invalid hash for xattr (%s) associated "
730 "with %k", name, INODE_PKEY(inode));
731 err = -EIO;
732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400734out_unlock:
735 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800736 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400738out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700739 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400742/*
743 * In order to implement different sets of xattr operations for each xattr
744 * prefix with the generic xattr API, a filesystem should create a
745 * null-terminated array of struct xattr_handler (one for each prefix) and
746 * hang a pointer to it off of the s_xattr field of the superblock.
747 *
748 * The generic_fooxattr() functions will use this list to dispatch xattr
749 * operations to the correct xattr_handler.
750 */
751#define for_each_xattr_handler(handlers, handler) \
752 for ((handler) = *(handlers)++; \
753 (handler) != NULL; \
754 (handler) = *(handlers)++)
755
756/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700757static inline const struct xattr_handler *
758find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400759 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700761 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400763 if (!handlers)
764 return NULL;
765
766 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100767 const char *prefix = xattr_prefix(xah);
768 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400769 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400772 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400775struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400776 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400777 size_t size;
778 size_t pos;
779 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000780 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781};
782
Miklos Szerediac7576f2014-10-30 17:37:34 +0100783static int listxattr_filler(struct dir_context *ctx, const char *name,
784 int namelen, loff_t offset, u64 ino,
785 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100787 struct listxattr_buf *b =
788 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400789 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700790
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400791 if (name[0] != '.' ||
792 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700793 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700794
Christoph Hellwig431547b2009-11-13 09:52:56 +0000795 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400796 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100797 if (!handler /* Unsupported xattr name */ ||
798 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400799 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100800 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400801 if (b->buf) {
Jann Horna13f0852018-08-21 21:59:37 -0700802 if (b->pos + size > b->size) {
803 b->pos = -ERANGE;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400804 return -ERANGE;
Jann Horna13f0852018-08-21 21:59:37 -0700805 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100806 memcpy(b->buf + b->pos, name, namelen);
807 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700808 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400809 b->pos += size;
810 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/*
815 * Inode operation listxattr()
816 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400817 * We totally ignore the generic listxattr here because it would be stupid
818 * not to. Since the xattrs are organized in a directory, we can just
819 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700821ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700823 struct dentry *dir;
824 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400825 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400826 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000827 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400828 .buf = buffer,
829 .size = buffer ? size : 0,
830 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
David Howells2b0143b2015-03-17 22:25:59 +0000832 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Jeff Mahoney677c9b22009-05-05 15:30:17 -0400835 if (!dentry->d_sb->s_xattr ||
David Howells2b0143b2015-03-17 22:25:59 +0000836 get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700837 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
David Howells2b0143b2015-03-17 22:25:59 +0000839 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700840 if (IS_ERR(dir)) {
841 err = PTR_ERR(dir);
842 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400843 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700844 goto out;
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Al Viro59551022016-01-22 15:40:57 -0500847 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000848 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500849 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400851 if (!err)
852 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Jeff Mahoney3227e142008-02-15 14:37:22 -0800854 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400855out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700856 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400859static int create_privroot(struct dentry *dentry)
860{
861 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000862 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700863
Al Viro59551022016-01-22 15:40:57 -0500864 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400865
Jeff Mahoney6c176752009-03-30 14:02:34 -0400866 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000867 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400868 reiserfs_warning(dentry->d_sb, "jdm-20006",
869 "xattrs/ACLs enabled and couldn't "
870 "find/create .reiserfs_priv. "
871 "Failing mount.");
872 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
David Howells2b0143b2015-03-17 22:25:59 +0000875 d_inode(dentry)->i_flags |= S_PRIVATE;
Al Viroedcc37a2009-05-03 06:00:05 -0400876 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
877 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Al Viroedcc37a2009-05-03 06:00:05 -0400879 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400880}
881
Jeff Mahoney12abb352009-05-17 01:02:01 -0400882#else
883int __init reiserfs_xattr_register_handlers(void) { return 0; }
884void reiserfs_xattr_unregister_handlers(void) {}
885static int create_privroot(struct dentry *dentry) { return 0; }
886#endif
887
888/* Actual operations that are exported to VFS-land */
Sachin Kamatda02eb72012-08-23 17:28:57 +0200889static const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400890#ifdef CONFIG_REISERFS_FS_XATTR
891 &reiserfs_xattr_user_handler,
892 &reiserfs_xattr_trusted_handler,
893#endif
894#ifdef CONFIG_REISERFS_FS_SECURITY
895 &reiserfs_xattr_security_handler,
896#endif
897#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800898 &posix_acl_access_xattr_handler,
899 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400900#endif
901 NULL
902};
903
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400904static int xattr_mount_check(struct super_block *s)
905{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400906 /*
907 * We need generation numbers to ensure that the oid mapping is correct
908 * v3.5 filesystems don't have them.
909 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400910 if (old_format_only(s)) {
911 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400912 /*
913 * Old format filesystem, but optional xattrs have
914 * been enabled. Error out.
915 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400916 reiserfs_warning(s, "jdm-2005",
917 "xattrs/ACLs not supported "
918 "on pre-v3.6 format filesystems. "
919 "Failing mount.");
920 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700921 }
922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400924 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Al Viro10556cb2011-06-20 19:28:19 -0400927int reiserfs_permission(struct inode *inode, int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400928{
929 /*
930 * We don't do permission checks on the internal objects.
931 * Permissions are determined by the "owning" object.
932 */
933 if (IS_PRIVATE(inode))
934 return 0;
935
Al Viro2830ba72011-06-20 19:16:29 -0400936 return generic_permission(inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400937}
938
Al Viro0b728e12012-06-10 16:03:43 -0400939static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400941 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Al Viroe16404e2009-02-20 05:55:13 +0000944static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400945 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946};
947
Al Viroedcc37a2009-05-03 06:00:05 -0400948int reiserfs_lookup_privroot(struct super_block *s)
949{
950 struct dentry *dentry;
951 int err = 0;
952
953 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500954 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400955 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
956 strlen(PRIVROOT_NAME));
957 if (!IS_ERR(dentry)) {
958 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100959 d_set_d_op(dentry, &xattr_lookup_poison_ops);
David Howells2b0143b2015-03-17 22:25:59 +0000960 if (d_really_is_positive(dentry))
961 d_inode(dentry)->i_flags |= S_PRIVATE;
Al Viroedcc37a2009-05-03 06:00:05 -0400962 } else
963 err = PTR_ERR(dentry);
Al Viro59551022016-01-22 15:40:57 -0500964 inode_unlock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400965
966 return err;
967}
968
Jeff Mahoney098297b2014-04-23 10:00:36 -0400969/*
970 * We need to take a copy of the mount flags since things like
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800971 * SB_RDONLY don't get set until *after* we're called.
Jeff Mahoney098297b2014-04-23 10:00:36 -0400972 * mount_flags != mount_options
973 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700974int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700976 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400977 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400979 err = xattr_mount_check(s);
980 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700981 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800983 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
Al Viro59551022016-01-22 15:40:57 -0500984 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400985 err = create_privroot(REISERFS_SB(s)->priv_root);
Al Viro59551022016-01-22 15:40:57 -0500986 inode_unlock(d_inode(s->s_root));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700987 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400988
David Howells2b0143b2015-03-17 22:25:59 +0000989 if (d_really_is_positive(privroot)) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400990 s->s_xattr = reiserfs_xattr_handlers;
Al Viro59551022016-01-22 15:40:57 -0500991 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400992 if (!REISERFS_SB(s)->xattr_root) {
993 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700994
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400995 dentry = lookup_one_len(XAROOT_NAME, privroot,
996 strlen(XAROOT_NAME));
997 if (!IS_ERR(dentry))
998 REISERFS_SB(s)->xattr_root = dentry;
999 else
1000 err = PTR_ERR(dentry);
1001 }
Al Viro59551022016-01-22 15:40:57 -05001002 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001003 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001004
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001005error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001006 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001007 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1008 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001011 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001012 if (reiserfs_posixacl(s))
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001013 s->s_flags |= SB_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001014 else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001015 s->s_flags &= ~SB_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001017 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}