reiserfs: deal with NULL xattr root w/ xattrs disabled
[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
LT
49#include <linux/smp_lock.h>
50#include <linux/stat.h>
6c17675e 51#include <linux/quotaops.h>
1da177e4 52
1da177e4
LT
53#define PRIVROOT_NAME ".reiserfs_priv"
54#define XAROOT_NAME "xattrs"
55
1da177e4 56
6c17675e
JM
57/* 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. */
3a355cc6 60#ifdef CONFIG_REISERFS_FS_XATTR
6c17675e 61static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
1da177e4 62{
6c17675e 63 BUG_ON(!mutex_is_locked(&dir->i_mutex));
e1c50248 64 vfs_dq_init(dir);
6c17675e
JM
65 return dir->i_op->create(dir, dentry, mode, NULL);
66}
3a355cc6 67#endif
bd4c625c 68
6c17675e
JM
69static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
70{
71 BUG_ON(!mutex_is_locked(&dir->i_mutex));
e1c50248 72 vfs_dq_init(dir);
6c17675e
JM
73 return dir->i_op->mkdir(dir, dentry, mode);
74}
bd4c625c 75
6c17675e
JM
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));
e1c50248 84 vfs_dq_init(dir);
bd4c625c 85
6c17675e
JM
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));
e1c50248 99 vfs_dq_init(dir);
6c17675e
JM
100
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
6c17675e
JM
114#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
115
ab17c4f0 116static struct dentry *open_xa_root(struct super_block *sb, int flags)
6c17675e 117{
ab17c4f0
JM
118 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
119 struct dentry *xaroot;
120 if (!privroot->d_inode)
121 return ERR_PTR(-ENODATA);
6c17675e 122
ab17c4f0 123 mutex_lock_nested(&privroot->d_inode->i_mutex, I_MUTEX_XATTR);
6c17675e 124
ab17c4f0 125 xaroot = dget(REISERFS_SB(sb)->xattr_root);
ceb5edc4
JM
126 if (!xaroot)
127 xaroot = ERR_PTR(-ENODATA);
128 else if (!xaroot->d_inode) {
ab17c4f0 129 int err = -ENODATA;
5a6059c3 130 if (xattr_may_create(flags))
ab17c4f0 131 err = xattr_mkdir(privroot->d_inode, xaroot, 0700);
9b7f3755 132 if (err) {
ab17c4f0
JM
133 dput(xaroot);
134 xaroot = ERR_PTR(err);
9b7f3755 135 }
bd4c625c 136 }
6c17675e 137
ab17c4f0
JM
138 mutex_unlock(&privroot->d_inode->i_mutex);
139 return xaroot;
1da177e4
LT
140}
141
bd4c625c 142static struct dentry *open_xa_dir(const struct inode *inode, int flags)
1da177e4 143{
bd4c625c
LT
144 struct dentry *xaroot, *xadir;
145 char namebuf[17];
146
6c17675e 147 xaroot = open_xa_root(inode->i_sb, flags);
9b7f3755 148 if (IS_ERR(xaroot))
bd4c625c 149 return xaroot;
bd4c625c 150
bd4c625c
LT
151 snprintf(namebuf, sizeof(namebuf), "%X.%X",
152 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
153 inode->i_generation);
bd4c625c 154
ab17c4f0
JM
155 mutex_lock_nested(&xaroot->d_inode->i_mutex, I_MUTEX_XATTR);
156
157 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
158 if (!IS_ERR(xadir) && !xadir->d_inode) {
159 int err = -ENODATA;
160 if (xattr_may_create(flags))
161 err = xattr_mkdir(xaroot->d_inode, xadir, 0700);
162 if (err) {
163 dput(xadir);
164 xadir = ERR_PTR(err);
165 }
166 }
167
168 mutex_unlock(&xaroot->d_inode->i_mutex);
bd4c625c
LT
169 dput(xaroot);
170 return xadir;
1da177e4
LT
171}
172
48b32a35
JM
173/* The following are side effects of other operations that aren't explicitly
174 * modifying extended attributes. This includes operations such as permissions
175 * or ownership changes, object deletions, etc. */
a41f1a47
JM
176struct reiserfs_dentry_buf {
177 struct dentry *xadir;
178 int count;
179 struct dentry *dentries[8];
180};
bd4c625c 181
a72bdb1c 182static int
a41f1a47
JM
183fill_with_dentries(void *buf, const char *name, int namelen, loff_t offset,
184 u64 ino, unsigned int d_type)
a72bdb1c 185{
a41f1a47 186 struct reiserfs_dentry_buf *dbuf = buf;
a72bdb1c 187 struct dentry *dentry;
5a6059c3 188 WARN_ON_ONCE(!mutex_is_locked(&dbuf->xadir->d_inode->i_mutex));
bd4c625c 189
a41f1a47
JM
190 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
191 return -ENOSPC;
bd4c625c 192
a41f1a47
JM
193 if (name[0] == '.' && (name[1] == '\0' ||
194 (name[1] == '.' && name[2] == '\0')))
195 return 0;
bd4c625c 196
a41f1a47 197 dentry = lookup_one_len(name, dbuf->xadir, namelen);
a72bdb1c 198 if (IS_ERR(dentry)) {
a41f1a47 199 return PTR_ERR(dentry);
a72bdb1c 200 } else if (!dentry->d_inode) {
a41f1a47
JM
201 /* A directory entry exists, but no file? */
202 reiserfs_error(dentry->d_sb, "xattr-20003",
203 "Corrupted directory: xattr %s listed but "
204 "not found for file %s.\n",
205 dentry->d_name.name, dbuf->xadir->d_name.name);
206 dput(dentry);
207 return -EIO;
bd4c625c 208 }
1da177e4 209
a41f1a47
JM
210 dbuf->dentries[dbuf->count++] = dentry;
211 return 0;
1da177e4
LT
212}
213
a41f1a47
JM
214static void
215cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
1da177e4 216{
a41f1a47
JM
217 int i;
218 for (i = 0; i < buf->count; i++)
219 if (buf->dentries[i])
220 dput(buf->dentries[i]);
a72bdb1c
JM
221}
222
a41f1a47
JM
223static int reiserfs_for_each_xattr(struct inode *inode,
224 int (*action)(struct dentry *, void *),
225 void *data)
a72bdb1c 226{
a41f1a47
JM
227 struct dentry *dir;
228 int i, err = 0;
229 loff_t pos = 0;
230 struct reiserfs_dentry_buf buf = {
231 .count = 0,
232 };
1da177e4 233
a72bdb1c
JM
234 /* Skip out, an xattr has no xattrs associated with it */
235 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
236 return 0;
1da177e4 237
6c17675e 238 dir = open_xa_dir(inode, XATTR_REPLACE);
a72bdb1c
JM
239 if (IS_ERR(dir)) {
240 err = PTR_ERR(dir);
241 goto out;
242 } else if (!dir->d_inode) {
a41f1a47
JM
243 err = 0;
244 goto out_dir;
a72bdb1c 245 }
1da177e4 246
6c17675e 247 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
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
8b6dd72a 487 down_write(&REISERFS_I(inode)->i_xattr_sem);
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 874int reiserfs_permission(struct inode *inode, int mask)
1da177e4 875{
a72bdb1c
JM
876 /*
877 * We don't do permission checks on the internal objects.
878 * Permissions are determined by the "owning" object.
879 */
880 if (IS_PRIVATE(inode))
881 return 0;
882 /*
883 * Stat data v1 doesn't support ACLs.
884 */
885 if (get_inode_sd_version(inode) == STAT_DATA_V1)
886 return generic_permission(inode, mask, NULL);
887 else
888 return generic_permission(inode, mask, reiserfs_check_acl);
1da177e4
LT
889}
890
a72bdb1c 891static int create_privroot(struct dentry *dentry)
1da177e4 892{
a72bdb1c
JM
893 int err;
894 struct inode *inode = dentry->d_parent->d_inode;
5a6059c3
JM
895 WARN_ON_ONCE(!mutex_is_locked(&inode->i_mutex));
896
6c17675e 897 err = xattr_mkdir(inode, dentry, 0700);
edcc37a0
AV
898 if (err || !dentry->d_inode) {
899 reiserfs_warning(dentry->d_sb, "jdm-20006",
900 "xattrs/ACLs enabled and couldn't "
901 "find/create .reiserfs_priv. "
902 "Failing mount.");
903 return -EOPNOTSUPP;
bd4c625c
LT
904 }
905
edcc37a0
AV
906 dentry->d_inode->i_flags |= S_PRIVATE;
907 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
908 "storage.\n", PRIVROOT_NAME);
bd4c625c 909
edcc37a0 910 return 0;
1da177e4
LT
911}
912
12abb35a
JM
913#else
914int __init reiserfs_xattr_register_handlers(void) { return 0; }
915void reiserfs_xattr_unregister_handlers(void) {}
916static int create_privroot(struct dentry *dentry) { return 0; }
917#endif
918
919/* Actual operations that are exported to VFS-land */
920struct xattr_handler *reiserfs_xattr_handlers[] = {
921#ifdef CONFIG_REISERFS_FS_XATTR
922 &reiserfs_xattr_user_handler,
923 &reiserfs_xattr_trusted_handler,
924#endif
925#ifdef CONFIG_REISERFS_FS_SECURITY
926 &reiserfs_xattr_security_handler,
927#endif
928#ifdef CONFIG_REISERFS_FS_POSIX_ACL
929 &reiserfs_posix_acl_access_handler,
930 &reiserfs_posix_acl_default_handler,
931#endif
932 NULL
933};
934
a72bdb1c 935static int xattr_mount_check(struct super_block *s)
1da177e4 936{
a72bdb1c
JM
937 /* We need generation numbers to ensure that the oid mapping is correct
938 * v3.5 filesystems don't have them. */
48b32a35
JM
939 if (old_format_only(s)) {
940 if (reiserfs_xattrs_optional(s)) {
941 /* Old format filesystem, but optional xattrs have
942 * been enabled. Error out. */
943 reiserfs_warning(s, "jdm-2005",
944 "xattrs/ACLs not supported "
945 "on pre-v3.6 format filesystems. "
946 "Failing mount.");
947 return -EOPNOTSUPP;
948 }
a72bdb1c
JM
949 }
950
951 return 0;
1da177e4
LT
952}
953
954/* This will catch lookups from the fs root to .reiserfs_priv */
955static int
bd4c625c 956xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name)
1da177e4 957{
bd4c625c 958 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
edcc37a0 959 if (container_of(q1, struct dentry, d_name) == priv_root)
bd4c625c 960 return -ENOENT;
edcc37a0 961 if (q1->len == name->len &&
bd4c625c
LT
962 !memcmp(q1->name, name->name, name->len))
963 return 0;
964 return 1;
1da177e4
LT
965}
966
e16404ed 967static const struct dentry_operations xattr_lookup_poison_ops = {
bd4c625c 968 .d_compare = xattr_lookup_poison,
1da177e4
LT
969};
970
edcc37a0
AV
971int reiserfs_lookup_privroot(struct super_block *s)
972{
973 struct dentry *dentry;
974 int err = 0;
975
976 /* If we don't have the privroot located yet - go find it */
977 mutex_lock(&s->s_root->d_inode->i_mutex);
978 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
979 strlen(PRIVROOT_NAME));
980 if (!IS_ERR(dentry)) {
981 REISERFS_SB(s)->priv_root = dentry;
982 s->s_root->d_op = &xattr_lookup_poison_ops;
983 if (dentry->d_inode)
984 dentry->d_inode->i_flags |= S_PRIVATE;
985 } else
986 err = PTR_ERR(dentry);
987 mutex_unlock(&s->s_root->d_inode->i_mutex);
988
989 return err;
990}
991
1da177e4
LT
992/* We need to take a copy of the mount flags since things like
993 * MS_RDONLY don't get set until *after* we're called.
994 * mount_flags != mount_options */
bd4c625c 995int reiserfs_xattr_init(struct super_block *s, int mount_flags)
1da177e4 996{
bd4c625c 997 int err = 0;
ab17c4f0 998 struct dentry *privroot = REISERFS_SB(s)->priv_root;
bd4c625c 999
a72bdb1c
JM
1000 err = xattr_mount_check(s);
1001 if (err)
bd4c625c 1002 goto error;
bd4c625c 1003
ab17c4f0 1004 if (!privroot->d_inode && !(mount_flags & MS_RDONLY)) {
edcc37a0
AV
1005 mutex_lock(&s->s_root->d_inode->i_mutex);
1006 err = create_privroot(REISERFS_SB(s)->priv_root);
5a6059c3 1007 mutex_unlock(&s->s_root->d_inode->i_mutex);
bd4c625c 1008 }
ab17c4f0
JM
1009
1010 if (privroot->d_inode) {
48b32a35 1011 s->s_xattr = reiserfs_xattr_handlers;
ab17c4f0
JM
1012 mutex_lock(&privroot->d_inode->i_mutex);
1013 if (!REISERFS_SB(s)->xattr_root) {
1014 struct dentry *dentry;
1015 dentry = lookup_one_len(XAROOT_NAME, privroot,
1016 strlen(XAROOT_NAME));
1017 if (!IS_ERR(dentry))
1018 REISERFS_SB(s)->xattr_root = dentry;
1019 else
1020 err = PTR_ERR(dentry);
1021 }
1022 mutex_unlock(&privroot->d_inode->i_mutex);
1023 }
48b32a35 1024
a72bdb1c 1025error:
bd4c625c 1026 if (err) {
bd4c625c
LT
1027 clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1028 clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1029 }
1030
1031 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
bd4c625c
LT
1032 if (reiserfs_posixacl(s))
1033 s->s_flags |= MS_POSIXACL;
ab17c4f0 1034 else
ab17c4f0 1035 s->s_flags &= ~MS_POSIXACL;
bd4c625c
LT
1036
1037 return err;
1da177e4 1038}
This page took 0.500518 seconds and 5 git commands to generate.