blob: dbc2ada9884f1bdda591dd64d6a8e3e9cc3a1781 [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 Mahoneya41f1a42009-03-30 14:02:40 -0400321 /* -ENODATA isn't an error */
322 if (err == -ENODATA)
323 err = 0;
324 return err;
325}
326
327static int delete_one_xattr(struct dentry *dentry, void *data)
328{
David Howells2b0143b2015-03-17 22:25:59 +0000329 struct inode *dir = d_inode(dentry->d_parent);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400330
331 /* This is the xattr dir, handle specially. */
David Howellse36cb0b2015-01-29 12:02:35 +0000332 if (d_is_dir(dentry))
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400333 return xattr_rmdir(dir, dentry);
334
335 return xattr_unlink(dir, dentry);
336}
337
338static int chown_one_xattr(struct dentry *dentry, void *data)
339{
340 struct iattr *attrs = data;
Jeff Mahoney4a857012013-05-31 15:54:17 -0400341 int ia_valid = attrs->ia_valid;
342 int err;
343
344 /*
345 * We only want the ownership bits. Otherwise, we'll do
346 * things like change a directory to a regular file if
347 * ATTR_MODE is set.
348 */
349 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
350 err = reiserfs_setattr(dentry, attrs);
351 attrs->ia_valid = ia_valid;
352
353 return err;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400354}
355
356/* No i_mutex, but the inode is unconnected. */
357int reiserfs_delete_xattrs(struct inode *inode)
358{
359 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700360
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400361 if (err)
362 reiserfs_warning(inode->i_sb, "jdm-20004",
363 "Couldn't delete all xattrs (%d)\n", err);
364 return err;
365}
366
367/* inode->i_mutex: down */
368int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
369{
370 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700371
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400372 if (err)
373 reiserfs_warning(inode->i_sb, "jdm-20007",
374 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400375 return err;
376}
377
378#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney098297b2014-04-23 10:00:36 -0400379/*
380 * Returns a dentry corresponding to a specific extended attribute file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * for the inode. If flags allow, the file is created. Otherwise, a
Jeff Mahoney098297b2014-04-23 10:00:36 -0400382 * valid or negative dentry, or an error is returned.
383 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400384static struct dentry *xattr_lookup(struct inode *inode, const char *name,
385 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700387 struct dentry *xadir, *xafile;
388 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700390 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400391 if (IS_ERR(xadir))
David Howellse231c2e2008-02-07 00:15:26 -0800392 return ERR_CAST(xadir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Al Viro59551022016-01-22 15:40:57 -0500394 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700395 xafile = lookup_one_len(name, xadir, strlen(name));
396 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400397 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700398 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
David Howells2b0143b2015-03-17 22:25:59 +0000401 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
Jeff Mahoney6c176752009-03-30 14:02:34 -0400402 err = -EEXIST;
403
David Howells2b0143b2015-03-17 22:25:59 +0000404 if (d_really_is_negative(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400405 err = -ENODATA;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400406 if (xattr_may_create(flags))
David Howells2b0143b2015-03-17 22:25:59 +0000407 err = xattr_create(d_inode(xadir), xafile,
Jeff Mahoney6c176752009-03-30 14:02:34 -0400408 0700|S_IFREG);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Jeff Mahoney6c176752009-03-30 14:02:34 -0400411 if (err)
412 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400413out:
Al Viro59551022016-01-22 15:40:57 -0500414 inode_unlock(d_inode(xadir));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700415 dput(xadir);
416 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400417 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800418 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700422static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700424 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300425 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400428static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700430 struct address_space *mapping = dir->i_mapping;
431 struct page *page;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400432 /*
433 * We can deadlock if we try to free dentries,
434 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
435 */
Al Viroc4cdd032005-10-21 03:22:39 -0400436 mapping_set_gfp_mask(mapping, GFP_NOFS);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300437 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700438 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700439 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700440 if (PageError(page))
441 goto fail;
442 }
443 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400445fail:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700446 reiserfs_put_page(page);
447 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700450static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700452 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700455int reiserfs_commit_write(struct file *f, struct page *page,
456 unsigned from, unsigned to);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700457
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400458static void update_ctime(struct inode *inode)
459{
Deepa Dinamani02027d42016-09-14 07:48:05 -0700460 struct timespec now = current_time(inode);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700461
Al Viro1d3382cb2010-10-23 15:19:20 -0400462 if (inode_unhashed(inode) || !inode->i_nlink ||
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400463 timespec_equal(&inode->i_ctime, &now))
464 return;
465
Deepa Dinamani02027d42016-09-14 07:48:05 -0700466 inode->i_ctime = current_time(inode);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400467 mark_inode_dirty(inode);
468}
469
470static int lookup_and_delete_xattr(struct inode *inode, const char *name)
471{
472 int err = 0;
473 struct dentry *dentry, *xadir;
474
475 xadir = open_xa_dir(inode, XATTR_REPLACE);
476 if (IS_ERR(xadir))
477 return PTR_ERR(xadir);
478
Al Viro59551022016-01-22 15:40:57 -0500479 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400480 dentry = lookup_one_len(name, xadir, strlen(name));
481 if (IS_ERR(dentry)) {
482 err = PTR_ERR(dentry);
483 goto out_dput;
484 }
485
David Howells2b0143b2015-03-17 22:25:59 +0000486 if (d_really_is_positive(dentry)) {
487 err = xattr_unlink(d_inode(xadir), dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400488 update_ctime(inode);
489 }
490
491 dput(dentry);
492out_dput:
Al Viro59551022016-01-22 15:40:57 -0500493 inode_unlock(d_inode(xadir));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400494 dput(xadir);
495 return err;
496}
497
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/* Generic extended attribute operations that can be used by xa plugins */
500
501/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800502 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 */
504int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400505reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
506 struct inode *inode, const char *name,
507 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700509 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800510 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700511 struct page *page;
512 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700513 size_t file_pos = 0;
514 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400515 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700516 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700518 if (get_inode_sd_version(inode) == STAT_DATA_V1)
519 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100521 if (!buffer) {
522 err = lookup_and_delete_xattr(inode, name);
Frederic Weisbecker4f3be1b2010-01-05 02:14:30 +0100523 return err;
524 }
525
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400526 dentry = xattr_lookup(inode, name, flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400527 if (IS_ERR(dentry))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400528 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Frederic Weisbeckerf3e22f42010-01-03 03:44:53 +0100530 down_write(&REISERFS_I(inode)->i_xattr_sem);
Frederic Weisbecker3f14fea2009-12-30 07:03:53 +0100531
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400532 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700533 while (buffer_pos < buffer_size || buffer_pos == 0) {
534 size_t chunk;
535 size_t skip = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300536 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700537
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300538 if (buffer_size - buffer_pos > PAGE_SIZE)
539 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700540 else
541 chunk = buffer_size - buffer_pos;
542
David Howells2b0143b2015-03-17 22:25:59 +0000543 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700544 if (IS_ERR(page)) {
545 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400546 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700547 }
548
549 lock_page(page);
550 data = page_address(page);
551
552 if (file_pos == 0) {
553 struct reiserfs_xattr_header *rxh;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700554
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700555 skip = file_pos = sizeof(struct reiserfs_xattr_header);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300556 if (chunk + skip > PAGE_SIZE)
557 chunk = PAGE_SIZE - skip;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700558 rxh = (struct reiserfs_xattr_header *)data;
559 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
560 rxh->h_hash = cpu_to_le32(xahash);
561 }
562
Jeff Mahoney4c051412013-08-08 17:27:19 -0400563 reiserfs_write_lock(inode->i_sb);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200564 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700565 if (!err) {
566 if (buffer)
567 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800568 err = reiserfs_commit_write(NULL, page, page_offset,
569 page_offset + chunk +
570 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700571 }
Jeff Mahoney4c051412013-08-08 17:27:19 -0400572 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700573 unlock_page(page);
574 reiserfs_put_page(page);
575 buffer_pos += chunk;
576 file_pos += chunk;
577 skip = 0;
578 if (err || buffer_size == 0 || !buffer)
579 break;
580 }
581
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400582 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
David Howells2b0143b2015-03-17 22:25:59 +0000583 if (!err && new_size < i_size_read(d_inode(dentry))) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400584 struct iattr newattrs = {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700585 .ia_ctime = current_time(inode),
Jeff Mahoneyfb2162d2010-04-23 13:17:41 -0400586 .ia_size = new_size,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400587 .ia_valid = ATTR_SIZE | ATTR_CTIME,
588 };
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100589
Al Viro59551022016-01-22 15:40:57 -0500590 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000591 inode_dio_wait(d_inode(dentry));
Frederic Weisbecker31370f62010-01-07 15:55:31 +0100592
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400593 err = reiserfs_setattr(dentry, &newattrs);
Al Viro59551022016-01-22 15:40:57 -0500594 inode_unlock(d_inode(dentry));
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400595 } else
596 update_ctime(inode);
597out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400598 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800599 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400600 return err;
601}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700602
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400603/* We need to start a transaction to maintain lock ordering */
604int reiserfs_xattr_set(struct inode *inode, const char *name,
605 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400606{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400607
608 struct reiserfs_transaction_handle th;
609 int error, error2;
610 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
611
Jeff Mahoney0243d182019-10-24 10:31:27 -0400612 /* Check before we start a transaction and then do nothing. */
613 if (!d_really_is_positive(REISERFS_SB(inode->i_sb)->priv_root))
614 return -EOPNOTSUPP;
615
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400616 if (!(flags & XATTR_REPLACE))
617 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
618
619 reiserfs_write_lock(inode->i_sb);
620 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400621 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400622 if (error) {
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400623 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700624 }
625
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400626 error = reiserfs_xattr_set_handle(&th, inode, name,
627 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700628
Jeff Mahoney4c051412013-08-08 17:27:19 -0400629 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400630 error2 = journal_end(&th);
Jeff Mahoney4c051412013-08-08 17:27:19 -0400631 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400632 if (error == 0)
633 error = error2;
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400634
635 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800639 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 */
641int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400642reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700643 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700645 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800646 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700647 size_t isize;
648 size_t file_pos = 0;
649 size_t buffer_pos = 0;
650 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700651 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700653 if (name == NULL)
654 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Jeff Mahoney098297b2014-04-23 10:00:36 -0400656 /*
657 * We can't have xattrs attached to v1 items since they don't have
658 * generation numbers
659 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700660 if (get_inode_sd_version(inode) == STAT_DATA_V1)
661 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400663 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800664 if (IS_ERR(dentry)) {
665 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700666 goto out;
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400669 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400670
David Howells2b0143b2015-03-17 22:25:59 +0000671 isize = i_size_read(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700673 /* Just return the size needed */
674 if (buffer == NULL) {
675 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400676 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700679 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
680 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400681 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700684 while (file_pos < isize) {
685 size_t chunk;
686 char *data;
687 size_t skip = 0;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700688
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300689 if (isize - file_pos > PAGE_SIZE)
690 chunk = PAGE_SIZE;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700691 else
692 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
David Howells2b0143b2015-03-17 22:25:59 +0000694 page = reiserfs_get_page(d_inode(dentry), file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700695 if (IS_ERR(page)) {
696 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400697 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700700 lock_page(page);
701 data = page_address(page);
702 if (file_pos == 0) {
703 struct reiserfs_xattr_header *rxh =
704 (struct reiserfs_xattr_header *)data;
705 skip = file_pos = sizeof(struct reiserfs_xattr_header);
706 chunk -= skip;
707 /* Magic doesn't match up.. */
708 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
709 unlock_page(page);
710 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400711 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700712 "Invalid magic for xattr (%s) "
713 "associated with %k", name,
714 INODE_PKEY(inode));
715 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400716 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700717 }
718 hash = le32_to_cpu(rxh->h_hash);
719 }
720 memcpy(buffer + buffer_pos, data + skip, chunk);
721 unlock_page(page);
722 reiserfs_put_page(page);
723 file_pos += chunk;
724 buffer_pos += chunk;
725 skip = 0;
726 }
727 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700729 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
730 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400731 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700732 "Invalid hash for xattr (%s) associated "
733 "with %k", name, INODE_PKEY(inode));
734 err = -EIO;
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400737out_unlock:
738 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800739 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400741out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400745/*
746 * In order to implement different sets of xattr operations for each xattr
747 * prefix with the generic xattr API, a filesystem should create a
748 * null-terminated array of struct xattr_handler (one for each prefix) and
749 * hang a pointer to it off of the s_xattr field of the superblock.
750 *
751 * The generic_fooxattr() functions will use this list to dispatch xattr
752 * operations to the correct xattr_handler.
753 */
754#define for_each_xattr_handler(handlers, handler) \
755 for ((handler) = *(handlers)++; \
756 (handler) != NULL; \
757 (handler) = *(handlers)++)
758
759/* This is the implementation for the xattr plugin infrastructure */
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700760static inline const struct xattr_handler *
761find_xattr_handler_prefix(const struct xattr_handler **handlers,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400762 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700764 const struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400766 if (!handlers)
767 return NULL;
768
769 for_each_xattr_handler(handlers, xah) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100770 const char *prefix = xattr_prefix(xah);
771 if (strncmp(prefix, name, strlen(prefix)) == 0)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400772 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400775 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400778struct listxattr_buf {
Al Viro4acf3812013-05-17 22:42:17 -0400779 struct dir_context ctx;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400780 size_t size;
781 size_t pos;
782 char *buf;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000783 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
Miklos Szerediac7576f2014-10-30 17:37:34 +0100786static int listxattr_filler(struct dir_context *ctx, const char *name,
787 int namelen, loff_t offset, u64 ino,
788 unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Miklos Szerediac7576f2014-10-30 17:37:34 +0100790 struct listxattr_buf *b =
791 container_of(ctx, struct listxattr_buf, ctx);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400792 size_t size;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700793
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400794 if (name[0] != '.' ||
795 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700796 const struct xattr_handler *handler;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700797
Christoph Hellwig431547b2009-11-13 09:52:56 +0000798 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400799 name);
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100800 if (!handler /* Unsupported xattr name */ ||
801 (handler->list && !handler->list(b->dentry)))
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400802 return 0;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100803 size = namelen + 1;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400804 if (b->buf) {
Jann Horn696d9062018-08-21 21:59:37 -0700805 if (b->pos + size > b->size) {
806 b->pos = -ERANGE;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400807 return -ERANGE;
Jann Horn696d9062018-08-21 21:59:37 -0700808 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100809 memcpy(b->buf + b->pos, name, namelen);
810 b->buf[b->pos + namelen] = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700811 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400812 b->pos += size;
813 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817/*
818 * Inode operation listxattr()
819 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400820 * We totally ignore the generic listxattr here because it would be stupid
821 * not to. Since the xattrs are organized in a directory, we can just
822 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700824ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700826 struct dentry *dir;
827 int err = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400828 struct listxattr_buf buf = {
Al Viro4acf3812013-05-17 22:42:17 -0400829 .ctx.actor = listxattr_filler,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000830 .dentry = dentry,
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400831 .buf = buffer,
832 .size = buffer ? size : 0,
833 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
David Howells2b0143b2015-03-17 22:25:59 +0000835 if (d_really_is_negative(dentry))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700836 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Jeff Mahoney0243d182019-10-24 10:31:27 -0400838 if (get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700839 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
David Howells2b0143b2015-03-17 22:25:59 +0000841 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700842 if (IS_ERR(dir)) {
843 err = PTR_ERR(dir);
844 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400845 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700846 goto out;
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Al Viro59551022016-01-22 15:40:57 -0500849 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
David Howells2b0143b2015-03-17 22:25:59 +0000850 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
Al Viro59551022016-01-22 15:40:57 -0500851 inode_unlock(d_inode(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400853 if (!err)
854 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Jeff Mahoney3227e142008-02-15 14:37:22 -0800856 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400857out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700858 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400861static int create_privroot(struct dentry *dentry)
862{
863 int err;
David Howells2b0143b2015-03-17 22:25:59 +0000864 struct inode *inode = d_inode(dentry->d_parent);
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700865
Al Viro59551022016-01-22 15:40:57 -0500866 WARN_ON_ONCE(!inode_is_locked(inode));
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400867
Jeff Mahoney6c176752009-03-30 14:02:34 -0400868 err = xattr_mkdir(inode, dentry, 0700);
David Howells2b0143b2015-03-17 22:25:59 +0000869 if (err || d_really_is_negative(dentry)) {
Al Viroedcc37a2009-05-03 06:00:05 -0400870 reiserfs_warning(dentry->d_sb, "jdm-20006",
871 "xattrs/ACLs enabled and couldn't "
872 "find/create .reiserfs_priv. "
873 "Failing mount.");
874 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
David Howells2b0143b2015-03-17 22:25:59 +0000877 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney0243d182019-10-24 10:31:27 -0400878 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
Al Viroedcc37a2009-05-03 06:00:05 -0400879 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
880 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Al Viroedcc37a2009-05-03 06:00:05 -0400882 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400883}
884
Jeff Mahoney12abb352009-05-17 01:02:01 -0400885#else
886int __init reiserfs_xattr_register_handlers(void) { return 0; }
887void reiserfs_xattr_unregister_handlers(void) {}
888static int create_privroot(struct dentry *dentry) { return 0; }
889#endif
890
891/* Actual operations that are exported to VFS-land */
Jeff Mahoney0243d182019-10-24 10:31:27 -0400892const struct xattr_handler *reiserfs_xattr_handlers[] = {
Jeff Mahoney12abb352009-05-17 01:02:01 -0400893#ifdef CONFIG_REISERFS_FS_XATTR
894 &reiserfs_xattr_user_handler,
895 &reiserfs_xattr_trusted_handler,
896#endif
897#ifdef CONFIG_REISERFS_FS_SECURITY
898 &reiserfs_xattr_security_handler,
899#endif
900#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Christoph Hellwig47f70d02013-12-20 05:16:49 -0800901 &posix_acl_access_xattr_handler,
902 &posix_acl_default_xattr_handler,
Jeff Mahoney12abb352009-05-17 01:02:01 -0400903#endif
904 NULL
905};
906
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400907static int xattr_mount_check(struct super_block *s)
908{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400909 /*
910 * We need generation numbers to ensure that the oid mapping is correct
911 * v3.5 filesystems don't have them.
912 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400913 if (old_format_only(s)) {
914 if (reiserfs_xattrs_optional(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400915 /*
916 * Old format filesystem, but optional xattrs have
917 * been enabled. Error out.
918 */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400919 reiserfs_warning(s, "jdm-2005",
920 "xattrs/ACLs not supported "
921 "on pre-v3.6 format filesystems. "
922 "Failing mount.");
923 return -EOPNOTSUPP;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700924 }
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Al Viro10556cb2011-06-20 19:28:19 -0400930int reiserfs_permission(struct inode *inode, int mask)
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400931{
932 /*
933 * We don't do permission checks on the internal objects.
934 * Permissions are determined by the "owning" object.
935 */
936 if (IS_PRIVATE(inode))
937 return 0;
938
Al Viro2830ba72011-06-20 19:16:29 -0400939 return generic_permission(inode, mask);
Jeff Mahoneyb83674c2009-05-17 01:02:03 -0400940}
941
Al Viro0b728e12012-06-10 16:03:43 -0400942static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400944 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Al Viroe16404e2009-02-20 05:55:13 +0000947static const struct dentry_operations xattr_lookup_poison_ops = {
Jeff Mahoneycac36f72010-04-23 13:17:37 -0400948 .d_revalidate = xattr_hide_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949};
950
Al Viroedcc37a2009-05-03 06:00:05 -0400951int reiserfs_lookup_privroot(struct super_block *s)
952{
953 struct dentry *dentry;
954 int err = 0;
955
956 /* If we don't have the privroot located yet - go find it */
Al Viro59551022016-01-22 15:40:57 -0500957 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400958 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
959 strlen(PRIVROOT_NAME));
960 if (!IS_ERR(dentry)) {
961 REISERFS_SB(s)->priv_root = dentry;
Nick Pigginfb045ad2011-01-07 17:49:55 +1100962 d_set_d_op(dentry, &xattr_lookup_poison_ops);
Jeff Mahoney0243d182019-10-24 10:31:27 -0400963 if (d_really_is_positive(dentry)) {
David Howells2b0143b2015-03-17 22:25:59 +0000964 d_inode(dentry)->i_flags |= S_PRIVATE;
Jeff Mahoney0243d182019-10-24 10:31:27 -0400965 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
966 }
Al Viroedcc37a2009-05-03 06:00:05 -0400967 } else
968 err = PTR_ERR(dentry);
Al Viro59551022016-01-22 15:40:57 -0500969 inode_unlock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400970
971 return err;
972}
973
Jeff Mahoney098297b2014-04-23 10:00:36 -0400974/*
975 * We need to take a copy of the mount flags since things like
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * MS_RDONLY don't get set until *after* we're called.
Jeff Mahoney098297b2014-04-23 10:00:36 -0400977 * mount_flags != mount_options
978 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700979int reiserfs_xattr_init(struct super_block *s, int mount_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700981 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400982 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400984 err = xattr_mount_check(s);
985 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700986 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
David Howells2b0143b2015-03-17 22:25:59 +0000988 if (d_really_is_negative(privroot) && !(mount_flags & MS_RDONLY)) {
Al Viro59551022016-01-22 15:40:57 -0500989 inode_lock(d_inode(s->s_root));
Al Viroedcc37a2009-05-03 06:00:05 -0400990 err = create_privroot(REISERFS_SB(s)->priv_root);
Al Viro59551022016-01-22 15:40:57 -0500991 inode_unlock(d_inode(s->s_root));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700992 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400993
David Howells2b0143b2015-03-17 22:25:59 +0000994 if (d_really_is_positive(privroot)) {
Al Viro59551022016-01-22 15:40:57 -0500995 inode_lock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400996 if (!REISERFS_SB(s)->xattr_root) {
997 struct dentry *dentry;
Fabian Frederickf3fb9e22014-08-08 14:21:14 -0700998
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400999 dentry = lookup_one_len(XAROOT_NAME, privroot,
1000 strlen(XAROOT_NAME));
1001 if (!IS_ERR(dentry))
1002 REISERFS_SB(s)->xattr_root = dentry;
1003 else
1004 err = PTR_ERR(dentry);
1005 }
Al Viro59551022016-01-22 15:40:57 -05001006 inode_unlock(d_inode(privroot));
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001007 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001008
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001009error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001010 if (err) {
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001011 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1012 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001015 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001016 if (reiserfs_posixacl(s))
1017 s->s_flags |= MS_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001018 else
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001019 s->s_flags &= ~MS_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001021 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}