blob: f83f52bae390f6484702f8e470de497b41b59921 [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
116/* Returns and possibly creates the xattr dir. */
117static struct dentry *lookup_or_create_dir(struct dentry *parent,
118 const char *name, int flags)
119{
120 struct dentry *dentry;
121 BUG_ON(!parent);
122
123 dentry = lookup_one_len(name, parent, strlen(name));
124 if (IS_ERR(dentry))
125 return dentry;
126 else if (!dentry->d_inode) {
127 int err = -ENODATA;
128
129 if (xattr_may_create(flags)) {
130 mutex_lock_nested(&parent->d_inode->i_mutex,
131 I_MUTEX_XATTR);
132 err = xattr_mkdir(parent->d_inode, dentry, 0700);
133 mutex_unlock(&parent->d_inode->i_mutex);
134 }
135
136 if (err) {
137 dput(dentry);
138 dentry = ERR_PTR(err);
139 }
140 }
141
142 return dentry;
143}
144
145static struct dentry *open_xa_root(struct super_block *sb, int flags)
146{
147 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
148 if (!privroot)
149 return ERR_PTR(-ENODATA);
150 return lookup_or_create_dir(privroot, XAROOT_NAME, flags);
151}
152
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700153static struct dentry *open_xa_dir(const struct inode *inode, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 struct dentry *xaroot, *xadir;
156 char namebuf[17];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Jeff Mahoney6c176752009-03-30 14:02:34 -0400158 xaroot = open_xa_root(inode->i_sb, flags);
Jeff Mahoney9b7f3752007-04-23 14:41:17 -0700159 if (IS_ERR(xaroot))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700160 return xaroot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700162 snprintf(namebuf, sizeof(namebuf), "%X.%X",
163 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
164 inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Jeff Mahoney6c176752009-03-30 14:02:34 -0400166 xadir = lookup_or_create_dir(xaroot, namebuf, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700167 dput(xaroot);
168 return xadir;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400172/* The following are side effects of other operations that aren't explicitly
173 * modifying extended attributes. This includes operations such as permissions
174 * or ownership changes, object deletions, etc. */
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400175struct reiserfs_dentry_buf {
176 struct dentry *xadir;
177 int count;
178 struct dentry *dentries[8];
179};
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400180
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400181static int
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400182fill_with_dentries(void *buf, const char *name, int namelen, loff_t offset,
183 u64 ino, unsigned int d_type)
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400184{
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400185 struct reiserfs_dentry_buf *dbuf = buf;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400186 struct dentry *dentry;
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
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700352 xafile = lookup_one_len(name, xadir, strlen(name));
353 if (IS_ERR(xafile)) {
Jeff Mahoney6c176752009-03-30 14:02:34 -0400354 err = PTR_ERR(xafile);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700355 goto out;
Jeff Mahoney6c176752009-03-30 14:02:34 -0400356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Jeff Mahoney6c176752009-03-30 14:02:34 -0400358 if (xafile->d_inode && (flags & XATTR_CREATE))
359 err = -EEXIST;
360
361 if (!xafile->d_inode) {
362 err = -ENODATA;
363 if (xattr_may_create(flags)) {
364 mutex_lock_nested(&xadir->d_inode->i_mutex,
365 I_MUTEX_XATTR);
366 err = xattr_create(xadir->d_inode, xafile,
367 0700|S_IFREG);
368 mutex_unlock(&xadir->d_inode->i_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700369 }
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Jeff Mahoney6c176752009-03-30 14:02:34 -0400372 if (err)
373 dput(xafile);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400374out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700375 dput(xadir);
376 if (err)
Jeff Mahoney6c176752009-03-30 14:02:34 -0400377 return ERR_PTR(err);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800378 return xafile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/* Internal operations on file data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700382static inline void reiserfs_put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700384 kunmap(page);
385 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400388static struct page *reiserfs_get_page(struct inode *dir, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700390 struct address_space *mapping = dir->i_mapping;
391 struct page *page;
392 /* We can deadlock if we try to free dentries,
393 and an unlink/rmdir has just occured - GFP_NOFS avoids this */
Al Viroc4cdd032005-10-21 03:22:39 -0400394 mapping_set_gfp_mask(mapping, GFP_NOFS);
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400395 page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700396 if (!IS_ERR(page)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700397 kmap(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700398 if (PageError(page))
399 goto fail;
400 }
401 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700403 fail:
404 reiserfs_put_page(page);
405 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700408static inline __u32 xattr_hash(const char *msg, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700410 return csum_partial(msg, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700413int reiserfs_commit_write(struct file *f, struct page *page,
414 unsigned from, unsigned to);
415int reiserfs_prepare_write(struct file *f, struct page *page,
416 unsigned from, unsigned to);
417
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400418static void update_ctime(struct inode *inode)
419{
420 struct timespec now = current_fs_time(inode->i_sb);
421 if (hlist_unhashed(&inode->i_hash) || !inode->i_nlink ||
422 timespec_equal(&inode->i_ctime, &now))
423 return;
424
425 inode->i_ctime = CURRENT_TIME_SEC;
426 mark_inode_dirty(inode);
427}
428
429static int lookup_and_delete_xattr(struct inode *inode, const char *name)
430{
431 int err = 0;
432 struct dentry *dentry, *xadir;
433
434 xadir = open_xa_dir(inode, XATTR_REPLACE);
435 if (IS_ERR(xadir))
436 return PTR_ERR(xadir);
437
438 dentry = lookup_one_len(name, xadir, strlen(name));
439 if (IS_ERR(dentry)) {
440 err = PTR_ERR(dentry);
441 goto out_dput;
442 }
443
444 if (dentry->d_inode) {
445 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
446 err = xattr_unlink(xadir->d_inode, dentry);
447 mutex_unlock(&xadir->d_inode->i_mutex);
448 update_ctime(inode);
449 }
450
451 dput(dentry);
452out_dput:
453 dput(xadir);
454 return err;
455}
456
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/* Generic extended attribute operations that can be used by xa plugins */
459
460/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800461 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 */
463int
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400464reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
465 struct inode *inode, const char *name,
466 const void *buffer, size_t buffer_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700468 int err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800469 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700470 struct page *page;
471 char *data;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700472 size_t file_pos = 0;
473 size_t buffer_pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400474 size_t new_size;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700475 __u32 xahash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700477 if (get_inode_sd_version(inode) == STAT_DATA_V1)
478 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400480 if (!buffer)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400481 return lookup_and_delete_xattr(inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400483 dentry = xattr_lookup(inode, name, flags);
484 if (IS_ERR(dentry))
485 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400487 down_write(&REISERFS_I(inode)->i_xattr_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400489 xahash = xattr_hash(buffer, buffer_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700490 while (buffer_pos < buffer_size || buffer_pos == 0) {
491 size_t chunk;
492 size_t skip = 0;
493 size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1));
494 if (buffer_size - buffer_pos > PAGE_CACHE_SIZE)
495 chunk = PAGE_CACHE_SIZE;
496 else
497 chunk = buffer_size - buffer_pos;
498
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400499 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700500 if (IS_ERR(page)) {
501 err = PTR_ERR(page);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400502 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700503 }
504
505 lock_page(page);
506 data = page_address(page);
507
508 if (file_pos == 0) {
509 struct reiserfs_xattr_header *rxh;
510 skip = file_pos = sizeof(struct reiserfs_xattr_header);
511 if (chunk + skip > PAGE_CACHE_SIZE)
512 chunk = PAGE_CACHE_SIZE - skip;
513 rxh = (struct reiserfs_xattr_header *)data;
514 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
515 rxh->h_hash = cpu_to_le32(xahash);
516 }
517
Jeff Mahoney3227e142008-02-15 14:37:22 -0800518 err = reiserfs_prepare_write(NULL, page, page_offset,
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700519 page_offset + chunk + skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700520 if (!err) {
521 if (buffer)
522 memcpy(data + skip, buffer + buffer_pos, chunk);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800523 err = reiserfs_commit_write(NULL, page, page_offset,
524 page_offset + chunk +
525 skip);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700526 }
527 unlock_page(page);
528 reiserfs_put_page(page);
529 buffer_pos += chunk;
530 file_pos += chunk;
531 skip = 0;
532 if (err || buffer_size == 0 || !buffer)
533 break;
534 }
535
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400536 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
537 if (!err && new_size < i_size_read(dentry->d_inode)) {
538 struct iattr newattrs = {
539 .ia_ctime = current_fs_time(inode->i_sb),
540 .ia_size = buffer_size,
541 .ia_valid = ATTR_SIZE | ATTR_CTIME,
542 };
543 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_XATTR);
544 down_write(&dentry->d_inode->i_alloc_sem);
545 err = reiserfs_setattr(dentry, &newattrs);
546 up_write(&dentry->d_inode->i_alloc_sem);
547 mutex_unlock(&dentry->d_inode->i_mutex);
548 } else
549 update_ctime(inode);
550out_unlock:
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400551 up_write(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800552 dput(dentry);
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400553 return err;
554}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700555
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400556/* We need to start a transaction to maintain lock ordering */
557int reiserfs_xattr_set(struct inode *inode, const char *name,
558 const void *buffer, size_t buffer_size, int flags)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400559{
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400560
561 struct reiserfs_transaction_handle th;
562 int error, error2;
563 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
564
565 if (!(flags & XATTR_REPLACE))
566 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
567
568 reiserfs_write_lock(inode->i_sb);
569 error = journal_begin(&th, inode->i_sb, jbegin_count);
570 if (error) {
571 reiserfs_write_unlock(inode->i_sb);
572 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700573 }
574
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400575 error = reiserfs_xattr_set_handle(&th, inode, name,
576 buffer, buffer_size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700577
Jeff Mahoney0ab26212009-03-30 14:02:39 -0400578 error2 = journal_end(&th, inode->i_sb, jbegin_count);
579 if (error == 0)
580 error = error2;
581 reiserfs_write_unlock(inode->i_sb);
582
583 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800587 * inode->i_mutex: down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589int
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400590reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700591 size_t buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700593 ssize_t err = 0;
Jeff Mahoney3227e142008-02-15 14:37:22 -0800594 struct dentry *dentry;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700595 size_t isize;
596 size_t file_pos = 0;
597 size_t buffer_pos = 0;
598 struct page *page;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700599 __u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700601 if (name == NULL)
602 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700604 /* We can't have xattrs attached to v1 items since they don't have
605 * generation numbers */
606 if (get_inode_sd_version(inode) == STAT_DATA_V1)
607 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400609 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800610 if (IS_ERR(dentry)) {
611 err = PTR_ERR(dentry);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700612 goto out;
613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400615 down_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoneyd9845612009-03-30 14:02:35 -0400616
Jeff Mahoneyf437c522009-03-30 14:02:29 -0400617 isize = i_size_read(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700619 /* Just return the size needed */
620 if (buffer == NULL) {
621 err = isize - sizeof(struct reiserfs_xattr_header);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400622 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700625 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
626 err = -ERANGE;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400627 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700630 while (file_pos < isize) {
631 size_t chunk;
632 char *data;
633 size_t skip = 0;
634 if (isize - file_pos > PAGE_CACHE_SIZE)
635 chunk = PAGE_CACHE_SIZE;
636 else
637 chunk = isize - file_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Jeff Mahoneyec6ea562009-03-30 14:02:30 -0400639 page = reiserfs_get_page(dentry->d_inode, file_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700640 if (IS_ERR(page)) {
641 err = PTR_ERR(page);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400642 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700645 lock_page(page);
646 data = page_address(page);
647 if (file_pos == 0) {
648 struct reiserfs_xattr_header *rxh =
649 (struct reiserfs_xattr_header *)data;
650 skip = file_pos = sizeof(struct reiserfs_xattr_header);
651 chunk -= skip;
652 /* Magic doesn't match up.. */
653 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
654 unlock_page(page);
655 reiserfs_put_page(page);
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400656 reiserfs_warning(inode->i_sb, "jdm-20001",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700657 "Invalid magic for xattr (%s) "
658 "associated with %k", name,
659 INODE_PKEY(inode));
660 err = -EIO;
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400661 goto out_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700662 }
663 hash = le32_to_cpu(rxh->h_hash);
664 }
665 memcpy(buffer + buffer_pos, data + skip, chunk);
666 unlock_page(page);
667 reiserfs_put_page(page);
668 file_pos += chunk;
669 buffer_pos += chunk;
670 skip = 0;
671 }
672 err = isize - sizeof(struct reiserfs_xattr_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700674 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
675 hash) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400676 reiserfs_warning(inode->i_sb, "jdm-20002",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700677 "Invalid hash for xattr (%s) associated "
678 "with %k", name, INODE_PKEY(inode));
679 err = -EIO;
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400682out_unlock:
683 up_read(&REISERFS_I(inode)->i_xattr_sem);
Jeff Mahoney3227e142008-02-15 14:37:22 -0800684 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400686out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/* Actual operations that are exported to VFS-land */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400691struct xattr_handler *reiserfs_xattr_handlers[] = {
692 &reiserfs_xattr_user_handler,
693 &reiserfs_xattr_trusted_handler,
694#ifdef CONFIG_REISERFS_FS_SECURITY
695 &reiserfs_xattr_security_handler,
696#endif
697#ifdef CONFIG_REISERFS_FS_POSIX_ACL
698 &reiserfs_posix_acl_access_handler,
699 &reiserfs_posix_acl_default_handler,
700#endif
701 NULL
702};
703
704/*
705 * In order to implement different sets of xattr operations for each xattr
706 * prefix with the generic xattr API, a filesystem should create a
707 * null-terminated array of struct xattr_handler (one for each prefix) and
708 * hang a pointer to it off of the s_xattr field of the superblock.
709 *
710 * The generic_fooxattr() functions will use this list to dispatch xattr
711 * operations to the correct xattr_handler.
712 */
713#define for_each_xattr_handler(handlers, handler) \
714 for ((handler) = *(handlers)++; \
715 (handler) != NULL; \
716 (handler) = *(handlers)++)
717
718/* This is the implementation for the xattr plugin infrastructure */
719static inline struct xattr_handler *
720find_xattr_handler_prefix(struct xattr_handler **handlers,
721 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400723 struct xattr_handler *xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400725 if (!handlers)
726 return NULL;
727
728 for_each_xattr_handler(handlers, xah) {
729 if (strncmp(xah->prefix, name, strlen(xah->prefix)) == 0)
730 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400733 return xah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737/*
738 * Inode operation getxattr()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 */
740ssize_t
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700741reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer,
742 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400744 struct inode *inode = dentry->d_inode;
745 struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400747 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
748
749 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700750 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400752 return handler->get(inode, name, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755/*
756 * Inode operation setxattr()
757 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800758 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
760int
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700761reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value,
762 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400764 struct inode *inode = dentry->d_inode;
765 struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400767 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
768
769 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700770 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400772 return handler->set(inode, name, value, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775/*
776 * Inode operation removexattr()
777 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800778 * dentry->d_inode->i_mutex down
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700780int reiserfs_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400782 struct inode *inode = dentry->d_inode;
783 struct xattr_handler *handler;
784 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400786 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700787 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400789 return handler->set(inode, name, NULL, 0, XATTR_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400792struct listxattr_buf {
793 size_t size;
794 size_t pos;
795 char *buf;
796 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797};
798
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400799static int listxattr_filler(void *buf, const char *name, int namelen,
800 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400802 struct listxattr_buf *b = (struct listxattr_buf *)buf;
803 size_t size;
804 if (name[0] != '.' ||
805 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
806 struct xattr_handler *handler;
807 handler = find_xattr_handler_prefix(b->inode->i_sb->s_xattr,
808 name);
809 if (!handler) /* Unsupported xattr name */
810 return 0;
811 if (b->buf) {
812 size = handler->list(b->inode, b->buf + b->pos,
813 b->size, name, namelen);
814 if (size > b->size)
815 return -ERANGE;
816 } else {
817 size = handler->list(b->inode, NULL, 0, name, namelen);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400820 b->pos += size;
821 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/*
826 * Inode operation listxattr()
827 *
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400828 * We totally ignore the generic listxattr here because it would be stupid
829 * not to. Since the xattrs are organized in a directory, we can just
830 * readdir to find them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700832ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700834 struct dentry *dir;
835 int err = 0;
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400836 loff_t pos = 0;
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400837 struct listxattr_buf buf = {
838 .inode = dentry->d_inode,
839 .buf = buffer,
840 .size = buffer ? size : 0,
841 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700843 if (!dentry->d_inode)
844 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700846 if (!reiserfs_xattrs(dentry->d_sb) ||
847 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
848 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Jeff Mahoney6c176752009-03-30 14:02:34 -0400850 dir = open_xa_dir(dentry->d_inode, XATTR_REPLACE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700851 if (IS_ERR(dir)) {
852 err = PTR_ERR(dir);
853 if (err == -ENODATA)
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400854 err = 0; /* Not an error if there aren't any xattrs */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700855 goto out;
856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Jeff Mahoney6c176752009-03-30 14:02:34 -0400858 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoneya41f1a42009-03-30 14:02:40 -0400859 err = reiserfs_readdir_dentry(dir, &buf, listxattr_filler, &pos);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400860 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400862 if (!err)
863 err = buf.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jeff Mahoney3227e142008-02-15 14:37:22 -0800865 dput(dir);
Jeff Mahoney8b6dd722009-03-30 14:02:36 -0400866out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700867 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Christoph Hellwigec191572006-02-01 03:06:46 -0800870static int reiserfs_check_acl(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Christoph Hellwigec191572006-02-01 03:06:46 -0800872 struct posix_acl *acl;
873 int error = -EAGAIN; /* do regular unix permission checks by default */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700874
Christoph Hellwigec191572006-02-01 03:06:46 -0800875 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
876
Christoph Hellwigec191572006-02-01 03:06:46 -0800877 if (acl) {
878 if (!IS_ERR(acl)) {
879 error = posix_acl_permission(inode, acl, mask);
880 posix_acl_release(acl);
881 } else if (PTR_ERR(acl) != -ENODATA)
882 error = PTR_ERR(acl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700883 }
884
Christoph Hellwigec191572006-02-01 03:06:46 -0800885 return error;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700886}
887
Al Viroe6305c42008-07-15 21:03:57 -0400888int reiserfs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Christoph Hellwigec191572006-02-01 03:06:46 -0800890 /*
891 * We don't do permission checks on the internal objects.
892 * Permissions are determined by the "owning" object.
893 */
Jeff Mahoney6dfede692009-03-30 14:02:32 -0400894 if (IS_PRIVATE(inode))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700895 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 /*
Christoph Hellwigec191572006-02-01 03:06:46 -0800897 * Stat data v1 doesn't support ACLs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 */
Christoph Hellwigec191572006-02-01 03:06:46 -0800899 if (get_inode_sd_version(inode) == STAT_DATA_V1)
900 return generic_permission(inode, mask, NULL);
901 else
902 return generic_permission(inode, mask, reiserfs_check_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400904
905static int create_privroot(struct dentry *dentry)
906{
907 int err;
908 struct inode *inode = dentry->d_parent->d_inode;
909 mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR);
Jeff Mahoney6c176752009-03-30 14:02:34 -0400910 err = xattr_mkdir(inode, dentry, 0700);
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400911 mutex_unlock(&inode->i_mutex);
912 if (err) {
913 dput(dentry);
914 dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400917 if (dentry && dentry->d_inode)
918 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
919 "storage.\n", PRIVROOT_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400921 return err;
922}
923
924static int xattr_mount_check(struct super_block *s)
925{
926 /* We need generation numbers to ensure that the oid mapping is correct
927 * v3.5 filesystems don't have them. */
Jeff Mahoney48b32a32009-03-30 14:02:38 -0400928 if (old_format_only(s)) {
929 if (reiserfs_xattrs_optional(s)) {
930 /* Old format filesystem, but optional xattrs have
931 * been enabled. Error out. */
932 reiserfs_warning(s, "jdm-2005",
933 "xattrs/ACLs not supported "
934 "on pre-v3.6 format filesystems. "
935 "Failing mount.");
936 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938 }
939
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400940 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400943#else
944int __init reiserfs_xattr_register_handlers(void) { return 0; }
945void reiserfs_xattr_unregister_handlers(void) {}
946#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948/* This will catch lookups from the fs root to .reiserfs_priv */
949static int
950xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
951{
952 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
953 if (name->len == priv_root->d_name.len &&
954 name->hash == priv_root->d_name.hash &&
955 !memcmp(name->name, priv_root->d_name.name, name->len)) {
956 return -ENOENT;
957 } else if (q1->len == name->len &&
958 !memcmp(q1->name, name->name, name->len))
959 return 0;
960 return 1;
961}
962
Al Viroe16404e2009-02-20 05:55:13 +0000963static const struct dentry_operations xattr_lookup_poison_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 .d_compare = xattr_lookup_poison,
965};
966
967/* We need to take a copy of the mount flags since things like
968 * MS_RDONLY don't get set until *after* we're called.
969 * mount_flags != mount_options */
970int reiserfs_xattr_init(struct super_block *s, int mount_flags)
971{
972 int err = 0;
973
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400974#ifdef CONFIG_REISERFS_FS_XATTR
975 err = xattr_mount_check(s);
976 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 goto error;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400978#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 /* If we don't have the privroot located yet - go find it */
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400981 if (!REISERFS_SB(s)->priv_root) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct dentry *dentry;
983 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
984 strlen(PRIVROOT_NAME));
985 if (!IS_ERR(dentry)) {
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400986#ifdef CONFIG_REISERFS_FS_XATTR
987 if (!(mount_flags & MS_RDONLY) && !dentry->d_inode)
988 err = create_privroot(dentry);
989#endif
990 if (!dentry->d_inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 dput(dentry);
992 dentry = NULL;
993 }
994 } else
995 err = PTR_ERR(dentry);
996
997 if (!err && dentry) {
998 s->s_root->d_op = &xattr_lookup_poison_ops;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -0400999 dentry->d_inode->i_flags |= S_PRIVATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 REISERFS_SB(s)->priv_root = dentry;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001001#ifdef CONFIG_REISERFS_FS_XATTR
1002 /* xattrs are unavailable */
1003 } else if (!(mount_flags & MS_RDONLY)) {
1004 /* If we're read-only it just means that the dir
1005 * hasn't been created. Not an error -- just no
1006 * xattrs on the fs. We'll check again if we
1007 * go read-write */
1008 reiserfs_warning(s, "jdm-20006",
1009 "xattrs/ACLs enabled and couldn't "
1010 "find/create .reiserfs_priv. "
1011 "Failing mount.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 err = -EOPNOTSUPP;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001013#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
1016
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001017#ifdef CONFIG_REISERFS_FS_XATTR
Jeff Mahoney48b32a32009-03-30 14:02:38 -04001018 if (!err)
1019 s->s_xattr = reiserfs_xattr_handlers;
1020
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. */
1029 s->s_flags = s->s_flags & ~MS_POSIXACL;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001030#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (reiserfs_posixacl(s))
1032 s->s_flags |= MS_POSIXACL;
Jeff Mahoneya72bdb12009-03-30 14:02:33 -04001033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 return err;
1036}