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