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 | |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 14 | static int __reiserfs_set_acl(struct reiserfs_transaction_handle *th, |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 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 | |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 18 | |
| 19 | int |
| 20 | reiserfs_set_acl(struct inode *inode, struct posix_acl *acl, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | { |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 22 | int error, error2; |
| 23 | struct reiserfs_transaction_handle th; |
| 24 | size_t jcreate_blocks; |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 25 | int size = acl ? posix_acl_xattr_size(acl->a_count) : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 28 | /* Pessimism: We can't assume that anything from the xattr root up |
| 29 | * has been created. */ |
| 30 | |
| 31 | jcreate_blocks = reiserfs_xattr_jcreate_nblocks(inode) + |
| 32 | reiserfs_xattr_nblocks(inode, size) * 2; |
| 33 | |
| 34 | reiserfs_write_lock(inode->i_sb); |
| 35 | error = journal_begin(&th, inode->i_sb, jcreate_blocks); |
Jeff Mahoney | 4c05141 | 2013-08-08 17:27:19 -0400 | [diff] [blame] | 36 | reiserfs_write_unlock(inode->i_sb); |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 37 | if (error == 0) { |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 38 | error = __reiserfs_set_acl(&th, inode, type, acl); |
Jeff Mahoney | 4c05141 | 2013-08-08 17:27:19 -0400 | [diff] [blame] | 39 | reiserfs_write_lock(inode->i_sb); |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 40 | error2 = journal_end(&th, inode->i_sb, jcreate_blocks); |
Jeff Mahoney | 4c05141 | 2013-08-08 17:27:19 -0400 | [diff] [blame] | 41 | reiserfs_write_unlock(inode->i_sb); |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 42 | if (error2) |
| 43 | error = error2; |
| 44 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return error; |
| 47 | } |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
| 50 | * Convert from filesystem to in-memory representation. |
| 51 | */ |
Christoph Hellwig | 9dad943 | 2013-12-20 05:16:36 -0800 | [diff] [blame] | 52 | static struct posix_acl *reiserfs_posix_acl_from_disk(const void *value, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | { |
| 54 | const char *end = (char *)value + size; |
| 55 | int n, count; |
| 56 | struct posix_acl *acl; |
| 57 | |
| 58 | if (!value) |
| 59 | return NULL; |
| 60 | if (size < sizeof(reiserfs_acl_header)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 61 | return ERR_PTR(-EINVAL); |
| 62 | if (((reiserfs_acl_header *) value)->a_version != |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | cpu_to_le32(REISERFS_ACL_VERSION)) |
| 64 | return ERR_PTR(-EINVAL); |
| 65 | value = (char *)value + sizeof(reiserfs_acl_header); |
| 66 | count = reiserfs_acl_count(size); |
| 67 | if (count < 0) |
| 68 | return ERR_PTR(-EINVAL); |
| 69 | if (count == 0) |
| 70 | return NULL; |
| 71 | acl = posix_acl_alloc(count, GFP_NOFS); |
| 72 | if (!acl) |
| 73 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 74 | for (n = 0; n < count; n++) { |
| 75 | reiserfs_acl_entry *entry = (reiserfs_acl_entry *) value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | if ((char *)value + sizeof(reiserfs_acl_entry_short) > end) |
| 77 | goto fail; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 78 | acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 80 | switch (acl->a_entries[n].e_tag) { |
| 81 | case ACL_USER_OBJ: |
| 82 | case ACL_GROUP_OBJ: |
| 83 | case ACL_MASK: |
| 84 | case ACL_OTHER: |
| 85 | value = (char *)value + |
| 86 | sizeof(reiserfs_acl_entry_short); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 87 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 89 | case ACL_USER: |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 90 | value = (char *)value + sizeof(reiserfs_acl_entry); |
| 91 | if ((char *)value > end) |
| 92 | goto fail; |
| 93 | acl->a_entries[n].e_uid = |
| 94 | make_kuid(&init_user_ns, |
| 95 | le32_to_cpu(entry->e_id)); |
| 96 | break; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 97 | case ACL_GROUP: |
| 98 | value = (char *)value + sizeof(reiserfs_acl_entry); |
| 99 | if ((char *)value > end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | goto fail; |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 101 | acl->a_entries[n].e_gid = |
| 102 | make_kgid(&init_user_ns, |
| 103 | le32_to_cpu(entry->e_id)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 104 | break; |
| 105 | |
| 106 | default: |
| 107 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | } |
| 110 | if (value != end) |
| 111 | goto fail; |
| 112 | return acl; |
| 113 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 114 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | posix_acl_release(acl); |
| 116 | return ERR_PTR(-EINVAL); |
| 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Convert from in-memory to filesystem representation. |
| 121 | */ |
Christoph Hellwig | 9dad943 | 2013-12-20 05:16:36 -0800 | [diff] [blame] | 122 | static void *reiserfs_posix_acl_to_disk(const struct posix_acl *acl, size_t * size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
| 124 | reiserfs_acl_header *ext_acl; |
| 125 | char *e; |
| 126 | int n; |
| 127 | |
| 128 | *size = reiserfs_acl_size(acl->a_count); |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 129 | ext_acl = kmalloc(sizeof(reiserfs_acl_header) + |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 130 | acl->a_count * |
| 131 | sizeof(reiserfs_acl_entry), |
| 132 | GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | if (!ext_acl) |
| 134 | return ERR_PTR(-ENOMEM); |
| 135 | ext_acl->a_version = cpu_to_le32(REISERFS_ACL_VERSION); |
| 136 | e = (char *)ext_acl + sizeof(reiserfs_acl_header); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 137 | for (n = 0; n < acl->a_count; n++) { |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 138 | const struct posix_acl_entry *acl_e = &acl->a_entries[n]; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 139 | reiserfs_acl_entry *entry = (reiserfs_acl_entry *) e; |
| 140 | entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 142 | switch (acl->a_entries[n].e_tag) { |
| 143 | case ACL_USER: |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 144 | entry->e_id = cpu_to_le32( |
| 145 | from_kuid(&init_user_ns, acl_e->e_uid)); |
| 146 | e += sizeof(reiserfs_acl_entry); |
| 147 | break; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 148 | case ACL_GROUP: |
Eric W. Biederman | df81465 | 2012-02-07 16:30:06 -0800 | [diff] [blame] | 149 | entry->e_id = cpu_to_le32( |
| 150 | from_kgid(&init_user_ns, acl_e->e_gid)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 151 | e += sizeof(reiserfs_acl_entry); |
| 152 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 154 | case ACL_USER_OBJ: |
| 155 | case ACL_GROUP_OBJ: |
| 156 | case ACL_MASK: |
| 157 | case ACL_OTHER: |
| 158 | e += sizeof(reiserfs_acl_entry_short); |
| 159 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 161 | default: |
| 162 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | return (char *)ext_acl; |
| 166 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 167 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | kfree(ext_acl); |
| 169 | return ERR_PTR(-EINVAL); |
| 170 | } |
| 171 | |
| 172 | /* |
| 173 | * Inode operation get_posix_acl(). |
| 174 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 175 | * inode->i_mutex: down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | * BKL held [before 2.5.x] |
| 177 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 178 | struct posix_acl *reiserfs_get_acl(struct inode *inode, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
| 180 | char *name, *value; |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 181 | struct posix_acl *acl; |
Adrian Bunk | 3cdc409 | 2006-03-25 03:07:50 -0800 | [diff] [blame] | 182 | int size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 185 | switch (type) { |
| 186 | case ACL_TYPE_ACCESS: |
| 187 | name = POSIX_ACL_XATTR_ACCESS; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 188 | break; |
| 189 | case ACL_TYPE_DEFAULT: |
| 190 | name = POSIX_ACL_XATTR_DEFAULT; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 191 | break; |
| 192 | default: |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 193 | BUG(); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 196 | size = reiserfs_xattr_get(inode, name, NULL, 0); |
Adrian Bunk | 3cdc409 | 2006-03-25 03:07:50 -0800 | [diff] [blame] | 197 | if (size < 0) { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 198 | if (size == -ENODATA || size == -ENOSYS) { |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 199 | set_cached_acl(inode, type, NULL); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 200 | return NULL; |
| 201 | } |
| 202 | return ERR_PTR(size); |
| 203 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 205 | value = kmalloc(size, GFP_NOFS); |
| 206 | if (!value) |
| 207 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | retval = reiserfs_xattr_get(inode, name, value, size); |
| 210 | if (retval == -ENODATA || retval == -ENOSYS) { |
| 211 | /* This shouldn't actually happen as it should have |
| 212 | been caught above.. but just in case */ |
| 213 | acl = NULL; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 214 | } else if (retval < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | acl = ERR_PTR(retval); |
| 216 | } else { |
Christoph Hellwig | 9dad943 | 2013-12-20 05:16:36 -0800 | [diff] [blame] | 217 | acl = reiserfs_posix_acl_from_disk(value, retval); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 218 | } |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 219 | if (!IS_ERR(acl)) |
| 220 | set_cached_acl(inode, type, acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
| 222 | kfree(value); |
| 223 | return acl; |
| 224 | } |
| 225 | |
| 226 | /* |
| 227 | * Inode operation set_posix_acl(). |
| 228 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 229 | * inode->i_mutex: down |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | * BKL held [before 2.5.x] |
| 231 | */ |
| 232 | static int |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 233 | __reiserfs_set_acl(struct reiserfs_transaction_handle *th, struct inode *inode, |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 234 | int type, struct posix_acl *acl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 236 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | void *value = NULL; |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 238 | size_t size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 241 | switch (type) { |
| 242 | case ACL_TYPE_ACCESS: |
| 243 | name = POSIX_ACL_XATTR_ACCESS; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 244 | if (acl) { |
Al Viro | d695212 | 2011-07-23 18:56:36 -0400 | [diff] [blame] | 245 | error = posix_acl_equiv_mode(acl, &inode->i_mode); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 246 | if (error < 0) |
| 247 | return error; |
| 248 | else { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 249 | if (error == 0) |
| 250 | acl = NULL; |
| 251 | } |
| 252 | } |
| 253 | break; |
| 254 | case ACL_TYPE_DEFAULT: |
| 255 | name = POSIX_ACL_XATTR_DEFAULT; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 256 | if (!S_ISDIR(inode->i_mode)) |
| 257 | return acl ? -EACCES : 0; |
| 258 | break; |
| 259 | default: |
| 260 | return -EINVAL; |
| 261 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 263 | if (acl) { |
Christoph Hellwig | 9dad943 | 2013-12-20 05:16:36 -0800 | [diff] [blame] | 264 | value = reiserfs_posix_acl_to_disk(acl, &size); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 265 | if (IS_ERR(value)) |
| 266 | return (int)PTR_ERR(value); |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 267 | } |
| 268 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 269 | error = reiserfs_xattr_set_handle(th, inode, name, value, size, 0); |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 270 | |
| 271 | /* |
| 272 | * Ensure that the inode gets dirtied if we're only using |
| 273 | * the mode bits and an old ACL didn't exist. We don't need |
| 274 | * to check if the inode is hashed here since we won't get |
| 275 | * called by reiserfs_inherit_default_acl(). |
| 276 | */ |
| 277 | if (error == -ENODATA) { |
| 278 | error = 0; |
| 279 | if (type == ACL_TYPE_ACCESS) { |
| 280 | inode->i_ctime = CURRENT_TIME_SEC; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 281 | mark_inode_dirty(inode); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 282 | } |
| 283 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
James Lamanna | 833d304 | 2005-10-30 15:00:16 -0800 | [diff] [blame] | 285 | kfree(value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Jeff Mahoney | d984561 | 2009-03-30 14:02:35 -0400 | [diff] [blame] | 287 | if (!error) |
Al Viro | 073aaa1 | 2009-06-09 12:11:54 -0400 | [diff] [blame] | 288 | set_cached_acl(inode, type, acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | return error; |
| 291 | } |
| 292 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 293 | /* dir->i_mutex: locked, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | * inode is new and not released into the wild yet */ |
| 295 | int |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 296 | reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th, |
| 297 | struct inode *dir, struct dentry *dentry, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 298 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 300 | struct posix_acl *default_acl, *acl; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 301 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 303 | /* ACLs only get applied to files and directories */ |
| 304 | if (S_ISLNK(inode->i_mode)) |
| 305 | return 0; |
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 | /* ACLs can only be used on "new" objects, so if it's an old object |
| 308 | * there is nothing to inherit from */ |
| 309 | if (get_inode_sd_version(dir) == STAT_DATA_V1) |
| 310 | goto apply_umask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 312 | /* Don't apply ACLs to objects in the .reiserfs_priv tree.. This |
| 313 | * would be useless since permissions are ignored, and a pain because |
| 314 | * it introduces locking cycles */ |
Jeff Mahoney | 6dfede69 | 2009-03-30 14:02:32 -0400 | [diff] [blame] | 315 | if (IS_PRIVATE(dir)) { |
| 316 | inode->i_flags |= S_PRIVATE; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 317 | goto apply_umask; |
| 318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 320 | err = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl); |
| 321 | if (err) |
| 322 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 324 | if (default_acl) { |
| 325 | err = __reiserfs_set_acl(th, inode, ACL_TYPE_DEFAULT, |
| 326 | default_acl); |
| 327 | posix_acl_release(default_acl); |
| 328 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 329 | if (acl) { |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 330 | if (!err) |
| 331 | err = __reiserfs_set_acl(th, inode, ACL_TYPE_ACCESS, |
| 332 | acl); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 333 | posix_acl_release(acl); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 334 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 336 | return err; |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 337 | |
| 338 | apply_umask: |
| 339 | /* no ACL, apply umask */ |
| 340 | inode->i_mode &= ~current_umask(); |
| 341 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 344 | /* This is used to cache the default acl before a new object is created. |
| 345 | * The biggest reason for this is to get an idea of how many blocks will |
| 346 | * actually be required for the create operation if we must inherit an ACL. |
| 347 | * An ACL write can add up to 3 object creations and an additional file write |
| 348 | * so we'd prefer not to reserve that many blocks in the journal if we can. |
| 349 | * It also has the advantage of not loading the ACL with a transaction open, |
| 350 | * this may seem silly, but if the owner of the directory is doing the |
| 351 | * creation, the ACL may not be loaded since the permissions wouldn't require |
| 352 | * it. |
| 353 | * We return the number of blocks required for the transaction. |
| 354 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 355 | int reiserfs_cache_default_acl(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 357 | struct posix_acl *acl; |
| 358 | int nblocks = 0; |
| 359 | |
| 360 | if (IS_PRIVATE(inode)) |
| 361 | return 0; |
| 362 | |
| 363 | acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT); |
| 364 | |
| 365 | if (acl && !IS_ERR(acl)) { |
| 366 | int size = reiserfs_acl_size(acl->a_count); |
| 367 | |
| 368 | /* Other xattrs can be created during inode creation. We don't |
| 369 | * want to claim too many blocks, so we check to see if we |
| 370 | * we need to create the tree to the xattrs, and then we |
| 371 | * just want two files. */ |
| 372 | nblocks = reiserfs_xattr_jcreate_nblocks(inode); |
| 373 | nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb); |
| 374 | |
| 375 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
| 376 | |
| 377 | /* We need to account for writes + bitmaps for two files */ |
| 378 | nblocks += reiserfs_xattr_nblocks(inode, size) * 4; |
| 379 | posix_acl_release(acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Jeff Mahoney | 0ab2621 | 2009-03-30 14:02:39 -0400 | [diff] [blame] | 382 | return nblocks; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Jeff Mahoney | 4c05141 | 2013-08-08 17:27:19 -0400 | [diff] [blame] | 385 | /* |
| 386 | * Called under i_mutex |
| 387 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 388 | int reiserfs_acl_chmod(struct inode *inode) |
| 389 | { |
Jeff Mahoney | 4a85701 | 2013-05-31 15:54:17 -0400 | [diff] [blame] | 390 | if (IS_PRIVATE(inode)) |
| 391 | return 0; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 392 | if (get_inode_sd_version(inode) == STAT_DATA_V1 || |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 393 | !reiserfs_posixacl(inode->i_sb)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 394 | return 0; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 395 | |
Christoph Hellwig | 47f70d0 | 2013-12-20 05:16:49 -0800 | [diff] [blame] | 396 | return posix_acl_chmod(inode, inode->i_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |