Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/fs/reiserfs/xattr.c
4 *
5 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
6 *
7 */
8
9/*
10 * In order to implement EA/ACLs in a clean, backwards compatible manner,
11 * they are implemented as files in a "private" directory.
12 * Each EA is in it's own file, with the directory layout like so (/ is assumed
13 * to be relative to fs root). Inside the /.reiserfs_priv/xattrs directory,
14 * directories named using the capital-hex form of the objectid and
15 * generation number are used. Inside each directory are individual files
16 * named with the name of the extended attribute.
17 *
18 * So, for objectid 12648430, we could have:
19 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_access
20 * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_default
21 * /.reiserfs_priv/xattrs/C0FFEE.0/user.Content-Type
22 * .. or similar.
23 *
24 * The file contents are the text of the EA. The size is known based on the
25 * stat data describing the file.
26 *
27 * In the case of system.posix_acl_access and system.posix_acl_default, since
28 * these are special cases for filesystem ACLs, they are interpreted by the
29 * kernel, in addition, they are negatively and positively cached and attached
30 * to the inode so that unnecessary lookups are avoided.
31 *
32 * Locking works like so:
33 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
34 * The xattrs themselves are protected by the xattr_sem.
35 */
36
37#include "reiserfs.h"
38#include <linux/capability.h>
39#include <linux/dcache.h>
40#include <linux/namei.h>
41#include <linux/errno.h>
42#include <linux/gfp.h>
43#include <linux/fs.h>
44#include <linux/file.h>
45#include <linux/pagemap.h>
46#include <linux/xattr.h>
47#include "xattr.h"
48#include "acl.h"
49#include <linux/uaccess.h>
50#include <net/checksum.h>
51#include <linux/stat.h>
52#include <linux/quotaops.h>
53#include <linux/security.h>
54#include <linux/posix_acl_xattr.h>
55
56#define PRIVROOT_NAME ".reiserfs_priv"
57#define XAROOT_NAME "xattrs"
58
59
60/*
61 * Helpers for inode ops. We do this so that we don't have all the VFS
62 * overhead and also for proper i_mutex annotation.
63 * dir->i_mutex must be held for all of them.
64 */
65#ifdef CONFIG_REISERFS_FS_XATTR
66static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
67{
68 BUG_ON(!inode_is_locked(dir));
69 return dir->i_op->create(&init_user_ns, dir, dentry, mode, true);
70}
71#endif
72
73static int xattr_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
74{
75 BUG_ON(!inode_is_locked(dir));
76 return dir->i_op->mkdir(&init_user_ns, dir, dentry, mode);
77}
78
79/*
80 * We use I_MUTEX_CHILD here to silence lockdep. It's safe because xattr
81 * mutation ops aren't called during rename or splace, which are the
82 * only other users of I_MUTEX_CHILD. It violates the ordering, but that's
83 * better than allocating another subclass just for this code.
84 */
85static int xattr_unlink(struct inode *dir, struct dentry *dentry)
86{
87 int error;
88
89 BUG_ON(!inode_is_locked(dir));
90
91 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
92 error = dir->i_op->unlink(dir, dentry);
93 inode_unlock(d_inode(dentry));
94
95 if (!error)
96 d_delete(dentry);
97 return error;
98}
99
100static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
101{
102 int error;
103
104 BUG_ON(!inode_is_locked(dir));
105
106 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
107 error = dir->i_op->rmdir(dir, dentry);
108 if (!error)
109 d_inode(dentry)->i_flags |= S_DEAD;
110 inode_unlock(d_inode(dentry));
111 if (!error)
112 d_delete(dentry);
113
114 return error;
115}
116
117#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
118
119static struct dentry *open_xa_root(struct super_block *sb, int flags)
120{
121 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
122 struct dentry *xaroot;
123
124 if (d_really_is_negative(privroot))
125 return ERR_PTR(-EOPNOTSUPP);
126
127 inode_lock_nested(d_inode(privroot), I_MUTEX_XATTR);
128
129 xaroot = dget(REISERFS_SB(sb)->xattr_root);
130 if (!xaroot)
131 xaroot = ERR_PTR(-EOPNOTSUPP);
132 else if (d_really_is_negative(xaroot)) {
133 int err = -ENODATA;
134
135 if (xattr_may_create(flags))
136 err = xattr_mkdir(d_inode(privroot), xaroot, 0700);
137 if (err) {
138 dput(xaroot);
139 xaroot = ERR_PTR(err);
140 }
141 }
142
143 inode_unlock(d_inode(privroot));
144 return xaroot;
145}
146
147static struct dentry *open_xa_dir(const struct inode *inode, int flags)
148{
149 struct dentry *xaroot, *xadir;
150 char namebuf[17];
151
152 xaroot = open_xa_root(inode->i_sb, flags);
153 if (IS_ERR(xaroot))
154 return xaroot;
155
156 snprintf(namebuf, sizeof(namebuf), "%X.%X",
157 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
158 inode->i_generation);
159
160 inode_lock_nested(d_inode(xaroot), I_MUTEX_XATTR);
161
162 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
163 if (!IS_ERR(xadir) && d_really_is_negative(xadir)) {
164 int err = -ENODATA;
165
166 if (xattr_may_create(flags))
167 err = xattr_mkdir(d_inode(xaroot), xadir, 0700);
168 if (err) {
169 dput(xadir);
170 xadir = ERR_PTR(err);
171 }
172 }
173
174 inode_unlock(d_inode(xaroot));
175 dput(xaroot);
176 return xadir;
177}
178
179/*
180 * The following are side effects of other operations that aren't explicitly
181 * modifying extended attributes. This includes operations such as permissions
182 * or ownership changes, object deletions, etc.
183 */
184struct reiserfs_dentry_buf {
185 struct dir_context ctx;
186 struct dentry *xadir;
187 int count;
188 int err;
189 struct dentry *dentries[8];
190};
191
192static bool
193fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
194 loff_t offset, u64 ino, unsigned int d_type)
195{
196 struct reiserfs_dentry_buf *dbuf =
197 container_of(ctx, struct reiserfs_dentry_buf, ctx);
198 struct dentry *dentry;
199
200 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf->xadir)));
201
202 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
203 return false;
204
205 if (name[0] == '.' && (namelen < 2 ||
206 (namelen == 2 && name[1] == '.')))
207 return true;
208
209 dentry = lookup_one_len(name, dbuf->xadir, namelen);
210 if (IS_ERR(dentry)) {
211 dbuf->err = PTR_ERR(dentry);
212 return false;
213 } else if (d_really_is_negative(dentry)) {
214 /* A directory entry exists, but no file? */
215 reiserfs_error(dentry->d_sb, "xattr-20003",
216 "Corrupted directory: xattr %pd listed but "
217 "not found for file %pd.\n",
218 dentry, dbuf->xadir);
219 dput(dentry);
220 dbuf->err = -EIO;
221 return false;
222 }
223
224 dbuf->dentries[dbuf->count++] = dentry;
225 return true;
226}
227
228static void
229cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
230{
231 int i;
232
233 for (i = 0; i < buf->count; i++)
234 if (buf->dentries[i])
235 dput(buf->dentries[i]);
236}
237
238static int reiserfs_for_each_xattr(struct inode *inode,
239 int (*action)(struct dentry *, void *),
240 void *data)
241{
242 struct dentry *dir;
243 int i, err = 0;
244 struct reiserfs_dentry_buf buf = {
245 .ctx.actor = fill_with_dentries,
246 };
247
248 /* Skip out, an xattr has no xattrs associated with it */
249 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
250 return 0;
251
252 dir = open_xa_dir(inode, XATTR_REPLACE);
253 if (IS_ERR(dir)) {
254 err = PTR_ERR(dir);
255 goto out;
256 } else if (d_really_is_negative(dir)) {
257 err = 0;
258 goto out_dir;
259 }
260
261 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
262
263 buf.xadir = dir;
264 while (1) {
265 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
266 if (err)
267 break;
268 if (buf.err) {
269 err = buf.err;
270 break;
271 }
272 if (!buf.count)
273 break;
274 for (i = 0; !err && i < buf.count && buf.dentries[i]; i++) {
275 struct dentry *dentry = buf.dentries[i];
276
277 if (!d_is_dir(dentry))
278 err = action(dentry, data);
279
280 dput(dentry);
281 buf.dentries[i] = NULL;
282 }
283 if (err)
284 break;
285 buf.count = 0;
286 }
287 inode_unlock(d_inode(dir));
288
289 cleanup_dentry_buf(&buf);
290
291 if (!err) {
292 /*
293 * We start a transaction here to avoid a ABBA situation
294 * between the xattr root's i_mutex and the journal lock.
295 * This doesn't incur much additional overhead since the
296 * new transaction will just nest inside the
297 * outer transaction.
298 */
299 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
300 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
301 struct reiserfs_transaction_handle th;
302
303 reiserfs_write_lock(inode->i_sb);
304 err = journal_begin(&th, inode->i_sb, blocks);
305 reiserfs_write_unlock(inode->i_sb);
306 if (!err) {
307 int jerror;
308
309 inode_lock_nested(d_inode(dir->d_parent),
310 I_MUTEX_XATTR);
311 err = action(dir, data);
312 reiserfs_write_lock(inode->i_sb);
313 jerror = journal_end(&th);
314 reiserfs_write_unlock(inode->i_sb);
315 inode_unlock(d_inode(dir->d_parent));
316 err = jerror ?: err;
317 }
318 }
319out_dir:
320 dput(dir);
321out:
322 /*
323 * -ENODATA: this object doesn't have any xattrs
324 * -EOPNOTSUPP: this file system doesn't have xattrs enabled on disk.
325 * Neither are errors
326 */
327 if (err == -ENODATA || err == -EOPNOTSUPP)
328 err = 0;
329 return err;
330}
331
332static int delete_one_xattr(struct dentry *dentry, void *data)
333{
334 struct inode *dir = d_inode(dentry->d_parent);
335
336 /* This is the xattr dir, handle specially. */
337 if (d_is_dir(dentry))
338 return xattr_rmdir(dir, dentry);
339
340 return xattr_unlink(dir, dentry);
341}
342
343static int chown_one_xattr(struct dentry *dentry, void *data)
344{
345 struct iattr *attrs = data;
346 int ia_valid = attrs->ia_valid;
347 int err;
348
349 /*
350 * We only want the ownership bits. Otherwise, we'll do
351 * things like change a directory to a regular file if
352 * ATTR_MODE is set.
353 */
354 attrs->ia_valid &= (ATTR_UID|ATTR_GID);
355 err = reiserfs_setattr(&init_user_ns, dentry, attrs);
356 attrs->ia_valid = ia_valid;
357
358 return err;
359}
360
361/* No i_mutex, but the inode is unconnected. */
362int reiserfs_delete_xattrs(struct inode *inode)
363{
364 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
365
366 if (err)
367 reiserfs_warning(inode->i_sb, "jdm-20004",
368 "Couldn't delete all xattrs (%d)\n", err);
369 return err;
370}
371
372/* inode->i_mutex: down */
373int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
374{
375 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
376
377 if (err)
378 reiserfs_warning(inode->i_sb, "jdm-20007",
379 "Couldn't chown all xattrs (%d)\n", err);
380 return err;
381}
382
383#ifdef CONFIG_REISERFS_FS_XATTR
384/*
385 * Returns a dentry corresponding to a specific extended attribute file
386 * for the inode. If flags allow, the file is created. Otherwise, a
387 * valid or negative dentry, or an error is returned.
388 */
389static struct dentry *xattr_lookup(struct inode *inode, const char *name,
390 int flags)
391{
392 struct dentry *xadir, *xafile;
393 int err = 0;
394
395 xadir = open_xa_dir(inode, flags);
396 if (IS_ERR(xadir))
397 return ERR_CAST(xadir);
398
399 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
400 xafile = lookup_one_len(name, xadir, strlen(name));
401 if (IS_ERR(xafile)) {
402 err = PTR_ERR(xafile);
403 goto out;
404 }
405
406 if (d_really_is_positive(xafile) && (flags & XATTR_CREATE))
407 err = -EEXIST;
408
409 if (d_really_is_negative(xafile)) {
410 err = -ENODATA;
411 if (xattr_may_create(flags))
412 err = xattr_create(d_inode(xadir), xafile,
413 0700|S_IFREG);
414 }
415
416 if (err)
417 dput(xafile);
418out:
419 inode_unlock(d_inode(xadir));
420 dput(xadir);
421 if (err)
422 return ERR_PTR(err);
423 return xafile;
424}
425
426/* Internal operations on file data */
427static inline void reiserfs_put_page(struct page *page)
428{
429 kunmap(page);
430 put_page(page);
431}
432
433static struct page *reiserfs_get_page(struct inode *dir, size_t n)
434{
435 struct address_space *mapping = dir->i_mapping;
436 struct page *page;
437 /*
438 * We can deadlock if we try to free dentries,
439 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
440 */
441 mapping_set_gfp_mask(mapping, GFP_NOFS);
442 page = read_mapping_page(mapping, n >> PAGE_SHIFT, NULL);
443 if (!IS_ERR(page))
444 kmap(page);
445 return page;
446}
447
448static inline __u32 xattr_hash(const char *msg, int len)
449{
450 /*
451 * csum_partial() gives different results for little-endian and
452 * big endian hosts. Images created on little-endian hosts and
453 * mounted on big-endian hosts(and vice versa) will see csum mismatches
454 * when trying to fetch xattrs. Treating the hash as __wsum_t would
455 * lower the frequency of mismatch. This is an endianness bug in
456 * reiserfs. The return statement would result in a sparse warning. Do
457 * not fix the sparse warning so as to not hide a reminder of the bug.
458 */
459 return csum_partial(msg, len, 0);
460}
461
462int reiserfs_commit_write(struct file *f, struct page *page,
463 unsigned from, unsigned to);
464
465static void update_ctime(struct inode *inode)
466{
467 struct timespec64 now = current_time(inode);
468
469 if (inode_unhashed(inode) || !inode->i_nlink ||
470 timespec64_equal(&inode->i_ctime, &now))
471 return;
472
473 inode->i_ctime = current_time(inode);
474 mark_inode_dirty(inode);
475}
476
477static int lookup_and_delete_xattr(struct inode *inode, const char *name)
478{
479 int err = 0;
480 struct dentry *dentry, *xadir;
481
482 xadir = open_xa_dir(inode, XATTR_REPLACE);
483 if (IS_ERR(xadir))
484 return PTR_ERR(xadir);
485
486 inode_lock_nested(d_inode(xadir), I_MUTEX_XATTR);
487 dentry = lookup_one_len(name, xadir, strlen(name));
488 if (IS_ERR(dentry)) {
489 err = PTR_ERR(dentry);
490 goto out_dput;
491 }
492
493 if (d_really_is_positive(dentry)) {
494 err = xattr_unlink(d_inode(xadir), dentry);
495 update_ctime(inode);
496 }
497
498 dput(dentry);
499out_dput:
500 inode_unlock(d_inode(xadir));
501 dput(xadir);
502 return err;
503}
504
505
506/* Generic extended attribute operations that can be used by xa plugins */
507
508/*
509 * inode->i_mutex: down
510 */
511int
512reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
513 struct inode *inode, const char *name,
514 const void *buffer, size_t buffer_size, int flags)
515{
516 int err = 0;
517 struct dentry *dentry;
518 struct page *page;
519 char *data;
520 size_t file_pos = 0;
521 size_t buffer_pos = 0;
522 size_t new_size;
523 __u32 xahash = 0;
524
525 if (get_inode_sd_version(inode) == STAT_DATA_V1)
526 return -EOPNOTSUPP;
527
528 if (!buffer) {
529 err = lookup_and_delete_xattr(inode, name);
530 return err;
531 }
532
533 dentry = xattr_lookup(inode, name, flags);
534 if (IS_ERR(dentry))
535 return PTR_ERR(dentry);
536
537 down_write(&REISERFS_I(inode)->i_xattr_sem);
538
539 xahash = xattr_hash(buffer, buffer_size);
540 while (buffer_pos < buffer_size || buffer_pos == 0) {
541 size_t chunk;
542 size_t skip = 0;
543 size_t page_offset = (file_pos & (PAGE_SIZE - 1));
544
545 if (buffer_size - buffer_pos > PAGE_SIZE)
546 chunk = PAGE_SIZE;
547 else
548 chunk = buffer_size - buffer_pos;
549
550 page = reiserfs_get_page(d_inode(dentry), file_pos);
551 if (IS_ERR(page)) {
552 err = PTR_ERR(page);
553 goto out_unlock;
554 }
555
556 lock_page(page);
557 data = page_address(page);
558
559 if (file_pos == 0) {
560 struct reiserfs_xattr_header *rxh;
561
562 skip = file_pos = sizeof(struct reiserfs_xattr_header);
563 if (chunk + skip > PAGE_SIZE)
564 chunk = PAGE_SIZE - skip;
565 rxh = (struct reiserfs_xattr_header *)data;
566 rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC);
567 rxh->h_hash = cpu_to_le32(xahash);
568 }
569
570 reiserfs_write_lock(inode->i_sb);
571 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
572 if (!err) {
573 if (buffer)
574 memcpy(data + skip, buffer + buffer_pos, chunk);
575 err = reiserfs_commit_write(NULL, page, page_offset,
576 page_offset + chunk +
577 skip);
578 }
579 reiserfs_write_unlock(inode->i_sb);
580 unlock_page(page);
581 reiserfs_put_page(page);
582 buffer_pos += chunk;
583 file_pos += chunk;
584 skip = 0;
585 if (err || buffer_size == 0 || !buffer)
586 break;
587 }
588
589 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
590 if (!err && new_size < i_size_read(d_inode(dentry))) {
591 struct iattr newattrs = {
592 .ia_ctime = current_time(inode),
593 .ia_size = new_size,
594 .ia_valid = ATTR_SIZE | ATTR_CTIME,
595 };
596
597 inode_lock_nested(d_inode(dentry), I_MUTEX_XATTR);
598 inode_dio_wait(d_inode(dentry));
599
600 err = reiserfs_setattr(&init_user_ns, dentry, &newattrs);
601 inode_unlock(d_inode(dentry));
602 } else
603 update_ctime(inode);
604out_unlock:
605 up_write(&REISERFS_I(inode)->i_xattr_sem);
606 dput(dentry);
607 return err;
608}
609
610/* We need to start a transaction to maintain lock ordering */
611int reiserfs_xattr_set(struct inode *inode, const char *name,
612 const void *buffer, size_t buffer_size, int flags)
613{
614
615 struct reiserfs_transaction_handle th;
616 int error, error2;
617 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
618
619 /* Check before we start a transaction and then do nothing. */
620 if (!d_really_is_positive(REISERFS_SB(inode->i_sb)->priv_root))
621 return -EOPNOTSUPP;
622
623 if (!(flags & XATTR_REPLACE))
624 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
625
626 reiserfs_write_lock(inode->i_sb);
627 error = journal_begin(&th, inode->i_sb, jbegin_count);
628 reiserfs_write_unlock(inode->i_sb);
629 if (error) {
630 return error;
631 }
632
633 error = reiserfs_xattr_set_handle(&th, inode, name,
634 buffer, buffer_size, flags);
635
636 reiserfs_write_lock(inode->i_sb);
637 error2 = journal_end(&th);
638 reiserfs_write_unlock(inode->i_sb);
639 if (error == 0)
640 error = error2;
641
642 return error;
643}
644
645/*
646 * inode->i_mutex: down
647 */
648int
649reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
650 size_t buffer_size)
651{
652 ssize_t err = 0;
653 struct dentry *dentry;
654 size_t isize;
655 size_t file_pos = 0;
656 size_t buffer_pos = 0;
657 struct page *page;
658 __u32 hash = 0;
659
660 if (name == NULL)
661 return -EINVAL;
662
663 /*
664 * We can't have xattrs attached to v1 items since they don't have
665 * generation numbers
666 */
667 if (get_inode_sd_version(inode) == STAT_DATA_V1)
668 return -EOPNOTSUPP;
669
670 /*
671 * priv_root needn't be initialized during mount so allow initial
672 * lookups to succeed.
673 */
674 if (!REISERFS_SB(inode->i_sb)->priv_root)
675 return 0;
676
677 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
678 if (IS_ERR(dentry)) {
679 err = PTR_ERR(dentry);
680 goto out;
681 }
682
683 down_read(&REISERFS_I(inode)->i_xattr_sem);
684
685 isize = i_size_read(d_inode(dentry));
686
687 /* Just return the size needed */
688 if (buffer == NULL) {
689 err = isize - sizeof(struct reiserfs_xattr_header);
690 goto out_unlock;
691 }
692
693 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
694 err = -ERANGE;
695 goto out_unlock;
696 }
697
698 while (file_pos < isize) {
699 size_t chunk;
700 char *data;
701 size_t skip = 0;
702
703 if (isize - file_pos > PAGE_SIZE)
704 chunk = PAGE_SIZE;
705 else
706 chunk = isize - file_pos;
707
708 page = reiserfs_get_page(d_inode(dentry), file_pos);
709 if (IS_ERR(page)) {
710 err = PTR_ERR(page);
711 goto out_unlock;
712 }
713
714 lock_page(page);
715 data = page_address(page);
716 if (file_pos == 0) {
717 struct reiserfs_xattr_header *rxh =
718 (struct reiserfs_xattr_header *)data;
719 skip = file_pos = sizeof(struct reiserfs_xattr_header);
720 chunk -= skip;
721 /* Magic doesn't match up.. */
722 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
723 unlock_page(page);
724 reiserfs_put_page(page);
725 reiserfs_warning(inode->i_sb, "jdm-20001",
726 "Invalid magic for xattr (%s) "
727 "associated with %k", name,
728 INODE_PKEY(inode));
729 err = -EIO;
730 goto out_unlock;
731 }
732 hash = le32_to_cpu(rxh->h_hash);
733 }
734 memcpy(buffer + buffer_pos, data + skip, chunk);
735 unlock_page(page);
736 reiserfs_put_page(page);
737 file_pos += chunk;
738 buffer_pos += chunk;
739 skip = 0;
740 }
741 err = isize - sizeof(struct reiserfs_xattr_header);
742
743 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
744 hash) {
745 reiserfs_warning(inode->i_sb, "jdm-20002",
746 "Invalid hash for xattr (%s) associated "
747 "with %k", name, INODE_PKEY(inode));
748 err = -EIO;
749 }
750
751out_unlock:
752 up_read(&REISERFS_I(inode)->i_xattr_sem);
753 dput(dentry);
754
755out:
756 return err;
757}
758
759/*
760 * In order to implement different sets of xattr operations for each xattr
761 * prefix with the generic xattr API, a filesystem should create a
762 * null-terminated array of struct xattr_handler (one for each prefix) and
763 * hang a pointer to it off of the s_xattr field of the superblock.
764 *
765 * The generic_fooxattr() functions will use this list to dispatch xattr
766 * operations to the correct xattr_handler.
767 */
768#define for_each_xattr_handler(handlers, handler) \
769 for ((handler) = *(handlers)++; \
770 (handler) != NULL; \
771 (handler) = *(handlers)++)
772
773/* This is the implementation for the xattr plugin infrastructure */
774static inline const struct xattr_handler *
775find_xattr_handler_prefix(const struct xattr_handler **handlers,
776 const char *name)
777{
778 const struct xattr_handler *xah;
779
780 if (!handlers)
781 return NULL;
782
783 for_each_xattr_handler(handlers, xah) {
784 const char *prefix = xattr_prefix(xah);
785 if (strncmp(prefix, name, strlen(prefix)) == 0)
786 break;
787 }
788
789 return xah;
790}
791
792struct listxattr_buf {
793 struct dir_context ctx;
794 size_t size;
795 size_t pos;
796 char *buf;
797 struct dentry *dentry;
798};
799
800static bool listxattr_filler(struct dir_context *ctx, const char *name,
801 int namelen, loff_t offset, u64 ino,
802 unsigned int d_type)
803{
804 struct listxattr_buf *b =
805 container_of(ctx, struct listxattr_buf, ctx);
806 size_t size;
807
808 if (name[0] != '.' ||
809 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
810 const struct xattr_handler *handler;
811
812 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
813 name);
814 if (!handler /* Unsupported xattr name */ ||
815 (handler->list && !handler->list(b->dentry)))
816 return true;
817 size = namelen + 1;
818 if (b->buf) {
819 if (b->pos + size > b->size) {
820 b->pos = -ERANGE;
821 return false;
822 }
823 memcpy(b->buf + b->pos, name, namelen);
824 b->buf[b->pos + namelen] = 0;
825 }
826 b->pos += size;
827 }
828 return true;
829}
830
831/*
832 * Inode operation listxattr()
833 *
834 * We totally ignore the generic listxattr here because it would be stupid
835 * not to. Since the xattrs are organized in a directory, we can just
836 * readdir to find them.
837 */
838ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
839{
840 struct dentry *dir;
841 int err = 0;
842 struct listxattr_buf buf = {
843 .ctx.actor = listxattr_filler,
844 .dentry = dentry,
845 .buf = buffer,
846 .size = buffer ? size : 0,
847 };
848
849 if (d_really_is_negative(dentry))
850 return -EINVAL;
851
852 if (get_inode_sd_version(d_inode(dentry)) == STAT_DATA_V1)
853 return -EOPNOTSUPP;
854
855 dir = open_xa_dir(d_inode(dentry), XATTR_REPLACE);
856 if (IS_ERR(dir)) {
857 err = PTR_ERR(dir);
858 if (err == -ENODATA)
859 err = 0; /* Not an error if there aren't any xattrs */
860 goto out;
861 }
862
863 inode_lock_nested(d_inode(dir), I_MUTEX_XATTR);
864 err = reiserfs_readdir_inode(d_inode(dir), &buf.ctx);
865 inode_unlock(d_inode(dir));
866
867 if (!err)
868 err = buf.pos;
869
870 dput(dir);
871out:
872 return err;
873}
874
875static int create_privroot(struct dentry *dentry)
876{
877 int err;
878 struct inode *inode = d_inode(dentry->d_parent);
879
880 WARN_ON_ONCE(!inode_is_locked(inode));
881
882 err = xattr_mkdir(inode, dentry, 0700);
883 if (err || d_really_is_negative(dentry)) {
884 reiserfs_warning(dentry->d_sb, "jdm-20006",
885 "xattrs/ACLs enabled and couldn't "
886 "find/create .reiserfs_priv. "
887 "Failing mount.");
888 return -EOPNOTSUPP;
889 }
890
891 d_inode(dentry)->i_flags |= S_PRIVATE;
892 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
893 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
894 "storage.\n", PRIVROOT_NAME);
895
896 return 0;
897}
898
899#else
900int __init reiserfs_xattr_register_handlers(void) { return 0; }
901void reiserfs_xattr_unregister_handlers(void) {}
902static int create_privroot(struct dentry *dentry) { return 0; }
903#endif
904
905/* Actual operations that are exported to VFS-land */
906const struct xattr_handler *reiserfs_xattr_handlers[] = {
907#ifdef CONFIG_REISERFS_FS_XATTR
908 &reiserfs_xattr_user_handler,
909 &reiserfs_xattr_trusted_handler,
910#endif
911#ifdef CONFIG_REISERFS_FS_SECURITY
912 &reiserfs_xattr_security_handler,
913#endif
914#ifdef CONFIG_REISERFS_FS_POSIX_ACL
915 &posix_acl_access_xattr_handler,
916 &posix_acl_default_xattr_handler,
917#endif
918 NULL
919};
920
921static int xattr_mount_check(struct super_block *s)
922{
923 /*
924 * We need generation numbers to ensure that the oid mapping is correct
925 * v3.5 filesystems don't have them.
926 */
927 if (old_format_only(s)) {
928 if (reiserfs_xattrs_optional(s)) {
929 /*
930 * Old format filesystem, but optional xattrs have
931 * been enabled. Error out.
932 */
933 reiserfs_warning(s, "jdm-2005",
934 "xattrs/ACLs not supported "
935 "on pre-v3.6 format filesystems. "
936 "Failing mount.");
937 return -EOPNOTSUPP;
938 }
939 }
940
941 return 0;
942}
943
944int reiserfs_permission(struct user_namespace *mnt_userns, struct inode *inode,
945 int mask)
946{
947 /*
948 * We don't do permission checks on the internal objects.
949 * Permissions are determined by the "owning" object.
950 */
951 if (IS_PRIVATE(inode))
952 return 0;
953
954 return generic_permission(&init_user_ns, inode, mask);
955}
956
957static int xattr_hide_revalidate(struct dentry *dentry, unsigned int flags)
958{
959 return -EPERM;
960}
961
962static const struct dentry_operations xattr_lookup_poison_ops = {
963 .d_revalidate = xattr_hide_revalidate,
964};
965
966int reiserfs_lookup_privroot(struct super_block *s)
967{
968 struct dentry *dentry;
969 int err = 0;
970
971 /* If we don't have the privroot located yet - go find it */
972 inode_lock(d_inode(s->s_root));
973 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
974 strlen(PRIVROOT_NAME));
975 if (!IS_ERR(dentry)) {
976 REISERFS_SB(s)->priv_root = dentry;
977 d_set_d_op(dentry, &xattr_lookup_poison_ops);
978 if (d_really_is_positive(dentry)) {
979 d_inode(dentry)->i_flags |= S_PRIVATE;
980 d_inode(dentry)->i_opflags &= ~IOP_XATTR;
981 }
982 } else
983 err = PTR_ERR(dentry);
984 inode_unlock(d_inode(s->s_root));
985
986 return err;
987}
988
989/*
990 * We need to take a copy of the mount flags since things like
991 * SB_RDONLY don't get set until *after* we're called.
992 * mount_flags != mount_options
993 */
994int reiserfs_xattr_init(struct super_block *s, int mount_flags)
995{
996 int err = 0;
997 struct dentry *privroot = REISERFS_SB(s)->priv_root;
998
999 err = xattr_mount_check(s);
1000 if (err)
1001 goto error;
1002
1003 if (d_really_is_negative(privroot) && !(mount_flags & SB_RDONLY)) {
1004 inode_lock(d_inode(s->s_root));
1005 err = create_privroot(REISERFS_SB(s)->priv_root);
1006 inode_unlock(d_inode(s->s_root));
1007 }
1008
1009 if (d_really_is_positive(privroot)) {
1010 inode_lock(d_inode(privroot));
1011 if (!REISERFS_SB(s)->xattr_root) {
1012 struct dentry *dentry;
1013
1014 dentry = lookup_one_len(XAROOT_NAME, privroot,
1015 strlen(XAROOT_NAME));
1016 if (!IS_ERR(dentry))
1017 REISERFS_SB(s)->xattr_root = dentry;
1018 else
1019 err = PTR_ERR(dentry);
1020 }
1021 inode_unlock(d_inode(privroot));
1022 }
1023
1024error:
1025 if (err) {
1026 clear_bit(REISERFS_XATTRS_USER, &REISERFS_SB(s)->s_mount_opt);
1027 clear_bit(REISERFS_POSIXACL, &REISERFS_SB(s)->s_mount_opt);
1028 }
1029
1030 /* The super_block SB_POSIXACL must mirror the (no)acl mount option. */
1031 if (reiserfs_posixacl(s))
1032 s->s_flags |= SB_POSIXACL;
1033 else
1034 s->s_flags &= ~SB_POSIXACL;
1035
1036 return err;
1037}
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.
30 *
31 * Locking works like so:
32 * Directory components (xattr root, xattr dir) are protectd by their i_mutex.
33 * The xattrs themselves are protected by the xattr_sem.
34 */
35
36#include <linux/reiserfs_fs.h>
37#include <linux/capability.h>
38#include <linux/dcache.h>
39#include <linux/namei.h>
40#include <linux/errno.h>
41#include <linux/gfp.h>
42#include <linux/fs.h>
43#include <linux/file.h>
44#include <linux/pagemap.h>
45#include <linux/xattr.h>
46#include <linux/reiserfs_xattr.h>
47#include <linux/reiserfs_acl.h>
48#include <asm/uaccess.h>
49#include <net/checksum.h>
50#include <linux/stat.h>
51#include <linux/quotaops.h>
52#include <linux/security.h>
53
54#define PRIVROOT_NAME ".reiserfs_priv"
55#define XAROOT_NAME "xattrs"
56
57
58/* Helpers for inode ops. We do this so that we don't have all the VFS
59 * overhead and also for proper i_mutex annotation.
60 * dir->i_mutex must be held for all of them. */
61#ifdef CONFIG_REISERFS_FS_XATTR
62static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
63{
64 BUG_ON(!mutex_is_locked(&dir->i_mutex));
65 return dir->i_op->create(dir, dentry, mode, NULL);
66}
67#endif
68
69static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
70{
71 BUG_ON(!mutex_is_locked(&dir->i_mutex));
72 return dir->i_op->mkdir(dir, dentry, mode);
73}
74
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));
83
84 reiserfs_mutex_lock_nested_safe(&dentry->d_inode->i_mutex,
85 I_MUTEX_CHILD, dir->i_sb);
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));
98
99 reiserfs_mutex_lock_nested_safe(&dentry->d_inode->i_mutex,
100 I_MUTEX_CHILD, dir->i_sb);
101 error = dir->i_op->rmdir(dir, dentry);
102 if (!error)
103 dentry->d_inode->i_flags |= S_DEAD;
104 mutex_unlock(&dentry->d_inode->i_mutex);
105 if (!error)
106 d_delete(dentry);
107
108 return error;
109}
110
111#define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
112
113static struct dentry *open_xa_root(struct super_block *sb, int flags)
114{
115 struct dentry *privroot = REISERFS_SB(sb)->priv_root;
116 struct dentry *xaroot;
117 if (!privroot->d_inode)
118 return ERR_PTR(-ENODATA);
119
120 mutex_lock_nested(&privroot->d_inode->i_mutex, I_MUTEX_XATTR);
121
122 xaroot = dget(REISERFS_SB(sb)->xattr_root);
123 if (!xaroot)
124 xaroot = ERR_PTR(-ENODATA);
125 else if (!xaroot->d_inode) {
126 int err = -ENODATA;
127 if (xattr_may_create(flags))
128 err = xattr_mkdir(privroot->d_inode, xaroot, 0700);
129 if (err) {
130 dput(xaroot);
131 xaroot = ERR_PTR(err);
132 }
133 }
134
135 mutex_unlock(&privroot->d_inode->i_mutex);
136 return xaroot;
137}
138
139static struct dentry *open_xa_dir(const struct inode *inode, int flags)
140{
141 struct dentry *xaroot, *xadir;
142 char namebuf[17];
143
144 xaroot = open_xa_root(inode->i_sb, flags);
145 if (IS_ERR(xaroot))
146 return xaroot;
147
148 snprintf(namebuf, sizeof(namebuf), "%X.%X",
149 le32_to_cpu(INODE_PKEY(inode)->k_objectid),
150 inode->i_generation);
151
152 mutex_lock_nested(&xaroot->d_inode->i_mutex, I_MUTEX_XATTR);
153
154 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
155 if (!IS_ERR(xadir) && !xadir->d_inode) {
156 int err = -ENODATA;
157 if (xattr_may_create(flags))
158 err = xattr_mkdir(xaroot->d_inode, xadir, 0700);
159 if (err) {
160 dput(xadir);
161 xadir = ERR_PTR(err);
162 }
163 }
164
165 mutex_unlock(&xaroot->d_inode->i_mutex);
166 dput(xaroot);
167 return xadir;
168}
169
170/* The following are side effects of other operations that aren't explicitly
171 * modifying extended attributes. This includes operations such as permissions
172 * or ownership changes, object deletions, etc. */
173struct reiserfs_dentry_buf {
174 struct dentry *xadir;
175 int count;
176 struct dentry *dentries[8];
177};
178
179static int
180fill_with_dentries(void *buf, const char *name, int namelen, loff_t offset,
181 u64 ino, unsigned int d_type)
182{
183 struct reiserfs_dentry_buf *dbuf = buf;
184 struct dentry *dentry;
185 WARN_ON_ONCE(!mutex_is_locked(&dbuf->xadir->d_inode->i_mutex));
186
187 if (dbuf->count == ARRAY_SIZE(dbuf->dentries))
188 return -ENOSPC;
189
190 if (name[0] == '.' && (name[1] == '\0' ||
191 (name[1] == '.' && name[2] == '\0')))
192 return 0;
193
194 dentry = lookup_one_len(name, dbuf->xadir, namelen);
195 if (IS_ERR(dentry)) {
196 return PTR_ERR(dentry);
197 } else if (!dentry->d_inode) {
198 /* A directory entry exists, but no file? */
199 reiserfs_error(dentry->d_sb, "xattr-20003",
200 "Corrupted directory: xattr %s listed but "
201 "not found for file %s.\n",
202 dentry->d_name.name, dbuf->xadir->d_name.name);
203 dput(dentry);
204 return -EIO;
205 }
206
207 dbuf->dentries[dbuf->count++] = dentry;
208 return 0;
209}
210
211static void
212cleanup_dentry_buf(struct reiserfs_dentry_buf *buf)
213{
214 int i;
215 for (i = 0; i < buf->count; i++)
216 if (buf->dentries[i])
217 dput(buf->dentries[i]);
218}
219
220static int reiserfs_for_each_xattr(struct inode *inode,
221 int (*action)(struct dentry *, void *),
222 void *data)
223{
224 struct dentry *dir;
225 int i, err = 0;
226 loff_t pos = 0;
227 struct reiserfs_dentry_buf buf = {
228 .count = 0,
229 };
230
231 /* Skip out, an xattr has no xattrs associated with it */
232 if (IS_PRIVATE(inode) || get_inode_sd_version(inode) == STAT_DATA_V1)
233 return 0;
234
235 reiserfs_write_unlock(inode->i_sb);
236 dir = open_xa_dir(inode, XATTR_REPLACE);
237 if (IS_ERR(dir)) {
238 err = PTR_ERR(dir);
239 reiserfs_write_lock(inode->i_sb);
240 goto out;
241 } else if (!dir->d_inode) {
242 err = 0;
243 reiserfs_write_lock(inode->i_sb);
244 goto out_dir;
245 }
246
247 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
248
249 reiserfs_write_lock(inode->i_sb);
250
251 buf.xadir = dir;
252 err = reiserfs_readdir_dentry(dir, &buf, fill_with_dentries, &pos);
253 while ((err == 0 || err == -ENOSPC) && buf.count) {
254 err = 0;
255
256 for (i = 0; i < buf.count && buf.dentries[i]; i++) {
257 int lerr = 0;
258 struct dentry *dentry = buf.dentries[i];
259
260 if (err == 0 && !S_ISDIR(dentry->d_inode->i_mode))
261 lerr = action(dentry, data);
262
263 dput(dentry);
264 buf.dentries[i] = NULL;
265 err = lerr ?: err;
266 }
267 buf.count = 0;
268 if (!err)
269 err = reiserfs_readdir_dentry(dir, &buf,
270 fill_with_dentries, &pos);
271 }
272 mutex_unlock(&dir->d_inode->i_mutex);
273
274 /* Clean up after a failed readdir */
275 cleanup_dentry_buf(&buf);
276
277 if (!err) {
278 /* We start a transaction here to avoid a ABBA situation
279 * between the xattr root's i_mutex and the journal lock.
280 * This doesn't incur much additional overhead since the
281 * new transaction will just nest inside the
282 * outer transaction. */
283 int blocks = JOURNAL_PER_BALANCE_CNT * 2 + 2 +
284 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
285 struct reiserfs_transaction_handle th;
286 err = journal_begin(&th, inode->i_sb, blocks);
287 if (!err) {
288 int jerror;
289 reiserfs_mutex_lock_nested_safe(
290 &dir->d_parent->d_inode->i_mutex,
291 I_MUTEX_XATTR, inode->i_sb);
292 err = action(dir, data);
293 jerror = journal_end(&th, inode->i_sb, blocks);
294 mutex_unlock(&dir->d_parent->d_inode->i_mutex);
295 err = jerror ?: err;
296 }
297 }
298out_dir:
299 dput(dir);
300out:
301 /* -ENODATA isn't an error */
302 if (err == -ENODATA)
303 err = 0;
304 return err;
305}
306
307static int delete_one_xattr(struct dentry *dentry, void *data)
308{
309 struct inode *dir = dentry->d_parent->d_inode;
310
311 /* This is the xattr dir, handle specially. */
312 if (S_ISDIR(dentry->d_inode->i_mode))
313 return xattr_rmdir(dir, dentry);
314
315 return xattr_unlink(dir, dentry);
316}
317
318static int chown_one_xattr(struct dentry *dentry, void *data)
319{
320 struct iattr *attrs = data;
321 return reiserfs_setattr(dentry, attrs);
322}
323
324/* No i_mutex, but the inode is unconnected. */
325int reiserfs_delete_xattrs(struct inode *inode)
326{
327 int err = reiserfs_for_each_xattr(inode, delete_one_xattr, NULL);
328 if (err)
329 reiserfs_warning(inode->i_sb, "jdm-20004",
330 "Couldn't delete all xattrs (%d)\n", err);
331 return err;
332}
333
334/* inode->i_mutex: down */
335int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs)
336{
337 int err = reiserfs_for_each_xattr(inode, chown_one_xattr, attrs);
338 if (err)
339 reiserfs_warning(inode->i_sb, "jdm-20007",
340 "Couldn't chown all xattrs (%d)\n", err);
341 return err;
342}
343
344#ifdef CONFIG_REISERFS_FS_XATTR
345/* Returns a dentry corresponding to a specific extended attribute file
346 * for the inode. If flags allow, the file is created. Otherwise, a
347 * valid or negative dentry, or an error is returned. */
348static struct dentry *xattr_lookup(struct inode *inode, const char *name,
349 int flags)
350{
351 struct dentry *xadir, *xafile;
352 int err = 0;
353
354 xadir = open_xa_dir(inode, flags);
355 if (IS_ERR(xadir))
356 return ERR_CAST(xadir);
357
358 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
359 xafile = lookup_one_len(name, xadir, strlen(name));
360 if (IS_ERR(xafile)) {
361 err = PTR_ERR(xafile);
362 goto out;
363 }
364
365 if (xafile->d_inode && (flags & XATTR_CREATE))
366 err = -EEXIST;
367
368 if (!xafile->d_inode) {
369 err = -ENODATA;
370 if (xattr_may_create(flags))
371 err = xattr_create(xadir->d_inode, xafile,
372 0700|S_IFREG);
373 }
374
375 if (err)
376 dput(xafile);
377out:
378 mutex_unlock(&xadir->d_inode->i_mutex);
379 dput(xadir);
380 if (err)
381 return ERR_PTR(err);
382 return xafile;
383}
384
385/* Internal operations on file data */
386static inline void reiserfs_put_page(struct page *page)
387{
388 kunmap(page);
389 page_cache_release(page);
390}
391
392static struct page *reiserfs_get_page(struct inode *dir, size_t n)
393{
394 struct address_space *mapping = dir->i_mapping;
395 struct page *page;
396 /* We can deadlock if we try to free dentries,
397 and an unlink/rmdir has just occurred - GFP_NOFS avoids this */
398 mapping_set_gfp_mask(mapping, GFP_NOFS);
399 page = read_mapping_page(mapping, n >> PAGE_CACHE_SHIFT, NULL);
400 if (!IS_ERR(page)) {
401 kmap(page);
402 if (PageError(page))
403 goto fail;
404 }
405 return page;
406
407 fail:
408 reiserfs_put_page(page);
409 return ERR_PTR(-EIO);
410}
411
412static inline __u32 xattr_hash(const char *msg, int len)
413{
414 return csum_partial(msg, len, 0);
415}
416
417int reiserfs_commit_write(struct file *f, struct page *page,
418 unsigned from, unsigned to);
419
420static void update_ctime(struct inode *inode)
421{
422 struct timespec now = current_fs_time(inode->i_sb);
423 if (inode_unhashed(inode) || !inode->i_nlink ||
424 timespec_equal(&inode->i_ctime, &now))
425 return;
426
427 inode->i_ctime = CURRENT_TIME_SEC;
428 mark_inode_dirty(inode);
429}
430
431static int lookup_and_delete_xattr(struct inode *inode, const char *name)
432{
433 int err = 0;
434 struct dentry *dentry, *xadir;
435
436 xadir = open_xa_dir(inode, XATTR_REPLACE);
437 if (IS_ERR(xadir))
438 return PTR_ERR(xadir);
439
440 mutex_lock_nested(&xadir->d_inode->i_mutex, I_MUTEX_XATTR);
441 dentry = lookup_one_len(name, xadir, strlen(name));
442 if (IS_ERR(dentry)) {
443 err = PTR_ERR(dentry);
444 goto out_dput;
445 }
446
447 if (dentry->d_inode) {
448 reiserfs_write_lock(inode->i_sb);
449 err = xattr_unlink(xadir->d_inode, dentry);
450 reiserfs_write_unlock(inode->i_sb);
451 update_ctime(inode);
452 }
453
454 dput(dentry);
455out_dput:
456 mutex_unlock(&xadir->d_inode->i_mutex);
457 dput(xadir);
458 return err;
459}
460
461
462/* Generic extended attribute operations that can be used by xa plugins */
463
464/*
465 * inode->i_mutex: down
466 */
467int
468reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th,
469 struct inode *inode, const char *name,
470 const void *buffer, size_t buffer_size, int flags)
471{
472 int err = 0;
473 struct dentry *dentry;
474 struct page *page;
475 char *data;
476 size_t file_pos = 0;
477 size_t buffer_pos = 0;
478 size_t new_size;
479 __u32 xahash = 0;
480
481 if (get_inode_sd_version(inode) == STAT_DATA_V1)
482 return -EOPNOTSUPP;
483
484 reiserfs_write_unlock(inode->i_sb);
485
486 if (!buffer) {
487 err = lookup_and_delete_xattr(inode, name);
488 reiserfs_write_lock(inode->i_sb);
489 return err;
490 }
491
492 dentry = xattr_lookup(inode, name, flags);
493 if (IS_ERR(dentry)) {
494 reiserfs_write_lock(inode->i_sb);
495 return PTR_ERR(dentry);
496 }
497
498 down_write(&REISERFS_I(inode)->i_xattr_sem);
499
500 reiserfs_write_lock(inode->i_sb);
501
502 xahash = xattr_hash(buffer, buffer_size);
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
512 page = reiserfs_get_page(dentry->d_inode, file_pos);
513 if (IS_ERR(page)) {
514 err = PTR_ERR(page);
515 goto out_unlock;
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
531 err = __reiserfs_write_begin(page, page_offset, chunk + skip);
532 if (!err) {
533 if (buffer)
534 memcpy(data + skip, buffer + buffer_pos, chunk);
535 err = reiserfs_commit_write(NULL, page, page_offset,
536 page_offset + chunk +
537 skip);
538 }
539 unlock_page(page);
540 reiserfs_put_page(page);
541 buffer_pos += chunk;
542 file_pos += chunk;
543 skip = 0;
544 if (err || buffer_size == 0 || !buffer)
545 break;
546 }
547
548 new_size = buffer_size + sizeof(struct reiserfs_xattr_header);
549 if (!err && new_size < i_size_read(dentry->d_inode)) {
550 struct iattr newattrs = {
551 .ia_ctime = current_fs_time(inode->i_sb),
552 .ia_size = new_size,
553 .ia_valid = ATTR_SIZE | ATTR_CTIME,
554 };
555
556 reiserfs_write_unlock(inode->i_sb);
557 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_XATTR);
558 inode_dio_wait(dentry->d_inode);
559 reiserfs_write_lock(inode->i_sb);
560
561 err = reiserfs_setattr(dentry, &newattrs);
562 mutex_unlock(&dentry->d_inode->i_mutex);
563 } else
564 update_ctime(inode);
565out_unlock:
566 up_write(&REISERFS_I(inode)->i_xattr_sem);
567 dput(dentry);
568 return err;
569}
570
571/* We need to start a transaction to maintain lock ordering */
572int reiserfs_xattr_set(struct inode *inode, const char *name,
573 const void *buffer, size_t buffer_size, int flags)
574{
575
576 struct reiserfs_transaction_handle th;
577 int error, error2;
578 size_t jbegin_count = reiserfs_xattr_nblocks(inode, buffer_size);
579
580 if (!(flags & XATTR_REPLACE))
581 jbegin_count += reiserfs_xattr_jcreate_nblocks(inode);
582
583 reiserfs_write_lock(inode->i_sb);
584 error = journal_begin(&th, inode->i_sb, jbegin_count);
585 if (error) {
586 reiserfs_write_unlock(inode->i_sb);
587 return error;
588 }
589
590 error = reiserfs_xattr_set_handle(&th, inode, name,
591 buffer, buffer_size, flags);
592
593 error2 = journal_end(&th, inode->i_sb, jbegin_count);
594 if (error == 0)
595 error = error2;
596 reiserfs_write_unlock(inode->i_sb);
597
598 return error;
599}
600
601/*
602 * inode->i_mutex: down
603 */
604int
605reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
606 size_t buffer_size)
607{
608 ssize_t err = 0;
609 struct dentry *dentry;
610 size_t isize;
611 size_t file_pos = 0;
612 size_t buffer_pos = 0;
613 struct page *page;
614 __u32 hash = 0;
615
616 if (name == NULL)
617 return -EINVAL;
618
619 /* We can't have xattrs attached to v1 items since they don't have
620 * generation numbers */
621 if (get_inode_sd_version(inode) == STAT_DATA_V1)
622 return -EOPNOTSUPP;
623
624 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
625 if (IS_ERR(dentry)) {
626 err = PTR_ERR(dentry);
627 goto out;
628 }
629
630 down_read(&REISERFS_I(inode)->i_xattr_sem);
631
632 isize = i_size_read(dentry->d_inode);
633
634 /* Just return the size needed */
635 if (buffer == NULL) {
636 err = isize - sizeof(struct reiserfs_xattr_header);
637 goto out_unlock;
638 }
639
640 if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) {
641 err = -ERANGE;
642 goto out_unlock;
643 }
644
645 while (file_pos < isize) {
646 size_t chunk;
647 char *data;
648 size_t skip = 0;
649 if (isize - file_pos > PAGE_CACHE_SIZE)
650 chunk = PAGE_CACHE_SIZE;
651 else
652 chunk = isize - file_pos;
653
654 page = reiserfs_get_page(dentry->d_inode, file_pos);
655 if (IS_ERR(page)) {
656 err = PTR_ERR(page);
657 goto out_unlock;
658 }
659
660 lock_page(page);
661 data = page_address(page);
662 if (file_pos == 0) {
663 struct reiserfs_xattr_header *rxh =
664 (struct reiserfs_xattr_header *)data;
665 skip = file_pos = sizeof(struct reiserfs_xattr_header);
666 chunk -= skip;
667 /* Magic doesn't match up.. */
668 if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) {
669 unlock_page(page);
670 reiserfs_put_page(page);
671 reiserfs_warning(inode->i_sb, "jdm-20001",
672 "Invalid magic for xattr (%s) "
673 "associated with %k", name,
674 INODE_PKEY(inode));
675 err = -EIO;
676 goto out_unlock;
677 }
678 hash = le32_to_cpu(rxh->h_hash);
679 }
680 memcpy(buffer + buffer_pos, data + skip, chunk);
681 unlock_page(page);
682 reiserfs_put_page(page);
683 file_pos += chunk;
684 buffer_pos += chunk;
685 skip = 0;
686 }
687 err = isize - sizeof(struct reiserfs_xattr_header);
688
689 if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) !=
690 hash) {
691 reiserfs_warning(inode->i_sb, "jdm-20002",
692 "Invalid hash for xattr (%s) associated "
693 "with %k", name, INODE_PKEY(inode));
694 err = -EIO;
695 }
696
697out_unlock:
698 up_read(&REISERFS_I(inode)->i_xattr_sem);
699 dput(dentry);
700
701out:
702 return err;
703}
704
705/*
706 * In order to implement different sets of xattr operations for each xattr
707 * prefix with the generic xattr API, a filesystem should create a
708 * null-terminated array of struct xattr_handler (one for each prefix) and
709 * hang a pointer to it off of the s_xattr field of the superblock.
710 *
711 * The generic_fooxattr() functions will use this list to dispatch xattr
712 * operations to the correct xattr_handler.
713 */
714#define for_each_xattr_handler(handlers, handler) \
715 for ((handler) = *(handlers)++; \
716 (handler) != NULL; \
717 (handler) = *(handlers)++)
718
719/* This is the implementation for the xattr plugin infrastructure */
720static inline const struct xattr_handler *
721find_xattr_handler_prefix(const struct xattr_handler **handlers,
722 const char *name)
723{
724 const struct xattr_handler *xah;
725
726 if (!handlers)
727 return NULL;
728
729 for_each_xattr_handler(handlers, xah) {
730 if (strncmp(xah->prefix, name, strlen(xah->prefix)) == 0)
731 break;
732 }
733
734 return xah;
735}
736
737
738/*
739 * Inode operation getxattr()
740 */
741ssize_t
742reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer,
743 size_t size)
744{
745 const struct xattr_handler *handler;
746
747 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name);
748
749 if (!handler || get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
750 return -EOPNOTSUPP;
751
752 return handler->get(dentry, name, buffer, size, handler->flags);
753}
754
755/*
756 * Inode operation setxattr()
757 *
758 * dentry->d_inode->i_mutex down
759 */
760int
761reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value,
762 size_t size, int flags)
763{
764 const struct xattr_handler *handler;
765
766 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name);
767
768 if (!handler || get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
769 return -EOPNOTSUPP;
770
771 return handler->set(dentry, name, value, size, flags, handler->flags);
772}
773
774/*
775 * Inode operation removexattr()
776 *
777 * dentry->d_inode->i_mutex down
778 */
779int reiserfs_removexattr(struct dentry *dentry, const char *name)
780{
781 const struct xattr_handler *handler;
782 handler = find_xattr_handler_prefix(dentry->d_sb->s_xattr, name);
783
784 if (!handler || get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
785 return -EOPNOTSUPP;
786
787 return handler->set(dentry, name, NULL, 0, XATTR_REPLACE, handler->flags);
788}
789
790struct listxattr_buf {
791 size_t size;
792 size_t pos;
793 char *buf;
794 struct dentry *dentry;
795};
796
797static int listxattr_filler(void *buf, const char *name, int namelen,
798 loff_t offset, u64 ino, unsigned int d_type)
799{
800 struct listxattr_buf *b = (struct listxattr_buf *)buf;
801 size_t size;
802 if (name[0] != '.' ||
803 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
804 const struct xattr_handler *handler;
805 handler = find_xattr_handler_prefix(b->dentry->d_sb->s_xattr,
806 name);
807 if (!handler) /* Unsupported xattr name */
808 return 0;
809 if (b->buf) {
810 size = handler->list(b->dentry, b->buf + b->pos,
811 b->size, name, namelen,
812 handler->flags);
813 if (size > b->size)
814 return -ERANGE;
815 } else {
816 size = handler->list(b->dentry, NULL, 0, name,
817 namelen, handler->flags);
818 }
819
820 b->pos += size;
821 }
822 return 0;
823}
824
825/*
826 * Inode operation listxattr()
827 *
828 * We totally ignore the generic listxattr here because it would be stupid
829 * not to. Since the xattrs are organized in a directory, we can just
830 * readdir to find them.
831 */
832ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size)
833{
834 struct dentry *dir;
835 int err = 0;
836 loff_t pos = 0;
837 struct listxattr_buf buf = {
838 .dentry = dentry,
839 .buf = buffer,
840 .size = buffer ? size : 0,
841 };
842
843 if (!dentry->d_inode)
844 return -EINVAL;
845
846 if (!dentry->d_sb->s_xattr ||
847 get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1)
848 return -EOPNOTSUPP;
849
850 dir = open_xa_dir(dentry->d_inode, XATTR_REPLACE);
851 if (IS_ERR(dir)) {
852 err = PTR_ERR(dir);
853 if (err == -ENODATA)
854 err = 0; /* Not an error if there aren't any xattrs */
855 goto out;
856 }
857
858 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_XATTR);
859 err = reiserfs_readdir_dentry(dir, &buf, listxattr_filler, &pos);
860 mutex_unlock(&dir->d_inode->i_mutex);
861
862 if (!err)
863 err = buf.pos;
864
865 dput(dir);
866out:
867 return err;
868}
869
870static int create_privroot(struct dentry *dentry)
871{
872 int err;
873 struct inode *inode = dentry->d_parent->d_inode;
874 WARN_ON_ONCE(!mutex_is_locked(&inode->i_mutex));
875
876 err = xattr_mkdir(inode, dentry, 0700);
877 if (err || !dentry->d_inode) {
878 reiserfs_warning(dentry->d_sb, "jdm-20006",
879 "xattrs/ACLs enabled and couldn't "
880 "find/create .reiserfs_priv. "
881 "Failing mount.");
882 return -EOPNOTSUPP;
883 }
884
885 dentry->d_inode->i_flags |= S_PRIVATE;
886 reiserfs_info(dentry->d_sb, "Created %s - reserved for xattr "
887 "storage.\n", PRIVROOT_NAME);
888
889 return 0;
890}
891
892#else
893int __init reiserfs_xattr_register_handlers(void) { return 0; }
894void reiserfs_xattr_unregister_handlers(void) {}
895static int create_privroot(struct dentry *dentry) { return 0; }
896#endif
897
898/* Actual operations that are exported to VFS-land */
899const struct xattr_handler *reiserfs_xattr_handlers[] = {
900#ifdef CONFIG_REISERFS_FS_XATTR
901 &reiserfs_xattr_user_handler,
902 &reiserfs_xattr_trusted_handler,
903#endif
904#ifdef CONFIG_REISERFS_FS_SECURITY
905 &reiserfs_xattr_security_handler,
906#endif
907#ifdef CONFIG_REISERFS_FS_POSIX_ACL
908 &reiserfs_posix_acl_access_handler,
909 &reiserfs_posix_acl_default_handler,
910#endif
911 NULL
912};
913
914static int xattr_mount_check(struct super_block *s)
915{
916 /* We need generation numbers to ensure that the oid mapping is correct
917 * v3.5 filesystems don't have them. */
918 if (old_format_only(s)) {
919 if (reiserfs_xattrs_optional(s)) {
920 /* Old format filesystem, but optional xattrs have
921 * been enabled. Error out. */
922 reiserfs_warning(s, "jdm-2005",
923 "xattrs/ACLs not supported "
924 "on pre-v3.6 format filesystems. "
925 "Failing mount.");
926 return -EOPNOTSUPP;
927 }
928 }
929
930 return 0;
931}
932
933int reiserfs_permission(struct inode *inode, int mask)
934{
935 /*
936 * We don't do permission checks on the internal objects.
937 * Permissions are determined by the "owning" object.
938 */
939 if (IS_PRIVATE(inode))
940 return 0;
941
942 return generic_permission(inode, mask);
943}
944
945static int xattr_hide_revalidate(struct dentry *dentry, struct nameidata *nd)
946{
947 return -EPERM;
948}
949
950static const struct dentry_operations xattr_lookup_poison_ops = {
951 .d_revalidate = xattr_hide_revalidate,
952};
953
954int reiserfs_lookup_privroot(struct super_block *s)
955{
956 struct dentry *dentry;
957 int err = 0;
958
959 /* If we don't have the privroot located yet - go find it */
960 reiserfs_mutex_lock_safe(&s->s_root->d_inode->i_mutex, s);
961 dentry = lookup_one_len(PRIVROOT_NAME, s->s_root,
962 strlen(PRIVROOT_NAME));
963 if (!IS_ERR(dentry)) {
964 REISERFS_SB(s)->priv_root = dentry;
965 d_set_d_op(dentry, &xattr_lookup_poison_ops);
966 if (dentry->d_inode)
967 dentry->d_inode->i_flags |= S_PRIVATE;
968 } else
969 err = PTR_ERR(dentry);
970 mutex_unlock(&s->s_root->d_inode->i_mutex);
971
972 return err;
973}
974
975/* We need to take a copy of the mount flags since things like
976 * MS_RDONLY don't get set until *after* we're called.
977 * mount_flags != mount_options */
978int reiserfs_xattr_init(struct super_block *s, int mount_flags)
979{
980 int err = 0;
981 struct dentry *privroot = REISERFS_SB(s)->priv_root;
982
983 err = xattr_mount_check(s);
984 if (err)
985 goto error;
986
987 if (!privroot->d_inode && !(mount_flags & MS_RDONLY)) {
988 reiserfs_mutex_lock_safe(&s->s_root->d_inode->i_mutex, s);
989 err = create_privroot(REISERFS_SB(s)->priv_root);
990 mutex_unlock(&s->s_root->d_inode->i_mutex);
991 }
992
993 if (privroot->d_inode) {
994 s->s_xattr = reiserfs_xattr_handlers;
995 reiserfs_mutex_lock_safe(&privroot->d_inode->i_mutex, s);
996 if (!REISERFS_SB(s)->xattr_root) {
997 struct dentry *dentry;
998 dentry = lookup_one_len(XAROOT_NAME, privroot,
999 strlen(XAROOT_NAME));
1000 if (!IS_ERR(dentry))
1001 REISERFS_SB(s)->xattr_root = dentry;
1002 else
1003 err = PTR_ERR(dentry);
1004 }
1005 mutex_unlock(&privroot->d_inode->i_mutex);
1006 }
1007
1008error:
1009 if (err) {
1010 clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1011 clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1012 }
1013
1014 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
1015 if (reiserfs_posixacl(s))
1016 s->s_flags |= MS_POSIXACL;
1017 else
1018 s->s_flags &= ~MS_POSIXACL;
1019
1020 return err;
1021}