reiserfs: Warn on lock relax if taken recursively
[deliverable/linux.git] / fs / reiserfs / xattr.c
CommitLineData
1da177e4
LT
1/*
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.
d984561b
JM
30 *
31 * Locking works like so:
8b6dd72a
JM
32 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
33 * The xattrs themselves are protected by the xattr_sem.
1da177e4
LT
34 */
35
36#include <linux/reiserfs_fs.h>
16f7e0fe 37#include <linux/capability.h>
1da177e4
LT
38#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>
1da177e4 47#include <asm/uaccess.h>
3277c39f 48#include <net/checksum.h>
1da177e4 49#include <linux/stat.h>
6c17675e 50#include <linux/quotaops.h>
1da177e4 51
1da177e4
LT
52#define PRIVROOT_NAME ".reiserfs_priv"
53#define XAROOT_NAME "xattrs"
54
1da177e4 55
6c17675e
JM
56/* Helpers for inode ops. We do this so that we don't have all the VFS
57 * overhead and also for proper i_mutex annotation.
58 * dir->i_mutex must be held for all of them. */
3a355cc6 59#ifdef CONFIG_REISERFS_FS_XATTR
6c17675e 60static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
1da177e4 61{
6c17675e 62 BUG_ON(!mutex_is_locked(&dir->i_mutex));
e1c50248 63 vfs_dq_init(dir);
6c17675e
JM
64 return dir->i_op->create(dir, dentry, mode, NULL);
65}
3a355cc6 66#endif
bd4c625c 67
6c17675e
JM
68static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
69{
70 BUG_ON(!mutex_is_locked(&dir->i_mutex));
e1c50248 71 vfs_dq_init(dir);
6c17675e
JM
72 return dir->i_op->mkdir(dir, dentry, mode);
73}
bd4c625c 74
6c17675e
JM
75/* We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
76 * mutation ops aren't called during rename or splace, which are the
77 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
78 * better than allocating another subclass just for this code. */
79static int xattr_unlink(struct inode *dir, struct dentry *dentry)
80{
81 int error;
82 BUG_ON(!mutex_is_locked(&dir->i_mutex));
e1c50248 83 vfs_dq_init(dir);
bd4c625c 84
6c17675e
JM
85 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
86 error = dir->i_op->unlink(dir, dentry);
87 mutex_unlock(&dentry->d_inode->i_mutex);
88
89 if (!error)
90 d_delete(dentry);
91 return error;
92}
93
94static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
95{
96 int error;
97 BUG_ON(!mutex_is_locked(&dir->i_mutex));
e1c50248 98 vfs_dq_init(dir);
6c17675e
JM
99
100 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
101 dentry_unhash(dentry);
102 error = dir->i_op->rmdir(dir, dentry);
103 if (!error)
104 dentry->d_inode->i_flags |= S_DEAD;
105 mutex_unlock(&dentry->d_inode->i_mutex);
106 if (!error)
107 d_delete(dentry);
108 dput(dentry);
109
110 return error;
111}
112
6c17675e
JM
113#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
114
ab17c4f0 115static struct dentry *open_xa_root(struct super_block *sb, int flags)
6c17675e 116{
ab17c4f0
JM
117 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
118 struct dentry *xaroot;
119 if (!privroot->d_inode)
120 return ERR_PTR(-ENODATA);
6c17675e 121
ab17c4f0 122 mutex_lock_nested(&privroot->d_inode->i_mutex, I_MUTEX_XATTR);
6c17675e 123
ab17c4f0 124 xaroot = dget(REISERFS_SB(sb)->xattr_root);
ceb5edc4
JM
125 if (!xaroot)
126 xaroot = ERR_PTR(-ENODATA);
127 else if (!xaroot->d_inode) {
ab17c4f0 128 int err = -ENODATA;
5a6059c3 129 if (xattr_may_create(flags))
ab17c4f0 130 err = xattr_mkdir(privroot->d_inode, xaroot, 0700);
9b7f3755 131 if (err) {
ab17c4f0
JM
132 dput(xaroot);
133 xaroot = ERR_PTR(err);
9b7f3755 134 }
bd4c625c 135 }
6c17675e 136
ab17c4f0
JM
137 mutex_unlock(&privroot->d_inode->i_mutex);
138 return xaroot;
1da177e4
LT
139}
140
bd4c625c 141static struct dentry *open_xa_dir(const struct inode *inode, int flags)
1da177e4 142{
bd4c625c
LT
143 struct dentry *xaroot, *xadir;
144 char namebuf[17];
145
6c17675e 146 xaroot = open_xa_root(inode->i_sb, flags);
9b7f3755 147 if (IS_ERR(xaroot))
bd4c625c 148 return xaroot;
bd4c625c 149
bd4c625c
LT
150 snprintf(namebuf, sizeof(namebuf), "%X.%X",
151 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
152 inode->i_generation);
bd4c625c 153
ab17c4f0
JM
154 mutex_lock_nested(&xaroot->d_inode->i_mutex, I_MUTEX_XATTR);
155
156 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
157 if (!IS_ERR(xadir) && !xadir->d_inode) {
158 int err = -ENODATA;
159 if (xattr_may_create(flags))
160 err = xattr_mkdir(xaroot->d_inode, xadir, 0700);
161 if (err) {
162 dput(xadir);
163 xadir = ERR_PTR(err);
164 }
165 }
166
167 mutex_unlock(&xaroot->d_inode->i_mutex);
bd4c625c
LT
168 dput(xaroot);
169 return xadir;
1da177e4
LT
170}
171
48b32a35
JM
172/* 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. */
a41f1a47
JM
175struct reiserfs_dentry_buf {
176 struct dentry *xadir;
177 int count;
178 struct dentry *dentries[8];
179};
bd4c625c 180
a72bdb1c 181static int
a41f1a47
JM
182fill_with_dentries(void *buf, const char *name, int namelen, loff_t offset,
183 u64 ino, unsigned int d_type)
a72bdb1c 184{
a41f1a47 185 struct reiserfs_dentry_buf *dbuf = buf;
a72bdb1c 186 struct dentry *dentry;
5a6059c3 187 WARN_ON_ONCE(!mutex_is_locked(&dbuf->xadir->d_inode->i_mutex));
bd4c625c 188
a41f1a47
JM
189 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
190 return -ENOSPC;
bd4c625c 191
a41f1a47
JM
192 if (name[0] == '.' && (name[1] == '\0' ||
193 (name[1] == '.' && name[2] == '\0')))
194 return 0;
bd4c625c 195
a41f1a47 196 dentry = lookup_one_len(name, dbuf->xadir, namelen);
a72bdb1c 197 if (IS_ERR(dentry)) {
a41f1a47 198 return PTR_ERR(dentry);
a72bdb1c 199 } else if (!dentry->d_inode) {
a41f1a47
JM
200 /* A directory entry exists, but no file? */
201 reiserfs_error(dentry->d_sb, "xattr-20003",
202 "Corrupted directory: xattr %s listed but "
203 "not found for file %s.\n",
204 dentry->d_name.name, dbuf->xadir->d_name.name);
205 dput(dentry);
206 return -EIO;
bd4c625c 207 }
1da177e4 208
a41f1a47
JM
209 dbuf->dentries[dbuf->count++] = dentry;
210 return 0;
1da177e4
LT
211}
212
a41f1a47
JM
213static void
214cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
1da177e4 215{
a41f1a47
JM
216 int i;
217 for (i = 0; i < buf->count; i++)
218 if (buf->dentries[i])
219 dput(buf->dentries[i]);
a72bdb1c
JM
220}
221
a41f1a47
JM
222static int reiserfs_for_each_xattr(struct inode *inode,
223 int (*action)(struct dentry *, void *),
224 void *data)
a72bdb1c 225{
a41f1a47
JM
226 struct dentry *dir;
227 int i, err = 0;
228 loff_t pos = 0;
229 struct reiserfs_dentry_buf buf = {
230 .count = 0,
231 };
1da177e4 232
a72bdb1c
JM
233 /* Skip out, an xattr has no xattrs associated with it */
234 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
235 return 0;
1da177e4 236
6c17675e 237 dir = open_xa_dir(inode, XATTR_REPLACE);
a72bdb1c
JM
238 if (IS_ERR(dir)) {
239 err = PTR_ERR(dir);
240 goto out;
241 } else if (!dir->d_inode) {
a41f1a47
JM
242 err = 0;
243 goto out_dir;
a72bdb1c 244 }
1da177e4 245
47376ceb
FW
246 reiserfs_mutex_lock_nested_safe(&dir->d_inode->i_mutex, I_MUTEX_XATTR,
247 inode->i_sb);
a41f1a47
JM
248 buf.xadir = dir;
249 err = reiserfs_readdir_dentry(dir, &buf, fill_with_dentries, &pos);
250 while ((err == 0 || err == -ENOSPC) && buf.count) {
251 err = 0;
1da177e4 252
a41f1a47
JM
253 for (i = 0; i < buf.count && buf.dentries[i]; i++) {
254 int lerr = 0;
255 struct dentry *dentry = buf.dentries[i];
1da177e4 256
a41f1a47
JM
257 if (err == 0 && !S_ISDIR(dentry->d_inode->i_mode))
258 lerr = action(dentry, data);
1da177e4 259
a41f1a47
JM
260 dput(dentry);
261 buf.dentries[i] = NULL;
262 err = lerr ?: err;
bd4c625c 263 }
a41f1a47
JM
264 buf.count = 0;
265 if (!err)
266 err = reiserfs_readdir_dentry(dir, &buf,
267 fill_with_dentries, &pos);
8b6dd72a 268 }
a41f1a47 269 mutex_unlock(&dir->d_inode->i_mutex);
1da177e4 270
a41f1a47
JM
271 /* Clean up after a failed readdir */
272 cleanup_dentry_buf(&buf);
1da177e4 273
d984561b 274 if (!err) {
a41f1a47
JM
275 /* We start a transaction here to avoid a ABBA situation
276 * between the xattr root's i_mutex and the journal lock.
277 * This doesn't incur much additional overhead since the
278 * new transaction will just nest inside the
279 * outer transaction. */
280 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
281 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
282 struct reiserfs_transaction_handle th;
283 err = journal_begin(&th, inode->i_sb, blocks);
284 if (!err) {
285 int jerror;
286 mutex_lock_nested(&dir->d_parent->d_inode->i_mutex,
287 I_MUTEX_XATTR);
288 err = action(dir, data);
289 jerror = journal_end(&th, inode->i_sb, blocks);
290 mutex_unlock(&dir->d_parent->d_inode->i_mutex);
291 err = jerror ?: err;
292 }
a72bdb1c 293 }
a41f1a47
JM
294out_dir:
295 dput(dir);
a72bdb1c 296out:
a41f1a47
JM
297 /* -ENODATA isn't an error */
298 if (err == -ENODATA)
299 err = 0;
a72bdb1c
JM
300 return err;
301}
1da177e4 302
a41f1a47 303static int delete_one_xattr(struct dentry *dentry, void *data)
a72bdb1c 304{
a41f1a47 305 struct inode *dir = dentry->d_parent->d_inode;
1da177e4 306
a41f1a47
JM
307 /* This is the xattr dir, handle specially. */
308 if (S_ISDIR(dentry->d_inode->i_mode))
309 return xattr_rmdir(dir, dentry);
1da177e4 310
a41f1a47
JM
311 return xattr_unlink(dir, dentry);
312}
bd4c625c 313
a41f1a47
JM
314static int chown_one_xattr(struct dentry *dentry, void *data)
315{
316 struct iattr *attrs = data;
317 return reiserfs_setattr(dentry, attrs);
318}
1da177e4 319
a41f1a47
JM
320/* No i_mutex, but the inode is unconnected. */
321int reiserfs_delete_xattrs(struct inode *inode)
322{
323 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
324 if (err)
325 reiserfs_warning(inode->i_sb, "jdm-20004",
326 "Couldn't delete all xattrs (%d)\n", err);
a72bdb1c
JM
327 return err;
328}
1da177e4 329
a41f1a47 330/* inode->i_mutex: down */
a72bdb1c
JM
331int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
332{
a41f1a47 333 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
8b6dd72a
JM
334 if (err)
335 reiserfs_warning(inode->i_sb, "jdm-20007",
336 "Couldn't chown all xattrs (%d)\n", err);
a72bdb1c 337 return err;
1da177e4
LT
338}
339
a72bdb1c 340#ifdef CONFIG_REISERFS_FS_XATTR
a72bdb1c
JM
341/* Returns a dentry corresponding to a specific extended attribute file
342 * for the inode. If flags allow, the file is created. Otherwise, a
343 * valid or negative dentry, or an error is returned. */
48b32a35
JM
344static struct dentry *xattr_lookup(struct inode *inode, const char *name,
345 int flags)
1da177e4 346{
a72bdb1c
JM
347 struct dentry *xadir, *xafile;
348 int err = 0;
349
350 xadir = open_xa_dir(inode, flags);
6c17675e 351 if (IS_ERR(xadir))
a72bdb1c 352 return ERR_CAST(xadir);
a72bdb1c 353
5a6059c3 354 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
a72bdb1c
JM
355 xafile = lookup_one_len(name, xadir, strlen(name));
356 if (IS_ERR(xafile)) {
6c17675e
JM
357 err = PTR_ERR(xafile);
358 goto out;
bd4c625c 359 }
a72bdb1c 360
6c17675e
JM
361 if (xafile->d_inode && (flags & XATTR_CREATE))
362 err = -EEXIST;
a72bdb1c 363
6c17675e
JM
364 if (!xafile->d_inode) {
365 err = -ENODATA;
5a6059c3 366 if (xattr_may_create(flags))
6c17675e
JM
367 err = xattr_create(xadir->d_inode, xafile,
368 0700|S_IFREG);
a72bdb1c
JM
369 }
370
6c17675e
JM
371 if (err)
372 dput(xafile);
a72bdb1c 373out:
5a6059c3 374 mutex_unlock(&xadir->d_inode->i_mutex);
a72bdb1c
JM
375 dput(xadir);
376 if (err)
6c17675e 377 return ERR_PTR(err);
a72bdb1c 378 return xafile;
1da177e4
LT
379}
380
1da177e4 381/* Internal operations on file data */
bd4c625c 382static inline void reiserfs_put_page(struct page *page)
1da177e4 383{
bd4c625c
LT
384 kunmap(page);
385 page_cache_release(page);
1da177e4
LT
386}
387
ec6ea56b 388static struct page *reiserfs_get_page(struct inode *dir, size_t n)
1da177e4 389{
bd4c625c
LT
390 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 */
c4cdd038 394 mapping_set_gfp_mask(mapping, GFP_NOFS);
ec6ea56b 395 page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
bd4c625c 396 if (!IS_ERR(page)) {
bd4c625c 397 kmap(page);
bd4c625c
LT
398 if (PageError(page))
399 goto fail;
400 }
401 return page;
402
403 fail:
404 reiserfs_put_page(page);
405 return ERR_PTR(-EIO);
1da177e4
LT
406}
407
bd4c625c 408static inline __u32 xattr_hash(const char *msg, int len)
1da177e4 409{
bd4c625c 410 return csum_partial(msg, len, 0);
1da177e4
LT
411}
412
ba9d8cec
VS
413int 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
48b32a35
JM
418static 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
5a6059c3 438 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
48b32a35
JM
439 dentry = lookup_one_len(name, xadir, strlen(name));
440 if (IS_ERR(dentry)) {
441 err = PTR_ERR(dentry);
442 goto out_dput;
443 }
444
445 if (dentry->d_inode) {
48b32a35 446 err = xattr_unlink(xadir->d_inode, dentry);
48b32a35
JM
447 update_ctime(inode);
448 }
449
450 dput(dentry);
451out_dput:
5a6059c3 452 mutex_unlock(&xadir->d_inode->i_mutex);
48b32a35
JM
453 dput(xadir);
454 return err;
455}
456
ba9d8cec 457
1da177e4
LT
458/* Generic extended attribute operations that can be used by xa plugins */
459
460/*
1b1dcc1b 461 * inode->i_mutex: down
1da177e4
LT
462 */
463int
0ab2621e
JM
464reiserfs_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)
1da177e4 467{
bd4c625c 468 int err = 0;
3227e14c 469 struct dentry *dentry;
bd4c625c
LT
470 struct page *page;
471 char *data;
bd4c625c
LT
472 size_t file_pos = 0;
473 size_t buffer_pos = 0;
48b32a35 474 size_t new_size;
bd4c625c
LT
475 __u32 xahash = 0;
476
bd4c625c
LT
477 if (get_inode_sd_version(inode) == STAT_DATA_V1)
478 return -EOPNOTSUPP;
479
8b6dd72a 480 if (!buffer)
48b32a35 481 return lookup_and_delete_xattr(inode, name);
bd4c625c 482
48b32a35
JM
483 dentry = xattr_lookup(inode, name, flags);
484 if (IS_ERR(dentry))
485 return PTR_ERR(dentry);
bd4c625c 486
0719d343 487 reiserfs_down_read_safe(&REISERFS_I(inode)->i_xattr_sem, inode->i_sb);
bd4c625c 488
8b6dd72a 489 xahash = xattr_hash(buffer, buffer_size);
bd4c625c
LT
490 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
ec6ea56b 499 page = reiserfs_get_page(dentry->d_inode, file_pos);
bd4c625c
LT
500 if (IS_ERR(page)) {
501 err = PTR_ERR(page);
48b32a35 502 goto out_unlock;
bd4c625c
LT
503 }
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
3227e14c 518 err = reiserfs_prepare_write(NULL, page, page_offset,
ba9d8cec 519 page_offset + chunk + skip);
bd4c625c
LT
520 if (!err) {
521 if (buffer)
522 memcpy(data + skip, buffer + buffer_pos, chunk);
3227e14c
JM
523 err = reiserfs_commit_write(NULL, page, page_offset,
524 page_offset + chunk +
525 skip);
bd4c625c
LT
526 }
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
48b32a35
JM
536 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:
8b6dd72a 551 up_write(&REISERFS_I(inode)->i_xattr_sem);
3227e14c 552 dput(dentry);
48b32a35
JM
553 return err;
554}
bd4c625c 555
0ab2621e
JM
556/* 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)
48b32a35 559{
0ab2621e
JM
560
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;
1da177e4 573 }
bd4c625c 574
0ab2621e
JM
575 error = reiserfs_xattr_set_handle(&th, inode, name,
576 buffer, buffer_size, flags);
bd4c625c 577
0ab2621e
JM
578 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;
1da177e4
LT
584}
585
586/*
1b1dcc1b 587 * inode->i_mutex: down
1da177e4
LT
588 */
589int
48b32a35 590reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
bd4c625c 591 size_t buffer_size)
1da177e4 592{
bd4c625c 593 ssize_t err = 0;
3227e14c 594 struct dentry *dentry;
bd4c625c
LT
595 size_t isize;
596 size_t file_pos = 0;
597 size_t buffer_pos = 0;
598 struct page *page;
bd4c625c
LT
599 __u32 hash = 0;
600
601 if (name == NULL)
602 return -EINVAL;
603
604 /* 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;
608
48b32a35 609 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
3227e14c
JM
610 if (IS_ERR(dentry)) {
611 err = PTR_ERR(dentry);
bd4c625c
LT
612 goto out;
613 }
614
8b6dd72a 615 down_read(&REISERFS_I(inode)->i_xattr_sem);
d984561b 616
f437c529 617 isize = i_size_read(dentry->d_inode);
bd4c625c
LT
618
619 /* Just return the size needed */
620 if (buffer == NULL) {
621 err = isize - sizeof(struct reiserfs_xattr_header);
8b6dd72a 622 goto out_unlock;
bd4c625c
LT
623 }
624
625 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
626 err = -ERANGE;
8b6dd72a 627 goto out_unlock;
bd4c625c
LT
628 }
629
630 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;
638
a72bdb1c 639 page = reiserfs_get_page(dentry->d_inode, file_pos);
bd4c625c
LT
640 if (IS_ERR(page)) {
641 err = PTR_ERR(page);
8b6dd72a 642 goto out_unlock;
bd4c625c
LT
643 }
644
645 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);
a72bdb1c 656 reiserfs_warning(inode->i_sb, "jdm-20001",
bd4c625c
LT
657 "Invalid magic for xattr (%s) "
658 "associated with %k", name,
659 INODE_PKEY(inode));
660 err = -EIO;
8b6dd72a 661 goto out_unlock;
bd4c625c
LT
662 }
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);
673
674 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
675 hash) {
a72bdb1c 676 reiserfs_warning(inode->i_sb, "jdm-20002",
bd4c625c
LT
677 "Invalid hash for xattr (%s) associated "
678 "with %k", name, INODE_PKEY(inode));
679 err = -EIO;
680 }
681
8b6dd72a
JM
682out_unlock:
683 up_read(&REISERFS_I(inode)->i_xattr_sem);
3227e14c 684 dput(dentry);
bd4c625c 685
a72bdb1c 686out:
bd4c625c 687 return err;
1da177e4
LT
688}
689
48b32a35
JM
690/*
691 * In order to implement different sets of xattr operations for each xattr
692 * prefix with the generic xattr API, a filesystem should create a
693 * null-terminated array of struct xattr_handler (one for each prefix) and
694 * hang a pointer to it off of the s_xattr field of the superblock.
695 *
696 * The generic_fooxattr() functions will use this list to dispatch xattr
697 * operations to the correct xattr_handler.
698 */
699#define for_each_xattr_handler(handlers, handler) \
700 for ((handler) = *(handlers)++; \
701 (handler) != NULL; \
702 (handler) = *(handlers)++)
1da177e4 703
48b32a35
JM
704/* This is the implementation for the xattr plugin infrastructure */
705static inline struct xattr_handler *
706find_xattr_handler_prefix(struct xattr_handler **handlers,
707 const char *name)
1da177e4 708{
48b32a35 709 struct xattr_handler *xah;
bd4c625c 710
48b32a35
JM
711 if (!handlers)
712 return NULL;
bd4c625c 713
48b32a35
JM
714 for_each_xattr_handler(handlers, xah) {
715 if (strncmp(xah->prefix, name, strlen(xah->prefix)) == 0)
716 break;
bd4c625c
LT
717 }
718
48b32a35 719 return xah;
bd4c625c 720}
1da177e4 721
1da177e4
LT
722
723/*
724 * Inode operation getxattr()
1da177e4
LT
725 */
726ssize_t
bd4c625c
LT
727reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer,
728 size_t size)
1da177e4 729{
48b32a35
JM
730 struct inode *inode = dentry->d_inode;
731 struct xattr_handler *handler;
bd4c625c 732
48b32a35
JM
733 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
734
735 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
bd4c625c
LT
736 return -EOPNOTSUPP;
737
48b32a35 738 return handler->get(inode, name, buffer, size);
1da177e4
LT
739}
740
1da177e4
LT
741/*
742 * Inode operation setxattr()
743 *
1b1dcc1b 744 * dentry->d_inode->i_mutex down
1da177e4
LT
745 */
746int
bd4c625c
LT
747reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value,
748 size_t size, int flags)
1da177e4 749{
48b32a35
JM
750 struct inode *inode = dentry->d_inode;
751 struct xattr_handler *handler;
bd4c625c 752
48b32a35
JM
753 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
754
755 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
bd4c625c
LT
756 return -EOPNOTSUPP;
757
48b32a35 758 return handler->set(inode, name, value, size, flags);
1da177e4
LT
759}
760
761/*
762 * Inode operation removexattr()
763 *
1b1dcc1b 764 * dentry->d_inode->i_mutex down
1da177e4 765 */
bd4c625c 766int reiserfs_removexattr(struct dentry *dentry, const char *name)
1da177e4 767{
48b32a35
JM
768 struct inode *inode = dentry->d_inode;
769 struct xattr_handler *handler;
770 handler = find_xattr_handler_prefix(inode->i_sb->s_xattr, name);
1da177e4 771
48b32a35 772 if (!handler || get_inode_sd_version(inode) == STAT_DATA_V1)
bd4c625c 773 return -EOPNOTSUPP;
1da177e4 774
48b32a35 775 return handler->set(inode, name, NULL, 0, XATTR_REPLACE);
1da177e4
LT
776}
777
48b32a35
JM
778struct listxattr_buf {
779 size_t size;
780 size_t pos;
781 char *buf;
782 struct inode *inode;
1da177e4
LT
783};
784
48b32a35
JM
785static int listxattr_filler(void *buf, const char *name, int namelen,
786 loff_t offset, u64 ino, unsigned int d_type)
1da177e4 787{
48b32a35
JM
788 struct listxattr_buf *b = (struct listxattr_buf *)buf;
789 size_t size;
790 if (name[0] != '.' ||
791 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
792 struct xattr_handler *handler;
793 handler = find_xattr_handler_prefix(b->inode->i_sb->s_xattr,
794 name);
795 if (!handler) /* Unsupported xattr name */
796 return 0;
797 if (b->buf) {
798 size = handler->list(b->inode, b->buf + b->pos,
799 b->size, name, namelen);
800 if (size > b->size)
801 return -ERANGE;
802 } else {
803 size = handler->list(b->inode, NULL, 0, name, namelen);
bd4c625c 804 }
bd4c625c 805
48b32a35
JM
806 b->pos += size;
807 }
bd4c625c 808 return 0;
1da177e4 809}
bd4c625c 810
1da177e4
LT
811/*
812 * Inode operation listxattr()
813 *
48b32a35
JM
814 * We totally ignore the generic listxattr here because it would be stupid
815 * not to. Since the xattrs are organized in a directory, we can just
816 * readdir to find them.
1da177e4 817 */
bd4c625c 818ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
1da177e4 819{
bd4c625c
LT
820 struct dentry *dir;
821 int err = 0;
a41f1a47 822 loff_t pos = 0;
48b32a35
JM
823 struct listxattr_buf buf = {
824 .inode = dentry->d_inode,
825 .buf = buffer,
826 .size = buffer ? size : 0,
827 };
bd4c625c
LT
828
829 if (!dentry->d_inode)
830 return -EINVAL;
831
677c9b2e 832 if (!dentry->d_sb->s_xattr ||
bd4c625c
LT
833 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
834 return -EOPNOTSUPP;
835
6c17675e 836 dir = open_xa_dir(dentry->d_inode, XATTR_REPLACE);
bd4c625c
LT
837 if (IS_ERR(dir)) {
838 err = PTR_ERR(dir);
839 if (err == -ENODATA)
48b32a35 840 err = 0; /* Not an error if there aren't any xattrs */
bd4c625c
LT
841 goto out;
842 }
843
6c17675e 844 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
a41f1a47 845 err = reiserfs_readdir_dentry(dir, &buf, listxattr_filler, &pos);
6c17675e 846 mutex_unlock(&dir->d_inode->i_mutex);
bd4c625c 847
48b32a35
JM
848 if (!err)
849 err = buf.pos;
bd4c625c 850
3227e14c 851 dput(dir);
8b6dd72a 852out:
bd4c625c 853 return err;
1da177e4
LT
854}
855
a72bdb1c 856static int reiserfs_check_acl(struct inode *inode, int mask)
1da177e4 857{
a72bdb1c
JM
858 struct posix_acl *acl;
859 int error = -EAGAIN; /* do regular unix permission checks by default */
bd4c625c 860
a72bdb1c
JM
861 acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS);
862
a72bdb1c
JM
863 if (acl) {
864 if (!IS_ERR(acl)) {
865 error = posix_acl_permission(inode, acl, mask);
866 posix_acl_release(acl);
867 } else if (PTR_ERR(acl) != -ENODATA)
868 error = PTR_ERR(acl);
bd4c625c
LT
869 }
870
a72bdb1c 871 return error;
1da177e4
LT
872}
873
a72bdb1c 874static int create_privroot(struct dentry *dentry)
1da177e4 875{
a72bdb1c
JM
876 int err;
877 struct inode *inode = dentry->d_parent->d_inode;
5a6059c3
JM
878 WARN_ON_ONCE(!mutex_is_locked(&inode->i_mutex));
879
6c17675e 880 err = xattr_mkdir(inode, dentry, 0700);
edcc37a0
AV
881 if (err || !dentry->d_inode) {
882 reiserfs_warning(dentry->d_sb, "jdm-20006",
883 "xattrs/ACLs enabled and couldn't "
884 "find/create .reiserfs_priv. "
885 "Failing mount.");
886 return -EOPNOTSUPP;
bd4c625c
LT
887 }
888
edcc37a0
AV
889 dentry->d_inode->i_flags |= S_PRIVATE;
890 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
891 "storage.\n", PRIVROOT_NAME);
bd4c625c 892
edcc37a0 893 return 0;
1da177e4
LT
894}
895
12abb35a
JM
896#else
897int __init reiserfs_xattr_register_handlers(void) { return 0; }
898void reiserfs_xattr_unregister_handlers(void) {}
899static int create_privroot(struct dentry *dentry) { return 0; }
900#endif
901
902/* Actual operations that are exported to VFS-land */
903struct xattr_handler *reiserfs_xattr_handlers[] = {
904#ifdef CONFIG_REISERFS_FS_XATTR
905 &reiserfs_xattr_user_handler,
906 &reiserfs_xattr_trusted_handler,
907#endif
908#ifdef CONFIG_REISERFS_FS_SECURITY
909 &reiserfs_xattr_security_handler,
910#endif
911#ifdef CONFIG_REISERFS_FS_POSIX_ACL
912 &reiserfs_posix_acl_access_handler,
913 &reiserfs_posix_acl_default_handler,
914#endif
915 NULL
916};
917
a72bdb1c 918static int xattr_mount_check(struct super_block *s)
1da177e4 919{
a72bdb1c
JM
920 /* We need generation numbers to ensure that the oid mapping is correct
921 * v3.5 filesystems don't have them. */
48b32a35
JM
922 if (old_format_only(s)) {
923 if (reiserfs_xattrs_optional(s)) {
924 /* Old format filesystem, but optional xattrs have
925 * been enabled. Error out. */
926 reiserfs_warning(s, "jdm-2005",
927 "xattrs/ACLs not supported "
928 "on pre-v3.6 format filesystems. "
929 "Failing mount.");
930 return -EOPNOTSUPP;
931 }
a72bdb1c
JM
932 }
933
934 return 0;
1da177e4
LT
935}
936
b83674c0
JM
937int reiserfs_permission(struct inode *inode, int mask)
938{
939 /*
940 * We don't do permission checks on the internal objects.
941 * Permissions are determined by the "owning" object.
942 */
943 if (IS_PRIVATE(inode))
944 return 0;
945
946#ifdef CONFIG_REISERFS_FS_XATTR
947 /*
948 * Stat data v1 doesn't support ACLs.
949 */
950 if (get_inode_sd_version(inode) != STAT_DATA_V1)
951 return generic_permission(inode, mask, reiserfs_check_acl);
952#endif
953 return generic_permission(inode, mask, NULL);
954}
955
1da177e4
LT
956/* This will catch lookups from the fs root to .reiserfs_priv */
957static int
bd4c625c 958xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
1da177e4 959{
bd4c625c 960 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
edcc37a0 961 if (container_of(q1, struct dentry, d_name) == priv_root)
bd4c625c 962 return -ENOENT;
edcc37a0 963 if (q1->len == name->len &&
bd4c625c
LT
964 !memcmp(q1->name, name->name, name->len))
965 return 0;
966 return 1;
1da177e4
LT
967}
968
e16404ed 969static const struct dentry_operations xattr_lookup_poison_ops = {
bd4c625c 970 .d_compare = xattr_lookup_poison,
1da177e4
LT
971};
972
edcc37a0
AV
973int reiserfs_lookup_privroot(struct super_block *s)
974{
975 struct dentry *dentry;
976 int err = 0;
977
978 /* If we don't have the privroot located yet - go find it */
c72e0575 979 reiserfs_mutex_lock_safe(&s->s_root->d_inode->i_mutex, s);
edcc37a0
AV
980 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
981 strlen(PRIVROOT_NAME));
982 if (!IS_ERR(dentry)) {
983 REISERFS_SB(s)->priv_root = dentry;
73422811
JM
984 if (!reiserfs_expose_privroot(s))
985 s->s_root->d_op = &xattr_lookup_poison_ops;
edcc37a0
AV
986 if (dentry->d_inode)
987 dentry->d_inode->i_flags |= S_PRIVATE;
988 } else
989 err = PTR_ERR(dentry);
990 mutex_unlock(&s->s_root->d_inode->i_mutex);
991
992 return err;
993}
994
1da177e4
LT
995/* We need to take a copy of the mount flags since things like
996 * MS_RDONLY don't get set until *after* we're called.
997 * mount_flags != mount_options */
bd4c625c 998int reiserfs_xattr_init(struct super_block *s, int mount_flags)
1da177e4 999{
bd4c625c 1000 int err = 0;
ab17c4f0 1001 struct dentry *privroot = REISERFS_SB(s)->priv_root;
bd4c625c 1002
a72bdb1c
JM
1003 err = xattr_mount_check(s);
1004 if (err)
bd4c625c 1005 goto error;
bd4c625c 1006
ab17c4f0 1007 if (!privroot->d_inode && !(mount_flags & MS_RDONLY)) {
ae635c0b 1008 reiserfs_mutex_lock_safe(&s->s_root->d_inode->i_mutex, s);
edcc37a0 1009 err = create_privroot(REISERFS_SB(s)->priv_root);
5a6059c3 1010 mutex_unlock(&s->s_root->d_inode->i_mutex);
bd4c625c 1011 }
ab17c4f0
JM
1012
1013 if (privroot->d_inode) {
48b32a35 1014 s->s_xattr = reiserfs_xattr_handlers;
c72e0575 1015 reiserfs_mutex_lock_safe(&privroot->d_inode->i_mutex, s);
ab17c4f0
JM
1016 if (!REISERFS_SB(s)->xattr_root) {
1017 struct dentry *dentry;
1018 dentry = lookup_one_len(XAROOT_NAME, privroot,
1019 strlen(XAROOT_NAME));
1020 if (!IS_ERR(dentry))
1021 REISERFS_SB(s)->xattr_root = dentry;
1022 else
1023 err = PTR_ERR(dentry);
1024 }
1025 mutex_unlock(&privroot->d_inode->i_mutex);
1026 }
48b32a35 1027
a72bdb1c 1028error:
bd4c625c 1029 if (err) {
bd4c625c
LT
1030 clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1031 clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1032 }
1033
1034 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
bd4c625c
LT
1035 if (reiserfs_posixacl(s))
1036 s->s_flags |= MS_POSIXACL;
ab17c4f0 1037 else
ab17c4f0 1038 s->s_flags &= ~MS_POSIXACL;
bd4c625c
LT
1039
1040 return err;
1da177e4 1041}
This page took 0.540907 seconds and 5 git commands to generate.