Jaegeuk Kim | 0a8165d | 2012-11-29 13:28:09 +0900 | [diff] [blame] | 1 | /* |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 2 | * fs/f2fs/acl.c |
| 3 | * |
| 4 | * Copyright (c) 2012 Samsung Electronics Co., Ltd. |
| 5 | * http://www.samsung.com/ |
| 6 | * |
| 7 | * Portions of this code from linux/fs/ext2/acl.c |
| 8 | * |
| 9 | * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de> |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. |
| 14 | */ |
| 15 | #include <linux/f2fs_fs.h> |
| 16 | #include "f2fs.h" |
| 17 | #include "xattr.h" |
| 18 | #include "acl.h" |
| 19 | |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 20 | static inline size_t f2fs_acl_size(int count) |
| 21 | { |
| 22 | if (count <= 4) { |
| 23 | return sizeof(struct f2fs_acl_header) + |
| 24 | count * sizeof(struct f2fs_acl_entry_short); |
| 25 | } else { |
| 26 | return sizeof(struct f2fs_acl_header) + |
| 27 | 4 * sizeof(struct f2fs_acl_entry_short) + |
| 28 | (count - 4) * sizeof(struct f2fs_acl_entry); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | static inline int f2fs_acl_count(size_t size) |
| 33 | { |
| 34 | ssize_t s; |
| 35 | size -= sizeof(struct f2fs_acl_header); |
| 36 | s = size - 4 * sizeof(struct f2fs_acl_entry_short); |
| 37 | if (s < 0) { |
| 38 | if (size % sizeof(struct f2fs_acl_entry_short)) |
| 39 | return -1; |
| 40 | return size / sizeof(struct f2fs_acl_entry_short); |
| 41 | } else { |
| 42 | if (s % sizeof(struct f2fs_acl_entry)) |
| 43 | return -1; |
| 44 | return s / sizeof(struct f2fs_acl_entry) + 4; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | static struct posix_acl *f2fs_acl_from_disk(const char *value, size_t size) |
| 49 | { |
| 50 | int i, count; |
| 51 | struct posix_acl *acl; |
| 52 | struct f2fs_acl_header *hdr = (struct f2fs_acl_header *)value; |
| 53 | struct f2fs_acl_entry *entry = (struct f2fs_acl_entry *)(hdr + 1); |
| 54 | const char *end = value + size; |
| 55 | |
Chengguang Xu | 1618e6e | 2018-08-30 21:33:31 +0800 | [diff] [blame] | 56 | if (size < sizeof(struct f2fs_acl_header)) |
| 57 | return ERR_PTR(-EINVAL); |
| 58 | |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 59 | if (hdr->a_version != cpu_to_le32(F2FS_ACL_VERSION)) |
| 60 | return ERR_PTR(-EINVAL); |
| 61 | |
| 62 | count = f2fs_acl_count(size); |
| 63 | if (count < 0) |
| 64 | return ERR_PTR(-EINVAL); |
| 65 | if (count == 0) |
| 66 | return NULL; |
| 67 | |
Jaegeuk Kim | dd80240 | 2014-12-18 19:32:36 -0800 | [diff] [blame] | 68 | acl = posix_acl_alloc(count, GFP_NOFS); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 69 | if (!acl) |
| 70 | return ERR_PTR(-ENOMEM); |
| 71 | |
| 72 | for (i = 0; i < count; i++) { |
| 73 | |
| 74 | if ((char *)entry > end) |
| 75 | goto fail; |
| 76 | |
| 77 | acl->a_entries[i].e_tag = le16_to_cpu(entry->e_tag); |
| 78 | acl->a_entries[i].e_perm = le16_to_cpu(entry->e_perm); |
| 79 | |
| 80 | switch (acl->a_entries[i].e_tag) { |
| 81 | case ACL_USER_OBJ: |
| 82 | case ACL_GROUP_OBJ: |
| 83 | case ACL_MASK: |
| 84 | case ACL_OTHER: |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 85 | entry = (struct f2fs_acl_entry *)((char *)entry + |
| 86 | sizeof(struct f2fs_acl_entry_short)); |
| 87 | break; |
| 88 | |
| 89 | case ACL_USER: |
| 90 | acl->a_entries[i].e_uid = |
| 91 | make_kuid(&init_user_ns, |
| 92 | le32_to_cpu(entry->e_id)); |
| 93 | entry = (struct f2fs_acl_entry *)((char *)entry + |
| 94 | sizeof(struct f2fs_acl_entry)); |
| 95 | break; |
| 96 | case ACL_GROUP: |
| 97 | acl->a_entries[i].e_gid = |
| 98 | make_kgid(&init_user_ns, |
| 99 | le32_to_cpu(entry->e_id)); |
| 100 | entry = (struct f2fs_acl_entry *)((char *)entry + |
| 101 | sizeof(struct f2fs_acl_entry)); |
| 102 | break; |
| 103 | default: |
| 104 | goto fail; |
| 105 | } |
| 106 | } |
| 107 | if ((char *)entry != end) |
| 108 | goto fail; |
| 109 | return acl; |
| 110 | fail: |
| 111 | posix_acl_release(acl); |
| 112 | return ERR_PTR(-EINVAL); |
| 113 | } |
| 114 | |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 115 | static void *f2fs_acl_to_disk(struct f2fs_sb_info *sbi, |
| 116 | const struct posix_acl *acl, size_t *size) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 117 | { |
| 118 | struct f2fs_acl_header *f2fs_acl; |
| 119 | struct f2fs_acl_entry *entry; |
| 120 | int i; |
| 121 | |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 122 | f2fs_acl = f2fs_kmalloc(sbi, sizeof(struct f2fs_acl_header) + |
| 123 | acl->a_count * sizeof(struct f2fs_acl_entry), |
| 124 | GFP_NOFS); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 125 | if (!f2fs_acl) |
| 126 | return ERR_PTR(-ENOMEM); |
| 127 | |
| 128 | f2fs_acl->a_version = cpu_to_le32(F2FS_ACL_VERSION); |
| 129 | entry = (struct f2fs_acl_entry *)(f2fs_acl + 1); |
| 130 | |
| 131 | for (i = 0; i < acl->a_count; i++) { |
| 132 | |
| 133 | entry->e_tag = cpu_to_le16(acl->a_entries[i].e_tag); |
| 134 | entry->e_perm = cpu_to_le16(acl->a_entries[i].e_perm); |
| 135 | |
| 136 | switch (acl->a_entries[i].e_tag) { |
| 137 | case ACL_USER: |
| 138 | entry->e_id = cpu_to_le32( |
| 139 | from_kuid(&init_user_ns, |
| 140 | acl->a_entries[i].e_uid)); |
| 141 | entry = (struct f2fs_acl_entry *)((char *)entry + |
| 142 | sizeof(struct f2fs_acl_entry)); |
| 143 | break; |
| 144 | case ACL_GROUP: |
| 145 | entry->e_id = cpu_to_le32( |
| 146 | from_kgid(&init_user_ns, |
| 147 | acl->a_entries[i].e_gid)); |
| 148 | entry = (struct f2fs_acl_entry *)((char *)entry + |
| 149 | sizeof(struct f2fs_acl_entry)); |
| 150 | break; |
| 151 | case ACL_USER_OBJ: |
| 152 | case ACL_GROUP_OBJ: |
| 153 | case ACL_MASK: |
| 154 | case ACL_OTHER: |
| 155 | entry = (struct f2fs_acl_entry *)((char *)entry + |
| 156 | sizeof(struct f2fs_acl_entry_short)); |
| 157 | break; |
| 158 | default: |
| 159 | goto fail; |
| 160 | } |
| 161 | } |
| 162 | *size = f2fs_acl_size(acl->a_count); |
| 163 | return (void *)f2fs_acl; |
| 164 | |
| 165 | fail: |
| 166 | kfree(f2fs_acl); |
| 167 | return ERR_PTR(-EINVAL); |
| 168 | } |
| 169 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 170 | static struct posix_acl *__f2fs_get_acl(struct inode *inode, int type, |
| 171 | struct page *dpage) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 172 | { |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 173 | int name_index = F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT; |
| 174 | void *value = NULL; |
| 175 | struct posix_acl *acl; |
| 176 | int retval; |
| 177 | |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 178 | if (type == ACL_TYPE_ACCESS) |
| 179 | name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS; |
| 180 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 181 | retval = f2fs_getxattr(inode, name_index, "", NULL, 0, dpage); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 182 | if (retval > 0) { |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 183 | value = f2fs_kmalloc(F2FS_I_SB(inode), retval, GFP_F2FS_ZERO); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 184 | if (!value) |
| 185 | return ERR_PTR(-ENOMEM); |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 186 | retval = f2fs_getxattr(inode, name_index, "", value, |
| 187 | retval, dpage); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 188 | } |
| 189 | |
Jaegeuk Kim | c1b75ea | 2013-01-03 09:24:28 +0900 | [diff] [blame] | 190 | if (retval > 0) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 191 | acl = f2fs_acl_from_disk(value, retval); |
Jaegeuk Kim | c1b75ea | 2013-01-03 09:24:28 +0900 | [diff] [blame] | 192 | else if (retval == -ENODATA) |
| 193 | acl = NULL; |
| 194 | else |
| 195 | acl = ERR_PTR(retval); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 196 | kfree(value); |
Jaegeuk Kim | c1b75ea | 2013-01-03 09:24:28 +0900 | [diff] [blame] | 197 | |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 198 | return acl; |
| 199 | } |
| 200 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 201 | struct posix_acl *f2fs_get_acl(struct inode *inode, int type) |
| 202 | { |
| 203 | return __f2fs_get_acl(inode, type, NULL); |
| 204 | } |
| 205 | |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 206 | static int __f2fs_set_acl(struct inode *inode, int type, |
Jaegeuk Kim | 2ed2d5b | 2013-10-28 13:17:54 +0900 | [diff] [blame] | 207 | struct posix_acl *acl, struct page *ipage) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 208 | { |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 209 | int name_index; |
| 210 | void *value = NULL; |
| 211 | size_t size = 0; |
| 212 | int error; |
Ernesto A. Fernández | 14af20f | 2017-07-23 22:32:54 -0300 | [diff] [blame] | 213 | umode_t mode = inode->i_mode; |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 214 | |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 215 | switch (type) { |
| 216 | case ACL_TYPE_ACCESS: |
| 217 | name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS; |
Jaegeuk Kim | c925dc1 | 2017-07-11 14:56:49 -0700 | [diff] [blame] | 218 | if (acl && !ipage) { |
Ernesto A. Fernández | 14af20f | 2017-07-23 22:32:54 -0300 | [diff] [blame] | 219 | error = posix_acl_update_mode(inode, &mode, &acl); |
Jan Kara | 0739310 | 2016-09-19 17:39:09 +0200 | [diff] [blame] | 220 | if (error) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 221 | return error; |
Ernesto A. Fernández | 14af20f | 2017-07-23 22:32:54 -0300 | [diff] [blame] | 222 | set_acl_inode(inode, mode); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 223 | } |
| 224 | break; |
| 225 | |
| 226 | case ACL_TYPE_DEFAULT: |
| 227 | name_index = F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT; |
| 228 | if (!S_ISDIR(inode->i_mode)) |
| 229 | return acl ? -EACCES : 0; |
| 230 | break; |
| 231 | |
| 232 | default: |
| 233 | return -EINVAL; |
| 234 | } |
| 235 | |
| 236 | if (acl) { |
Chao Yu | 1ecc0c5 | 2016-09-23 21:30:09 +0800 | [diff] [blame] | 237 | value = f2fs_acl_to_disk(F2FS_I_SB(inode), acl, &size); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 238 | if (IS_ERR(value)) { |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 239 | clear_inode_flag(inode, FI_ACL_MODE); |
Zhang Shengju | 68390dd | 2017-06-01 16:50:10 +0800 | [diff] [blame] | 240 | return PTR_ERR(value); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | |
Jaegeuk Kim | c02745e | 2014-04-23 12:23:14 +0900 | [diff] [blame] | 244 | error = f2fs_setxattr(inode, name_index, "", value, size, ipage, 0); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 245 | |
| 246 | kfree(value); |
| 247 | if (!error) |
| 248 | set_cached_acl(inode, type, acl); |
| 249 | |
Jaegeuk Kim | 9194232 | 2016-05-20 10:13:22 -0700 | [diff] [blame] | 250 | clear_inode_flag(inode, FI_ACL_MODE); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 251 | return error; |
| 252 | } |
| 253 | |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 254 | int f2fs_set_acl(struct inode *inode, struct posix_acl *acl, int type) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 255 | { |
Jaegeuk Kim | 1f227a3 | 2017-10-23 23:48:49 +0200 | [diff] [blame] | 256 | if (unlikely(f2fs_cp_error(F2FS_I_SB(inode)))) |
| 257 | return -EIO; |
| 258 | |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 259 | return __f2fs_set_acl(inode, type, acl, NULL); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 260 | } |
| 261 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 262 | /* |
| 263 | * Most part of f2fs_acl_clone, f2fs_acl_create_masq, f2fs_acl_create |
| 264 | * are copied from posix_acl.c |
| 265 | */ |
| 266 | static struct posix_acl *f2fs_acl_clone(const struct posix_acl *acl, |
| 267 | gfp_t flags) |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 268 | { |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 269 | struct posix_acl *clone = NULL; |
| 270 | |
| 271 | if (acl) { |
| 272 | int size = sizeof(struct posix_acl) + acl->a_count * |
| 273 | sizeof(struct posix_acl_entry); |
| 274 | clone = kmemdup(acl, size, flags); |
| 275 | if (clone) |
Elena Reshetova | 6671726 | 2017-11-29 13:19:31 +0200 | [diff] [blame] | 276 | refcount_set(&clone->a_refcount, 1); |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 277 | } |
| 278 | return clone; |
| 279 | } |
| 280 | |
| 281 | static int f2fs_acl_create_masq(struct posix_acl *acl, umode_t *mode_p) |
| 282 | { |
| 283 | struct posix_acl_entry *pa, *pe; |
| 284 | struct posix_acl_entry *group_obj = NULL, *mask_obj = NULL; |
| 285 | umode_t mode = *mode_p; |
| 286 | int not_equiv = 0; |
| 287 | |
| 288 | /* assert(atomic_read(acl->a_refcount) == 1); */ |
| 289 | |
| 290 | FOREACH_ACL_ENTRY(pa, acl, pe) { |
| 291 | switch(pa->e_tag) { |
| 292 | case ACL_USER_OBJ: |
| 293 | pa->e_perm &= (mode >> 6) | ~S_IRWXO; |
| 294 | mode &= (pa->e_perm << 6) | ~S_IRWXU; |
| 295 | break; |
| 296 | |
| 297 | case ACL_USER: |
| 298 | case ACL_GROUP: |
| 299 | not_equiv = 1; |
| 300 | break; |
| 301 | |
| 302 | case ACL_GROUP_OBJ: |
| 303 | group_obj = pa; |
| 304 | break; |
| 305 | |
| 306 | case ACL_OTHER: |
| 307 | pa->e_perm &= mode | ~S_IRWXO; |
| 308 | mode &= pa->e_perm | ~S_IRWXO; |
| 309 | break; |
| 310 | |
| 311 | case ACL_MASK: |
| 312 | mask_obj = pa; |
| 313 | not_equiv = 1; |
| 314 | break; |
| 315 | |
| 316 | default: |
| 317 | return -EIO; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | if (mask_obj) { |
| 322 | mask_obj->e_perm &= (mode >> 3) | ~S_IRWXO; |
| 323 | mode &= (mask_obj->e_perm << 3) | ~S_IRWXG; |
| 324 | } else { |
| 325 | if (!group_obj) |
| 326 | return -EIO; |
| 327 | group_obj->e_perm &= (mode >> 3) | ~S_IRWXO; |
| 328 | mode &= (group_obj->e_perm << 3) | ~S_IRWXG; |
| 329 | } |
| 330 | |
| 331 | *mode_p = (*mode_p & ~S_IRWXUGO) | mode; |
| 332 | return not_equiv; |
| 333 | } |
| 334 | |
| 335 | static int f2fs_acl_create(struct inode *dir, umode_t *mode, |
| 336 | struct posix_acl **default_acl, struct posix_acl **acl, |
| 337 | struct page *dpage) |
| 338 | { |
| 339 | struct posix_acl *p; |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 340 | struct posix_acl *clone; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 341 | int ret; |
| 342 | |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 343 | *acl = NULL; |
| 344 | *default_acl = NULL; |
| 345 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 346 | if (S_ISLNK(*mode) || !IS_POSIXACL(dir)) |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 347 | return 0; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 348 | |
| 349 | p = __f2fs_get_acl(dir, ACL_TYPE_DEFAULT, dpage); |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 350 | if (!p || p == ERR_PTR(-EOPNOTSUPP)) { |
| 351 | *mode &= ~current_umask(); |
| 352 | return 0; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 353 | } |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 354 | if (IS_ERR(p)) |
| 355 | return PTR_ERR(p); |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 356 | |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 357 | clone = f2fs_acl_clone(p, GFP_NOFS); |
| 358 | if (!clone) |
Chao Yu | 83dfe53 | 2015-03-09 18:18:19 +0800 | [diff] [blame] | 359 | goto no_mem; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 360 | |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 361 | ret = f2fs_acl_create_masq(clone, mode); |
Chao Yu | 83dfe53 | 2015-03-09 18:18:19 +0800 | [diff] [blame] | 362 | if (ret < 0) |
| 363 | goto no_mem_clone; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 364 | |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 365 | if (ret == 0) |
| 366 | posix_acl_release(clone); |
| 367 | else |
| 368 | *acl = clone; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 369 | |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 370 | if (!S_ISDIR(*mode)) |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 371 | posix_acl_release(p); |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 372 | else |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 373 | *default_acl = p; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 374 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 375 | return 0; |
Chao Yu | 83dfe53 | 2015-03-09 18:18:19 +0800 | [diff] [blame] | 376 | |
| 377 | no_mem_clone: |
Chao Yu | 272e083 | 2015-04-18 18:03:58 +0800 | [diff] [blame] | 378 | posix_acl_release(clone); |
Chao Yu | 83dfe53 | 2015-03-09 18:18:19 +0800 | [diff] [blame] | 379 | no_mem: |
| 380 | posix_acl_release(p); |
| 381 | return -ENOMEM; |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | int f2fs_init_acl(struct inode *inode, struct inode *dir, struct page *ipage, |
| 385 | struct page *dpage) |
| 386 | { |
| 387 | struct posix_acl *default_acl = NULL, *acl = NULL; |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 388 | int error = 0; |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 389 | |
Jaegeuk Kim | bce8d11 | 2014-10-13 19:42:53 -0700 | [diff] [blame] | 390 | error = f2fs_acl_create(dir, &inode->i_mode, &default_acl, &acl, dpage); |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 391 | if (error) |
| 392 | return error; |
Jaegeuk Kim | b8b60e1 | 2013-10-28 13:12:09 +0900 | [diff] [blame] | 393 | |
Jaegeuk Kim | 7c45729 | 2016-10-14 11:51:23 -0700 | [diff] [blame] | 394 | f2fs_mark_inode_dirty_sync(inode, true); |
Jaegeuk Kim | 205b982 | 2016-05-20 09:52:20 -0700 | [diff] [blame] | 395 | |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 396 | if (default_acl) { |
| 397 | error = __f2fs_set_acl(inode, ACL_TYPE_DEFAULT, default_acl, |
| 398 | ipage); |
| 399 | posix_acl_release(default_acl); |
Chengguang Xu | 313ed62 | 2018-08-31 22:33:50 +0800 | [diff] [blame] | 400 | } else { |
| 401 | inode->i_default_acl = NULL; |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 402 | } |
| 403 | if (acl) { |
Kinglong Mee | 3b6709b | 2015-01-24 17:06:25 +0800 | [diff] [blame] | 404 | if (!error) |
Christoph Hellwig | a6dda0e | 2013-12-20 05:16:45 -0800 | [diff] [blame] | 405 | error = __f2fs_set_acl(inode, ACL_TYPE_ACCESS, acl, |
| 406 | ipage); |
| 407 | posix_acl_release(acl); |
Chengguang Xu | 313ed62 | 2018-08-31 22:33:50 +0800 | [diff] [blame] | 408 | } else { |
| 409 | inode->i_acl = NULL; |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 410 | } |
| 411 | |
Jaegeuk Kim | af48b85 | 2012-11-02 17:12:17 +0900 | [diff] [blame] | 412 | return error; |
| 413 | } |