blob: b5b26d8a192c4ae71d5a958bd4968183f3ca010a [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 Hornb10298d2018-10-30 15:06:38 -0700188 int err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400189 struct dentry *dentries[8];
190};
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400191
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400192static int
Miklos Szerediac7576f2014-10-30 17:37:34 +0100193fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
194 loff_t offset, u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400195{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100196 struct reiserfs_dentry_buf *dbuf =
197 container_of(ctx, struct reiserfs_dentry_buf, ctx);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400198 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700199
Al Viro59551022016-01-22 15:40:57 -0500200 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf->xadir)));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400201
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400202 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
203 return -ENOSPC;
204
Jan Kara35e5cbc2013-03-29 15:39:16 +0100205 if (name[0] == '.' && (namelen < 2 ||
206 (namelen == 2 && name[1] == '.')))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400207 return 0;
208
209 dentry = lookup_one_len(name, dbuf->xadir, namelen);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400210 if (IS_ERR(dentry)) {
Jann Hornb10298d2018-10-30 15:06:38 -0700211 dbuf->err = PTR_ERR(dentry);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400212 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000213 } else if (d_really_is_negative(dentry)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400214 /* A directory entry exists, but no file? */
215 reiserfs_error(dentry->d_sb, "xattr-20003",
Al Viroa4555892014-10-21 20:11:25 -0400216 "Corrupted directory: xattr %pd listed but "
217 "not found for file %pd.\n",
218 dentry, dbuf->xadir);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400219 dput(dentry);
Jann Hornb10298d2018-10-30 15:06:38 -0700220 dbuf->err = -EIO;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400221 return -EIO;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400222 }
223
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400224 dbuf->dentries[dbuf->count++] = dentry;
225 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400226}
227
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400228static void
229cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400230{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400231 int i;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700232
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400233 for (i = 0; i < buf->count; i++)
234 if (buf->dentries[i])
235 dput(buf->dentries[i]);
236}
237
238static int reiserfs_for_each_xattr(struct inode *inode,
239 int (*action)(struct dentry *, void *),
240 void *data)
241{
242 struct dentry *dir;
243 int i, err = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400244 struct reiserfs_dentry_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400245 .ctx.actor = fill_with_dentries,
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400246 };
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400247
248 /* Skip out, an xattr has no xattrs associated with it */
249 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
250 return 0;
251
Jeff Mahoney6c176752009-03-30 14:02:34 -0400252 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400253 if (IS_ERR(dir)) {
254 err = PTR_ERR(dir);
255 goto out;
David Howells2b0143b2015-03-17 22:25:59 +0000256 } else if (d_really_is_negative(dir)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400257 err = 0;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400258 goto out_dir;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400259 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400260
Al Viro59551022016-01-22 15:40:57 -0500261 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
Frederic Weisbecker27026a02009-12-30 05:06:21 +0100262
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400263 buf.xadir = dir;
Al Virocd62cda2013-05-17 22:58:58 -0400264 while (1) {
David Howells2b0143b2015-03-17 22:25:59 +0000265 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Virocd62cda2013-05-17 22:58:58 -0400266 if (err)
267 break;
Jann Hornb10298d2018-10-30 15:06:38 -0700268 if (buf.err) {
269 err = buf.err;
270 break;
271 }
Al Virocd62cda2013-05-17 22:58:58 -0400272 if (!buf.count)
273 break;
274 for (i = 0; !err && i < buf.count && buf.dentries[i]; i++) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400275 struct dentry *dentry = buf.dentries[i];
276
David Howellse36cb0b2015-01-29 12:02:35 +0000277 if (!d_is_dir(dentry))
Al Virocd62cda2013-05-17 22:58:58 -0400278 err = action(dentry, data);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400279
280 dput(dentry);
281 buf.dentries[i] = NULL;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400282 }
Al Virocd62cda2013-05-17 22:58:58 -0400283 if (err)
284 break;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400285 buf.count = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400286 }
Al Viro59551022016-01-22 15:40:57 -0500287 inode_unlock(d_inode(dir));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400288
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400289 cleanup_dentry_buf(&buf);
290
291 if (!err) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400292 /*
293 * We start a transaction here to avoid a ABBA situation
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400294 * between the xattr root's i_mutex and the journal lock.
295 * This doesn't incur much additional overhead since the
296 * new transaction will just nest inside the
Jeff Mahoney098297b2014-04-23 10:00:36 -0400297 * outer transaction.
298 */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400299 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
300 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
301 struct reiserfs_transaction_handle th;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700302
Jeff Mahoney4c051412013-08-08 17:27:19 -0400303 reiserfs_write_lock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400304 err = journal_begin(&th, inode->i_sb, blocks);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400305 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400306 if (!err) {
307 int jerror;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700308
Al Viro59551022016-01-22 15:40:57 -0500309 inode_lock_nested(d_inode(dir->d_parent),
Jeff Mahoney4c051412013-08-08 17:27:19 -0400310 I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400311 err = action(dir, data);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400312 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400313 jerror = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400314 reiserfs_write_unlock(inode->i_sb);
Al Viro59551022016-01-22 15:40:57 -0500315 inode_unlock(d_inode(dir->d_parent));
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400316 err = jerror ?: err;
317 }
318 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400319out_dir:
320 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400321out:
Jeff 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{
Bharath Vedartham672cdd52019-05-14 15:44:29 -0700453 /*
454 * csum_partial() gives different results for little-endian and
455 * big endian hosts. Images created on little-endian hosts and
456 * mounted on big-endian hosts(and vice versa) will see csum mismatches
457 * when trying to fetch xattrs. Treating the hash as __wsum_t would
458 * lower the frequency of mismatch. This is an endianness bug in
459 * reiserfs. The return statement would result in a sparse warning. Do
460 * not fix the sparse warning so as to not hide a reminder of the bug.
461 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700462 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700465int reiserfs_commit_write(struct file *f, struct page *page,
466 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700467
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400468static void update_ctime(struct inode *inode)
469{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700470 struct timespec64 now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700471
Al Viro1d3382cb2010-10-23 15:19:20 -0400472 if (inode_unhashed(inode) || !inode->i_nlink ||
Deepa Dinamani95582b02018-05-08 19:36:02 -0700473 timespec64_equal(&inode->i_ctime, &now))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400474 return;
475
Deepa Dinamani02027d42016-09-14 07:48:05 -0700476 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400477 mark_inode_dirty(inode);
478}
479
480static int lookup_and_delete_xattr(struct inode *inode, const char *name)
481{
482 int err = 0;
483 struct dentry *dentry, *xadir;
484
485 xadir = open_xa_dir(inode, XATTR_REPLACE);
486 if (IS_ERR(xadir))
487 return PTR_ERR(xadir);
488
Al Viro59551022016-01-22 15:40:57 -0500489 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400490 dentry = lookup_one_len(name, xadir, strlen(name));
491 if (IS_ERR(dentry)) {
492 err = PTR_ERR(dentry);
493 goto out_dput;
494 }
495
David Howells2b0143b2015-03-17 22:25:59 +0000496 if (d_really_is_positive(dentry)) {
497 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400498 update_ctime(inode);
499 }
500
501 dput(dentry);
502out_dput:
Al Viro59551022016-01-22 15:40:57 -0500503 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400504 dput(xadir);
505 return err;
506}
507
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/* Generic extended attribute operations that can be used by xa plugins */
510
511/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800512 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 */
514int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400515reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
516 struct inode *inode, const char *name,
517 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700519 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800520 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700521 struct page *page;
522 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700523 size_t file_pos = 0;
524 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400525 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700526 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700528 if (get_inode_sd_version(inode) == STAT_DATA_V1)
529 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100531 if (!buffer) {
532 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100533 return err;
534 }
535
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400536 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400537 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400538 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100540 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100541
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400542 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700543 while (buffer_pos < buffer_size || buffer_pos == 0) {
544 size_t chunk;
545 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300546 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700547
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300548 if (buffer_size - buffer_pos > PAGE_SIZE)
549 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700550 else
551 chunk = buffer_size - buffer_pos;
552
David Howells2b0143b2015-03-17 22:25:59 +0000553 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700554 if (IS_ERR(page)) {
555 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400556 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700557 }
558
559 lock_page(page);
560 data = page_address(page);
561
562 if (file_pos == 0) {
563 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700564
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700565 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300566 if (chunk + skip > PAGE_SIZE)
567 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700568 rxh = (struct reiserfs_xattr_header *)data;
569 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
570 rxh->h_hash = cpu_to_le32(xahash);
571 }
572
Jeff Mahoney4c051412013-08-08 17:27:19 -0400573 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200574 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700575 if (!err) {
576 if (buffer)
577 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800578 err = reiserfs_commit_write(NULL, page, page_offset,
579 page_offset + chunk +
580 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700581 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400582 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700583 unlock_page(page);
584 reiserfs_put_page(page);
585 buffer_pos += chunk;
586 file_pos += chunk;
587 skip = 0;
588 if (err || buffer_size == 0 || !buffer)
589 break;
590 }
591
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400592 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000593 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400594 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700595 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400596 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400597 .ia_valid = ATTR_SIZE | ATTR_CTIME,
598 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100599
Al Viro59551022016-01-22 15:40:57 -0500600 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000601 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100602
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400603 err = reiserfs_setattr(dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500604 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400605 } else
606 update_ctime(inode);
607out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400608 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800609 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400610 return err;
611}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700612
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400613/* We need to start a transaction to maintain lock ordering */
614int reiserfs_xattr_set(struct inode *inode, const char *name,
615 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400616{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400617
618 struct reiserfs_transaction_handle th;
619 int error, error2;
620 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
621
622 if (!(flags & XATTR_REPLACE))
623 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
624
625 reiserfs_write_lock(inode->i_sb);
626 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400627 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400628 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400629 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700630 }
631
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400632 error = reiserfs_xattr_set_handle(&th, inode, name,
633 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700634
Jeff Mahoney4c051412013-08-08 17:27:19 -0400635 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400636 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400637 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400638 if (error == 0)
639 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400640
641 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800645 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 */
647int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400648reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700649 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700651 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800652 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700653 size_t isize;
654 size_t file_pos = 0;
655 size_t buffer_pos = 0;
656 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700657 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700659 if (name == NULL)
660 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Jeff Mahoney098297b2014-04-23 10:00:36 -0400662 /*
663 * We can't have xattrs attached to v1 items since they don't have
664 * generation numbers
665 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700666 if (get_inode_sd_version(inode) == STAT_DATA_V1)
667 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400669 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800670 if (IS_ERR(dentry)) {
671 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700672 goto out;
673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400675 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400676
David Howells2b0143b2015-03-17 22:25:59 +0000677 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700679 /* Just return the size needed */
680 if (buffer == NULL) {
681 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400682 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700685 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
686 err = -ERANGE;
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 while (file_pos < isize) {
691 size_t chunk;
692 char *data;
693 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700694
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300695 if (isize - file_pos > PAGE_SIZE)
696 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700697 else
698 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
David Howells2b0143b2015-03-17 22:25:59 +0000700 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700701 if (IS_ERR(page)) {
702 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400703 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700706 lock_page(page);
707 data = page_address(page);
708 if (file_pos == 0) {
709 struct reiserfs_xattr_header *rxh =
710 (struct reiserfs_xattr_header *)data;
711 skip = file_pos = sizeof(struct reiserfs_xattr_header);
712 chunk -= skip;
713 /* Magic doesn't match up.. */
714 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
715 unlock_page(page);
716 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400717 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700718 "Invalid magic for xattr (%s) "
719 "associated with %k", name,
720 INODE_PKEY(inode));
721 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400722 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700723 }
724 hash = le32_to_cpu(rxh->h_hash);
725 }
726 memcpy(buffer + buffer_pos, data + skip, chunk);
727 unlock_page(page);
728 reiserfs_put_page(page);
729 file_pos += chunk;
730 buffer_pos += chunk;
731 skip = 0;
732 }
733 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700735 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
736 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400737 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700738 "Invalid hash for xattr (%s) associated "
739 "with %k", name, INODE_PKEY(inode));
740 err = -EIO;
741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400743out_unlock:
744 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800745 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400747out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700748 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400751/*
752 * In order to implement different sets of xattr operations for each xattr
753 * prefix with the generic xattr API, a filesystem should create a
754 * null-terminated array of struct xattr_handler (one for each prefix) and
755 * hang a pointer to it off of the s_xattr field of the superblock.
756 *
757 * The generic_fooxattr() functions will use this list to dispatch xattr
758 * operations to the correct xattr_handler.
759 */
760#define for_each_xattr_handler(handlers, handler) \
761 for ((handler) = *(handlers)++; \
762 (handler) != NULL; \
763 (handler) = *(handlers)++)
764
765/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700766static inline const struct xattr_handler *
767find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400768 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700770 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400772 if (!handlers)
773 return NULL;
774
775 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100776 const char *prefix = xattr_prefix(xah);
777 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400778 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400781 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400784struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400785 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400786 size_t size;
787 size_t pos;
788 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000789 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790};
791
Miklos Szerediac7576f2014-10-30 17:37:34 +0100792static int listxattr_filler(struct dir_context *ctx, const char *name,
793 int namelen, loff_t offset, u64 ino,
794 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100796 struct listxattr_buf *b =
797 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400798 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700799
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400800 if (name[0] != '.' ||
801 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700802 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700803
Christoph Hellwig431547b2009-11-13 09:52:56 +0000804 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400805 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100806 if (!handler /* Unsupported xattr name */ ||
807 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400808 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100809 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400810 if (b->buf) {
Jann Horna13f0852018-08-21 21:59:37 -0700811 if (b->pos + size > b->size) {
812 b->pos = -ERANGE;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400813 return -ERANGE;
Jann Horna13f0852018-08-21 21:59:37 -0700814 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100815 memcpy(b->buf + b->pos, name, namelen);
816 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700817 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400818 b->pos += size;
819 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/*
824 * Inode operation listxattr()
825 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400826 * We totally ignore the generic listxattr here because it would be stupid
827 * not to. Since the xattrs are organized in a directory, we can just
828 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700830ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700832 struct dentry *dir;
833 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400834 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400835 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000836 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400837 .buf = buffer,
838 .size = buffer ? size : 0,
839 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
David Howells2b0143b2015-03-17 22:25:59 +0000841 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700842 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Jeff Mahoney677c9b22009-05-05 15:30:17 -0400844 if (!dentry->d_sb->s_xattr ||
David Howells2b0143b2015-03-17 22:25:59 +0000845 get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700846 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
David Howells2b0143b2015-03-17 22:25:59 +0000848 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700849 if (IS_ERR(dir)) {
850 err = PTR_ERR(dir);
851 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400852 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700853 goto out;
854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Al Viro59551022016-01-22 15:40:57 -0500856 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000857 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500858 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400860 if (!err)
861 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Jeff Mahoney3227e142008-02-15 14:37:22 -0800863 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400864out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700865 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400868static int create_privroot(struct dentry *dentry)
869{
870 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000871 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700872
Al Viro59551022016-01-22 15:40:57 -0500873 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400874
Jeff Mahoney6c176752009-03-30 14:02:34 -0400875 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000876 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400877 reiserfs_warning(dentry->d_sb, "jdm-20006",
878 "xattrs/ACLs enabled and couldn't "
879 "find/create .reiserfs_priv. "
880 "Failing mount.");
881 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
David Howells2b0143b2015-03-17 22:25:59 +0000884 d_inode(dentry)->i_flags |= S_PRIVATE;
Al Viroedcc37a2009-05-03 06:00:05 -0400885 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
886 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Al Viroedcc37a2009-05-03 06:00:05 -0400888 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400889}
890
Jeff Mahoney12abb352009-05-17 01:02:01 -0400891#else
892int __init reiserfs_xattr_register_handlers(void) { return 0; }
893void reiserfs_xattr_unregister_handlers(void) {}
894static int create_privroot(struct dentry *dentry) { return 0; }
895#endif
896
897/* Actual operations that are exported to VFS-land */
Sachin Kamatda02eb72012-08-23 17:28:57 +0200898static const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400899#ifdef CONFIG_REISERFS_FS_XATTR
900 &reiserfs_xattr_user_handler,
901 &reiserfs_xattr_trusted_handler,
902#endif
903#ifdef CONFIG_REISERFS_FS_SECURITY
904 &reiserfs_xattr_security_handler,
905#endif
906#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800907 &posix_acl_access_xattr_handler,
908 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400909#endif
910 NULL
911};
912
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400913static int xattr_mount_check(struct super_block *s)
914{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400915 /*
916 * We need generation numbers to ensure that the oid mapping is correct
917 * v3.5 filesystems don't have them.
918 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400919 if (old_format_only(s)) {
920 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400921 /*
922 * Old format filesystem, but optional xattrs have
923 * been enabled. Error out.
924 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400925 reiserfs_warning(s, "jdm-2005",
926 "xattrs/ACLs not supported "
927 "on pre-v3.6 format filesystems. "
928 "Failing mount.");
929 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700930 }
931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Al Viro10556cb22011-06-20 19:28:19 -0400936int reiserfs_permission(struct inode *inode, int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400937{
938 /*
939 * We don't do permission checks on the internal objects.
940 * Permissions are determined by the "owning" object.
941 */
942 if (IS_PRIVATE(inode))
943 return 0;
944
Al Viro2830ba72011-06-20 19:16:29 -0400945 return generic_permission(inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400946}
947
Al Viro0b728e12012-06-10 16:03:43 -0400948static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400950 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Al Viroe16404e2009-02-20 05:55:13 +0000953static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400954 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955};
956
Al Viroedcc37a2009-05-03 06:00:05 -0400957int reiserfs_lookup_privroot(struct super_block *s)
958{
959 struct dentry *dentry;
960 int err = 0;
961
962 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500963 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400964 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
965 strlen(PRIVROOT_NAME));
966 if (!IS_ERR(dentry)) {
967 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100968 d_set_d_op(dentry, &xattr_lookup_poison_ops);
David Howells2b0143b2015-03-17 22:25:59 +0000969 if (d_really_is_positive(dentry))
970 d_inode(dentry)->i_flags |= S_PRIVATE;
Al Viroedcc37a2009-05-03 06:00:05 -0400971 } else
972 err = PTR_ERR(dentry);
Al Viro59551022016-01-22 15:40:57 -0500973 inode_unlock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400974
975 return err;
976}
977
Jeff Mahoney098297b2014-04-23 10:00:36 -0400978/*
979 * We need to take a copy of the mount flags since things like
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800980 * SB_RDONLY don't get set until *after* we're called.
Jeff Mahoney098297b2014-04-23 10:00:36 -0400981 * mount_flags != mount_options
982 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700983int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700985 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400986 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400988 err = xattr_mount_check(s);
989 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700990 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800992 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
Al Viro59551022016-01-22 15:40:57 -0500993 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400994 err = create_privroot(REISERFS_SB(s)->priv_root);
Al Viro59551022016-01-22 15:40:57 -0500995 inode_unlock(d_inode(s->s_root));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700996 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400997
David Howells2b0143b2015-03-17 22:25:59 +0000998 if (d_really_is_positive(privroot)) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400999 s->s_xattr = reiserfs_xattr_handlers;
Al Viro59551022016-01-22 15:40:57 -05001000 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001001 if (!REISERFS_SB(s)->xattr_root) {
1002 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -07001003
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001004 dentry = lookup_one_len(XAROOT_NAME, privroot,
1005 strlen(XAROOT_NAME));
1006 if (!IS_ERR(dentry))
1007 REISERFS_SB(s)->xattr_root = dentry;
1008 else
1009 err = PTR_ERR(dentry);
1010 }
Al Viro59551022016-01-22 15:40:57 -05001011 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001012 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001013
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001014error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001015 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001016 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1017 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001020 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001021 if (reiserfs_posixacl(s))
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001022 s->s_flags |= SB_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001023 else
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001024 s->s_flags &= ~SB_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001026 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}