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