2 * linux/fs/reiserfs/xattr.c
4 * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
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.
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
23 * The file contents are the text of the EA. The size is known based on the
24 * stat data describing the file.
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.
32 #include <linux/reiserfs_fs.h>
33 #include <linux/dcache.h>
34 #include <linux/namei.h>
35 #include <linux/errno.h>
37 #include <linux/file.h>
38 #include <linux/pagemap.h>
39 #include <linux/xattr.h>
40 #include <linux/reiserfs_xattr.h>
41 #include <linux/reiserfs_acl.h>
42 #include <linux/mbcache.h>
43 #include <asm/uaccess.h>
44 #include <asm/checksum.h>
45 #include <linux/smp_lock.h>
46 #include <linux/stat.h>
47 #include <asm/semaphore.h>
49 #define FL_READONLY 128
50 #define FL_DIR_SEM_HELD 256
51 #define PRIVROOT_NAME ".reiserfs_priv"
52 #define XAROOT_NAME "xattrs"
54 static struct reiserfs_xattr_handler *find_xattr_handler_prefix (const char *prefix);
56 static struct dentry *
57 create_xa_root (struct super_block *sb)
59 struct dentry *privroot = dget (REISERFS_SB(sb)->priv_root);
60 struct dentry *xaroot;
62 /* This needs to be created at mount-time */
64 return ERR_PTR(-EOPNOTSUPP);
66 xaroot = lookup_one_len (XAROOT_NAME, privroot, strlen (XAROOT_NAME));
67 if (IS_ERR (xaroot)) {
69 } else if (!xaroot->d_inode) {
71 down (&privroot->d_inode->i_sem);
72 err = privroot->d_inode->i_op->mkdir (privroot->d_inode, xaroot, 0700);
73 up (&privroot->d_inode->i_sem);
80 REISERFS_SB(sb)->xattr_root = dget (xaroot);
88 /* This will return a dentry, or error, refering to the xa root directory.
89 * If the xa root doesn't exist yet, the dentry will be returned without
90 * an associated inode. This dentry can be used with ->mkdir to create
91 * the xa directory. */
92 static struct dentry *
93 __get_xa_root (struct super_block *s)
95 struct dentry *privroot = dget (REISERFS_SB(s)->priv_root);
96 struct dentry *xaroot = NULL;
98 if (IS_ERR (privroot) || !privroot)
101 xaroot = lookup_one_len (XAROOT_NAME, privroot, strlen (XAROOT_NAME));
102 if (IS_ERR (xaroot)) {
104 } else if (!xaroot->d_inode) {
110 REISERFS_SB(s)->xattr_root = dget (xaroot);
117 /* Returns the dentry (or NULL) referring to the root of the extended
118 * attribute directory tree. If it has already been retreived, it is used.
119 * Otherwise, we attempt to retreive it from disk. It may also return
120 * a pointer-encoded error.
122 static inline struct dentry *
123 get_xa_root (struct super_block *s)
125 struct dentry *dentry = dget (REISERFS_SB(s)->xattr_root);
128 dentry = __get_xa_root (s);
133 /* Opens the directory corresponding to the inode's extended attribute store.
134 * If flags allow, the tree to the directory may be created. If creation is
135 * prohibited, -ENODATA is returned. */
136 static struct dentry *
137 open_xa_dir (const struct inode *inode, int flags)
139 struct dentry *xaroot, *xadir;
142 xaroot = get_xa_root (inode->i_sb);
143 if (IS_ERR (xaroot)) {
145 } else if (!xaroot) {
146 if (flags == 0 || flags & XATTR_CREATE) {
147 xaroot = create_xa_root (inode->i_sb);
152 return ERR_PTR (-ENODATA);
155 /* ok, we have xaroot open */
157 snprintf (namebuf, sizeof (namebuf), "%X.%X",
158 le32_to_cpu (INODE_PKEY (inode)->k_objectid),
159 inode->i_generation);
160 xadir = lookup_one_len (namebuf, xaroot, strlen (namebuf));
161 if (IS_ERR (xadir)) {
166 if (!xadir->d_inode) {
168 if (flags == 0 || flags & XATTR_CREATE) {
169 /* Although there is nothing else trying to create this directory,
170 * another directory with the same hash may be created, so we need
171 * to protect against that */
172 err = xaroot->d_inode->i_op->mkdir (xaroot->d_inode, xadir, 0700);
176 return ERR_PTR (err);
179 if (!xadir->d_inode) {
182 return ERR_PTR (-ENODATA);
190 /* Returns a dentry corresponding to a specific extended attribute file
191 * for the inode. If flags allow, the file is created. Otherwise, a
192 * valid or negative dentry, or an error is returned. */
193 static struct dentry *
194 get_xa_file_dentry (const struct inode *inode, const char *name, int flags)
196 struct dentry *xadir, *xafile;
199 xadir = open_xa_dir (inode, flags);
200 if (IS_ERR (xadir)) {
201 return ERR_PTR (PTR_ERR (xadir));
202 } else if (xadir && !xadir->d_inode) {
204 return ERR_PTR (-ENODATA);
207 xafile = lookup_one_len (name, xadir, strlen (name));
208 if (IS_ERR (xafile)) {
210 return ERR_PTR (PTR_ERR (xafile));
213 if (xafile->d_inode) { /* file exists */
214 if (flags & XATTR_CREATE) {
219 } else if (flags & XATTR_REPLACE || flags & FL_READONLY) {
222 /* inode->i_sem is down, so nothing else can try to create
224 err = xadir->d_inode->i_op->create (xadir->d_inode, xafile,
236 xafile = ERR_PTR (err);
241 /* Opens a file pointer to the attribute associated with inode */
243 open_xa_file (const struct inode *inode, const char *name, int flags)
245 struct dentry *xafile;
248 xafile = get_xa_file_dentry (inode, name, flags);
250 return ERR_PTR (PTR_ERR (xafile));
251 else if (!xafile->d_inode) {
253 return ERR_PTR (-ENODATA);
256 fp = dentry_open (xafile, NULL, O_RDWR);
257 /* dentry_open dputs the dentry if it fails */
264 * this is very similar to fs/reiserfs/dir.c:reiserfs_readdir, but
265 * we need to drop the path before calling the filldir struct. That
266 * would be a big performance hit to the non-xattr case, so I've copied
267 * the whole thing for now. --clm
269 * the big difference is that I go backwards through the directory,
270 * and don't mess with f->f_pos, but the idea is the same. Do some
271 * action on each and every entry in the directory.
273 * we're called with i_sem held, so there are no worries about the directory
274 * changing underneath us.
276 static int __xattr_readdir(struct file * filp, void * dirent, filldir_t filldir)
278 struct inode *inode = filp->f_dentry->d_inode;
279 struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */
280 INITIALIZE_PATH (path_to_entry);
281 struct buffer_head * bh;
283 struct item_head * ih, tmp_ih;
287 char small_buf[32] ; /* avoid kmalloc if we can */
288 struct reiserfs_de_head *deh;
293 struct reiserfs_dir_entry de;
296 /* form key for search the next directory entry using f_pos field of
298 next_pos = max_reiserfs_offset(inode);
302 if (next_pos <= DOT_DOT_OFFSET)
304 make_cpu_key (&pos_key, inode, next_pos, TYPE_DIRENTRY, 3);
306 search_res = search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry, &de);
307 if (search_res == IO_ERROR) {
308 // FIXME: we could just skip part of directory which could
310 pathrelse(&path_to_entry);
314 if (search_res == NAME_NOT_FOUND)
317 set_de_name_and_namelen(&de);
318 entry_num = de.de_entry_num;
319 deh = &(de.de_deh[entry_num]);
324 if (!is_direntry_le_ih(ih)) {
325 reiserfs_warning(inode->i_sb, "not direntry %h", ih);
328 copy_item_head(&tmp_ih, ih);
330 /* we must have found item, that is item of this directory, */
331 RFALSE( COMP_SHORT_KEYS (&(ih->ih_key), &pos_key),
332 "vs-9000: found item %h does not match to dir we readdir %K",
335 if (deh_offset(deh) <= DOT_DOT_OFFSET) {
339 /* look for the previous entry in the directory */
340 next_pos = deh_offset (deh) - 1;
342 if (!de_visible (deh))
343 /* it is hidden entry */
346 d_reclen = entry_length(bh, ih, entry_num);
347 d_name = B_I_DEH_ENTRY_FILE_NAME (bh, ih, deh);
348 d_off = deh_offset (deh);
349 d_ino = deh_objectid (deh);
351 if (!d_name[d_reclen - 1])
352 d_reclen = strlen (d_name);
354 if (d_reclen > REISERFS_MAX_NAME(inode->i_sb->s_blocksize)){
355 /* too big to send back to VFS */
359 /* Ignore the .reiserfs_priv entry */
360 if (reiserfs_xattrs (inode->i_sb) &&
361 !old_format_only(inode->i_sb) &&
362 deh_objectid (deh) == le32_to_cpu (INODE_PKEY(REISERFS_SB(inode->i_sb)->priv_root->d_inode)->k_objectid))
365 if (d_reclen <= 32) {
366 local_buf = small_buf ;
368 local_buf = reiserfs_kmalloc(d_reclen, GFP_NOFS, inode->i_sb) ;
370 pathrelse (&path_to_entry);
373 if (item_moved (&tmp_ih, &path_to_entry)) {
374 reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
376 /* sigh, must retry. Do this same offset again */
382 // Note, that we copy name to user space via temporary
383 // buffer (local_buf) because filldir will block if
384 // user space buffer is swapped out. At that time
385 // entry can move to somewhere else
386 memcpy (local_buf, d_name, d_reclen);
388 /* the filldir function might need to start transactions,
389 * or do who knows what. Release the path now that we've
390 * copied all the important stuff out of the deh
392 pathrelse (&path_to_entry);
394 if (filldir (dirent, local_buf, d_reclen, d_off, d_ino,
396 if (local_buf != small_buf) {
397 reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
401 if (local_buf != small_buf) {
402 reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
407 pathrelse (&path_to_entry);
412 * this could be done with dedicated readdir ops for the xattr files,
413 * but I want to get something working asap
414 * this is stolen from vfs_readdir
418 int xattr_readdir(struct file *file, filldir_t filler, void *buf)
420 struct inode *inode = file->f_dentry->d_inode;
422 if (!file->f_op || !file->f_op->readdir)
425 // down(&inode->i_zombie);
427 if (!IS_DEADDIR(inode)) {
429 res = __xattr_readdir(file, buf, filler);
432 // up(&inode->i_zombie);
439 /* Internal operations on file data */
441 reiserfs_put_page(struct page *page)
444 page_cache_release(page);
448 reiserfs_get_page(struct inode *dir, unsigned long n)
450 struct address_space *mapping = dir->i_mapping;
452 /* We can deadlock if we try to free dentries,
453 and an unlink/rmdir has just occured - GFP_NOFS avoids this */
454 mapping->flags = (mapping->flags & ~__GFP_BITS_MASK) | GFP_NOFS;
455 page = read_cache_page (mapping, n,
456 (filler_t*)mapping->a_ops->readpage, NULL);
458 wait_on_page_locked(page);
460 if (!PageUptodate(page))
469 reiserfs_put_page(page);
470 return ERR_PTR(-EIO);
474 xattr_hash (const char *msg, int len)
476 return csum_partial (msg, len, 0);
479 /* Generic extended attribute operations that can be used by xa plugins */
485 reiserfs_xattr_set (struct inode *inode, const char *name, const void *buffer,
486 size_t buffer_size, int flags)
492 struct address_space *mapping;
494 size_t buffer_pos = 0;
495 struct inode *xinode;
496 struct iattr newattrs;
499 if (IS_RDONLY (inode))
502 if (IS_IMMUTABLE (inode) || IS_APPEND (inode))
505 if (get_inode_sd_version (inode) == STAT_DATA_V1)
508 /* Empty xattrs are ok, they're just empty files, no hash */
509 if (buffer && buffer_size)
510 xahash = xattr_hash (buffer, buffer_size);
513 fp = open_xa_file (inode, name, flags);
519 xinode = fp->f_dentry->d_inode;
520 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
522 /* we need to copy it off.. */
523 if (xinode->i_nlink > 1) {
525 err = reiserfs_xattr_del (inode, name);
528 /* We just killed the old one, we're not replacing anymore */
529 if (flags & XATTR_REPLACE)
530 flags &= ~XATTR_REPLACE;
534 /* Resize it so we're ok to write there */
535 newattrs.ia_size = buffer_size;
536 newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
537 down (&xinode->i_sem);
538 err = notify_change(fp->f_dentry, &newattrs);
542 mapping = xinode->i_mapping;
543 while (buffer_pos < buffer_size || buffer_pos == 0) {
546 size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1));
547 if (buffer_size - buffer_pos > PAGE_CACHE_SIZE)
548 chunk = PAGE_CACHE_SIZE;
550 chunk = buffer_size - buffer_pos;
552 page = reiserfs_get_page (xinode, file_pos >> PAGE_CACHE_SHIFT);
554 err = PTR_ERR (page);
559 data = page_address (page);
562 struct reiserfs_xattr_header *rxh;
563 skip = file_pos = sizeof (struct reiserfs_xattr_header);
564 if (chunk + skip > PAGE_CACHE_SIZE)
565 chunk = PAGE_CACHE_SIZE - skip;
566 rxh = (struct reiserfs_xattr_header *)data;
567 rxh->h_magic = cpu_to_le32 (REISERFS_XATTR_MAGIC);
568 rxh->h_hash = cpu_to_le32 (xahash);
571 err = mapping->a_ops->prepare_write (fp, page, page_offset,
572 page_offset + chunk + skip);
575 memcpy (data + skip, buffer + buffer_pos, chunk);
576 err = mapping->a_ops->commit_write (fp, page, page_offset,
577 page_offset + chunk + skip);
580 reiserfs_put_page (page);
584 if (err || buffer_size == 0 || !buffer)
588 /* We can't mark the inode dirty if it's not hashed. This is the case
589 * when we're inheriting the default ACL. If we dirty it, the inode
590 * gets marked dirty, but won't (ever) make it onto the dirty list until
591 * it's synced explicitly to clear I_DIRTY. This is bad. */
592 if (!hlist_unhashed(&inode->i_hash)) {
593 inode->i_ctime = CURRENT_TIME_SEC;
594 mark_inode_dirty (inode);
609 reiserfs_xattr_get (const struct inode *inode, const char *name, void *buffer,
616 size_t buffer_pos = 0;
618 struct inode *xinode;
624 /* We can't have xattrs attached to v1 items since they don't have
625 * generation numbers */
626 if (get_inode_sd_version (inode) == STAT_DATA_V1)
629 fp = open_xa_file (inode, name, FL_READONLY);
635 xinode = fp->f_dentry->d_inode;
636 isize = xinode->i_size;
637 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
639 /* Just return the size needed */
640 if (buffer == NULL) {
641 err = isize - sizeof (struct reiserfs_xattr_header);
645 if (buffer_size < isize - sizeof (struct reiserfs_xattr_header)) {
650 while (file_pos < isize) {
654 if (isize - file_pos > PAGE_CACHE_SIZE)
655 chunk = PAGE_CACHE_SIZE;
657 chunk = isize - file_pos;
659 page = reiserfs_get_page (xinode, file_pos >> PAGE_CACHE_SHIFT);
661 err = PTR_ERR (page);
666 data = page_address (page);
668 struct reiserfs_xattr_header *rxh =
669 (struct reiserfs_xattr_header *)data;
670 skip = file_pos = sizeof (struct reiserfs_xattr_header);
672 /* Magic doesn't match up.. */
673 if (rxh->h_magic != cpu_to_le32 (REISERFS_XATTR_MAGIC)) {
675 reiserfs_put_page (page);
676 reiserfs_warning (inode->i_sb, "Invalid magic for xattr (%s) "
677 "associated with %k", name,
682 hash = le32_to_cpu (rxh->h_hash);
684 memcpy (buffer + buffer_pos, data + skip, chunk);
686 reiserfs_put_page (page);
691 err = isize - sizeof (struct reiserfs_xattr_header);
693 if (xattr_hash (buffer, isize - sizeof (struct reiserfs_xattr_header)) != hash) {
694 reiserfs_warning (inode->i_sb, "Invalid hash for xattr (%s) associated "
695 "with %k", name, INODE_PKEY (inode));
707 __reiserfs_xattr_del (struct dentry *xadir, const char *name, int namelen)
709 struct dentry *dentry;
710 struct inode *dir = xadir->d_inode;
713 dentry = lookup_one_len (name, xadir, namelen);
714 if (IS_ERR (dentry)) {
715 err = PTR_ERR (dentry);
717 } else if (!dentry->d_inode) {
722 /* Skip directories.. */
723 if (S_ISDIR (dentry->d_inode->i_mode))
726 if (!is_reiserfs_priv_object (dentry->d_inode)) {
727 reiserfs_warning (dir->i_sb, "OID %08x [%.*s/%.*s] doesn't have "
728 "priv flag set [parent is %sset].",
729 le32_to_cpu (INODE_PKEY (dentry->d_inode)->k_objectid),
730 xadir->d_name.len, xadir->d_name.name, namelen, name,
731 is_reiserfs_priv_object (xadir->d_inode) ? "" : "not ");
736 err = dir->i_op->unlink (dir, dentry);
749 reiserfs_xattr_del (struct inode *inode, const char *name)
754 if (IS_RDONLY (inode))
757 dir = open_xa_dir (inode, FL_READONLY);
763 err = __reiserfs_xattr_del (dir, name, strlen (name));
767 inode->i_ctime = CURRENT_TIME_SEC;
768 mark_inode_dirty (inode);
775 /* The following are side effects of other operations that aren't explicitly
776 * modifying extended attributes. This includes operations such as permissions
777 * or ownership changes, object deletions, etc. */
780 reiserfs_delete_xattrs_filler (void *buf, const char *name, int namelen,
781 loff_t offset, ino_t ino, unsigned int d_type)
783 struct dentry *xadir = (struct dentry *)buf;
785 return __reiserfs_xattr_del (xadir, name, namelen);
789 /* This is called w/ inode->i_sem downed */
791 reiserfs_delete_xattrs (struct inode *inode)
794 struct dentry *dir, *root;
797 /* Skip out, an xattr has no xattrs associated with it */
798 if (is_reiserfs_priv_object (inode) ||
799 get_inode_sd_version (inode) == STAT_DATA_V1 ||
800 !reiserfs_xattrs(inode->i_sb))
804 reiserfs_read_lock_xattrs (inode->i_sb);
805 dir = open_xa_dir (inode, FL_READONLY);
806 reiserfs_read_unlock_xattrs (inode->i_sb);
810 } else if (!dir->d_inode) {
815 fp = dentry_open (dir, NULL, O_RDWR);
818 /* dentry_open dputs the dentry if it fails */
823 err = xattr_readdir (fp, reiserfs_delete_xattrs_filler, dir);
829 /* Leftovers besides . and .. -- that's not good. */
830 if (dir->d_inode->i_nlink <= 2) {
831 root = get_xa_root (inode->i_sb);
832 reiserfs_write_lock_xattrs (inode->i_sb);
833 err = vfs_rmdir (root->d_inode, dir);
834 reiserfs_write_unlock_xattrs (inode->i_sb);
837 reiserfs_warning (inode->i_sb,
838 "Couldn't remove all entries in directory");
847 REISERFS_I(inode)->i_flags = REISERFS_I(inode)->i_flags & ~i_has_xattr_dir;
851 struct reiserfs_chown_buf {
853 struct dentry *xadir;
857 /* XXX: If there is a better way to do this, I'd love to hear about it */
859 reiserfs_chown_xattrs_filler (void *buf, const char *name, int namelen,
860 loff_t offset, ino_t ino, unsigned int d_type)
862 struct reiserfs_chown_buf *chown_buf = (struct reiserfs_chown_buf *)buf;
863 struct dentry *xafile, *xadir = chown_buf->xadir;
864 struct iattr *attrs = chown_buf->attrs;
867 xafile = lookup_one_len (name, xadir, namelen);
869 return PTR_ERR (xafile);
870 else if (!xafile->d_inode) {
875 if (!S_ISDIR (xafile->d_inode->i_mode))
876 err = notify_change (xafile, attrs);
883 reiserfs_chown_xattrs (struct inode *inode, struct iattr *attrs)
888 struct reiserfs_chown_buf buf;
889 unsigned int ia_valid = attrs->ia_valid;
891 /* Skip out, an xattr has no xattrs associated with it */
892 if (is_reiserfs_priv_object (inode) ||
893 get_inode_sd_version (inode) == STAT_DATA_V1 ||
894 !reiserfs_xattrs(inode->i_sb))
898 reiserfs_read_lock_xattrs (inode->i_sb);
899 dir = open_xa_dir (inode, FL_READONLY);
900 reiserfs_read_unlock_xattrs (inode->i_sb);
902 if (PTR_ERR (dir) != -ENODATA)
905 } else if (!dir->d_inode) {
910 fp = dentry_open (dir, NULL, O_RDWR);
913 /* dentry_open dputs the dentry if it fails */
919 attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME);
924 err = xattr_readdir (fp, reiserfs_chown_xattrs_filler, &buf);
930 err = notify_change (dir, attrs);
937 attrs->ia_valid = ia_valid;
942 /* Actual operations that are exported to VFS-land */
945 * Inode operation getxattr()
946 * Preliminary locking: we down dentry->d_inode->i_sem
949 reiserfs_getxattr (struct dentry *dentry, const char *name, void *buffer,
952 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
955 if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
956 get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
959 reiserfs_read_lock_xattr_i (dentry->d_inode);
960 reiserfs_read_lock_xattrs (dentry->d_sb);
961 err = xah->get (dentry->d_inode, name, buffer, size);
962 reiserfs_read_unlock_xattrs (dentry->d_sb);
963 reiserfs_read_unlock_xattr_i (dentry->d_inode);
969 * Inode operation setxattr()
971 * dentry->d_inode->i_sem down
974 reiserfs_setxattr (struct dentry *dentry, const char *name, const void *value,
975 size_t size, int flags)
977 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
981 if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
982 get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
985 if (IS_RDONLY (dentry->d_inode))
988 if (IS_IMMUTABLE (dentry->d_inode) || IS_APPEND (dentry->d_inode))
991 reiserfs_write_lock_xattr_i (dentry->d_inode);
992 lock = !has_xattr_dir (dentry->d_inode);
994 reiserfs_write_lock_xattrs (dentry->d_sb);
996 reiserfs_read_lock_xattrs (dentry->d_sb);
997 err = xah->set (dentry->d_inode, name, value, size, flags);
999 reiserfs_write_unlock_xattrs (dentry->d_sb);
1001 reiserfs_read_unlock_xattrs (dentry->d_sb);
1002 reiserfs_write_unlock_xattr_i (dentry->d_inode);
1007 * Inode operation removexattr()
1009 * dentry->d_inode->i_sem down
1012 reiserfs_removexattr (struct dentry *dentry, const char *name)
1015 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
1017 if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
1018 get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
1021 if (IS_RDONLY (dentry->d_inode))
1024 if (IS_IMMUTABLE (dentry->d_inode) || IS_APPEND (dentry->d_inode))
1027 reiserfs_write_lock_xattr_i (dentry->d_inode);
1028 reiserfs_read_lock_xattrs (dentry->d_sb);
1030 /* Deletion pre-operation */
1032 err = xah->del (dentry->d_inode, name);
1037 err = reiserfs_xattr_del (dentry->d_inode, name);
1039 dentry->d_inode->i_ctime = CURRENT_TIME_SEC;
1040 mark_inode_dirty (dentry->d_inode);
1043 reiserfs_read_unlock_xattrs (dentry->d_sb);
1044 reiserfs_write_unlock_xattr_i (dentry->d_inode);
1049 /* This is what filldir will use:
1050 * r_pos will always contain the amount of space required for the entire
1051 * list. If r_pos becomes larger than r_size, we need more space and we
1052 * return an error indicating this. If r_pos is less than r_size, then we've
1053 * filled the buffer successfully and we return success */
1054 struct reiserfs_listxattr_buf {
1058 struct inode *r_inode;
1062 reiserfs_listxattr_filler (void *buf, const char *name, int namelen,
1063 loff_t offset, ino_t ino, unsigned int d_type)
1065 struct reiserfs_listxattr_buf *b = (struct reiserfs_listxattr_buf *)buf;
1067 if (name[0] != '.' || (namelen != 1 && (name[1] != '.' || namelen != 2))) {
1068 struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
1069 if (!xah) return 0; /* Unsupported xattr name, skip it */
1071 /* We call ->list() twice because the operation isn't required to just
1072 * return the name back - we want to make sure we have enough space */
1073 len += xah->list (b->r_inode, name, namelen, NULL);
1076 if (b->r_pos + len + 1 <= b->r_size) {
1077 char *p = b->r_buf + b->r_pos;
1078 p += xah->list (b->r_inode, name, namelen, p);
1081 b->r_pos += len + 1;
1088 * Inode operation listxattr()
1090 * Preliminary locking: we down dentry->d_inode->i_sem
1093 reiserfs_listxattr (struct dentry *dentry, char *buffer, size_t size)
1098 struct reiserfs_listxattr_buf buf;
1100 if (!dentry->d_inode)
1103 if (!reiserfs_xattrs(dentry->d_sb) ||
1104 get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
1107 reiserfs_read_lock_xattr_i (dentry->d_inode);
1108 reiserfs_read_lock_xattrs (dentry->d_sb);
1109 dir = open_xa_dir (dentry->d_inode, FL_READONLY);
1110 reiserfs_read_unlock_xattrs (dentry->d_sb);
1112 err = PTR_ERR (dir);
1113 if (err == -ENODATA)
1114 err = 0; /* Not an error if there aren't any xattrs */
1118 fp = dentry_open (dir, NULL, O_RDWR);
1121 /* dentry_open dputs the dentry if it fails */
1126 buf.r_size = buffer ? size : 0;
1128 buf.r_inode = dentry->d_inode;
1130 REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir;
1132 err = xattr_readdir (fp, reiserfs_listxattr_filler, &buf);
1136 if (buf.r_pos > buf.r_size && buffer != NULL)
1145 reiserfs_read_unlock_xattr_i (dentry->d_inode);
1149 /* This is the implementation for the xattr plugin infrastructure */
1150 static struct list_head xattr_handlers = LIST_HEAD_INIT (xattr_handlers);
1151 static DEFINE_RWLOCK(handler_lock);
1153 static struct reiserfs_xattr_handler *
1154 find_xattr_handler_prefix (const char *prefix)
1156 struct reiserfs_xattr_handler *xah = NULL;
1157 struct list_head *p;
1159 read_lock (&handler_lock);
1160 list_for_each (p, &xattr_handlers) {
1161 xah = list_entry (p, struct reiserfs_xattr_handler, handlers);
1162 if (strncmp (xah->prefix, prefix, strlen (xah->prefix)) == 0)
1167 read_unlock (&handler_lock);
1172 __unregister_handlers (void)
1174 struct reiserfs_xattr_handler *xah;
1175 struct list_head *p, *tmp;
1177 list_for_each_safe (p, tmp, &xattr_handlers) {
1178 xah = list_entry (p, struct reiserfs_xattr_handler, handlers);
1184 INIT_LIST_HEAD (&xattr_handlers);
1188 reiserfs_xattr_register_handlers (void)
1191 struct reiserfs_xattr_handler *xah;
1192 struct list_head *p;
1194 write_lock (&handler_lock);
1196 /* If we're already initialized, nothing to do */
1197 if (!list_empty (&xattr_handlers)) {
1198 write_unlock (&handler_lock);
1202 /* Add the handlers */
1203 list_add_tail (&user_handler.handlers, &xattr_handlers);
1204 list_add_tail (&trusted_handler.handlers, &xattr_handlers);
1205 #ifdef CONFIG_REISERFS_FS_SECURITY
1206 list_add_tail (&security_handler.handlers, &xattr_handlers);
1208 #ifdef CONFIG_REISERFS_FS_POSIX_ACL
1209 list_add_tail (&posix_acl_access_handler.handlers, &xattr_handlers);
1210 list_add_tail (&posix_acl_default_handler.handlers, &xattr_handlers);
1213 /* Run initializers, if available */
1214 list_for_each (p, &xattr_handlers) {
1215 xah = list_entry (p, struct reiserfs_xattr_handler, handlers);
1225 /* Clean up other handlers, if any failed */
1227 __unregister_handlers ();
1229 write_unlock (&handler_lock);
1234 reiserfs_xattr_unregister_handlers (void)
1236 write_lock (&handler_lock);
1237 __unregister_handlers ();
1238 write_unlock (&handler_lock);
1241 /* This will catch lookups from the fs root to .reiserfs_priv */
1243 xattr_lookup_poison (struct dentry *dentry, struct qstr *q1, struct qstr *name)
1245 struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
1246 if (name->len == priv_root->d_name.len &&
1247 name->hash == priv_root->d_name.hash &&
1248 !memcmp (name->name, priv_root->d_name.name, name->len)) {
1250 } else if (q1->len == name->len &&
1251 !memcmp(q1->name, name->name, name->len))
1256 static struct dentry_operations xattr_lookup_poison_ops = {
1257 .d_compare = xattr_lookup_poison,
1261 /* We need to take a copy of the mount flags since things like
1262 * MS_RDONLY don't get set until *after* we're called.
1263 * mount_flags != mount_options */
1265 reiserfs_xattr_init (struct super_block *s, int mount_flags)
1269 /* We need generation numbers to ensure that the oid mapping is correct
1270 * v3.5 filesystems don't have them. */
1271 if (!old_format_only (s)) {
1272 set_bit (REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1273 } else if (reiserfs_xattrs_optional (s)) {
1274 /* Old format filesystem, but optional xattrs have been enabled
1275 * at mount time. Error out. */
1276 reiserfs_warning (s, "xattrs/ACLs not supported on pre v3.6 "
1277 "format filesystem. Failing mount.");
1281 /* Old format filesystem, but no optional xattrs have been enabled. This
1282 * means we silently disable xattrs on the filesystem. */
1283 clear_bit (REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1286 /* If we don't have the privroot located yet - go find it */
1287 if (reiserfs_xattrs (s) && !REISERFS_SB(s)->priv_root) {
1288 struct dentry *dentry;
1289 dentry = lookup_one_len (PRIVROOT_NAME, s->s_root,
1290 strlen (PRIVROOT_NAME));
1291 if (!IS_ERR (dentry)) {
1292 if (!(mount_flags & MS_RDONLY) && !dentry->d_inode) {
1293 struct inode *inode = dentry->d_parent->d_inode;
1294 down (&inode->i_sem);
1295 err = inode->i_op->mkdir (inode, dentry, 0700);
1302 if (dentry && dentry->d_inode)
1303 reiserfs_warning (s, "Created %s on %s - reserved for "
1304 "xattr storage.", PRIVROOT_NAME,
1305 reiserfs_bdevname (inode->i_sb));
1306 } else if (!dentry->d_inode) {
1311 err = PTR_ERR (dentry);
1313 if (!err && dentry) {
1314 s->s_root->d_op = &xattr_lookup_poison_ops;
1315 reiserfs_mark_inode_private (dentry->d_inode);
1316 REISERFS_SB(s)->priv_root = dentry;
1317 } else if (!(mount_flags & MS_RDONLY)) { /* xattrs are unavailable */
1318 /* If we're read-only it just means that the dir hasn't been
1319 * created. Not an error -- just no xattrs on the fs. We'll
1320 * check again if we go read-write */
1321 reiserfs_warning (s, "xattrs/ACLs enabled and couldn't "
1322 "find/create .reiserfs_priv. Failing mount.");
1328 /* This is only nonzero if there was an error initializing the xattr
1329 * directory or if there is a condition where we don't support them. */
1331 clear_bit (REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1332 clear_bit (REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1333 clear_bit (REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1336 /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
1337 s->s_flags = s->s_flags & ~MS_POSIXACL;
1338 if (reiserfs_posixacl (s))
1339 s->s_flags |= MS_POSIXACL;
1345 __reiserfs_permission (struct inode *inode, int mask, struct nameidata *nd,
1348 umode_t mode = inode->i_mode;
1350 if (mask & MAY_WRITE) {
1352 * Nobody gets write access to a read-only fs.
1354 if (IS_RDONLY(inode) &&
1355 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
1359 * Nobody gets write access to an immutable file.
1361 if (IS_IMMUTABLE(inode))
1365 /* We don't do permission checks on the internal objects.
1366 * Permissions are determined by the "owning" object. */
1367 if (is_reiserfs_priv_object (inode))
1370 if (current->fsuid == inode->i_uid) {
1372 #ifdef CONFIG_REISERFS_FS_POSIX_ACL
1373 } else if (reiserfs_posixacl(inode->i_sb) &&
1374 get_inode_sd_version (inode) != STAT_DATA_V1) {
1375 struct posix_acl *acl;
1377 /* ACL can't contain additional permissions if
1378 the ACL_MASK entry is 0 */
1379 if (!(mode & S_IRWXG))
1383 reiserfs_read_lock_xattr_i (inode);
1384 reiserfs_read_lock_xattrs (inode->i_sb);
1386 acl = reiserfs_get_acl (inode, ACL_TYPE_ACCESS);
1388 reiserfs_read_unlock_xattrs (inode->i_sb);
1389 reiserfs_read_unlock_xattr_i (inode);
1392 if (PTR_ERR (acl) == -ENODATA)
1394 return PTR_ERR (acl);
1398 int err = posix_acl_permission (inode, acl, mask);
1399 posix_acl_release (acl);
1400 if (err == -EACCES) {
1401 goto check_capabilities;
1410 if (in_group_p(inode->i_gid))
1415 * If the DACs are ok we don't need any capability check.
1417 if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
1422 * Read/write DACs are always overridable.
1423 * Executable DACs are overridable if at least one exec bit is set.
1425 if (!(mask & MAY_EXEC) ||
1426 (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
1427 if (capable(CAP_DAC_OVERRIDE))
1431 * Searching includes executable on directories, else just read.
1433 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
1434 if (capable(CAP_DAC_READ_SEARCH))
1441 reiserfs_permission (struct inode *inode, int mask, struct nameidata *nd)
1443 return __reiserfs_permission (inode, mask, nd, 1);
1447 reiserfs_permission_locked (struct inode *inode, int mask, struct nameidata *nd)
1449 return __reiserfs_permission (inode, mask, nd, 0);