Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 1 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #include <linux/fs.h> |
| 3 | #include <linux/posix_acl.h> |
Al Viro | f466c6f | 2012-03-17 01:16:43 -0400 | [diff] [blame] | 4 | #include "reiserfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/errno.h> |
| 6 | #include <linux/pagemap.h> |
| 7 | #include <linux/xattr.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 8 | #include <linux/slab.h> |
Christoph Hellwig | 9a59f45 | 2005-06-23 00:10:19 -0700 | [diff] [blame] | 9 | #include <linux/posix_acl_xattr.h> |
Al Viro | c45ac88 | 2012-03-17 00:59:06 -0400 | [diff] [blame] | 10 | #include "xattr.h" |
Al Viro | a3063ab | 2012-03-17 01:03:10 -0400 | [diff] [blame] | 11 | #include "acl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/uaccess.h> |
| 13 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 14 | static int reiserfs_set_acl(struct reiserfs_transaction_handle *th, |
| 15 | struct inode *inode, int type, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 16 | struct posix_acl *acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | static int |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 19 | posix_acl_set(struct dentry *dentry, const char *name, const void *value, |
| 20 | size_t size, int flags, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | { |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 22 | struct inode *inode = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct posix_acl *acl; |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 24 | int error, error2; |
| 25 | struct reiserfs_transaction_handle th; |
| 26 | size_t jcreate_blocks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | if (!reiserfs_posixacl(inode->i_sb)) |
| 28 | return -EOPNOTSUPP; |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 29 | if (!inode_owner_or_capable(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | return -EPERM; |
| 31 | |
| 32 | if (value) { |
Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 33 | acl = posix_acl_from_xattr(&init_user_ns, value, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | if (IS_ERR(acl)) { |
| 35 | return PTR_ERR(acl); |
| 36 | } else if (acl) { |
| 37 | error = posix_acl_valid(acl); |
| 38 | if (error) |
| 39 | goto release_and_out; |
| 40 | } |
| 41 | } else |
| 42 | acl = NULL; |
| 43 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 44 | /* Pessimism: We can't assume that anything from the xattr root up |
| 45 | * has been created. */ |
| 46 | |
| 47 | jcreate_blocks = reiserfs_xattr_jcreate_nblocks(inode) + |
| 48 | reiserfs_xattr_nblocks(inode, size) * 2; |
| 49 | |
| 50 | reiserfs_write_lock(inode->i_sb); |
| 51 | error = journal_begin(&th, inode->i_sb, jcreate_blocks); |
| 52 | if (error == 0) { |
| 53 | error = reiserfs_set_acl(&th, inode, type, acl); |
| 54 | error2 = journal_end(&th, inode->i_sb, jcreate_blocks); |
| 55 | if (error2) |
| 56 | error = error2; |
| 57 | } |
| 58 | reiserfs_write_unlock(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 60 | release_and_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | posix_acl_release(acl); |
| 62 | return error; |
| 63 | } |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static int |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 66 | posix_acl_get(struct dentry *dentry, const char *name, void *buffer, |
| 67 | size_t size, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
| 69 | struct posix_acl *acl; |
| 70 | int error; |
| 71 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 72 | if (!reiserfs_posixacl(dentry->d_sb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | return -EOPNOTSUPP; |
| 74 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 75 | acl = reiserfs_get_acl(dentry->d_inode, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | if (IS_ERR(acl)) |
| 77 | return PTR_ERR(acl); |
| 78 | if (acl == NULL) |
| 79 | return -ENODATA; |
Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 80 | error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | posix_acl_release(acl); |
| 82 | |
| 83 | return error; |
| 84 | } |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | /* |
| 87 | * Convert from filesystem to in-memory representation. |
| 88 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 89 | static struct posix_acl *posix_acl_from_disk(const void *value, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
| 91 | const char *end = (char *)value + size; |
| 92 | int n, count; |
| 93 | struct posix_acl *acl; |
| 94 | |
| 95 | if (!value) |
| 96 | return NULL; |
| 97 | if (size < sizeof(reiserfs_acl_header)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 98 | return ERR_PTR(-EINVAL); |
| 99 | if (((reiserfs_acl_header *) value)->a_version != |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | cpu_to_le32(REISERFS_ACL_VERSION)) |
| 101 | return ERR_PTR(-EINVAL); |
| 102 | value = (char *)value + sizeof(reiserfs_acl_header); |
| 103 | count = reiserfs_acl_count(size); |
| 104 | if (count < 0) |
| 105 | return ERR_PTR(-EINVAL); |
| 106 | if (count == 0) |
| 107 | return NULL; |
| 108 | acl = posix_acl_alloc(count, GFP_NOFS); |
| 109 | if (!acl) |
| 110 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 111 | for (n = 0; n < count; n++) { |
| 112 | reiserfs_acl_entry *entry = (reiserfs_acl_entry *) value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | if ((char *)value + sizeof(reiserfs_acl_entry_short) > end) |
| 114 | goto fail; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 115 | acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 117 | switch (acl->a_entries[n].e_tag) { |
| 118 | case ACL_USER_OBJ: |
| 119 | case ACL_GROUP_OBJ: |
| 120 | case ACL_MASK: |
| 121 | case ACL_OTHER: |
| 122 | value = (char *)value + |
| 123 | sizeof(reiserfs_acl_entry_short); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 124 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 126 | case ACL_USER: |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 127 | value = (char *)value + sizeof(reiserfs_acl_entry); |
| 128 | if ((char *)value > end) |
| 129 | goto fail; |
| 130 | acl->a_entries[n].e_uid = |
| 131 | make_kuid(&init_user_ns, |
| 132 | le32_to_cpu(entry->e_id)); |
| 133 | break; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 134 | case ACL_GROUP: |
| 135 | value = (char *)value + sizeof(reiserfs_acl_entry); |
| 136 | if ((char *)value > end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | goto fail; |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 138 | acl->a_entries[n].e_gid = |
| 139 | make_kgid(&init_user_ns, |
| 140 | le32_to_cpu(entry->e_id)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 141 | break; |
| 142 | |
| 143 | default: |
| 144 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | if (value != end) |
| 148 | goto fail; |
| 149 | return acl; |
| 150 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 151 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | posix_acl_release(acl); |
| 153 | return ERR_PTR(-EINVAL); |
| 154 | } |
| 155 | |
| 156 | /* |
| 157 | * Convert from in-memory to filesystem representation. |
| 158 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 159 | static void *posix_acl_to_disk(const struct posix_acl *acl, size_t * size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
| 161 | reiserfs_acl_header *ext_acl; |
| 162 | char *e; |
| 163 | int n; |
| 164 | |
| 165 | *size = reiserfs_acl_size(acl->a_count); |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 166 | ext_acl = kmalloc(sizeof(reiserfs_acl_header) + |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 167 | acl->a_count * |
| 168 | sizeof(reiserfs_acl_entry), |
| 169 | GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | if (!ext_acl) |
| 171 | return ERR_PTR(-ENOMEM); |
| 172 | ext_acl->a_version = cpu_to_le32(REISERFS_ACL_VERSION); |
| 173 | e = (char *)ext_acl + sizeof(reiserfs_acl_header); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 174 | for (n = 0; n < acl->a_count; n++) { |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 175 | const struct posix_acl_entry *acl_e = &acl->a_entries[n]; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 176 | reiserfs_acl_entry *entry = (reiserfs_acl_entry *) e; |
| 177 | entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 179 | switch (acl->a_entries[n].e_tag) { |
| 180 | case ACL_USER: |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 181 | entry->e_id = cpu_to_le32( |
| 182 | from_kuid(&init_user_ns, acl_e->e_uid)); |
| 183 | e += sizeof(reiserfs_acl_entry); |
| 184 | break; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 185 | case ACL_GROUP: |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 186 | entry->e_id = cpu_to_le32( |
| 187 | from_kgid(&init_user_ns, acl_e->e_gid)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 188 | e += sizeof(reiserfs_acl_entry); |
| 189 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 191 | case ACL_USER_OBJ: |
| 192 | case ACL_GROUP_OBJ: |
| 193 | case ACL_MASK: |
| 194 | case ACL_OTHER: |
| 195 | e += sizeof(reiserfs_acl_entry_short); |
| 196 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 198 | default: |
| 199 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | } |
| 202 | return (char *)ext_acl; |
| 203 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 204 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | kfree(ext_acl); |
| 206 | return ERR_PTR(-EINVAL); |
| 207 | } |
| 208 | |
| 209 | /* |
| 210 | * Inode operation get_posix_acl(). |
| 211 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 212 | * inode->i_mutex: down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | * BKL held [before 2.5.x] |
| 214 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 215 | struct posix_acl *reiserfs_get_acl(struct inode *inode, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
| 217 | char *name, *value; |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 218 | struct posix_acl *acl; |
Adrian Bunk | 3cdc409 | 2006-03-25 03:07:50 -0800 | [diff] [blame] | 219 | int size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 222 | acl = get_cached_acl(inode, type); |
| 223 | if (acl != ACL_NOT_CACHED) |
| 224 | return acl; |
| 225 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 226 | switch (type) { |
| 227 | case ACL_TYPE_ACCESS: |
| 228 | name = POSIX_ACL_XATTR_ACCESS; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 229 | break; |
| 230 | case ACL_TYPE_DEFAULT: |
| 231 | name = POSIX_ACL_XATTR_DEFAULT; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 232 | break; |
| 233 | default: |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 234 | BUG(); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 237 | size = reiserfs_xattr_get(inode, name, NULL, 0); |
Adrian Bunk | 3cdc409 | 2006-03-25 03:07:50 -0800 | [diff] [blame] | 238 | if (size < 0) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 239 | if (size == -ENODATA || size == -ENOSYS) { |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 240 | set_cached_acl(inode, type, NULL); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 241 | return NULL; |
| 242 | } |
| 243 | return ERR_PTR(size); |
| 244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 246 | value = kmalloc(size, GFP_NOFS); |
| 247 | if (!value) |
| 248 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
| 250 | retval = reiserfs_xattr_get(inode, name, value, size); |
| 251 | if (retval == -ENODATA || retval == -ENOSYS) { |
| 252 | /* This shouldn't actually happen as it should have |
| 253 | been caught above.. but just in case */ |
| 254 | acl = NULL; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 255 | } else if (retval < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | acl = ERR_PTR(retval); |
| 257 | } else { |
| 258 | acl = posix_acl_from_disk(value, retval); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 259 | } |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 260 | if (!IS_ERR(acl)) |
| 261 | set_cached_acl(inode, type, acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | kfree(value); |
| 264 | return acl; |
| 265 | } |
| 266 | |
| 267 | /* |
| 268 | * Inode operation set_posix_acl(). |
| 269 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 270 | * inode->i_mutex: down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | * BKL held [before 2.5.x] |
| 272 | */ |
| 273 | static int |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 274 | reiserfs_set_acl(struct reiserfs_transaction_handle *th, struct inode *inode, |
| 275 | int type, struct posix_acl *acl) |
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 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | void *value = NULL; |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 279 | size_t size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
| 282 | if (S_ISLNK(inode->i_mode)) |
| 283 | return -EOPNOTSUPP; |
| 284 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 285 | switch (type) { |
| 286 | case ACL_TYPE_ACCESS: |
| 287 | name = POSIX_ACL_XATTR_ACCESS; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 288 | if (acl) { |
Al Viro | d695212 | 2011-07-23 18:56:36 -0400 | [diff] [blame] | 289 | error = posix_acl_equiv_mode(acl, &inode->i_mode); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 290 | if (error < 0) |
| 291 | return error; |
| 292 | else { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 293 | if (error == 0) |
| 294 | acl = NULL; |
| 295 | } |
| 296 | } |
| 297 | break; |
| 298 | case ACL_TYPE_DEFAULT: |
| 299 | name = POSIX_ACL_XATTR_DEFAULT; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 300 | if (!S_ISDIR(inode->i_mode)) |
| 301 | return acl ? -EACCES : 0; |
| 302 | break; |
| 303 | default: |
| 304 | return -EINVAL; |
| 305 | } |
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 (acl) { |
| 308 | value = posix_acl_to_disk(acl, &size); |
| 309 | if (IS_ERR(value)) |
| 310 | return (int)PTR_ERR(value); |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 311 | } |
| 312 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 313 | error = reiserfs_xattr_set_handle(th, inode, name, value, size, 0); |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 314 | |
| 315 | /* |
| 316 | * Ensure that the inode gets dirtied if we're only using |
| 317 | * the mode bits and an old ACL didn't exist. We don't need |
| 318 | * to check if the inode is hashed here since we won't get |
| 319 | * called by reiserfs_inherit_default_acl(). |
| 320 | */ |
| 321 | if (error == -ENODATA) { |
| 322 | error = 0; |
| 323 | if (type == ACL_TYPE_ACCESS) { |
| 324 | inode->i_ctime = CURRENT_TIME_SEC; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 325 | mark_inode_dirty(inode); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 326 | } |
| 327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
James Lamanna | 833d304 | 2005-10-30 15:00:16 -0800 | [diff] [blame] | 329 | kfree(value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Jeff Mahoney | d984561 | 2009-03-30 14:02:35 -0400 | [diff] [blame] | 331 | if (!error) |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 332 | set_cached_acl(inode, type, acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | return error; |
| 335 | } |
| 336 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 337 | /* dir->i_mutex: locked, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | * inode is new and not released into the wild yet */ |
| 339 | int |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 340 | reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th, |
| 341 | struct inode *dir, struct dentry *dentry, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 342 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 344 | struct posix_acl *acl; |
| 345 | int err = 0; |
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 | /* ACLs only get applied to files and directories */ |
| 348 | if (S_ISLNK(inode->i_mode)) |
| 349 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 351 | /* ACLs can only be used on "new" objects, so if it's an old object |
| 352 | * there is nothing to inherit from */ |
| 353 | if (get_inode_sd_version(dir) == STAT_DATA_V1) |
| 354 | goto apply_umask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 356 | /* Don't apply ACLs to objects in the .reiserfs_priv tree.. This |
| 357 | * would be useless since permissions are ignored, and a pain because |
| 358 | * it introduces locking cycles */ |
Jeff Mahoney | 6dfede69 | 2009-03-30 14:02:32 -0400 | [diff] [blame] | 359 | if (IS_PRIVATE(dir)) { |
| 360 | inode->i_flags |= S_PRIVATE; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 361 | goto apply_umask; |
| 362 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 364 | acl = reiserfs_get_acl(dir, ACL_TYPE_DEFAULT); |
Al Viro | 7a77b15 | 2009-06-08 21:01:13 -0400 | [diff] [blame] | 365 | if (IS_ERR(acl)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 366 | return PTR_ERR(acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 368 | if (acl) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 369 | /* Copy the default ACL to the default ACL of a new directory */ |
| 370 | if (S_ISDIR(inode->i_mode)) { |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 371 | err = reiserfs_set_acl(th, inode, ACL_TYPE_DEFAULT, |
| 372 | acl); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 373 | if (err) |
| 374 | goto cleanup; |
| 375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 377 | /* Now we reconcile the new ACL and the mode, |
| 378 | potentially modifying both */ |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 379 | err = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode); |
Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 380 | if (err < 0) |
| 381 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 383 | /* If we need an ACL.. */ |
| 384 | if (err > 0) |
| 385 | err = reiserfs_set_acl(th, inode, ACL_TYPE_ACCESS, acl); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 386 | cleanup: |
| 387 | posix_acl_release(acl); |
| 388 | } else { |
| 389 | apply_umask: |
| 390 | /* no ACL, apply umask */ |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 391 | inode->i_mode &= ~current_umask(); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 392 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 394 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 397 | /* This is used to cache the default acl before a new object is created. |
| 398 | * The biggest reason for this is to get an idea of how many blocks will |
| 399 | * actually be required for the create operation if we must inherit an ACL. |
| 400 | * An ACL write can add up to 3 object creations and an additional file write |
| 401 | * so we'd prefer not to reserve that many blocks in the journal if we can. |
| 402 | * It also has the advantage of not loading the ACL with a transaction open, |
| 403 | * this may seem silly, but if the owner of the directory is doing the |
| 404 | * creation, the ACL may not be loaded since the permissions wouldn't require |
| 405 | * it. |
| 406 | * We return the number of blocks required for the transaction. |
| 407 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 408 | int reiserfs_cache_default_acl(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | { |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 410 | struct posix_acl *acl; |
| 411 | int nblocks = 0; |
| 412 | |
| 413 | if (IS_PRIVATE(inode)) |
| 414 | return 0; |
| 415 | |
| 416 | acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT); |
| 417 | |
| 418 | if (acl && !IS_ERR(acl)) { |
| 419 | int size = reiserfs_acl_size(acl->a_count); |
| 420 | |
| 421 | /* Other xattrs can be created during inode creation. We don't |
| 422 | * want to claim too many blocks, so we check to see if we |
| 423 | * we need to create the tree to the xattrs, and then we |
| 424 | * just want two files. */ |
| 425 | nblocks = reiserfs_xattr_jcreate_nblocks(inode); |
| 426 | nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb); |
| 427 | |
| 428 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
| 429 | |
| 430 | /* We need to account for writes + bitmaps for two files */ |
| 431 | nblocks += reiserfs_xattr_nblocks(inode, size) * 4; |
| 432 | posix_acl_release(acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
| 434 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 435 | return nblocks; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | int reiserfs_acl_chmod(struct inode *inode) |
| 439 | { |
Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 440 | struct reiserfs_transaction_handle th; |
| 441 | struct posix_acl *acl; |
| 442 | size_t size; |
| 443 | int depth; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 444 | int error; |
| 445 | |
| 446 | if (S_ISLNK(inode->i_mode)) |
| 447 | return -EOPNOTSUPP; |
| 448 | |
| 449 | if (get_inode_sd_version(inode) == STAT_DATA_V1 || |
| 450 | !reiserfs_posixacl(inode->i_sb)) { |
| 451 | return 0; |
| 452 | } |
| 453 | |
Frederic Weisbecker | 6c28705 | 2010-01-07 12:57:47 +0100 | [diff] [blame] | 454 | reiserfs_write_unlock(inode->i_sb); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 455 | acl = reiserfs_get_acl(inode, ACL_TYPE_ACCESS); |
Frederic Weisbecker | 6c28705 | 2010-01-07 12:57:47 +0100 | [diff] [blame] | 456 | reiserfs_write_lock(inode->i_sb); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 457 | if (!acl) |
| 458 | return 0; |
| 459 | if (IS_ERR(acl)) |
| 460 | return PTR_ERR(acl); |
Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 461 | error = posix_acl_chmod(&acl, GFP_NOFS, inode->i_mode); |
| 462 | if (error) |
| 463 | return error; |
Frederic Weisbecker | 238af87 | 2010-12-02 14:31:16 -0800 | [diff] [blame] | 464 | |
Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 465 | size = reiserfs_xattr_nblocks(inode, reiserfs_acl_size(acl->a_count)); |
| 466 | depth = reiserfs_write_lock_once(inode->i_sb); |
| 467 | error = journal_begin(&th, inode->i_sb, size * 2); |
| 468 | if (!error) { |
| 469 | int error2; |
| 470 | error = reiserfs_set_acl(&th, inode, ACL_TYPE_ACCESS, acl); |
| 471 | error2 = journal_end(&th, inode->i_sb, size * 2); |
| 472 | if (error2) |
| 473 | error = error2; |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 474 | } |
Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 475 | reiserfs_write_unlock_once(inode->i_sb, depth); |
| 476 | posix_acl_release(acl); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 477 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | } |
| 479 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 480 | static size_t posix_acl_access_list(struct dentry *dentry, char *list, |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 481 | size_t list_size, const char *name, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 482 | size_t name_len, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 484 | const size_t size = sizeof(POSIX_ACL_XATTR_ACCESS); |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 485 | if (!reiserfs_posixacl(dentry->d_sb)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 486 | return 0; |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 487 | if (list && size <= list_size) |
| 488 | memcpy(list, POSIX_ACL_XATTR_ACCESS, size); |
| 489 | return size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Stephen Hemminger | 94d09a9 | 2010-05-13 17:53:19 -0700 | [diff] [blame] | 492 | const struct xattr_handler reiserfs_posix_acl_access_handler = { |
Christoph Hellwig | 9a59f45 | 2005-06-23 00:10:19 -0700 | [diff] [blame] | 493 | .prefix = POSIX_ACL_XATTR_ACCESS, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 494 | .flags = ACL_TYPE_ACCESS, |
| 495 | .get = posix_acl_get, |
| 496 | .set = posix_acl_set, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | .list = posix_acl_access_list, |
| 498 | }; |
| 499 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 500 | static size_t posix_acl_default_list(struct dentry *dentry, char *list, |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 501 | size_t list_size, const char *name, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 502 | size_t name_len, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | { |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 504 | const size_t size = sizeof(POSIX_ACL_XATTR_DEFAULT); |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 505 | if (!reiserfs_posixacl(dentry->d_sb)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 506 | return 0; |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 507 | if (list && size <= list_size) |
| 508 | memcpy(list, POSIX_ACL_XATTR_DEFAULT, size); |
| 509 | return size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Stephen Hemminger | 94d09a9 | 2010-05-13 17:53:19 -0700 | [diff] [blame] | 512 | const struct xattr_handler reiserfs_posix_acl_default_handler = { |
Christoph Hellwig | 9a59f45 | 2005-06-23 00:10:19 -0700 | [diff] [blame] | 513 | .prefix = POSIX_ACL_XATTR_DEFAULT, |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 514 | .flags = ACL_TYPE_DEFAULT, |
| 515 | .get = posix_acl_get, |
| 516 | .set = posix_acl_set, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | .list = posix_acl_default_list, |
| 518 | }; |