1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/reiserfs/xattr.c
5 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
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.
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
24 * The file contents are the text of the EA. The size is known based on the
25 * stat data describing the file.
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.
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.
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>
44 #include <linux/file.h>
45 #include <linux/pagemap.h>
46 #include <linux/xattr.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>
56 #define PRIVROOT_NAME ".reiserfs_priv"
57 #define XAROOT_NAME "xattrs"
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.
65 #ifdef CONFIG_REISERFS_FS_XATTR
66 static int xattr_create(struct inode
*dir
, struct dentry
*dentry
, int mode
)
68 BUG_ON(!inode_is_locked(dir
));
69 return dir
->i_op
->create(dir
, dentry
, mode
, true);
73 static int xattr_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
75 BUG_ON(!inode_is_locked(dir
));
76 return dir
->i_op
->mkdir(dir
, dentry
, mode
);
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.
85 static int xattr_unlink(struct inode
*dir
, struct dentry
*dentry
)
89 BUG_ON(!inode_is_locked(dir
));
91 inode_lock_nested(d_inode(dentry
), I_MUTEX_CHILD
);
92 error
= dir
->i_op
->unlink(dir
, dentry
);
93 inode_unlock(d_inode(dentry
));
100 static int xattr_rmdir(struct inode
*dir
, struct dentry
*dentry
)
104 BUG_ON(!inode_is_locked(dir
));
106 inode_lock_nested(d_inode(dentry
), I_MUTEX_CHILD
);
107 error
= dir
->i_op
->rmdir(dir
, dentry
);
109 d_inode(dentry
)->i_flags
|= S_DEAD
;
110 inode_unlock(d_inode(dentry
));
117 #define xattr_may_create(flags) (!flags || flags & XATTR_CREATE)
119 static struct dentry
*open_xa_root(struct super_block
*sb
, int flags
)
121 struct dentry
*privroot
= REISERFS_SB(sb
)->priv_root
;
122 struct dentry
*xaroot
;
124 if (d_really_is_negative(privroot
))
125 return ERR_PTR(-EOPNOTSUPP
);
127 inode_lock_nested(d_inode(privroot
), I_MUTEX_XATTR
);
129 xaroot
= dget(REISERFS_SB(sb
)->xattr_root
);
131 xaroot
= ERR_PTR(-EOPNOTSUPP
);
132 else if (d_really_is_negative(xaroot
)) {
135 if (xattr_may_create(flags
))
136 err
= xattr_mkdir(d_inode(privroot
), xaroot
, 0700);
139 xaroot
= ERR_PTR(err
);
143 inode_unlock(d_inode(privroot
));
147 static struct dentry
*open_xa_dir(const struct inode
*inode
, int flags
)
149 struct dentry
*xaroot
, *xadir
;
152 xaroot
= open_xa_root(inode
->i_sb
, flags
);
156 snprintf(namebuf
, sizeof(namebuf
), "%X.%X",
157 le32_to_cpu(INODE_PKEY(inode
)->k_objectid
),
158 inode
->i_generation
);
160 inode_lock_nested(d_inode(xaroot
), I_MUTEX_XATTR
);
162 xadir
= lookup_one_len(namebuf
, xaroot
, strlen(namebuf
));
163 if (!IS_ERR(xadir
) && d_really_is_negative(xadir
)) {
166 if (xattr_may_create(flags
))
167 err
= xattr_mkdir(d_inode(xaroot
), xadir
, 0700);
170 xadir
= ERR_PTR(err
);
174 inode_unlock(d_inode(xaroot
));
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.
184 struct reiserfs_dentry_buf
{
185 struct dir_context ctx
;
186 struct dentry
*xadir
;
189 struct dentry
*dentries
[8];
193 fill_with_dentries(struct dir_context
*ctx
, const char *name
, int namelen
,
194 loff_t offset
, u64 ino
, unsigned int d_type
)
196 struct reiserfs_dentry_buf
*dbuf
=
197 container_of(ctx
, struct reiserfs_dentry_buf
, ctx
);
198 struct dentry
*dentry
;
200 WARN_ON_ONCE(!inode_is_locked(d_inode(dbuf
->xadir
)));
202 if (dbuf
->count
== ARRAY_SIZE(dbuf
->dentries
))
205 if (name
[0] == '.' && (namelen
< 2 ||
206 (namelen
== 2 && name
[1] == '.')))
209 dentry
= lookup_one_len(name
, dbuf
->xadir
, namelen
);
210 if (IS_ERR(dentry
)) {
211 dbuf
->err
= PTR_ERR(dentry
);
212 return PTR_ERR(dentry
);
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
);
224 dbuf
->dentries
[dbuf
->count
++] = dentry
;
229 cleanup_dentry_buf(struct reiserfs_dentry_buf
*buf
)
233 for (i
= 0; i
< buf
->count
; i
++)
234 if (buf
->dentries
[i
])
235 dput(buf
->dentries
[i
]);
238 static int reiserfs_for_each_xattr(struct inode
*inode
,
239 int (*action
)(struct dentry
*, void *),
244 struct reiserfs_dentry_buf buf
= {
245 .ctx
.actor
= fill_with_dentries
,
248 /* Skip out, an xattr has no xattrs associated with it */
249 if (IS_PRIVATE(inode
) || get_inode_sd_version(inode
) == STAT_DATA_V1
)
252 dir
= open_xa_dir(inode
, XATTR_REPLACE
);
256 } else if (d_really_is_negative(dir
)) {
261 inode_lock_nested(d_inode(dir
), I_MUTEX_XATTR
);
265 err
= reiserfs_readdir_inode(d_inode(dir
), &buf
.ctx
);
274 for (i
= 0; !err
&& i
< buf
.count
&& buf
.dentries
[i
]; i
++) {
275 struct dentry
*dentry
= buf
.dentries
[i
];
277 if (!d_is_dir(dentry
))
278 err
= action(dentry
, data
);
281 buf
.dentries
[i
] = NULL
;
287 inode_unlock(d_inode(dir
));
289 cleanup_dentry_buf(&buf
);
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
299 int blocks
= JOURNAL_PER_BALANCE_CNT
* 2 + 2 +
300 4 * REISERFS_QUOTA_TRANS_BLOCKS(inode
->i_sb
);
301 struct reiserfs_transaction_handle th
;
303 reiserfs_write_lock(inode
->i_sb
);
304 err
= journal_begin(&th
, inode
->i_sb
, blocks
);
305 reiserfs_write_unlock(inode
->i_sb
);
309 inode_lock_nested(d_inode(dir
->d_parent
),
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
));
323 * -ENODATA: this object doesn't have any xattrs
324 * -EOPNOTSUPP: this file system doesn't have xattrs enabled on disk.
327 if (err
== -ENODATA
|| err
== -EOPNOTSUPP
)
332 static int delete_one_xattr(struct dentry
*dentry
, void *data
)
334 struct inode
*dir
= d_inode(dentry
->d_parent
);
336 /* This is the xattr dir, handle specially. */
337 if (d_is_dir(dentry
))
338 return xattr_rmdir(dir
, dentry
);
340 return xattr_unlink(dir
, dentry
);
343 static int chown_one_xattr(struct dentry
*dentry
, void *data
)
345 struct iattr
*attrs
= data
;
346 int ia_valid
= attrs
->ia_valid
;
350 * We only want the ownership bits. Otherwise, we'll do
351 * things like change a directory to a regular file if
354 attrs
->ia_valid
&= (ATTR_UID
|ATTR_GID
);
355 err
= reiserfs_setattr(dentry
, attrs
);
356 attrs
->ia_valid
= ia_valid
;
361 /* No i_mutex, but the inode is unconnected. */
362 int reiserfs_delete_xattrs(struct inode
*inode
)
364 int err
= reiserfs_for_each_xattr(inode
, delete_one_xattr
, NULL
);
367 reiserfs_warning(inode
->i_sb
, "jdm-20004",
368 "Couldn't delete all xattrs (%d)\n", err
);
372 /* inode->i_mutex: down */
373 int reiserfs_chown_xattrs(struct inode
*inode
, struct iattr
*attrs
)
375 int err
= reiserfs_for_each_xattr(inode
, chown_one_xattr
, attrs
);
378 reiserfs_warning(inode
->i_sb
, "jdm-20007",
379 "Couldn't chown all xattrs (%d)\n", err
);
383 #ifdef CONFIG_REISERFS_FS_XATTR
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.
389 static struct dentry
*xattr_lookup(struct inode
*inode
, const char *name
,
392 struct dentry
*xadir
, *xafile
;
395 xadir
= open_xa_dir(inode
, flags
);
397 return ERR_CAST(xadir
);
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
);
406 if (d_really_is_positive(xafile
) && (flags
& XATTR_CREATE
))
409 if (d_really_is_negative(xafile
)) {
411 if (xattr_may_create(flags
))
412 err
= xattr_create(d_inode(xadir
), xafile
,
419 inode_unlock(d_inode(xadir
));
426 /* Internal operations on file data */
427 static inline void reiserfs_put_page(struct page
*page
)
433 static struct page
*reiserfs_get_page(struct inode
*dir
, size_t n
)
435 struct address_space
*mapping
= dir
->i_mapping
;
438 * We can deadlock if we try to free dentries,
439 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this
441 mapping_set_gfp_mask(mapping
, GFP_NOFS
);
442 page
= read_mapping_page(mapping
, n
>> PAGE_SHIFT
, NULL
);
451 reiserfs_put_page(page
);
452 return ERR_PTR(-EIO
);
455 static inline __u32
xattr_hash(const char *msg
, int len
)
457 return csum_partial(msg
, len
, 0);
460 int reiserfs_commit_write(struct file
*f
, struct page
*page
,
461 unsigned from
, unsigned to
);
463 static void update_ctime(struct inode
*inode
)
465 struct timespec now
= current_time(inode
);
467 if (inode_unhashed(inode
) || !inode
->i_nlink
||
468 timespec_equal(&inode
->i_ctime
, &now
))
471 inode
->i_ctime
= current_time(inode
);
472 mark_inode_dirty(inode
);
475 static int lookup_and_delete_xattr(struct inode
*inode
, const char *name
)
478 struct dentry
*dentry
, *xadir
;
480 xadir
= open_xa_dir(inode
, XATTR_REPLACE
);
482 return PTR_ERR(xadir
);
484 inode_lock_nested(d_inode(xadir
), I_MUTEX_XATTR
);
485 dentry
= lookup_one_len(name
, xadir
, strlen(name
));
486 if (IS_ERR(dentry
)) {
487 err
= PTR_ERR(dentry
);
491 if (d_really_is_positive(dentry
)) {
492 err
= xattr_unlink(d_inode(xadir
), dentry
);
498 inode_unlock(d_inode(xadir
));
504 /* Generic extended attribute operations that can be used by xa plugins */
507 * inode->i_mutex: down
510 reiserfs_xattr_set_handle(struct reiserfs_transaction_handle
*th
,
511 struct inode
*inode
, const char *name
,
512 const void *buffer
, size_t buffer_size
, int flags
)
515 struct dentry
*dentry
;
519 size_t buffer_pos
= 0;
523 if (get_inode_sd_version(inode
) == STAT_DATA_V1
)
527 err
= lookup_and_delete_xattr(inode
, name
);
531 dentry
= xattr_lookup(inode
, name
, flags
);
533 return PTR_ERR(dentry
);
535 down_write(&REISERFS_I(inode
)->i_xattr_sem
);
537 xahash
= xattr_hash(buffer
, buffer_size
);
538 while (buffer_pos
< buffer_size
|| buffer_pos
== 0) {
541 size_t page_offset
= (file_pos
& (PAGE_SIZE
- 1));
543 if (buffer_size
- buffer_pos
> PAGE_SIZE
)
546 chunk
= buffer_size
- buffer_pos
;
548 page
= reiserfs_get_page(d_inode(dentry
), file_pos
);
555 data
= page_address(page
);
558 struct reiserfs_xattr_header
*rxh
;
560 skip
= file_pos
= sizeof(struct reiserfs_xattr_header
);
561 if (chunk
+ skip
> PAGE_SIZE
)
562 chunk
= PAGE_SIZE
- skip
;
563 rxh
= (struct reiserfs_xattr_header
*)data
;
564 rxh
->h_magic
= cpu_to_le32(REISERFS_XATTR_MAGIC
);
565 rxh
->h_hash
= cpu_to_le32(xahash
);
568 reiserfs_write_lock(inode
->i_sb
);
569 err
= __reiserfs_write_begin(page
, page_offset
, chunk
+ skip
);
572 memcpy(data
+ skip
, buffer
+ buffer_pos
, chunk
);
573 err
= reiserfs_commit_write(NULL
, page
, page_offset
,
574 page_offset
+ chunk
+
577 reiserfs_write_unlock(inode
->i_sb
);
579 reiserfs_put_page(page
);
583 if (err
|| buffer_size
== 0 || !buffer
)
587 new_size
= buffer_size
+ sizeof(struct reiserfs_xattr_header
);
588 if (!err
&& new_size
< i_size_read(d_inode(dentry
))) {
589 struct iattr newattrs
= {
590 .ia_ctime
= current_time(inode
),
592 .ia_valid
= ATTR_SIZE
| ATTR_CTIME
,
595 inode_lock_nested(d_inode(dentry
), I_MUTEX_XATTR
);
596 inode_dio_wait(d_inode(dentry
));
598 err
= reiserfs_setattr(dentry
, &newattrs
);
599 inode_unlock(d_inode(dentry
));
603 up_write(&REISERFS_I(inode
)->i_xattr_sem
);
608 /* We need to start a transaction to maintain lock ordering */
609 int reiserfs_xattr_set(struct inode
*inode
, const char *name
,
610 const void *buffer
, size_t buffer_size
, int flags
)
613 struct reiserfs_transaction_handle th
;
615 size_t jbegin_count
= reiserfs_xattr_nblocks(inode
, buffer_size
);
617 /* Check before we start a transaction and then do nothing. */
618 if (!d_really_is_positive(REISERFS_SB(inode
->i_sb
)->priv_root
))
621 if (!(flags
& XATTR_REPLACE
))
622 jbegin_count
+= reiserfs_xattr_jcreate_nblocks(inode
);
624 reiserfs_write_lock(inode
->i_sb
);
625 error
= journal_begin(&th
, inode
->i_sb
, jbegin_count
);
626 reiserfs_write_unlock(inode
->i_sb
);
631 error
= reiserfs_xattr_set_handle(&th
, inode
, name
,
632 buffer
, buffer_size
, flags
);
634 reiserfs_write_lock(inode
->i_sb
);
635 error2
= journal_end(&th
);
636 reiserfs_write_unlock(inode
->i_sb
);
644 * inode->i_mutex: down
647 reiserfs_xattr_get(struct inode
*inode
, const char *name
, void *buffer
,
651 struct dentry
*dentry
;
654 size_t buffer_pos
= 0;
662 * We can't have xattrs attached to v1 items since they don't have
665 if (get_inode_sd_version(inode
) == STAT_DATA_V1
)
669 * priv_root needn't be initialized during mount so allow initial
670 * lookups to succeed.
672 if (!REISERFS_SB(inode
->i_sb
)->priv_root
)
675 dentry
= xattr_lookup(inode
, name
, XATTR_REPLACE
);
676 if (IS_ERR(dentry
)) {
677 err
= PTR_ERR(dentry
);
681 down_read(&REISERFS_I(inode
)->i_xattr_sem
);
683 isize
= i_size_read(d_inode(dentry
));
685 /* Just return the size needed */
686 if (buffer
== NULL
) {
687 err
= isize
- sizeof(struct reiserfs_xattr_header
);
691 if (buffer_size
< isize
- sizeof(struct reiserfs_xattr_header
)) {
696 while (file_pos
< isize
) {
701 if (isize
- file_pos
> PAGE_SIZE
)
704 chunk
= isize
- file_pos
;
706 page
= reiserfs_get_page(d_inode(dentry
), file_pos
);
713 data
= page_address(page
);
715 struct reiserfs_xattr_header
*rxh
=
716 (struct reiserfs_xattr_header
*)data
;
717 skip
= file_pos
= sizeof(struct reiserfs_xattr_header
);
719 /* Magic doesn't match up.. */
720 if (rxh
->h_magic
!= cpu_to_le32(REISERFS_XATTR_MAGIC
)) {
722 reiserfs_put_page(page
);
723 reiserfs_warning(inode
->i_sb
, "jdm-20001",
724 "Invalid magic for xattr (%s) "
725 "associated with %k", name
,
730 hash
= le32_to_cpu(rxh
->h_hash
);
732 memcpy(buffer
+ buffer_pos
, data
+ skip
, chunk
);
734 reiserfs_put_page(page
);
739 err
= isize
- sizeof(struct reiserfs_xattr_header
);
741 if (xattr_hash(buffer
, isize
- sizeof(struct reiserfs_xattr_header
)) !=
743 reiserfs_warning(inode
->i_sb
, "jdm-20002",
744 "Invalid hash for xattr (%s) associated "
745 "with %k", name
, INODE_PKEY(inode
));
750 up_read(&REISERFS_I(inode
)->i_xattr_sem
);
758 * In order to implement different sets of xattr operations for each xattr
759 * prefix with the generic xattr API, a filesystem should create a
760 * null-terminated array of struct xattr_handler (one for each prefix) and
761 * hang a pointer to it off of the s_xattr field of the superblock.
763 * The generic_fooxattr() functions will use this list to dispatch xattr
764 * operations to the correct xattr_handler.
766 #define for_each_xattr_handler(handlers, handler) \
767 for ((handler) = *(handlers)++; \
769 (handler) = *(handlers)++)
771 /* This is the implementation for the xattr plugin infrastructure */
772 static inline const struct xattr_handler
*
773 find_xattr_handler_prefix(const struct xattr_handler
**handlers
,
776 const struct xattr_handler
*xah
;
781 for_each_xattr_handler(handlers
, xah
) {
782 const char *prefix
= xattr_prefix(xah
);
783 if (strncmp(prefix
, name
, strlen(prefix
)) == 0)
790 struct listxattr_buf
{
791 struct dir_context ctx
;
795 struct dentry
*dentry
;
798 static int listxattr_filler(struct dir_context
*ctx
, const char *name
,
799 int namelen
, loff_t offset
, u64 ino
,
802 struct listxattr_buf
*b
=
803 container_of(ctx
, struct listxattr_buf
, ctx
);
806 if (name
[0] != '.' ||
807 (namelen
!= 1 && (name
[1] != '.' || namelen
!= 2))) {
808 const struct xattr_handler
*handler
;
810 handler
= find_xattr_handler_prefix(b
->dentry
->d_sb
->s_xattr
,
812 if (!handler
/* Unsupported xattr name */ ||
813 (handler
->list
&& !handler
->list(b
->dentry
)))
817 if (b
->pos
+ size
> b
->size
) {
821 memcpy(b
->buf
+ b
->pos
, name
, namelen
);
822 b
->buf
[b
->pos
+ namelen
] = 0;
830 * Inode operation listxattr()
832 * We totally ignore the generic listxattr here because it would be stupid
833 * not to. Since the xattrs are organized in a directory, we can just
834 * readdir to find them.
836 ssize_t
reiserfs_listxattr(struct dentry
* dentry
, char *buffer
, size_t size
)
840 struct listxattr_buf buf
= {
841 .ctx
.actor
= listxattr_filler
,
844 .size
= buffer
? size
: 0,
847 if (d_really_is_negative(dentry
))
850 if (get_inode_sd_version(d_inode(dentry
)) == STAT_DATA_V1
)
853 dir
= open_xa_dir(d_inode(dentry
), XATTR_REPLACE
);
857 err
= 0; /* Not an error if there aren't any xattrs */
861 inode_lock_nested(d_inode(dir
), I_MUTEX_XATTR
);
862 err
= reiserfs_readdir_inode(d_inode(dir
), &buf
.ctx
);
863 inode_unlock(d_inode(dir
));
873 static int create_privroot(struct dentry
*dentry
)
876 struct inode
*inode
= d_inode(dentry
->d_parent
);
878 WARN_ON_ONCE(!inode_is_locked(inode
));
880 err
= xattr_mkdir(inode
, dentry
, 0700);
881 if (err
|| d_really_is_negative(dentry
)) {
882 reiserfs_warning(dentry
->d_sb
, "jdm-20006",
883 "xattrs/ACLs enabled and couldn't "
884 "find/create .reiserfs_priv. "
889 d_inode(dentry
)->i_flags
|= S_PRIVATE
;
890 d_inode(dentry
)->i_opflags
&= ~IOP_XATTR
;
891 reiserfs_info(dentry
->d_sb
, "Created %s - reserved for xattr "
892 "storage.\n", PRIVROOT_NAME
);
898 int __init
reiserfs_xattr_register_handlers(void) { return 0; }
899 void reiserfs_xattr_unregister_handlers(void) {}
900 static int create_privroot(struct dentry
*dentry
) { return 0; }
903 /* Actual operations that are exported to VFS-land */
904 const struct xattr_handler
*reiserfs_xattr_handlers
[] = {
905 #ifdef CONFIG_REISERFS_FS_XATTR
906 &reiserfs_xattr_user_handler
,
907 &reiserfs_xattr_trusted_handler
,
909 #ifdef CONFIG_REISERFS_FS_SECURITY
910 &reiserfs_xattr_security_handler
,
912 #ifdef CONFIG_REISERFS_FS_POSIX_ACL
913 &posix_acl_access_xattr_handler
,
914 &posix_acl_default_xattr_handler
,
919 static int xattr_mount_check(struct super_block
*s
)
922 * We need generation numbers to ensure that the oid mapping is correct
923 * v3.5 filesystems don't have them.
925 if (old_format_only(s
)) {
926 if (reiserfs_xattrs_optional(s
)) {
928 * Old format filesystem, but optional xattrs have
929 * been enabled. Error out.
931 reiserfs_warning(s
, "jdm-2005",
932 "xattrs/ACLs not supported "
933 "on pre-v3.6 format filesystems. "
942 int reiserfs_permission(struct inode
*inode
, int mask
)
945 * We don't do permission checks on the internal objects.
946 * Permissions are determined by the "owning" object.
948 if (IS_PRIVATE(inode
))
951 return generic_permission(inode
, mask
);
954 static int xattr_hide_revalidate(struct dentry
*dentry
, unsigned int flags
)
959 static const struct dentry_operations xattr_lookup_poison_ops
= {
960 .d_revalidate
= xattr_hide_revalidate
,
963 int reiserfs_lookup_privroot(struct super_block
*s
)
965 struct dentry
*dentry
;
968 /* If we don't have the privroot located yet - go find it */
969 inode_lock(d_inode(s
->s_root
));
970 dentry
= lookup_one_len(PRIVROOT_NAME
, s
->s_root
,
971 strlen(PRIVROOT_NAME
));
972 if (!IS_ERR(dentry
)) {
973 REISERFS_SB(s
)->priv_root
= dentry
;
974 d_set_d_op(dentry
, &xattr_lookup_poison_ops
);
975 if (d_really_is_positive(dentry
)) {
976 d_inode(dentry
)->i_flags
|= S_PRIVATE
;
977 d_inode(dentry
)->i_opflags
&= ~IOP_XATTR
;
980 err
= PTR_ERR(dentry
);
981 inode_unlock(d_inode(s
->s_root
));
987 * We need to take a copy of the mount flags since things like
988 * MS_RDONLY don't get set until *after* we're called.
989 * mount_flags != mount_options
991 int reiserfs_xattr_init(struct super_block
*s
, int mount_flags
)
994 struct dentry
*privroot
= REISERFS_SB(s
)->priv_root
;
996 err
= xattr_mount_check(s
);
1000 if (d_really_is_negative(privroot
) && !(mount_flags
& MS_RDONLY
)) {
1001 inode_lock(d_inode(s
->s_root
));
1002 err
= create_privroot(REISERFS_SB(s
)->priv_root
);
1003 inode_unlock(d_inode(s
->s_root
));
1006 if (d_really_is_positive(privroot
)) {
1007 inode_lock(d_inode(privroot
));
1008 if (!REISERFS_SB(s
)->xattr_root
) {
1009 struct dentry
*dentry
;
1011 dentry
= lookup_one_len(XAROOT_NAME
, privroot
,
1012 strlen(XAROOT_NAME
));
1013 if (!IS_ERR(dentry
))
1014 REISERFS_SB(s
)->xattr_root
= dentry
;
1016 err
= PTR_ERR(dentry
);
1018 inode_unlock(d_inode(privroot
));
1023 clear_bit(REISERFS_XATTRS_USER
, &REISERFS_SB(s
)->s_mount_opt
);
1024 clear_bit(REISERFS_POSIXACL
, &REISERFS_SB(s
)->s_mount_opt
);
1027 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
1028 if (reiserfs_posixacl(s
))
1029 s
->s_flags
|= MS_POSIXACL
;
1031 s
->s_flags
&= ~MS_POSIXACL
;