blob: 2237e10c7c7c2a575a32177ba0e4663c236e5f41 [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
36#include <linux/reiserfs_fs.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>
41#include <linux/fs.h>
42#include <linux/file.h>
43#include <linux/pagemap.h>
44#include <linux/xattr.h>
45#include <linux/reiserfs_xattr.h>
46#include <linux/reiserfs_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/uaccess.h>
Al Viro3277c392006-11-14 21:13:53 -080048#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/smp_lock.h>
50#include <linux/stat.h>
Jeff Mahoney6c176752009-03-30 14:02:34 -040051#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define PRIVROOT_NAME ".reiserfs_priv"
54#define XAROOT_NAME "xattrs"
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jeff Mahoney6c176752009-03-30 14:02:34 -040057/* Helpers for inode ops. We do this so that we don't have all the VFS
58 * overhead and also for proper i_mutex annotation.
59 * dir->i_mutex must be held for all of them. */
Jeff Mahoney3a355cc2009-03-30 16:49:58 -040060#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney6c176752009-03-30 14:02:34 -040061static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Jeff Mahoney6c176752009-03-30 14:02:34 -040063 BUG_ON(!mutex_is_locked(&dir->i_mutex));
Linus Torvaldse1c50242009-03-30 12:29:21 -070064 vfs_dq_init(dir);
Jeff Mahoney6c176752009-03-30 14:02:34 -040065 return dir->i_op->create(dir, dentry, mode, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
Jeff Mahoney3a355cc2009-03-30 16:49:58 -040067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Jeff Mahoney6c176752009-03-30 14:02:34 -040069static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
70{
71 BUG_ON(!mutex_is_locked(&dir->i_mutex));
Linus Torvaldse1c50242009-03-30 12:29:21 -070072 vfs_dq_init(dir);
Jeff Mahoney6c176752009-03-30 14:02:34 -040073 return dir->i_op->mkdir(dir, dentry, mode);
74}
75
76/* We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
77 * mutation ops aren't called during rename or splace, which are the
78 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
79 * better than allocating another subclass just for this code. */
80static int xattr_unlink(struct inode *dir, struct dentry *dentry)
81{
82 int error;
83 BUG_ON(!mutex_is_locked(&dir->i_mutex));
Linus Torvaldse1c50242009-03-30 12:29:21 -070084 vfs_dq_init(dir);
Jeff Mahoney6c176752009-03-30 14:02:34 -040085
86 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
87 error = dir->i_op->unlink(dir, dentry);
88 mutex_unlock(&dentry->d_inode->i_mutex);
89
90 if (!error)
91 d_delete(dentry);
92 return error;
93}
94
95static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
96{
97 int error;
98 BUG_ON(!mutex_is_locked(&dir->i_mutex));
Linus Torvaldse1c50242009-03-30 12:29:21 -070099 vfs_dq_init(dir);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400100
101 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
102 dentry_unhash(dentry);
103 error = dir->i_op->rmdir(dir, dentry);
104 if (!error)
105 dentry->d_inode->i_flags |= S_DEAD;
106 mutex_unlock(&dentry->d_inode->i_mutex);
107 if (!error)
108 d_delete(dentry);
109 dput(dentry);
110
111 return error;
112}
113
Jeff Mahoney6c176752009-03-30 14:02:34 -0400114#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
115
Jeff Mahoney6c176752009-03-30 14:02:34 -0400116static struct dentry *open_xa_root(struct super_block *sb, int flags)
117{
118 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400119 struct dentry *xaroot;
120 if (!privroot->d_inode)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400121 return ERR_PTR(-ENODATA);
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400122
123 mutex_lock_nested(&privroot->d_inode->i_mutex, I_MUTEX_XATTR);
124
125 xaroot = dget(REISERFS_SB(sb)->xattr_root);
126 if (!xaroot->d_inode) {
127 int err = -ENODATA;
128 if (xattr_may_create(flags))
129 err = xattr_mkdir(privroot->d_inode, xaroot, 0700);
130 if (err) {
131 dput(xaroot);
132 xaroot = ERR_PTR(err);
133 }
134 }
135
136 mutex_unlock(&privroot->d_inode->i_mutex);
137 return xaroot;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400138}
139
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700140static struct dentry *open_xa_dir(const struct inode *inode, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700142 struct dentry *xaroot, *xadir;
143 char namebuf[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jeff Mahoney6c176752009-03-30 14:02:34 -0400145 xaroot = open_xa_root(inode->i_sb, flags);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700146 if (IS_ERR(xaroot))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700147 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700149 snprintf(namebuf, sizeof(namebuf), "%X.%X",
150 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
151 inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400153 mutex_lock_nested(&xaroot->d_inode->i_mutex, I_MUTEX_XATTR);
154
155 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
156 if (!IS_ERR(xadir) && !xadir->d_inode) {
157 int err = -ENODATA;
158 if (xattr_may_create(flags))
159 err = xattr_mkdir(xaroot->d_inode, xadir, 0700);
160 if (err) {
161 dput(xadir);
162 xadir = ERR_PTR(err);
163 }
164 }
165
166 mutex_unlock(&xaroot->d_inode->i_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700167 dput(xaroot);
168 return xadir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400171/* The following are side effects of other operations that aren't explicitly
172 * modifying extended attributes. This includes operations such as permissions
173 * or ownership changes, object deletions, etc. */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400174struct reiserfs_dentry_buf {
175 struct dentry *xadir;
176 int count;
177 struct dentry *dentries[8];
178};
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400179
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400180static int
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400181fill_with_dentries(void *buf, const char *name, int namelen, loff_t offset,
182 u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400183{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400184 struct reiserfs_dentry_buf *dbuf = buf;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400185 struct dentry *dentry;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400186 WARN_ON_ONCE(!mutex_is_locked(&dbuf->xadir->d_inode->i_mutex));
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400187
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400188 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
189 return -ENOSPC;
190
191 if (name[0] == '.' && (name[1] == '\0' ||
192 (name[1] == '.' && name[2] == '\0')))
193 return 0;
194
195 dentry = lookup_one_len(name, dbuf->xadir, namelen);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400196 if (IS_ERR(dentry)) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400197 return PTR_ERR(dentry);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400198 } else if (!dentry->d_inode) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400199 /* A directory entry exists, but no file? */
200 reiserfs_error(dentry->d_sb, "xattr-20003",
201 "Corrupted directory: xattr %s listed but "
202 "not found for file %s.\n",
203 dentry->d_name.name, dbuf->xadir->d_name.name);
204 dput(dentry);
205 return -EIO;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400206 }
207
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400208 dbuf->dentries[dbuf->count++] = dentry;
209 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400210}
211
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400212static void
213cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400214{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400215 int i;
216 for (i = 0; i < buf->count; i++)
217 if (buf->dentries[i])
218 dput(buf->dentries[i]);
219}
220
221static int reiserfs_for_each_xattr(struct inode *inode,
222 int (*action)(struct dentry *, void *),
223 void *data)
224{
225 struct dentry *dir;
226 int i, err = 0;
227 loff_t pos = 0;
228 struct reiserfs_dentry_buf buf = {
229 .count = 0,
230 };
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400231
232 /* Skip out, an xattr has no xattrs associated with it */
233 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
234 return 0;
235
Jeff Mahoney6c176752009-03-30 14:02:34 -0400236 dir = open_xa_dir(inode, XATTR_REPLACE);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400237 if (IS_ERR(dir)) {
238 err = PTR_ERR(dir);
239 goto out;
240 } else if (!dir->d_inode) {
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400241 err = 0;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400242 goto out_dir;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400243 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400244
Jeff Mahoney6c176752009-03-30 14:02:34 -0400245 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400246 buf.xadir = dir;
247 err = reiserfs_readdir_dentry(dir, &buf, fill_with_dentries, &pos);
248 while ((err == 0 || err == -ENOSPC) && buf.count) {
249 err = 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400250
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400251 for (i = 0; i < buf.count && buf.dentries[i]; i++) {
252 int lerr = 0;
253 struct dentry *dentry = buf.dentries[i];
254
255 if (err == 0 && !S_ISDIR(dentry->d_inode->i_mode))
256 lerr = action(dentry, data);
257
258 dput(dentry);
259 buf.dentries[i] = NULL;
260 err = lerr ?: err;
261 }
262 buf.count = 0;
263 if (!err)
264 err = reiserfs_readdir_dentry(dir, &buf,
265 fill_with_dentries, &pos);
266 }
Jeff Mahoney6c176752009-03-30 14:02:34 -0400267 mutex_unlock(&dir->d_inode->i_mutex);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400268
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400269 /* Clean up after a failed readdir */
270 cleanup_dentry_buf(&buf);
271
272 if (!err) {
273 /* We start a transaction here to avoid a ABBA situation
274 * between the xattr root's i_mutex and the journal lock.
275 * This doesn't incur much additional overhead since the
276 * new transaction will just nest inside the
277 * outer transaction. */
278 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
279 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
280 struct reiserfs_transaction_handle th;
281 err = journal_begin(&th, inode->i_sb, blocks);
282 if (!err) {
283 int jerror;
284 mutex_lock_nested(&dir->d_parent->d_inode->i_mutex,
285 I_MUTEX_XATTR);
286 err = action(dir, data);
287 jerror = journal_end(&th, inode->i_sb, blocks);
288 mutex_unlock(&dir->d_parent->d_inode->i_mutex);
289 err = jerror ?: err;
290 }
291 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400292out_dir:
293 dput(dir);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400294out:
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400295 /* -ENODATA isn't an error */
296 if (err == -ENODATA)
297 err = 0;
298 return err;
299}
300
301static int delete_one_xattr(struct dentry *dentry, void *data)
302{
303 struct inode *dir = dentry->d_parent->d_inode;
304
305 /* This is the xattr dir, handle specially. */
306 if (S_ISDIR(dentry->d_inode->i_mode))
307 return xattr_rmdir(dir, dentry);
308
309 return xattr_unlink(dir, dentry);
310}
311
312static int chown_one_xattr(struct dentry *dentry, void *data)
313{
314 struct iattr *attrs = data;
315 return reiserfs_setattr(dentry, attrs);
316}
317
318/* No i_mutex, but the inode is unconnected. */
319int reiserfs_delete_xattrs(struct inode *inode)
320{
321 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
322 if (err)
323 reiserfs_warning(inode->i_sb, "jdm-20004",
324 "Couldn't delete all xattrs (%d)\n", err);
325 return err;
326}
327
328/* inode->i_mutex: down */
329int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
330{
331 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400332 if (err)
333 reiserfs_warning(inode->i_sb, "jdm-20007",
334 "Couldn't chown all xattrs (%d)\n", err);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400335 return err;
336}
337
338#ifdef CONFIG_REISERFS_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/* Returns a dentry corresponding to a specific extended attribute file
340 * for the inode. If flags allow, the file is created. Otherwise, a
341 * valid or negative dentry, or an error is returned. */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400342static struct dentry *xattr_lookup(struct inode *inode, const char *name,
343 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700345 struct dentry *xadir, *xafile;
346 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700348 xadir = open_xa_dir(inode, flags);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400349 if (IS_ERR(xadir))
David Howellse231c2e2008-02-07 00:15:26 -0800350 return ERR_CAST(xadir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400352 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700353 xafile = lookup_one_len(name, xadir, strlen(name));
354 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400355 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700356 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Jeff Mahoney6c176752009-03-30 14:02:34 -0400359 if (xafile->d_inode && (flags & XATTR_CREATE))
360 err = -EEXIST;
361
362 if (!xafile->d_inode) {
363 err = -ENODATA;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400364 if (xattr_may_create(flags))
Jeff Mahoney6c176752009-03-30 14:02:34 -0400365 err = xattr_create(xadir->d_inode, xafile,
366 0700|S_IFREG);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Jeff Mahoney6c176752009-03-30 14:02:34 -0400369 if (err)
370 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400371out:
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400372 mutex_unlock(&xadir->d_inode->i_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700373 dput(xadir);
374 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400375 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800376 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700380static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700382 kunmap(page);
383 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400386static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700388 struct address_space *mapping = dir->i_mapping;
389 struct page *page;
390 /* We can deadlock if we try to free dentries,
391 and an unlink/rmdir has just occured - GFP_NOFS avoids this */
Al Viroc4cdd032005-10-21 03:22:39 -0400392 mapping_set_gfp_mask(mapping, GFP_NOFS);
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400393 page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700394 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700395 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700396 if (PageError(page))
397 goto fail;
398 }
399 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700401 fail:
402 reiserfs_put_page(page);
403 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700406static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700408 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700411int reiserfs_commit_write(struct file *f, struct page *page,
412 unsigned from, unsigned to);
413int reiserfs_prepare_write(struct file *f, struct page *page,
414 unsigned from, unsigned to);
415
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400416static void update_ctime(struct inode *inode)
417{
418 struct timespec now = current_fs_time(inode->i_sb);
419 if (hlist_unhashed(&inode->i_hash) || !inode->i_nlink ||
420 timespec_equal(&inode->i_ctime, &now))
421 return;
422
423 inode->i_ctime = CURRENT_TIME_SEC;
424 mark_inode_dirty(inode);
425}
426
427static int lookup_and_delete_xattr(struct inode *inode, const char *name)
428{
429 int err = 0;
430 struct dentry *dentry, *xadir;
431
432 xadir = open_xa_dir(inode, XATTR_REPLACE);
433 if (IS_ERR(xadir))
434 return PTR_ERR(xadir);
435
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400436 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400437 dentry = lookup_one_len(name, xadir, strlen(name));
438 if (IS_ERR(dentry)) {
439 err = PTR_ERR(dentry);
440 goto out_dput;
441 }
442
443 if (dentry->d_inode) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400444 err = xattr_unlink(xadir->d_inode, dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400445 update_ctime(inode);
446 }
447
448 dput(dentry);
449out_dput:
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400450 mutex_unlock(&xadir->d_inode->i_mutex);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400451 dput(xadir);
452 return err;
453}
454
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/* Generic extended attribute operations that can be used by xa plugins */
457
458/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800459 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
461int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400462reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
463 struct inode *inode, const char *name,
464 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700466 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800467 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700468 struct page *page;
469 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700470 size_t file_pos = 0;
471 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400472 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700473 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700475 if (get_inode_sd_version(inode) == STAT_DATA_V1)
476 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400478 if (!buffer)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400479 return lookup_and_delete_xattr(inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400481 dentry = xattr_lookup(inode, name, flags);
482 if (IS_ERR(dentry))
483 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400485 down_write(&REISERFS_I(inode)->i_xattr_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400487 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700488 while (buffer_pos < buffer_size || buffer_pos == 0) {
489 size_t chunk;
490 size_t skip = 0;
491 size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1));
492 if (buffer_size - buffer_pos > PAGE_CACHE_SIZE)
493 chunk = PAGE_CACHE_SIZE;
494 else
495 chunk = buffer_size - buffer_pos;
496
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400497 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700498 if (IS_ERR(page)) {
499 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400500 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700501 }
502
503 lock_page(page);
504 data = page_address(page);
505
506 if (file_pos == 0) {
507 struct reiserfs_xattr_header *rxh;
508 skip = file_pos = sizeof(struct reiserfs_xattr_header);
509 if (chunk + skip > PAGE_CACHE_SIZE)
510 chunk = PAGE_CACHE_SIZE - skip;
511 rxh = (struct reiserfs_xattr_header *)data;
512 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
513 rxh->h_hash = cpu_to_le32(xahash);
514 }
515
Jeff Mahoney3227e142008-02-15 14:37:22 -0800516 err = reiserfs_prepare_write(NULL, page, page_offset,
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700517 page_offset + chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700518 if (!err) {
519 if (buffer)
520 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800521 err = reiserfs_commit_write(NULL, page, page_offset,
522 page_offset + chunk +
523 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700524 }
525 unlock_page(page);
526 reiserfs_put_page(page);
527 buffer_pos += chunk;
528 file_pos += chunk;
529 skip = 0;
530 if (err || buffer_size == 0 || !buffer)
531 break;
532 }
533
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400534 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
535 if (!err && new_size < i_size_read(dentry->d_inode)) {
536 struct iattr newattrs = {
537 .ia_ctime = current_fs_time(inode->i_sb),
538 .ia_size = buffer_size,
539 .ia_valid = ATTR_SIZE | ATTR_CTIME,
540 };
541 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_XATTR);
542 down_write(&dentry->d_inode->i_alloc_sem);
543 err = reiserfs_setattr(dentry, &newattrs);
544 up_write(&dentry->d_inode->i_alloc_sem);
545 mutex_unlock(&dentry->d_inode->i_mutex);
546 } else
547 update_ctime(inode);
548out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400549 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800550 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400551 return err;
552}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700553
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400554/* We need to start a transaction to maintain lock ordering */
555int reiserfs_xattr_set(struct inode *inode, const char *name,
556 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400557{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400558
559 struct reiserfs_transaction_handle th;
560 int error, error2;
561 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
562
563 if (!(flags & XATTR_REPLACE))
564 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
565
566 reiserfs_write_lock(inode->i_sb);
567 error = journal_begin(&th, inode->i_sb, jbegin_count);
568 if (error) {
569 reiserfs_write_unlock(inode->i_sb);
570 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700571 }
572
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400573 error = reiserfs_xattr_set_handle(&th, inode, name,
574 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700575
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400576 error2 = journal_end(&th, inode->i_sb, jbegin_count);
577 if (error == 0)
578 error = error2;
579 reiserfs_write_unlock(inode->i_sb);
580
581 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800585 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
587int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400588reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700589 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700591 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800592 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700593 size_t isize;
594 size_t file_pos = 0;
595 size_t buffer_pos = 0;
596 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700597 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700599 if (name == NULL)
600 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700602 /* We can't have xattrs attached to v1 items since they don't have
603 * generation numbers */
604 if (get_inode_sd_version(inode) == STAT_DATA_V1)
605 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400607 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800608 if (IS_ERR(dentry)) {
609 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700610 goto out;
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400613 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400614
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400615 isize = i_size_read(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700617 /* Just return the size needed */
618 if (buffer == NULL) {
619 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400620 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700623 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
624 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400625 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700628 while (file_pos < isize) {
629 size_t chunk;
630 char *data;
631 size_t skip = 0;
632 if (isize - file_pos > PAGE_CACHE_SIZE)
633 chunk = PAGE_CACHE_SIZE;
634 else
635 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400637 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700638 if (IS_ERR(page)) {
639 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400640 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700643 lock_page(page);
644 data = page_address(page);
645 if (file_pos == 0) {
646 struct reiserfs_xattr_header *rxh =
647 (struct reiserfs_xattr_header *)data;
648 skip = file_pos = sizeof(struct reiserfs_xattr_header);
649 chunk -= skip;
650 /* Magic doesn't match up.. */
651 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
652 unlock_page(page);
653 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400654 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700655 "Invalid magic for xattr (%s) "
656 "associated with %k", name,
657 INODE_PKEY(inode));
658 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400659 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700660 }
661 hash = le32_to_cpu(rxh->h_hash);
662 }
663 memcpy(buffer + buffer_pos, data + skip, chunk);
664 unlock_page(page);
665 reiserfs_put_page(page);
666 file_pos += chunk;
667 buffer_pos += chunk;
668 skip = 0;
669 }
670 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700672 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
673 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400674 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700675 "Invalid hash for xattr (%s) associated "
676 "with %k", name, INODE_PKEY(inode));
677 err = -EIO;
678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400680out_unlock:
681 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800682 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400684out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700685 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/* Actual operations that are exported to VFS-land */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400689struct xattr_handler *reiserfs_xattr_handlers[] = {
690 &reiserfs_xattr_user_handler,
691 &reiserfs_xattr_trusted_handler,
692#ifdef CONFIG_REISERFS_FS_SECURITY
693 &reiserfs_xattr_security_handler,
694#endif
695#ifdef CONFIG_REISERFS_FS_POSIX_ACL
696 &reiserfs_posix_acl_access_handler,
697 &reiserfs_posix_acl_default_handler,
698#endif
699 NULL
700};
701
702/*
703 * In order to implement different sets of xattr operations for each xattr
704 * prefix with the generic xattr API, a filesystem should create a
705 * null-terminated array of struct xattr_handler (one for each prefix) and
706 * hang a pointer to it off of the s_xattr field of the superblock.
707 *
708 * The generic_fooxattr() functions will use this list to dispatch xattr
709 * operations to the correct xattr_handler.
710 */
711#define for_each_xattr_handler(handlers, handler) \
712 for ((handler) = *(handlers)++; \
713 (handler) != NULL; \
714 (handler) = *(handlers)++)
715
716/* This is the implementation for the xattr plugin infrastructure */
717static inline struct xattr_handler *
718find_xattr_handler_prefix(struct xattr_handler **handlers,
719 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400721 struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400723 if (!handlers)
724 return NULL;
725
726 for_each_xattr_handler(handlers, xah) {
727 if (strncmp(xah->prefix, name, strlen(xah->prefix)) == 0)
728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400731 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735/*
736 * Inode operation getxattr()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 */
738ssize_t
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700739reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer,
740 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400742 struct inode *inode = dentry->d_inode;
743 struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400745 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
746
747 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700748 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400750 return handler->get(inode, name, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/*
754 * Inode operation setxattr()
755 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800756 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
758int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700759reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value,
760 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400762 struct inode *inode = dentry->d_inode;
763 struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400765 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
766
767 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700768 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400770 return handler->set(inode, name, value, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773/*
774 * Inode operation removexattr()
775 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800776 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700778int reiserfs_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400780 struct inode *inode = dentry->d_inode;
781 struct xattr_handler *handler;
782 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400784 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700785 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400787 return handler->set(inode, name, NULL, 0, XATTR_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400790struct listxattr_buf {
791 size_t size;
792 size_t pos;
793 char *buf;
794 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795};
796
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400797static int listxattr_filler(void *buf, const char *name, int namelen,
798 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400800 struct listxattr_buf *b = (struct listxattr_buf *)buf;
801 size_t size;
802 if (name[0] != '.' ||
803 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
804 struct xattr_handler *handler;
805 handler = find_xattr_handler_prefix(b->inode->i_sb->s_xattr,
806 name);
807 if (!handler) /* Unsupported xattr name */
808 return 0;
809 if (b->buf) {
810 size = handler->list(b->inode, b->buf + b->pos,
811 b->size, name, namelen);
812 if (size > b->size)
813 return -ERANGE;
814 } else {
815 size = handler->list(b->inode, NULL, 0, name, namelen);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400818 b->pos += size;
819 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/*
824 * Inode operation listxattr()
825 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400826 * We totally ignore the generic listxattr here because it would be stupid
827 * not to. Since the xattrs are organized in a directory, we can just
828 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700830ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700832 struct dentry *dir;
833 int err = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400834 loff_t pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400835 struct listxattr_buf buf = {
836 .inode = dentry->d_inode,
837 .buf = buffer,
838 .size = buffer ? size : 0,
839 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700841 if (!dentry->d_inode)
842 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Jeff Mahoney677c9b22009-05-05 15:30:17 -0400844 if (!dentry->d_sb->s_xattr ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700845 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
846 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Jeff Mahoney6c176752009-03-30 14:02:34 -0400848 dir = open_xa_dir(dentry->d_inode, XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700849 if (IS_ERR(dir)) {
850 err = PTR_ERR(dir);
851 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400852 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700853 goto out;
854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Jeff Mahoney6c176752009-03-30 14:02:34 -0400856 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400857 err = reiserfs_readdir_dentry(dir, &buf, listxattr_filler, &pos);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400858 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400860 if (!err)
861 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Jeff Mahoney3227e142008-02-15 14:37:22 -0800863 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400864out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700865 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Christoph Hellwigec191572006-02-01 03:06:46 -0800868static int reiserfs_check_acl(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Christoph Hellwigec191572006-02-01 03:06:46 -0800870 struct posix_acl *acl;
871 int error = -EAGAIN; /* do regular unix permission checks by default */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700872
Christoph Hellwigec191572006-02-01 03:06:46 -0800873 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
874
Christoph Hellwigec191572006-02-01 03:06:46 -0800875 if (acl) {
876 if (!IS_ERR(acl)) {
877 error = posix_acl_permission(inode, acl, mask);
878 posix_acl_release(acl);
879 } else if (PTR_ERR(acl) != -ENODATA)
880 error = PTR_ERR(acl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700881 }
882
Christoph Hellwigec191572006-02-01 03:06:46 -0800883 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700884}
885
Al Viroe6305c42008-07-15 21:03:57 -0400886int reiserfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Christoph Hellwigec191572006-02-01 03:06:46 -0800888 /*
889 * We don't do permission checks on the internal objects.
890 * Permissions are determined by the "owning" object.
891 */
Jeff Mahoney6dfede692009-03-30 14:02:32 -0400892 if (IS_PRIVATE(inode))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
Christoph Hellwigec191572006-02-01 03:06:46 -0800895 * Stat data v1 doesn't support ACLs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 */
Christoph Hellwigec191572006-02-01 03:06:46 -0800897 if (get_inode_sd_version(inode) == STAT_DATA_V1)
898 return generic_permission(inode, mask, NULL);
899 else
900 return generic_permission(inode, mask, reiserfs_check_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400902
903static int create_privroot(struct dentry *dentry)
904{
905 int err;
906 struct inode *inode = dentry->d_parent->d_inode;
Jeff Mahoney5a6059c2009-05-01 12:11:12 -0400907 WARN_ON_ONCE(!mutex_is_locked(&inode->i_mutex));
908
Jeff Mahoney6c176752009-03-30 14:02:34 -0400909 err = xattr_mkdir(inode, dentry, 0700);
Al Viroedcc37a2009-05-03 06:00:05 -0400910 if (err || !dentry->d_inode) {
911 reiserfs_warning(dentry->d_sb, "jdm-20006",
912 "xattrs/ACLs enabled and couldn't "
913 "find/create .reiserfs_priv. "
914 "Failing mount.");
915 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917
Al Viroedcc37a2009-05-03 06:00:05 -0400918 dentry->d_inode->i_flags |= S_PRIVATE;
919 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
920 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Al Viroedcc37a2009-05-03 06:00:05 -0400922 return 0;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400923}
924
925static int xattr_mount_check(struct super_block *s)
926{
927 /* We need generation numbers to ensure that the oid mapping is correct
928 * v3.5 filesystems don't have them. */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400929 if (old_format_only(s)) {
930 if (reiserfs_xattrs_optional(s)) {
931 /* Old format filesystem, but optional xattrs have
932 * been enabled. Error out. */
933 reiserfs_warning(s, "jdm-2005",
934 "xattrs/ACLs not supported "
935 "on pre-v3.6 format filesystems. "
936 "Failing mount.");
937 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 }
940
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400944#else
945int __init reiserfs_xattr_register_handlers(void) { return 0; }
946void reiserfs_xattr_unregister_handlers(void) {}
947#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949/* This will catch lookups from the fs root to .reiserfs_priv */
950static int
951xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
952{
953 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
Al Viroedcc37a2009-05-03 06:00:05 -0400954 if (container_of(q1, struct dentry, d_name) == priv_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return -ENOENT;
Al Viroedcc37a2009-05-03 06:00:05 -0400956 if (q1->len == name->len &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 !memcmp(q1->name, name->name, name->len))
958 return 0;
959 return 1;
960}
961
Al Viroe16404e2009-02-20 05:55:13 +0000962static const struct dentry_operations xattr_lookup_poison_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 .d_compare = xattr_lookup_poison,
964};
965
Al Viroedcc37a2009-05-03 06:00:05 -0400966int reiserfs_lookup_privroot(struct super_block *s)
967{
968 struct dentry *dentry;
969 int err = 0;
970
971 /* If we don't have the privroot located yet - go find it */
972 mutex_lock(&s->s_root->d_inode->i_mutex);
973 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
974 strlen(PRIVROOT_NAME));
975 if (!IS_ERR(dentry)) {
976 REISERFS_SB(s)->priv_root = dentry;
977 s->s_root->d_op = &xattr_lookup_poison_ops;
978 if (dentry->d_inode)
979 dentry->d_inode->i_flags |= S_PRIVATE;
980 } else
981 err = PTR_ERR(dentry);
982 mutex_unlock(&s->s_root->d_inode->i_mutex);
983
984 return err;
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/* We need to take a copy of the mount flags since things like
988 * MS_RDONLY don't get set until *after* we're called.
989 * mount_flags != mount_options */
990int reiserfs_xattr_init(struct super_block *s, int mount_flags)
991{
992 int err = 0;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -0400993 struct dentry *privroot = REISERFS_SB(s)->priv_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400995#ifdef CONFIG_REISERFS_FS_XATTR
996 err = xattr_mount_check(s);
997 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001000 if (!privroot->d_inode && !(mount_flags & MS_RDONLY)) {
Al Viroedcc37a2009-05-03 06:00:05 -04001001 mutex_lock(&s->s_root->d_inode->i_mutex);
1002 err = create_privroot(REISERFS_SB(s)->priv_root);
Jeff Mahoney5a6059c2009-05-01 12:11:12 -04001003 mutex_unlock(&s->s_root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001005
1006 if (privroot->d_inode) {
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001007 s->s_xattr = reiserfs_xattr_handlers;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001008 mutex_lock(&privroot->d_inode->i_mutex);
1009 if (!REISERFS_SB(s)->xattr_root) {
1010 struct dentry *dentry;
1011 dentry = lookup_one_len(XAROOT_NAME, privroot,
1012 strlen(XAROOT_NAME));
1013 if (!IS_ERR(dentry))
1014 REISERFS_SB(s)->xattr_root = dentry;
1015 else
1016 err = PTR_ERR(dentry);
1017 }
1018 mutex_unlock(&privroot->d_inode->i_mutex);
1019 }
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001020
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001021error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1024 clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1025 }
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001026#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001029#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (reiserfs_posixacl(s))
1031 s->s_flags |= MS_POSIXACL;
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001032 else
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001033#endif
Jeff Mahoneyab17c4f2009-05-05 15:30:15 -04001034 s->s_flags &= ~MS_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 return err;
1037}