Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 32 | #include <linux/reiserfs_fs.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 33 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/dcache.h> |
| 35 | #include <linux/namei.h> |
| 36 | #include <linux/errno.h> |
| 37 | #include <linux/fs.h> |
| 38 | #include <linux/file.h> |
| 39 | #include <linux/pagemap.h> |
| 40 | #include <linux/xattr.h> |
| 41 | #include <linux/reiserfs_xattr.h> |
| 42 | #include <linux/reiserfs_acl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/uaccess.h> |
Al Viro | 3277c39 | 2006-11-14 21:13:53 -0800 | [diff] [blame] | 44 | #include <net/checksum.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/smp_lock.h> |
| 46 | #include <linux/stat.h> |
| 47 | #include <asm/semaphore.h> |
| 48 | |
| 49 | #define FL_READONLY 128 |
| 50 | #define FL_DIR_SEM_HELD 256 |
| 51 | #define PRIVROOT_NAME ".reiserfs_priv" |
| 52 | #define XAROOT_NAME "xattrs" |
| 53 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 54 | static struct reiserfs_xattr_handler *find_xattr_handler_prefix(const char |
| 55 | *prefix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 57 | /* Returns the dentry referring to the root of the extended attribute |
| 58 | * directory tree. If it has already been retrieved, it is used. If it |
| 59 | * hasn't been created and the flags indicate creation is allowed, we |
| 60 | * attempt to create it. On error, we return a pointer-encoded error. |
| 61 | */ |
| 62 | static struct dentry *get_xa_root(struct super_block *sb, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 64 | struct dentry *privroot = dget(REISERFS_SB(sb)->priv_root); |
| 65 | struct dentry *xaroot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 67 | /* This needs to be created at mount-time */ |
| 68 | if (!privroot) |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 69 | return ERR_PTR(-ENODATA); |
| 70 | |
Jeff Mahoney | 1173a72 | 2007-04-30 15:09:50 -0700 | [diff] [blame] | 71 | mutex_lock_nested(&privroot->d_inode->i_mutex, I_MUTEX_XATTR); |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 72 | if (REISERFS_SB(sb)->xattr_root) { |
| 73 | xaroot = dget(REISERFS_SB(sb)->xattr_root); |
| 74 | goto out; |
| 75 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 77 | xaroot = lookup_one_len(XAROOT_NAME, privroot, strlen(XAROOT_NAME)); |
| 78 | if (IS_ERR(xaroot)) { |
| 79 | goto out; |
| 80 | } else if (!xaroot->d_inode) { |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 81 | int err = -ENODATA; |
| 82 | if (flags == 0 || flags & XATTR_CREATE) |
| 83 | err = privroot->d_inode->i_op->mkdir(privroot->d_inode, |
| 84 | xaroot, 0700); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 85 | if (err) { |
| 86 | dput(xaroot); |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 87 | xaroot = ERR_PTR(err); |
| 88 | goto out; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 89 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 90 | } |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 91 | REISERFS_SB(sb)->xattr_root = dget(xaroot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 93 | out: |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 94 | mutex_unlock(&privroot->d_inode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 95 | dput(privroot); |
| 96 | return xaroot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | /* Opens the directory corresponding to the inode's extended attribute store. |
| 100 | * If flags allow, the tree to the directory may be created. If creation is |
| 101 | * prohibited, -ENODATA is returned. */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 102 | static struct dentry *open_xa_dir(const struct inode *inode, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 104 | struct dentry *xaroot, *xadir; |
| 105 | char namebuf[17]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 107 | xaroot = get_xa_root(inode->i_sb, flags); |
| 108 | if (IS_ERR(xaroot)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 109 | return xaroot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 111 | /* ok, we have xaroot open */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 112 | snprintf(namebuf, sizeof(namebuf), "%X.%X", |
| 113 | le32_to_cpu(INODE_PKEY(inode)->k_objectid), |
| 114 | inode->i_generation); |
| 115 | xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf)); |
| 116 | if (IS_ERR(xadir)) { |
| 117 | dput(xaroot); |
| 118 | return xadir; |
| 119 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 121 | if (!xadir->d_inode) { |
| 122 | int err; |
| 123 | if (flags == 0 || flags & XATTR_CREATE) { |
| 124 | /* Although there is nothing else trying to create this directory, |
| 125 | * another directory with the same hash may be created, so we need |
| 126 | * to protect against that */ |
| 127 | err = |
| 128 | xaroot->d_inode->i_op->mkdir(xaroot->d_inode, xadir, |
| 129 | 0700); |
| 130 | if (err) { |
| 131 | dput(xaroot); |
| 132 | dput(xadir); |
| 133 | return ERR_PTR(err); |
| 134 | } |
| 135 | } |
| 136 | if (!xadir->d_inode) { |
| 137 | dput(xaroot); |
| 138 | dput(xadir); |
| 139 | return ERR_PTR(-ENODATA); |
| 140 | } |
| 141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 143 | dput(xaroot); |
| 144 | return xadir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | /* Returns a dentry corresponding to a specific extended attribute file |
| 148 | * for the inode. If flags allow, the file is created. Otherwise, a |
| 149 | * valid or negative dentry, or an error is returned. */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 150 | static struct dentry *get_xa_file_dentry(const struct inode *inode, |
| 151 | const char *name, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 153 | struct dentry *xadir, *xafile; |
| 154 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 156 | xadir = open_xa_dir(inode, flags); |
| 157 | if (IS_ERR(xadir)) { |
| 158 | return ERR_PTR(PTR_ERR(xadir)); |
| 159 | } else if (xadir && !xadir->d_inode) { |
| 160 | dput(xadir); |
| 161 | return ERR_PTR(-ENODATA); |
| 162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 164 | xafile = lookup_one_len(name, xadir, strlen(name)); |
| 165 | if (IS_ERR(xafile)) { |
| 166 | dput(xadir); |
| 167 | return ERR_PTR(PTR_ERR(xafile)); |
| 168 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 170 | if (xafile->d_inode) { /* file exists */ |
| 171 | if (flags & XATTR_CREATE) { |
| 172 | err = -EEXIST; |
| 173 | dput(xafile); |
| 174 | goto out; |
| 175 | } |
| 176 | } else if (flags & XATTR_REPLACE || flags & FL_READONLY) { |
| 177 | goto out; |
| 178 | } else { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 179 | /* inode->i_mutex is down, so nothing else can try to create |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 180 | * the same xattr */ |
| 181 | err = xadir->d_inode->i_op->create(xadir->d_inode, xafile, |
| 182 | 0700 | S_IFREG, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 184 | if (err) { |
| 185 | dput(xafile); |
| 186 | goto out; |
| 187 | } |
| 188 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 190 | out: |
| 191 | dput(xadir); |
| 192 | if (err) |
| 193 | xafile = ERR_PTR(err); |
| 194 | return xafile; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | /* Opens a file pointer to the attribute associated with inode */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 198 | static struct file *open_xa_file(const struct inode *inode, const char *name, |
| 199 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 201 | struct dentry *xafile; |
| 202 | struct file *fp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 204 | xafile = get_xa_file_dentry(inode, name, flags); |
| 205 | if (IS_ERR(xafile)) |
| 206 | return ERR_PTR(PTR_ERR(xafile)); |
| 207 | else if (!xafile->d_inode) { |
| 208 | dput(xafile); |
| 209 | return ERR_PTR(-ENODATA); |
| 210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 212 | fp = dentry_open(xafile, NULL, O_RDWR); |
| 213 | /* dentry_open dputs the dentry if it fails */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 215 | return fp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | /* |
| 219 | * this is very similar to fs/reiserfs/dir.c:reiserfs_readdir, but |
| 220 | * we need to drop the path before calling the filldir struct. That |
| 221 | * would be a big performance hit to the non-xattr case, so I've copied |
| 222 | * the whole thing for now. --clm |
| 223 | * |
| 224 | * the big difference is that I go backwards through the directory, |
| 225 | * and don't mess with f->f_pos, but the idea is the same. Do some |
| 226 | * action on each and every entry in the directory. |
| 227 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 228 | * we're called with i_mutex held, so there are no worries about the directory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | * changing underneath us. |
| 230 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 231 | static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Josef Sipek | 1fc5adb | 2006-12-08 02:37:33 -0800 | [diff] [blame] | 233 | struct inode *inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 234 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ |
| 235 | INITIALIZE_PATH(path_to_entry); |
| 236 | struct buffer_head *bh; |
| 237 | int entry_num; |
| 238 | struct item_head *ih, tmp_ih; |
| 239 | int search_res; |
| 240 | char *local_buf; |
| 241 | loff_t next_pos; |
| 242 | char small_buf[32]; /* avoid kmalloc if we can */ |
| 243 | struct reiserfs_de_head *deh; |
| 244 | int d_reclen; |
| 245 | char *d_name; |
| 246 | off_t d_off; |
| 247 | ino_t d_ino; |
| 248 | struct reiserfs_dir_entry de; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 250 | /* form key for search the next directory entry using f_pos field of |
| 251 | file structure */ |
| 252 | next_pos = max_reiserfs_offset(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 254 | while (1) { |
| 255 | research: |
| 256 | if (next_pos <= DOT_DOT_OFFSET) |
| 257 | break; |
| 258 | make_cpu_key(&pos_key, inode, next_pos, TYPE_DIRENTRY, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 260 | search_res = |
| 261 | search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry, |
| 262 | &de); |
| 263 | if (search_res == IO_ERROR) { |
| 264 | // FIXME: we could just skip part of directory which could |
| 265 | // not be read |
| 266 | pathrelse(&path_to_entry); |
| 267 | return -EIO; |
| 268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 270 | if (search_res == NAME_NOT_FOUND) |
| 271 | de.de_entry_num--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 273 | set_de_name_and_namelen(&de); |
| 274 | entry_num = de.de_entry_num; |
| 275 | deh = &(de.de_deh[entry_num]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 277 | bh = de.de_bh; |
| 278 | ih = de.de_ih; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 280 | if (!is_direntry_le_ih(ih)) { |
| 281 | reiserfs_warning(inode->i_sb, "not direntry %h", ih); |
| 282 | break; |
| 283 | } |
| 284 | copy_item_head(&tmp_ih, ih); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 286 | /* we must have found item, that is item of this directory, */ |
| 287 | RFALSE(COMP_SHORT_KEYS(&(ih->ih_key), &pos_key), |
| 288 | "vs-9000: found item %h does not match to dir we readdir %K", |
| 289 | ih, &pos_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 291 | if (deh_offset(deh) <= DOT_DOT_OFFSET) { |
| 292 | break; |
| 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 295 | /* look for the previous entry in the directory */ |
| 296 | next_pos = deh_offset(deh) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 298 | if (!de_visible(deh)) |
| 299 | /* it is hidden entry */ |
| 300 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 302 | d_reclen = entry_length(bh, ih, entry_num); |
| 303 | d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh); |
| 304 | d_off = deh_offset(deh); |
| 305 | d_ino = deh_objectid(deh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 307 | if (!d_name[d_reclen - 1]) |
| 308 | d_reclen = strlen(d_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 310 | if (d_reclen > REISERFS_MAX_NAME(inode->i_sb->s_blocksize)) { |
| 311 | /* too big to send back to VFS */ |
| 312 | continue; |
| 313 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 315 | /* Ignore the .reiserfs_priv entry */ |
| 316 | if (reiserfs_xattrs(inode->i_sb) && |
| 317 | !old_format_only(inode->i_sb) && |
| 318 | deh_objectid(deh) == |
| 319 | le32_to_cpu(INODE_PKEY |
| 320 | (REISERFS_SB(inode->i_sb)->priv_root->d_inode)-> |
| 321 | k_objectid)) |
| 322 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 324 | if (d_reclen <= 32) { |
| 325 | local_buf = small_buf; |
| 326 | } else { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 327 | local_buf = kmalloc(d_reclen, GFP_NOFS); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 328 | if (!local_buf) { |
| 329 | pathrelse(&path_to_entry); |
| 330 | return -ENOMEM; |
| 331 | } |
| 332 | if (item_moved(&tmp_ih, &path_to_entry)) { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 333 | kfree(local_buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 335 | /* sigh, must retry. Do this same offset again */ |
| 336 | next_pos = d_off; |
| 337 | goto research; |
| 338 | } |
| 339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 341 | // Note, that we copy name to user space via temporary |
| 342 | // buffer (local_buf) because filldir will block if |
| 343 | // user space buffer is swapped out. At that time |
| 344 | // entry can move to somewhere else |
| 345 | memcpy(local_buf, d_name, d_reclen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 347 | /* the filldir function might need to start transactions, |
| 348 | * or do who knows what. Release the path now that we've |
| 349 | * copied all the important stuff out of the deh |
| 350 | */ |
| 351 | pathrelse(&path_to_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 353 | if (filldir(dirent, local_buf, d_reclen, d_off, d_ino, |
| 354 | DT_UNKNOWN) < 0) { |
| 355 | if (local_buf != small_buf) { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 356 | kfree(local_buf); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 357 | } |
| 358 | goto end; |
| 359 | } |
| 360 | if (local_buf != small_buf) { |
Pekka Enberg | d739b42 | 2006-02-01 03:06:43 -0800 | [diff] [blame] | 361 | kfree(local_buf); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 362 | } |
| 363 | } /* while */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 365 | end: |
| 366 | pathrelse(&path_to_entry); |
| 367 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | /* |
| 371 | * this could be done with dedicated readdir ops for the xattr files, |
| 372 | * but I want to get something working asap |
| 373 | * this is stolen from vfs_readdir |
| 374 | * |
| 375 | */ |
| 376 | static |
| 377 | int xattr_readdir(struct file *file, filldir_t filler, void *buf) |
| 378 | { |
Josef Sipek | 1fc5adb | 2006-12-08 02:37:33 -0800 | [diff] [blame] | 379 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 380 | int res = -ENOTDIR; |
| 381 | if (!file->f_op || !file->f_op->readdir) |
| 382 | goto out; |
Ingo Molnar | 4df4624 | 2006-08-27 01:23:56 -0700 | [diff] [blame] | 383 | mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | // down(&inode->i_zombie); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 385 | res = -ENOENT; |
| 386 | if (!IS_DEADDIR(inode)) { |
| 387 | lock_kernel(); |
| 388 | res = __xattr_readdir(file, buf, filler); |
| 389 | unlock_kernel(); |
| 390 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | // up(&inode->i_zombie); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 392 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 393 | out: |
| 394 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* Internal operations on file data */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 398 | static inline void reiserfs_put_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 400 | kunmap(page); |
| 401 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
| 403 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 404 | static struct page *reiserfs_get_page(struct inode *dir, unsigned long n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 406 | struct address_space *mapping = dir->i_mapping; |
| 407 | struct page *page; |
| 408 | /* We can deadlock if we try to free dentries, |
| 409 | and an unlink/rmdir has just occured - GFP_NOFS avoids this */ |
Al Viro | c4cdd03 | 2005-10-21 03:22:39 -0400 | [diff] [blame] | 410 | mapping_set_gfp_mask(mapping, GFP_NOFS); |
Pekka Enberg | 090d2b1 | 2006-06-23 02:05:08 -0700 | [diff] [blame] | 411 | page = read_mapping_page(mapping, n, NULL); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 412 | if (!IS_ERR(page)) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 413 | kmap(page); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 414 | if (PageError(page)) |
| 415 | goto fail; |
| 416 | } |
| 417 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 419 | fail: |
| 420 | reiserfs_put_page(page); |
| 421 | return ERR_PTR(-EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
| 423 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 424 | static inline __u32 xattr_hash(const char *msg, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 426 | return csum_partial(msg, len, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | } |
| 428 | |
Vladimir Saveliev | ba9d8ce | 2007-10-16 01:25:14 -0700 | [diff] [blame] | 429 | int reiserfs_commit_write(struct file *f, struct page *page, |
| 430 | unsigned from, unsigned to); |
| 431 | int reiserfs_prepare_write(struct file *f, struct page *page, |
| 432 | unsigned from, unsigned to); |
| 433 | |
| 434 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | /* Generic extended attribute operations that can be used by xa plugins */ |
| 436 | |
| 437 | /* |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 438 | * inode->i_mutex: down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | */ |
| 440 | int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 441 | reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, |
| 442 | size_t buffer_size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 444 | int err = 0; |
| 445 | struct file *fp; |
| 446 | struct page *page; |
| 447 | char *data; |
| 448 | struct address_space *mapping; |
| 449 | size_t file_pos = 0; |
| 450 | size_t buffer_pos = 0; |
| 451 | struct inode *xinode; |
| 452 | struct iattr newattrs; |
| 453 | __u32 xahash = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 455 | if (get_inode_sd_version(inode) == STAT_DATA_V1) |
| 456 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 458 | /* Empty xattrs are ok, they're just empty files, no hash */ |
| 459 | if (buffer && buffer_size) |
| 460 | xahash = xattr_hash(buffer, buffer_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 462 | open_file: |
| 463 | fp = open_xa_file(inode, name, flags); |
| 464 | if (IS_ERR(fp)) { |
| 465 | err = PTR_ERR(fp); |
| 466 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
Josef Sipek | 1fc5adb | 2006-12-08 02:37:33 -0800 | [diff] [blame] | 469 | xinode = fp->f_path.dentry->d_inode; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 470 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 472 | /* we need to copy it off.. */ |
| 473 | if (xinode->i_nlink > 1) { |
| 474 | fput(fp); |
| 475 | err = reiserfs_xattr_del(inode, name); |
| 476 | if (err < 0) |
| 477 | goto out; |
| 478 | /* We just killed the old one, we're not replacing anymore */ |
| 479 | if (flags & XATTR_REPLACE) |
| 480 | flags &= ~XATTR_REPLACE; |
| 481 | goto open_file; |
| 482 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 484 | /* Resize it so we're ok to write there */ |
| 485 | newattrs.ia_size = buffer_size; |
| 486 | newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; |
Jeff Mahoney | 7598392 | 2007-10-18 23:39:23 -0700 | [diff] [blame] | 487 | mutex_lock_nested(&xinode->i_mutex, I_MUTEX_XATTR); |
Josef Sipek | 1fc5adb | 2006-12-08 02:37:33 -0800 | [diff] [blame] | 488 | err = notify_change(fp->f_path.dentry, &newattrs); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 489 | if (err) |
| 490 | goto out_filp; |
| 491 | |
| 492 | mapping = xinode->i_mapping; |
| 493 | while (buffer_pos < buffer_size || buffer_pos == 0) { |
| 494 | size_t chunk; |
| 495 | size_t skip = 0; |
| 496 | size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1)); |
| 497 | if (buffer_size - buffer_pos > PAGE_CACHE_SIZE) |
| 498 | chunk = PAGE_CACHE_SIZE; |
| 499 | else |
| 500 | chunk = buffer_size - buffer_pos; |
| 501 | |
| 502 | page = reiserfs_get_page(xinode, file_pos >> PAGE_CACHE_SHIFT); |
| 503 | if (IS_ERR(page)) { |
| 504 | err = PTR_ERR(page); |
| 505 | goto out_filp; |
| 506 | } |
| 507 | |
| 508 | lock_page(page); |
| 509 | data = page_address(page); |
| 510 | |
| 511 | if (file_pos == 0) { |
| 512 | struct reiserfs_xattr_header *rxh; |
| 513 | skip = file_pos = sizeof(struct reiserfs_xattr_header); |
| 514 | if (chunk + skip > PAGE_CACHE_SIZE) |
| 515 | chunk = PAGE_CACHE_SIZE - skip; |
| 516 | rxh = (struct reiserfs_xattr_header *)data; |
| 517 | rxh->h_magic = cpu_to_le32(REISERFS_XATTR_MAGIC); |
| 518 | rxh->h_hash = cpu_to_le32(xahash); |
| 519 | } |
| 520 | |
Vladimir Saveliev | ba9d8ce | 2007-10-16 01:25:14 -0700 | [diff] [blame] | 521 | err = reiserfs_prepare_write(fp, page, page_offset, |
| 522 | page_offset + chunk + skip); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 523 | if (!err) { |
| 524 | if (buffer) |
| 525 | memcpy(data + skip, buffer + buffer_pos, chunk); |
| 526 | err = |
Vladimir Saveliev | ba9d8ce | 2007-10-16 01:25:14 -0700 | [diff] [blame] | 527 | reiserfs_commit_write(fp, page, page_offset, |
| 528 | page_offset + chunk + |
| 529 | skip); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 530 | } |
| 531 | unlock_page(page); |
| 532 | reiserfs_put_page(page); |
| 533 | buffer_pos += chunk; |
| 534 | file_pos += chunk; |
| 535 | skip = 0; |
| 536 | if (err || buffer_size == 0 || !buffer) |
| 537 | break; |
| 538 | } |
| 539 | |
| 540 | /* We can't mark the inode dirty if it's not hashed. This is the case |
| 541 | * when we're inheriting the default ACL. If we dirty it, the inode |
| 542 | * gets marked dirty, but won't (ever) make it onto the dirty list until |
| 543 | * it's synced explicitly to clear I_DIRTY. This is bad. */ |
| 544 | if (!hlist_unhashed(&inode->i_hash)) { |
| 545 | inode->i_ctime = CURRENT_TIME_SEC; |
| 546 | mark_inode_dirty(inode); |
| 547 | } |
| 548 | |
| 549 | out_filp: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 550 | mutex_unlock(&xinode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 551 | fput(fp); |
| 552 | |
| 553 | out: |
| 554 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | /* |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 558 | * inode->i_mutex: down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | */ |
| 560 | int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 561 | reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer, |
| 562 | size_t buffer_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 564 | ssize_t err = 0; |
| 565 | struct file *fp; |
| 566 | size_t isize; |
| 567 | size_t file_pos = 0; |
| 568 | size_t buffer_pos = 0; |
| 569 | struct page *page; |
| 570 | struct inode *xinode; |
| 571 | __u32 hash = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 573 | if (name == NULL) |
| 574 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 576 | /* We can't have xattrs attached to v1 items since they don't have |
| 577 | * generation numbers */ |
| 578 | if (get_inode_sd_version(inode) == STAT_DATA_V1) |
| 579 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 581 | fp = open_xa_file(inode, name, FL_READONLY); |
| 582 | if (IS_ERR(fp)) { |
| 583 | err = PTR_ERR(fp); |
| 584 | goto out; |
| 585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
Josef Sipek | 1fc5adb | 2006-12-08 02:37:33 -0800 | [diff] [blame] | 587 | xinode = fp->f_path.dentry->d_inode; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 588 | isize = xinode->i_size; |
| 589 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 591 | /* Just return the size needed */ |
| 592 | if (buffer == NULL) { |
| 593 | err = isize - sizeof(struct reiserfs_xattr_header); |
| 594 | goto out_dput; |
| 595 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 597 | if (buffer_size < isize - sizeof(struct reiserfs_xattr_header)) { |
| 598 | err = -ERANGE; |
| 599 | goto out_dput; |
| 600 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 602 | while (file_pos < isize) { |
| 603 | size_t chunk; |
| 604 | char *data; |
| 605 | size_t skip = 0; |
| 606 | if (isize - file_pos > PAGE_CACHE_SIZE) |
| 607 | chunk = PAGE_CACHE_SIZE; |
| 608 | else |
| 609 | chunk = isize - file_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 611 | page = reiserfs_get_page(xinode, file_pos >> PAGE_CACHE_SHIFT); |
| 612 | if (IS_ERR(page)) { |
| 613 | err = PTR_ERR(page); |
| 614 | goto out_dput; |
| 615 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 617 | lock_page(page); |
| 618 | data = page_address(page); |
| 619 | if (file_pos == 0) { |
| 620 | struct reiserfs_xattr_header *rxh = |
| 621 | (struct reiserfs_xattr_header *)data; |
| 622 | skip = file_pos = sizeof(struct reiserfs_xattr_header); |
| 623 | chunk -= skip; |
| 624 | /* Magic doesn't match up.. */ |
| 625 | if (rxh->h_magic != cpu_to_le32(REISERFS_XATTR_MAGIC)) { |
| 626 | unlock_page(page); |
| 627 | reiserfs_put_page(page); |
| 628 | reiserfs_warning(inode->i_sb, |
| 629 | "Invalid magic for xattr (%s) " |
| 630 | "associated with %k", name, |
| 631 | INODE_PKEY(inode)); |
| 632 | err = -EIO; |
| 633 | goto out_dput; |
| 634 | } |
| 635 | hash = le32_to_cpu(rxh->h_hash); |
| 636 | } |
| 637 | memcpy(buffer + buffer_pos, data + skip, chunk); |
| 638 | unlock_page(page); |
| 639 | reiserfs_put_page(page); |
| 640 | file_pos += chunk; |
| 641 | buffer_pos += chunk; |
| 642 | skip = 0; |
| 643 | } |
| 644 | err = isize - sizeof(struct reiserfs_xattr_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 646 | if (xattr_hash(buffer, isize - sizeof(struct reiserfs_xattr_header)) != |
| 647 | hash) { |
| 648 | reiserfs_warning(inode->i_sb, |
| 649 | "Invalid hash for xattr (%s) associated " |
| 650 | "with %k", name, INODE_PKEY(inode)); |
| 651 | err = -EIO; |
| 652 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 654 | out_dput: |
| 655 | fput(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 657 | out: |
| 658 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | } |
| 660 | |
| 661 | static int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 662 | __reiserfs_xattr_del(struct dentry *xadir, const char *name, int namelen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 664 | struct dentry *dentry; |
| 665 | struct inode *dir = xadir->d_inode; |
| 666 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 668 | dentry = lookup_one_len(name, xadir, namelen); |
| 669 | if (IS_ERR(dentry)) { |
| 670 | err = PTR_ERR(dentry); |
| 671 | goto out; |
| 672 | } else if (!dentry->d_inode) { |
| 673 | err = -ENODATA; |
| 674 | goto out_file; |
| 675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 677 | /* Skip directories.. */ |
| 678 | if (S_ISDIR(dentry->d_inode->i_mode)) |
| 679 | goto out_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 681 | if (!is_reiserfs_priv_object(dentry->d_inode)) { |
| 682 | reiserfs_warning(dir->i_sb, "OID %08x [%.*s/%.*s] doesn't have " |
| 683 | "priv flag set [parent is %sset].", |
| 684 | le32_to_cpu(INODE_PKEY(dentry->d_inode)-> |
| 685 | k_objectid), xadir->d_name.len, |
| 686 | xadir->d_name.name, namelen, name, |
| 687 | is_reiserfs_priv_object(xadir-> |
| 688 | d_inode) ? "" : |
| 689 | "not "); |
| 690 | dput(dentry); |
| 691 | return -EIO; |
| 692 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 694 | err = dir->i_op->unlink(dir, dentry); |
| 695 | if (!err) |
| 696 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 698 | out_file: |
| 699 | dput(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 701 | out: |
| 702 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 705 | int reiserfs_xattr_del(struct inode *inode, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 707 | struct dentry *dir; |
| 708 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 710 | dir = open_xa_dir(inode, FL_READONLY); |
| 711 | if (IS_ERR(dir)) { |
| 712 | err = PTR_ERR(dir); |
| 713 | goto out; |
| 714 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 716 | err = __reiserfs_xattr_del(dir, name, strlen(name)); |
| 717 | dput(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 719 | if (!err) { |
| 720 | inode->i_ctime = CURRENT_TIME_SEC; |
| 721 | mark_inode_dirty(inode); |
| 722 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 724 | out: |
| 725 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* The following are side effects of other operations that aren't explicitly |
| 729 | * modifying extended attributes. This includes operations such as permissions |
| 730 | * or ownership changes, object deletions, etc. */ |
| 731 | |
| 732 | static int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 733 | reiserfs_delete_xattrs_filler(void *buf, const char *name, int namelen, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 734 | loff_t offset, u64 ino, unsigned int d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 736 | struct dentry *xadir = (struct dentry *)buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 738 | return __reiserfs_xattr_del(xadir, name, namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
| 740 | } |
| 741 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 742 | /* This is called w/ inode->i_mutex downed */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 743 | int reiserfs_delete_xattrs(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 745 | struct file *fp; |
| 746 | struct dentry *dir, *root; |
| 747 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 749 | /* Skip out, an xattr has no xattrs associated with it */ |
| 750 | if (is_reiserfs_priv_object(inode) || |
| 751 | get_inode_sd_version(inode) == STAT_DATA_V1 || |
| 752 | !reiserfs_xattrs(inode->i_sb)) { |
| 753 | return 0; |
| 754 | } |
| 755 | reiserfs_read_lock_xattrs(inode->i_sb); |
| 756 | dir = open_xa_dir(inode, FL_READONLY); |
| 757 | reiserfs_read_unlock_xattrs(inode->i_sb); |
| 758 | if (IS_ERR(dir)) { |
| 759 | err = PTR_ERR(dir); |
| 760 | goto out; |
| 761 | } else if (!dir->d_inode) { |
| 762 | dput(dir); |
| 763 | return 0; |
| 764 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 766 | fp = dentry_open(dir, NULL, O_RDWR); |
| 767 | if (IS_ERR(fp)) { |
| 768 | err = PTR_ERR(fp); |
| 769 | /* dentry_open dputs the dentry if it fails */ |
| 770 | goto out; |
| 771 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 773 | lock_kernel(); |
| 774 | err = xattr_readdir(fp, reiserfs_delete_xattrs_filler, dir); |
| 775 | if (err) { |
| 776 | unlock_kernel(); |
| 777 | goto out_dir; |
| 778 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 780 | /* Leftovers besides . and .. -- that's not good. */ |
| 781 | if (dir->d_inode->i_nlink <= 2) { |
Jeff Mahoney | 9b7f375 | 2007-04-23 14:41:17 -0700 | [diff] [blame] | 782 | root = get_xa_root(inode->i_sb, XATTR_REPLACE); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 783 | reiserfs_write_lock_xattrs(inode->i_sb); |
| 784 | err = vfs_rmdir(root->d_inode, dir); |
| 785 | reiserfs_write_unlock_xattrs(inode->i_sb); |
| 786 | dput(root); |
| 787 | } else { |
| 788 | reiserfs_warning(inode->i_sb, |
| 789 | "Couldn't remove all entries in directory"); |
| 790 | } |
| 791 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 793 | out_dir: |
| 794 | fput(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 796 | out: |
| 797 | if (!err) |
| 798 | REISERFS_I(inode)->i_flags = |
| 799 | REISERFS_I(inode)->i_flags & ~i_has_xattr_dir; |
| 800 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | struct reiserfs_chown_buf { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 804 | struct inode *inode; |
| 805 | struct dentry *xadir; |
| 806 | struct iattr *attrs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | }; |
| 808 | |
| 809 | /* XXX: If there is a better way to do this, I'd love to hear about it */ |
| 810 | static int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 811 | reiserfs_chown_xattrs_filler(void *buf, const char *name, int namelen, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 812 | loff_t offset, u64 ino, unsigned int d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 814 | struct reiserfs_chown_buf *chown_buf = (struct reiserfs_chown_buf *)buf; |
| 815 | struct dentry *xafile, *xadir = chown_buf->xadir; |
| 816 | struct iattr *attrs = chown_buf->attrs; |
| 817 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 819 | xafile = lookup_one_len(name, xadir, namelen); |
| 820 | if (IS_ERR(xafile)) |
| 821 | return PTR_ERR(xafile); |
| 822 | else if (!xafile->d_inode) { |
| 823 | dput(xafile); |
| 824 | return -ENODATA; |
| 825 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 827 | if (!S_ISDIR(xafile->d_inode->i_mode)) |
| 828 | err = notify_change(xafile, attrs); |
| 829 | dput(xafile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 831 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 834 | int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 836 | struct file *fp; |
| 837 | struct dentry *dir; |
| 838 | int err = 0; |
| 839 | struct reiserfs_chown_buf buf; |
| 840 | unsigned int ia_valid = attrs->ia_valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 842 | /* Skip out, an xattr has no xattrs associated with it */ |
| 843 | if (is_reiserfs_priv_object(inode) || |
| 844 | get_inode_sd_version(inode) == STAT_DATA_V1 || |
| 845 | !reiserfs_xattrs(inode->i_sb)) { |
| 846 | return 0; |
| 847 | } |
| 848 | reiserfs_read_lock_xattrs(inode->i_sb); |
| 849 | dir = open_xa_dir(inode, FL_READONLY); |
| 850 | reiserfs_read_unlock_xattrs(inode->i_sb); |
| 851 | if (IS_ERR(dir)) { |
| 852 | if (PTR_ERR(dir) != -ENODATA) |
| 853 | err = PTR_ERR(dir); |
| 854 | goto out; |
| 855 | } else if (!dir->d_inode) { |
| 856 | dput(dir); |
| 857 | goto out; |
| 858 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 860 | fp = dentry_open(dir, NULL, O_RDWR); |
| 861 | if (IS_ERR(fp)) { |
| 862 | err = PTR_ERR(fp); |
| 863 | /* dentry_open dputs the dentry if it fails */ |
| 864 | goto out; |
| 865 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 867 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 869 | attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME); |
| 870 | buf.xadir = dir; |
| 871 | buf.attrs = attrs; |
| 872 | buf.inode = inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 874 | err = xattr_readdir(fp, reiserfs_chown_xattrs_filler, &buf); |
| 875 | if (err) { |
| 876 | unlock_kernel(); |
| 877 | goto out_dir; |
| 878 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 880 | err = notify_change(dir, attrs); |
| 881 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 883 | out_dir: |
| 884 | fput(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 886 | out: |
| 887 | attrs->ia_valid = ia_valid; |
| 888 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | /* Actual operations that are exported to VFS-land */ |
| 892 | |
| 893 | /* |
| 894 | * Inode operation getxattr() |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 895 | * Preliminary locking: we down dentry->d_inode->i_mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | */ |
| 897 | ssize_t |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 898 | reiserfs_getxattr(struct dentry * dentry, const char *name, void *buffer, |
| 899 | size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 901 | struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix(name); |
| 902 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 904 | if (!xah || !reiserfs_xattrs(dentry->d_sb) || |
| 905 | get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1) |
| 906 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 908 | reiserfs_read_lock_xattr_i(dentry->d_inode); |
| 909 | reiserfs_read_lock_xattrs(dentry->d_sb); |
| 910 | err = xah->get(dentry->d_inode, name, buffer, size); |
| 911 | reiserfs_read_unlock_xattrs(dentry->d_sb); |
| 912 | reiserfs_read_unlock_xattr_i(dentry->d_inode); |
| 913 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | /* |
| 917 | * Inode operation setxattr() |
| 918 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 919 | * dentry->d_inode->i_mutex down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | */ |
| 921 | int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 922 | reiserfs_setxattr(struct dentry *dentry, const char *name, const void *value, |
| 923 | size_t size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 925 | struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix(name); |
| 926 | int err; |
| 927 | int lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 929 | if (!xah || !reiserfs_xattrs(dentry->d_sb) || |
| 930 | get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1) |
| 931 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 933 | reiserfs_write_lock_xattr_i(dentry->d_inode); |
| 934 | lock = !has_xattr_dir(dentry->d_inode); |
| 935 | if (lock) |
| 936 | reiserfs_write_lock_xattrs(dentry->d_sb); |
| 937 | else |
| 938 | reiserfs_read_lock_xattrs(dentry->d_sb); |
| 939 | err = xah->set(dentry->d_inode, name, value, size, flags); |
| 940 | if (lock) |
| 941 | reiserfs_write_unlock_xattrs(dentry->d_sb); |
| 942 | else |
| 943 | reiserfs_read_unlock_xattrs(dentry->d_sb); |
| 944 | reiserfs_write_unlock_xattr_i(dentry->d_inode); |
| 945 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | /* |
| 949 | * Inode operation removexattr() |
| 950 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 951 | * dentry->d_inode->i_mutex down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 953 | int reiserfs_removexattr(struct dentry *dentry, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 955 | int err; |
| 956 | struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 958 | if (!xah || !reiserfs_xattrs(dentry->d_sb) || |
| 959 | get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1) |
| 960 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 962 | reiserfs_write_lock_xattr_i(dentry->d_inode); |
| 963 | reiserfs_read_lock_xattrs(dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 965 | /* Deletion pre-operation */ |
| 966 | if (xah->del) { |
| 967 | err = xah->del(dentry->d_inode, name); |
| 968 | if (err) |
| 969 | goto out; |
| 970 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 972 | err = reiserfs_xattr_del(dentry->d_inode, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 974 | dentry->d_inode->i_ctime = CURRENT_TIME_SEC; |
| 975 | mark_inode_dirty(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 977 | out: |
| 978 | reiserfs_read_unlock_xattrs(dentry->d_sb); |
| 979 | reiserfs_write_unlock_xattr_i(dentry->d_inode); |
| 980 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | /* This is what filldir will use: |
| 984 | * r_pos will always contain the amount of space required for the entire |
| 985 | * list. If r_pos becomes larger than r_size, we need more space and we |
| 986 | * return an error indicating this. If r_pos is less than r_size, then we've |
| 987 | * filled the buffer successfully and we return success */ |
| 988 | struct reiserfs_listxattr_buf { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 989 | int r_pos; |
| 990 | int r_size; |
| 991 | char *r_buf; |
| 992 | struct inode *r_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | }; |
| 994 | |
| 995 | static int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 996 | reiserfs_listxattr_filler(void *buf, const char *name, int namelen, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 997 | loff_t offset, u64 ino, unsigned int d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 999 | struct reiserfs_listxattr_buf *b = (struct reiserfs_listxattr_buf *)buf; |
| 1000 | int len = 0; |
| 1001 | if (name[0] != '.' |
| 1002 | || (namelen != 1 && (name[1] != '.' || namelen != 2))) { |
| 1003 | struct reiserfs_xattr_handler *xah = |
| 1004 | find_xattr_handler_prefix(name); |
| 1005 | if (!xah) |
| 1006 | return 0; /* Unsupported xattr name, skip it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1008 | /* We call ->list() twice because the operation isn't required to just |
| 1009 | * return the name back - we want to make sure we have enough space */ |
| 1010 | len += xah->list(b->r_inode, name, namelen, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1012 | if (len) { |
| 1013 | if (b->r_pos + len + 1 <= b->r_size) { |
| 1014 | char *p = b->r_buf + b->r_pos; |
| 1015 | p += xah->list(b->r_inode, name, namelen, p); |
| 1016 | *p++ = '\0'; |
| 1017 | } |
| 1018 | b->r_pos += len + 1; |
| 1019 | } |
| 1020 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1022 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | /* |
| 1026 | * Inode operation listxattr() |
| 1027 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1028 | * Preliminary locking: we down dentry->d_inode->i_mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1030 | ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1032 | struct file *fp; |
| 1033 | struct dentry *dir; |
| 1034 | int err = 0; |
| 1035 | struct reiserfs_listxattr_buf buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1037 | if (!dentry->d_inode) |
| 1038 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1040 | if (!reiserfs_xattrs(dentry->d_sb) || |
| 1041 | get_inode_sd_version(dentry->d_inode) == STAT_DATA_V1) |
| 1042 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1044 | reiserfs_read_lock_xattr_i(dentry->d_inode); |
| 1045 | reiserfs_read_lock_xattrs(dentry->d_sb); |
| 1046 | dir = open_xa_dir(dentry->d_inode, FL_READONLY); |
| 1047 | reiserfs_read_unlock_xattrs(dentry->d_sb); |
| 1048 | if (IS_ERR(dir)) { |
| 1049 | err = PTR_ERR(dir); |
| 1050 | if (err == -ENODATA) |
| 1051 | err = 0; /* Not an error if there aren't any xattrs */ |
| 1052 | goto out; |
| 1053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1055 | fp = dentry_open(dir, NULL, O_RDWR); |
| 1056 | if (IS_ERR(fp)) { |
| 1057 | err = PTR_ERR(fp); |
| 1058 | /* dentry_open dputs the dentry if it fails */ |
| 1059 | goto out; |
| 1060 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1062 | buf.r_buf = buffer; |
| 1063 | buf.r_size = buffer ? size : 0; |
| 1064 | buf.r_pos = 0; |
| 1065 | buf.r_inode = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1067 | REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1069 | err = xattr_readdir(fp, reiserfs_listxattr_filler, &buf); |
| 1070 | if (err) |
| 1071 | goto out_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1073 | if (buf.r_pos > buf.r_size && buffer != NULL) |
| 1074 | err = -ERANGE; |
| 1075 | else |
| 1076 | err = buf.r_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1078 | out_dir: |
| 1079 | fput(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1081 | out: |
| 1082 | reiserfs_read_unlock_xattr_i(dentry->d_inode); |
| 1083 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | } |
| 1085 | |
| 1086 | /* This is the implementation for the xattr plugin infrastructure */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1087 | static struct list_head xattr_handlers = LIST_HEAD_INIT(xattr_handlers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | static DEFINE_RWLOCK(handler_lock); |
| 1089 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1090 | static struct reiserfs_xattr_handler *find_xattr_handler_prefix(const char |
| 1091 | *prefix) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1093 | struct reiserfs_xattr_handler *xah = NULL; |
| 1094 | struct list_head *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1096 | read_lock(&handler_lock); |
| 1097 | list_for_each(p, &xattr_handlers) { |
| 1098 | xah = list_entry(p, struct reiserfs_xattr_handler, handlers); |
| 1099 | if (strncmp(xah->prefix, prefix, strlen(xah->prefix)) == 0) |
| 1100 | break; |
| 1101 | xah = NULL; |
| 1102 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1104 | read_unlock(&handler_lock); |
| 1105 | return xah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | } |
| 1107 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1108 | static void __unregister_handlers(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1110 | struct reiserfs_xattr_handler *xah; |
| 1111 | struct list_head *p, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1113 | list_for_each_safe(p, tmp, &xattr_handlers) { |
| 1114 | xah = list_entry(p, struct reiserfs_xattr_handler, handlers); |
| 1115 | if (xah->exit) |
| 1116 | xah->exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1118 | list_del_init(p); |
| 1119 | } |
| 1120 | INIT_LIST_HEAD(&xattr_handlers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | } |
| 1122 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1123 | int __init reiserfs_xattr_register_handlers(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1125 | int err = 0; |
| 1126 | struct reiserfs_xattr_handler *xah; |
| 1127 | struct list_head *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1129 | write_lock(&handler_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1131 | /* If we're already initialized, nothing to do */ |
| 1132 | if (!list_empty(&xattr_handlers)) { |
| 1133 | write_unlock(&handler_lock); |
| 1134 | return 0; |
| 1135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1137 | /* Add the handlers */ |
| 1138 | list_add_tail(&user_handler.handlers, &xattr_handlers); |
| 1139 | list_add_tail(&trusted_handler.handlers, &xattr_handlers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | #ifdef CONFIG_REISERFS_FS_SECURITY |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1141 | list_add_tail(&security_handler.handlers, &xattr_handlers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | #endif |
| 1143 | #ifdef CONFIG_REISERFS_FS_POSIX_ACL |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1144 | list_add_tail(&posix_acl_access_handler.handlers, &xattr_handlers); |
| 1145 | list_add_tail(&posix_acl_default_handler.handlers, &xattr_handlers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | #endif |
| 1147 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1148 | /* Run initializers, if available */ |
| 1149 | list_for_each(p, &xattr_handlers) { |
| 1150 | xah = list_entry(p, struct reiserfs_xattr_handler, handlers); |
| 1151 | if (xah->init) { |
| 1152 | err = xah->init(); |
| 1153 | if (err) { |
| 1154 | list_del_init(p); |
| 1155 | break; |
| 1156 | } |
| 1157 | } |
| 1158 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1160 | /* Clean up other handlers, if any failed */ |
| 1161 | if (err) |
| 1162 | __unregister_handlers(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1164 | write_unlock(&handler_lock); |
| 1165 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1168 | void reiserfs_xattr_unregister_handlers(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1170 | write_lock(&handler_lock); |
| 1171 | __unregister_handlers(); |
| 1172 | write_unlock(&handler_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | /* This will catch lookups from the fs root to .reiserfs_priv */ |
| 1176 | static int |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1177 | xattr_lookup_poison(struct dentry *dentry, struct qstr *q1, struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1179 | struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root; |
| 1180 | if (name->len == priv_root->d_name.len && |
| 1181 | name->hash == priv_root->d_name.hash && |
| 1182 | !memcmp(name->name, priv_root->d_name.name, name->len)) { |
| 1183 | return -ENOENT; |
| 1184 | } else if (q1->len == name->len && |
| 1185 | !memcmp(q1->name, name->name, name->len)) |
| 1186 | return 0; |
| 1187 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | } |
| 1189 | |
| 1190 | static struct dentry_operations xattr_lookup_poison_ops = { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1191 | .d_compare = xattr_lookup_poison, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | }; |
| 1193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | /* We need to take a copy of the mount flags since things like |
| 1195 | * MS_RDONLY don't get set until *after* we're called. |
| 1196 | * mount_flags != mount_options */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1197 | int reiserfs_xattr_init(struct super_block *s, int mount_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1199 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1201 | /* We need generation numbers to ensure that the oid mapping is correct |
| 1202 | * v3.5 filesystems don't have them. */ |
| 1203 | if (!old_format_only(s)) { |
| 1204 | set_bit(REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt)); |
| 1205 | } else if (reiserfs_xattrs_optional(s)) { |
| 1206 | /* Old format filesystem, but optional xattrs have been enabled |
| 1207 | * at mount time. Error out. */ |
| 1208 | reiserfs_warning(s, "xattrs/ACLs not supported on pre v3.6 " |
| 1209 | "format filesystem. Failing mount."); |
| 1210 | err = -EOPNOTSUPP; |
| 1211 | goto error; |
| 1212 | } else { |
| 1213 | /* Old format filesystem, but no optional xattrs have been enabled. This |
| 1214 | * means we silently disable xattrs on the filesystem. */ |
| 1215 | clear_bit(REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt)); |
| 1216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1218 | /* If we don't have the privroot located yet - go find it */ |
| 1219 | if (reiserfs_xattrs(s) && !REISERFS_SB(s)->priv_root) { |
| 1220 | struct dentry *dentry; |
| 1221 | dentry = lookup_one_len(PRIVROOT_NAME, s->s_root, |
| 1222 | strlen(PRIVROOT_NAME)); |
| 1223 | if (!IS_ERR(dentry)) { |
| 1224 | if (!(mount_flags & MS_RDONLY) && !dentry->d_inode) { |
| 1225 | struct inode *inode = dentry->d_parent->d_inode; |
Jeff Mahoney | 7598392 | 2007-10-18 23:39:23 -0700 | [diff] [blame] | 1226 | mutex_lock_nested(&inode->i_mutex, |
| 1227 | I_MUTEX_XATTR); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1228 | err = inode->i_op->mkdir(inode, dentry, 0700); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1229 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1230 | if (err) { |
| 1231 | dput(dentry); |
| 1232 | dentry = NULL; |
| 1233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1235 | if (dentry && dentry->d_inode) |
| 1236 | reiserfs_warning(s, |
| 1237 | "Created %s on %s - reserved for " |
| 1238 | "xattr storage.", |
| 1239 | PRIVROOT_NAME, |
| 1240 | reiserfs_bdevname |
| 1241 | (inode->i_sb)); |
| 1242 | } else if (!dentry->d_inode) { |
| 1243 | dput(dentry); |
| 1244 | dentry = NULL; |
| 1245 | } |
| 1246 | } else |
| 1247 | err = PTR_ERR(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1249 | if (!err && dentry) { |
| 1250 | s->s_root->d_op = &xattr_lookup_poison_ops; |
| 1251 | reiserfs_mark_inode_private(dentry->d_inode); |
| 1252 | REISERFS_SB(s)->priv_root = dentry; |
| 1253 | } else if (!(mount_flags & MS_RDONLY)) { /* xattrs are unavailable */ |
| 1254 | /* If we're read-only it just means that the dir hasn't been |
| 1255 | * created. Not an error -- just no xattrs on the fs. We'll |
| 1256 | * check again if we go read-write */ |
| 1257 | reiserfs_warning(s, "xattrs/ACLs enabled and couldn't " |
| 1258 | "find/create .reiserfs_priv. Failing mount."); |
| 1259 | err = -EOPNOTSUPP; |
| 1260 | } |
| 1261 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1263 | error: |
| 1264 | /* This is only nonzero if there was an error initializing the xattr |
| 1265 | * directory or if there is a condition where we don't support them. */ |
| 1266 | if (err) { |
| 1267 | clear_bit(REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt)); |
| 1268 | clear_bit(REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt)); |
| 1269 | clear_bit(REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt)); |
| 1270 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1272 | /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */ |
| 1273 | s->s_flags = s->s_flags & ~MS_POSIXACL; |
| 1274 | if (reiserfs_posixacl(s)) |
| 1275 | s->s_flags |= MS_POSIXACL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1277 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1280 | static int reiserfs_check_acl(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | { |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1282 | struct posix_acl *acl; |
| 1283 | int error = -EAGAIN; /* do regular unix permission checks by default */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1285 | reiserfs_read_lock_xattr_i(inode); |
| 1286 | reiserfs_read_lock_xattrs(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1288 | acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS); |
| 1289 | |
| 1290 | reiserfs_read_unlock_xattrs(inode->i_sb); |
| 1291 | reiserfs_read_unlock_xattr_i(inode); |
| 1292 | |
| 1293 | if (acl) { |
| 1294 | if (!IS_ERR(acl)) { |
| 1295 | error = posix_acl_permission(inode, acl, mask); |
| 1296 | posix_acl_release(acl); |
| 1297 | } else if (PTR_ERR(acl) != -ENODATA) |
| 1298 | error = PTR_ERR(acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1301 | return error; |
| 1302 | } |
| 1303 | |
| 1304 | int reiserfs_permission(struct inode *inode, int mask, struct nameidata *nd) |
| 1305 | { |
| 1306 | /* |
| 1307 | * We don't do permission checks on the internal objects. |
| 1308 | * Permissions are determined by the "owning" object. |
| 1309 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 1310 | if (is_reiserfs_priv_object(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | return 0; |
| 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /* |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1314 | * Stat data v1 doesn't support ACLs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | */ |
Christoph Hellwig | ec19157 | 2006-02-01 03:06:46 -0800 | [diff] [blame] | 1316 | if (get_inode_sd_version(inode) == STAT_DATA_V1) |
| 1317 | return generic_permission(inode, mask, NULL); |
| 1318 | else |
| 1319 | return generic_permission(inode, mask, reiserfs_check_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | } |