blob: 07900105523f0208f63100e4fb9d66d918f1adfb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/reiserfs/xattr.c
3 *
4 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
5 *
6 */
7
8/*
9 * In order to implement EA/ACLs in a clean, backwards compatible manner,
10 * they are implemented as files in a "private" directory.
11 * Each EA is in it's own file, with the directory layout like so (/ is assumed
12 * to be relative to fs root). Inside the /.reiserfs_priv/xattrs directory,
13 * directories named using the capital-hex form of the objectid and
14 * generation number are used. Inside each directory are individual files
15 * named with the name of the extended attribute.
16 *
17 * So, for objectid 12648430, we could have:
18 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_access
19 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_default
20 * /.reiserfs_priv/xattrs/C0FFEE.0/user.Content-Type
21 * .. or similar.
22 *
23 * The file contents are the text of the EA. The size is known based on the
24 * stat data describing the file.
25 *
26 * In the case of system.posix_acl_access and system.posix_acl_default, since
27 * these are special cases for filesystem ACLs, they are interpreted by the
28 * kernel, in addition, they are negatively and positively cached and attached
29 * to the inode so that unnecessary lookups are avoided.
Jeff Mahoneyd9845612009-03-30 14:02:35 -040030 *
31 * Locking works like so:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -040032 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
33 * The xattrs themselves are protected by the xattr_sem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
Al Virof466c6f2012-03-17 01:16:43 -040036#include "reiserfs.h"
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080037#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/dcache.h>
39#include <linux/namei.h>
40#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/fs.h>
43#include <linux/file.h>
44#include <linux/pagemap.h>
45#include <linux/xattr.h>
Al Viroc45ac882012-03-17 00:59:06 -040046#include "xattr.h"
Al Viroa3063ab2012-03-17 01:03:10 -040047#include "acl.h"
Fabian Frederick17093992014-08-08 14:21:12 -070048#include <linux/uaccess.h>
Al Viro3277c392006-11-14 21:13:53 -080049#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/stat.h>
Jeff Mahoney6c176752009-03-30 14:02:34 -040051#include <linux/quotaops.h>
Christoph Hellwig431547b2009-11-13 09:52:56 +000052#include <linux/security.h>
Christoph Hellwig47f70d02013-12-20 05:16:49 -080053#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define PRIVROOT_NAME ".reiserfs_priv"
56#define XAROOT_NAME "xattrs"
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jeff Mahoney098297b2014-04-23 10:00:36 -040059/*
60 * Helpers for inode ops. We do this so that we don't have all the VFS
Jeff Mahoney6c176752009-03-30 14:02:34 -040061 * overhead and also for proper i_mutex annotation.
Jeff Mahoney098297b2014-04-23 10:00:36 -040062 * dir->i_mutex must be held for all of them.
63 */
Jeff Mahoney3a355cc2009-03-30 16:49:58 -040064#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney6c176752009-03-30 14:02:34 -040065static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Al Viro59551022016-01-22 15:40:57 -050067 BUG_ON(!inode_is_locked(dir));
Al Viroebfc3b42012-06-10 18:05:36 -040068 return dir->i_op->create(dir, dentry, mode, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
Jeff Mahoney3a355cc2009-03-30 16:49:58 -040070#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Al Viro18bb1db2011-07-26 01:41:39 -040072static int xattr_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Jeff Mahoney6c176752009-03-30 14:02:34 -040073{
Al Viro59551022016-01-22 15:40:57 -050074 BUG_ON(!inode_is_locked(dir));
Jeff Mahoney6c176752009-03-30 14:02:34 -040075 return dir->i_op->mkdir(dir, dentry, mode);
76}
77
Jeff Mahoney098297b2014-04-23 10:00:36 -040078/*
79 * We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
Jeff Mahoney6c176752009-03-30 14:02:34 -040080 * mutation ops aren't called during rename or splace, which are the
81 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
Jeff Mahoney098297b2014-04-23 10:00:36 -040082 * better than allocating another subclass just for this code.
83 */
Jeff Mahoney6c176752009-03-30 14:02:34 -040084static int xattr_unlink(struct inode *dir, struct dentry *dentry)
85{
86 int error;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -070087
Al Viro59551022016-01-22 15:40:57 -050088 BUG_ON(!inode_is_locked(dir));
Jeff Mahoney6c176752009-03-30 14:02:34 -040089
Al Viro59551022016-01-22 15:40:57 -050090 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
Jeff Mahoney6c176752009-03-30 14:02:34 -040091 error = dir->i_op->unlink(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -050092 inode_unlock(d_inode(dentry));
Jeff Mahoney6c176752009-03-30 14:02:34 -040093
94 if (!error)
95 d_delete(dentry);
96 return error;
97}
98
99static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
100{
101 int error;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700102
Al Viro59551022016-01-22 15:40:57 -0500103 BUG_ON(!inode_is_locked(dir));
Jeff Mahoney6c176752009-03-30 14:02:34 -0400104
Al Viro59551022016-01-22 15:40:57 -0500105 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400106 error = dir->i_op->rmdir(dir, dentry);
107 if (!error)
David Howells2b0143b2015-03-17 22:25:59 +0000108 d_inode(dentry)->i_flags |= S_DEAD;
Al Viro59551022016-01-22 15:40:57 -0500109 inode_unlock(d_inode(dentry));
Jeff Mahoney6c176752009-03-30 14:02:34 -0400110 if (!error)
111 d_delete(dentry);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400112
113 return error;
114}
115
Jeff Mahoney6c176752009-03-30 14:02:34 -0400116#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
117
Jeff Mahoney6c176752009-03-30 14:02:34 -0400118static struct dentry *open_xa_root(struct super_block *sb, int flags)
119{
120 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400121 struct dentry *xaroot;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700122
David Howells2b0143b2015-03-17 22:25:59 +0000123 if (d_really_is_negative(privroot))
Jeff Mahoney0243d182019-10-24 10:31:27 -0400124 return ERR_PTR(-EOPNOTSUPP);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400125
Al Viro59551022016-01-22 15:40:57 -0500126 inode_lock_nested(d_inode(privroot), I_MUTEX_XATTR);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400127
128 xaroot = dget(REISERFS_SB(sb)->xattr_root);
Jeff Mahoneyceb5edc2009-05-17 01:02:02 -0400129 if (!xaroot)
Jeff Mahoney0243d182019-10-24 10:31:27 -0400130 xaroot = ERR_PTR(-EOPNOTSUPP);
David Howells2b0143b2015-03-17 22:25:59 +0000131 else if (d_really_is_negative(xaroot)) {
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400132 int err = -ENODATA;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700133
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400134 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000135 err = xattr_mkdir(d_inode(privroot), xaroot, 0700);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400136 if (err) {
137 dput(xaroot);
138 xaroot = ERR_PTR(err);
139 }
140 }
141
Al Viro59551022016-01-22 15:40:57 -0500142 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400143 return xaroot;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400144}
145
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700146static struct dentry *open_xa_dir(const struct inode *inode, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700148 struct dentry *xaroot, *xadir;
149 char namebuf[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Jeff Mahoney6c176752009-03-30 14:02:34 -0400151 xaroot = open_xa_root(inode->i_sb, flags);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700152 if (IS_ERR(xaroot))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700153 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 snprintf(namebuf, sizeof(namebuf), "%X.%X",
156 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
157 inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Al Viro59551022016-01-22 15:40:57 -0500159 inode_lock_nested(d_inode(xaroot), I_MUTEX_XATTR);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400160
161 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
David Howells2b0143b2015-03-17 22:25:59 +0000162 if (!IS_ERR(xadir) && d_really_is_negative(xadir)) {
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400163 int err = -ENODATA;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700164
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400165 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000166 err = xattr_mkdir(d_inode(xaroot), xadir, 0700);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400167 if (err) {
168 dput(xadir);
169 xadir = ERR_PTR(err);
170 }
171 }
172
Al Viro59551022016-01-22 15:40:57 -0500173 inode_unlock(d_inode(xaroot));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700174 dput(xaroot);
175 return xadir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Jeff Mahoney098297b2014-04-23 10:00:36 -0400178/*
179 * The following are side effects of other operations that aren't explicitly
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400180 * modifying extended attributes. This includes operations such as permissions
Jeff Mahoney098297b2014-04-23 10:00:36 -0400181 * or ownership changes, object deletions, etc.
182 */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400183struct reiserfs_dentry_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400184 struct dir_context ctx;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400185 struct dentry *xadir;
186 int count;
Jann Horn6c35bb52018-10-30 15:06:38 -0700187 int err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400188 struct dentry *dentries[8];
189};
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400190
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400191static int
Miklos Szerediac7576f2014-10-30 17:37:34 +0100192fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
193 loff_t offset, u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400194{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100195 struct reiserfs_dentry_buf *dbuf =
196 container_of(ctx, struct reiserfs_dentry_buf, ctx);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400197 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700198
Al Viro59551022016-01-22 15:40:57 -0500199 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf->xadir)));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400200
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400201 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
202 return -ENOSPC;
203
Jan Kara35e5cbc2013-03-29 15:39:16 +0100204 if (name[0] == '.' && (namelen < 2 ||
205 (namelen == 2 && name[1] == '.')))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400206 return 0;
207
208 dentry = lookup_one_len(name, dbuf->xadir, namelen);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400209 if (IS_ERR(dentry)) {
Jann Horn6c35bb52018-10-30 15:06:38 -0700210 dbuf->err = PTR_ERR(dentry);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400211 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000212 } else if (d_really_is_negative(dentry)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400213 /* A directory entry exists, but no file? */
214 reiserfs_error(dentry->d_sb, "xattr-20003",
Al Viroa4555892014-10-21 20:11:25 -0400215 "Corrupted directory: xattr %pd listed but "
216 "not found for file %pd.\n",
217 dentry, dbuf->xadir);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400218 dput(dentry);
Jann Horn6c35bb52018-10-30 15:06:38 -0700219 dbuf->err = -EIO;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400220 return -EIO;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400221 }
222
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400223 dbuf->dentries[dbuf->count++] = dentry;
224 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400225}
226
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400227static void
228cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400229{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400230 int i;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700231
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400232 for (i = 0; i < buf->count; i++)
233 if (buf->dentries[i])
234 dput(buf->dentries[i]);
235}
236
237static int reiserfs_for_each_xattr(struct inode *inode,
238 int (*action)(struct dentry *, void *),
239 void *data)
240{
241 struct dentry *dir;
242 int i, err = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400243 struct reiserfs_dentry_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400244 .ctx.actor = fill_with_dentries,
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400245 };
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400246
247 /* Skip out, an xattr has no xattrs associated with it */
248 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
249 return 0;
250
Jeff Mahoney6c176752009-03-30 14:02:34 -0400251 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400252 if (IS_ERR(dir)) {
253 err = PTR_ERR(dir);
254 goto out;
David Howells2b0143b2015-03-17 22:25:59 +0000255 } else if (d_really_is_negative(dir)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400256 err = 0;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400257 goto out_dir;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400258 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400259
Al Viro59551022016-01-22 15:40:57 -0500260 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
Frederic Weisbecker27026a02009-12-30 05:06:21 +0100261
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400262 buf.xadir = dir;
Al Virocd62cda2013-05-17 22:58:58 -0400263 while (1) {
David Howells2b0143b2015-03-17 22:25:59 +0000264 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Virocd62cda2013-05-17 22:58:58 -0400265 if (err)
266 break;
Jann Horn6c35bb52018-10-30 15:06:38 -0700267 if (buf.err) {
268 err = buf.err;
269 break;
270 }
Al Virocd62cda2013-05-17 22:58:58 -0400271 if (!buf.count)
272 break;
273 for (i = 0; !err && i < buf.count && buf.dentries[i]; i++) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400274 struct dentry *dentry = buf.dentries[i];
275
David Howellse36cb0b2015-01-29 12:02:35 +0000276 if (!d_is_dir(dentry))
Al Virocd62cda2013-05-17 22:58:58 -0400277 err = action(dentry, data);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400278
279 dput(dentry);
280 buf.dentries[i] = NULL;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400281 }
Al Virocd62cda2013-05-17 22:58:58 -0400282 if (err)
283 break;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400284 buf.count = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400285 }
Al Viro59551022016-01-22 15:40:57 -0500286 inode_unlock(d_inode(dir));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400287
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400288 cleanup_dentry_buf(&buf);
289
290 if (!err) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400291 /*
292 * We start a transaction here to avoid a ABBA situation
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400293 * between the xattr root's i_mutex and the journal lock.
294 * This doesn't incur much additional overhead since the
295 * new transaction will just nest inside the
Jeff Mahoney098297b2014-04-23 10:00:36 -0400296 * outer transaction.
297 */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400298 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
299 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
300 struct reiserfs_transaction_handle th;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700301
Jeff Mahoney4c051412013-08-08 17:27:19 -0400302 reiserfs_write_lock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400303 err = journal_begin(&th, inode->i_sb, blocks);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400304 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400305 if (!err) {
306 int jerror;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700307
Al Viro59551022016-01-22 15:40:57 -0500308 inode_lock_nested(d_inode(dir->d_parent),
Jeff Mahoney4c051412013-08-08 17:27:19 -0400309 I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400310 err = action(dir, data);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400311 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400312 jerror = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400313 reiserfs_write_unlock(inode->i_sb);
Al Viro59551022016-01-22 15:40:57 -0500314 inode_unlock(d_inode(dir->d_parent));
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400315 err = jerror ?: err;
316 }
317 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400318out_dir:
319 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400320out:
Jeff Mahoney5774dd52020-01-15 13:00:59 -0500321 /*
322 * -ENODATA: this object doesn't have any xattrs
323 * -EOPNOTSUPP: this file system doesn't have xattrs enabled on disk.
324 * Neither are errors
325 */
326 if (err == -ENODATA || err == -EOPNOTSUPP)
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400327 err = 0;
328 return err;
329}
330
331static int delete_one_xattr(struct dentry *dentry, void *data)
332{
David Howells2b0143b2015-03-17 22:25:59 +0000333 struct inode *dir = d_inode(dentry->d_parent);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400334
335 /* This is the xattr dir, handle specially. */
David Howellse36cb0b2015-01-29 12:02:35 +0000336 if (d_is_dir(dentry))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400337 return xattr_rmdir(dir, dentry);
338
339 return xattr_unlink(dir, dentry);
340}
341
342static int chown_one_xattr(struct dentry *dentry, void *data)
343{
344 struct iattr *attrs = data;
Jeff Mahoney4a857012013-05-31 15:54:17 -0400345 int ia_valid = attrs->ia_valid;
346 int err;
347
348 /*
349 * We only want the ownership bits. Otherwise, we'll do
350 * things like change a directory to a regular file if
351 * ATTR_MODE is set.
352 */
353 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
354 err = reiserfs_setattr(dentry, attrs);
355 attrs->ia_valid = ia_valid;
356
357 return err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400358}
359
360/* No i_mutex, but the inode is unconnected. */
361int reiserfs_delete_xattrs(struct inode *inode)
362{
363 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700364
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400365 if (err)
366 reiserfs_warning(inode->i_sb, "jdm-20004",
367 "Couldn't delete all xattrs (%d)\n", err);
368 return err;
369}
370
371/* inode->i_mutex: down */
372int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
373{
374 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700375
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400376 if (err)
377 reiserfs_warning(inode->i_sb, "jdm-20007",
378 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400379 return err;
380}
381
382#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney098297b2014-04-23 10:00:36 -0400383/*
384 * Returns a dentry corresponding to a specific extended attribute file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * for the inode. If flags allow, the file is created. Otherwise, a
Jeff Mahoney098297b2014-04-23 10:00:36 -0400386 * valid or negative dentry, or an error is returned.
387 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400388static struct dentry *xattr_lookup(struct inode *inode, const char *name,
389 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700391 struct dentry *xadir, *xafile;
392 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700394 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400395 if (IS_ERR(xadir))
David Howellse231c2e2008-02-07 00:15:26 -0800396 return ERR_CAST(xadir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Al Viro59551022016-01-22 15:40:57 -0500398 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700399 xafile = lookup_one_len(name, xadir, strlen(name));
400 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400401 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700402 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
David Howells2b0143b2015-03-17 22:25:59 +0000405 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
Jeff Mahoney6c176752009-03-30 14:02:34 -0400406 err = -EEXIST;
407
David Howells2b0143b2015-03-17 22:25:59 +0000408 if (d_really_is_negative(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400409 err = -ENODATA;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400410 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000411 err = xattr_create(d_inode(xadir), xafile,
Jeff Mahoney6c176752009-03-30 14:02:34 -0400412 0700|S_IFREG);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Jeff Mahoney6c176752009-03-30 14:02:34 -0400415 if (err)
416 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400417out:
Al Viro59551022016-01-22 15:40:57 -0500418 inode_unlock(d_inode(xadir));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700419 dput(xadir);
420 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400421 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800422 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700426static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700428 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300429 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400432static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700434 struct address_space *mapping = dir->i_mapping;
435 struct page *page;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400436 /*
437 * We can deadlock if we try to free dentries,
438 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
439 */
Al Viroc4cdd032005-10-21 03:22:39 -0400440 mapping_set_gfp_mask(mapping, GFP_NOFS);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300441 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700442 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700443 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700444 if (PageError(page))
445 goto fail;
446 }
447 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400449fail:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700450 reiserfs_put_page(page);
451 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700454static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700456 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700459int reiserfs_commit_write(struct file *f, struct page *page,
460 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700461
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400462static void update_ctime(struct inode *inode)
463{
Deepa Dinamani02027d42016-09-14 07:48:05 -0700464 struct timespec now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700465
Al Viro1d3382cb2010-10-23 15:19:20 -0400466 if (inode_unhashed(inode) || !inode->i_nlink ||
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400467 timespec_equal(&inode->i_ctime, &now))
468 return;
469
Deepa Dinamani02027d42016-09-14 07:48:05 -0700470 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400471 mark_inode_dirty(inode);
472}
473
474static int lookup_and_delete_xattr(struct inode *inode, const char *name)
475{
476 int err = 0;
477 struct dentry *dentry, *xadir;
478
479 xadir = open_xa_dir(inode, XATTR_REPLACE);
480 if (IS_ERR(xadir))
481 return PTR_ERR(xadir);
482
Al Viro59551022016-01-22 15:40:57 -0500483 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400484 dentry = lookup_one_len(name, xadir, strlen(name));
485 if (IS_ERR(dentry)) {
486 err = PTR_ERR(dentry);
487 goto out_dput;
488 }
489
David Howells2b0143b2015-03-17 22:25:59 +0000490 if (d_really_is_positive(dentry)) {
491 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400492 update_ctime(inode);
493 }
494
495 dput(dentry);
496out_dput:
Al Viro59551022016-01-22 15:40:57 -0500497 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400498 dput(xadir);
499 return err;
500}
501
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/* Generic extended attribute operations that can be used by xa plugins */
504
505/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800506 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 */
508int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400509reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
510 struct inode *inode, const char *name,
511 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700513 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800514 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700515 struct page *page;
516 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700517 size_t file_pos = 0;
518 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400519 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700520 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700522 if (get_inode_sd_version(inode) == STAT_DATA_V1)
523 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100525 if (!buffer) {
526 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100527 return err;
528 }
529
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400530 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400531 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400532 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100534 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100535
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400536 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700537 while (buffer_pos < buffer_size || buffer_pos == 0) {
538 size_t chunk;
539 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300540 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700541
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300542 if (buffer_size - buffer_pos > PAGE_SIZE)
543 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700544 else
545 chunk = buffer_size - buffer_pos;
546
David Howells2b0143b2015-03-17 22:25:59 +0000547 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700548 if (IS_ERR(page)) {
549 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400550 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700551 }
552
553 lock_page(page);
554 data = page_address(page);
555
556 if (file_pos == 0) {
557 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700558
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700559 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300560 if (chunk + skip > PAGE_SIZE)
561 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700562 rxh = (struct reiserfs_xattr_header *)data;
563 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
564 rxh->h_hash = cpu_to_le32(xahash);
565 }
566
Jeff Mahoney4c051412013-08-08 17:27:19 -0400567 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200568 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700569 if (!err) {
570 if (buffer)
571 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800572 err = reiserfs_commit_write(NULL, page, page_offset,
573 page_offset + chunk +
574 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700575 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400576 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700577 unlock_page(page);
578 reiserfs_put_page(page);
579 buffer_pos += chunk;
580 file_pos += chunk;
581 skip = 0;
582 if (err || buffer_size == 0 || !buffer)
583 break;
584 }
585
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400586 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000587 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400588 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700589 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400590 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400591 .ia_valid = ATTR_SIZE | ATTR_CTIME,
592 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100593
Al Viro59551022016-01-22 15:40:57 -0500594 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000595 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100596
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400597 err = reiserfs_setattr(dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500598 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400599 } else
600 update_ctime(inode);
601out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400602 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800603 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400604 return err;
605}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700606
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400607/* We need to start a transaction to maintain lock ordering */
608int reiserfs_xattr_set(struct inode *inode, const char *name,
609 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400610{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400611
612 struct reiserfs_transaction_handle th;
613 int error, error2;
614 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
615
Jeff Mahoney0243d182019-10-24 10:31:27 -0400616 /* Check before we start a transaction and then do nothing. */
617 if (!d_really_is_positive(REISERFS_SB(inode->i_sb)->priv_root))
618 return -EOPNOTSUPP;
619
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400620 if (!(flags & XATTR_REPLACE))
621 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
622
623 reiserfs_write_lock(inode->i_sb);
624 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400625 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400626 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400627 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700628 }
629
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400630 error = reiserfs_xattr_set_handle(&th, inode, name,
631 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700632
Jeff Mahoney4c051412013-08-08 17:27:19 -0400633 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400634 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400635 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400636 if (error == 0)
637 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400638
639 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800643 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 */
645int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400646reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700647 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700649 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800650 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700651 size_t isize;
652 size_t file_pos = 0;
653 size_t buffer_pos = 0;
654 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700655 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700657 if (name == NULL)
658 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Jeff Mahoney098297b2014-04-23 10:00:36 -0400660 /*
661 * We can't have xattrs attached to v1 items since they don't have
662 * generation numbers
663 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700664 if (get_inode_sd_version(inode) == STAT_DATA_V1)
665 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400667 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800668 if (IS_ERR(dentry)) {
669 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700670 goto out;
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400673 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400674
David Howells2b0143b2015-03-17 22:25:59 +0000675 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700677 /* Just return the size needed */
678 if (buffer == NULL) {
679 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400680 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700683 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
684 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400685 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700688 while (file_pos < isize) {
689 size_t chunk;
690 char *data;
691 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700692
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300693 if (isize - file_pos > PAGE_SIZE)
694 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700695 else
696 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
David Howells2b0143b2015-03-17 22:25:59 +0000698 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700699 if (IS_ERR(page)) {
700 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400701 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700704 lock_page(page);
705 data = page_address(page);
706 if (file_pos == 0) {
707 struct reiserfs_xattr_header *rxh =
708 (struct reiserfs_xattr_header *)data;
709 skip = file_pos = sizeof(struct reiserfs_xattr_header);
710 chunk -= skip;
711 /* Magic doesn't match up.. */
712 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
713 unlock_page(page);
714 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400715 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700716 "Invalid magic for xattr (%s) "
717 "associated with %k", name,
718 INODE_PKEY(inode));
719 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400720 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700721 }
722 hash = le32_to_cpu(rxh->h_hash);
723 }
724 memcpy(buffer + buffer_pos, data + skip, chunk);
725 unlock_page(page);
726 reiserfs_put_page(page);
727 file_pos += chunk;
728 buffer_pos += chunk;
729 skip = 0;
730 }
731 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700733 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
734 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400735 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700736 "Invalid hash for xattr (%s) associated "
737 "with %k", name, INODE_PKEY(inode));
738 err = -EIO;
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400741out_unlock:
742 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800743 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400745out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700746 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400749/*
750 * In order to implement different sets of xattr operations for each xattr
751 * prefix with the generic xattr API, a filesystem should create a
752 * null-terminated array of struct xattr_handler (one for each prefix) and
753 * hang a pointer to it off of the s_xattr field of the superblock.
754 *
755 * The generic_fooxattr() functions will use this list to dispatch xattr
756 * operations to the correct xattr_handler.
757 */
758#define for_each_xattr_handler(handlers, handler) \
759 for ((handler) = *(handlers)++; \
760 (handler) != NULL; \
761 (handler) = *(handlers)++)
762
763/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700764static inline const struct xattr_handler *
765find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400766 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700768 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400770 if (!handlers)
771 return NULL;
772
773 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100774 const char *prefix = xattr_prefix(xah);
775 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400776 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400779 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400782struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400783 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400784 size_t size;
785 size_t pos;
786 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000787 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788};
789
Miklos Szerediac7576f2014-10-30 17:37:34 +0100790static int listxattr_filler(struct dir_context *ctx, const char *name,
791 int namelen, loff_t offset, u64 ino,
792 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100794 struct listxattr_buf *b =
795 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400796 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700797
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400798 if (name[0] != '.' ||
799 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700800 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700801
Christoph Hellwig431547b2009-11-13 09:52:56 +0000802 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400803 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100804 if (!handler /* Unsupported xattr name */ ||
805 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400806 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100807 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400808 if (b->buf) {
Jann Horn696d9062018-08-21 21:59:37 -0700809 if (b->pos + size > b->size) {
810 b->pos = -ERANGE;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400811 return -ERANGE;
Jann Horn696d9062018-08-21 21:59:37 -0700812 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100813 memcpy(b->buf + b->pos, name, namelen);
814 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700815 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400816 b->pos += size;
817 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700818 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/*
822 * Inode operation listxattr()
823 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400824 * We totally ignore the generic listxattr here because it would be stupid
825 * not to. Since the xattrs are organized in a directory, we can just
826 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700828ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700830 struct dentry *dir;
831 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400832 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400833 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000834 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400835 .buf = buffer,
836 .size = buffer ? size : 0,
837 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
David Howells2b0143b2015-03-17 22:25:59 +0000839 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700840 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Jeff Mahoney0243d182019-10-24 10:31:27 -0400842 if (get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700843 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
David Howells2b0143b2015-03-17 22:25:59 +0000845 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700846 if (IS_ERR(dir)) {
847 err = PTR_ERR(dir);
848 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400849 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700850 goto out;
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Al Viro59551022016-01-22 15:40:57 -0500853 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000854 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500855 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400857 if (!err)
858 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Jeff Mahoney3227e142008-02-15 14:37:22 -0800860 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400861out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700862 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400865static int create_privroot(struct dentry *dentry)
866{
867 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000868 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700869
Al Viro59551022016-01-22 15:40:57 -0500870 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400871
Jeff Mahoney6c176752009-03-30 14:02:34 -0400872 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000873 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400874 reiserfs_warning(dentry->d_sb, "jdm-20006",
875 "xattrs/ACLs enabled and couldn't "
876 "find/create .reiserfs_priv. "
877 "Failing mount.");
878 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
David Howells2b0143b2015-03-17 22:25:59 +0000881 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney0243d182019-10-24 10:31:27 -0400882 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
Al Viroedcc37a2009-05-03 06:00:05 -0400883 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
884 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Al Viroedcc37a2009-05-03 06:00:05 -0400886 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400887}
888
Jeff Mahoney12abb352009-05-17 01:02:01 -0400889#else
890int __init reiserfs_xattr_register_handlers(void) { return 0; }
891void reiserfs_xattr_unregister_handlers(void) {}
892static int create_privroot(struct dentry *dentry) { return 0; }
893#endif
894
895/* Actual operations that are exported to VFS-land */
Jeff Mahoney0243d182019-10-24 10:31:27 -0400896const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400897#ifdef CONFIG_REISERFS_FS_XATTR
898 &reiserfs_xattr_user_handler,
899 &reiserfs_xattr_trusted_handler,
900#endif
901#ifdef CONFIG_REISERFS_FS_SECURITY
902 &reiserfs_xattr_security_handler,
903#endif
904#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800905 &posix_acl_access_xattr_handler,
906 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400907#endif
908 NULL
909};
910
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400911static int xattr_mount_check(struct super_block *s)
912{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400913 /*
914 * We need generation numbers to ensure that the oid mapping is correct
915 * v3.5 filesystems don't have them.
916 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400917 if (old_format_only(s)) {
918 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400919 /*
920 * Old format filesystem, but optional xattrs have
921 * been enabled. Error out.
922 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400923 reiserfs_warning(s, "jdm-2005",
924 "xattrs/ACLs not supported "
925 "on pre-v3.6 format filesystems. "
926 "Failing mount.");
927 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700928 }
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Al Viro10556cb2011-06-20 19:28:19 -0400934int reiserfs_permission(struct inode *inode, int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400935{
936 /*
937 * We don't do permission checks on the internal objects.
938 * Permissions are determined by the "owning" object.
939 */
940 if (IS_PRIVATE(inode))
941 return 0;
942
Al Viro2830ba72011-06-20 19:16:29 -0400943 return generic_permission(inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400944}
945
Al Viro0b728e12012-06-10 16:03:43 -0400946static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400948 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Al Viroe16404e2009-02-20 05:55:13 +0000951static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400952 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953};
954
Al Viroedcc37a2009-05-03 06:00:05 -0400955int reiserfs_lookup_privroot(struct super_block *s)
956{
957 struct dentry *dentry;
958 int err = 0;
959
960 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500961 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400962 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
963 strlen(PRIVROOT_NAME));
964 if (!IS_ERR(dentry)) {
965 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100966 d_set_d_op(dentry, &xattr_lookup_poison_ops);
Jeff Mahoney0243d182019-10-24 10:31:27 -0400967 if (d_really_is_positive(dentry)) {
David Howells2b0143b2015-03-17 22:25:59 +0000968 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney0243d182019-10-24 10:31:27 -0400969 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
970 }
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 Torvalds1da177e2005-04-16 15:20:36 -0700980 * MS_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
David Howells2b0143b2015-03-17 22:25:59 +0000992 if (d_really_is_negative(privroot) && !(mount_flags & MS_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)) {
Al Viro59551022016-01-22 15:40:57 -0500999 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001000 if (!REISERFS_SB(s)->xattr_root) {
1001 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -07001002
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001003 dentry = lookup_one_len(XAROOT_NAME, privroot,
1004 strlen(XAROOT_NAME));
1005 if (!IS_ERR(dentry))
1006 REISERFS_SB(s)->xattr_root = dentry;
1007 else
1008 err = PTR_ERR(dentry);
1009 }
Al Viro59551022016-01-22 15:40:57 -05001010 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001011 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001012
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001013error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001014 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001015 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1016 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001019 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001020 if (reiserfs_posixacl(s))
1021 s->s_flags |= MS_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001022 else
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001023 s->s_flags &= ~MS_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001025 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}