Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright IBM Corporation, 2010 |
| 3 | * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2.1 of the GNU Lesser General Public License |
| 7 | * as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it would be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 12 | * |
| 13 | */ |
| 14 | |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/fs.h> |
| 17 | #include <net/9p/9p.h> |
| 18 | #include <net/9p/client.h> |
| 19 | #include <linux/slab.h> |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 20 | #include <linux/sched.h> |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 21 | #include <linux/posix_acl_xattr.h> |
| 22 | #include "xattr.h" |
| 23 | #include "acl.h" |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 24 | #include "v9fs.h" |
Aneesh Kumar K.V | 5ffc0cb | 2011-02-28 17:04:01 +0530 | [diff] [blame] | 25 | #include "v9fs_vfs.h" |
Al Viro | 0f235ca | 2013-01-31 12:54:47 -0500 | [diff] [blame] | 26 | #include "fid.h" |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 27 | |
| 28 | static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name) |
| 29 | { |
| 30 | ssize_t size; |
| 31 | void *value = NULL; |
Joe Perches | 009ca38 | 2010-11-15 03:04:51 +0000 | [diff] [blame] | 32 | struct posix_acl *acl = NULL; |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 33 | |
| 34 | size = v9fs_fid_xattr_get(fid, name, NULL, 0); |
| 35 | if (size > 0) { |
| 36 | value = kzalloc(size, GFP_NOFS); |
| 37 | if (!value) |
| 38 | return ERR_PTR(-ENOMEM); |
| 39 | size = v9fs_fid_xattr_get(fid, name, value, size); |
| 40 | if (size > 0) { |
Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 41 | acl = posix_acl_from_xattr(&init_user_ns, value, size); |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 42 | if (IS_ERR(acl)) |
| 43 | goto err_out; |
| 44 | } |
| 45 | } else if (size == -ENODATA || size == 0 || |
| 46 | size == -ENOSYS || size == -EOPNOTSUPP) { |
| 47 | acl = NULL; |
| 48 | } else |
| 49 | acl = ERR_PTR(-EIO); |
| 50 | |
| 51 | err_out: |
| 52 | kfree(value); |
| 53 | return acl; |
| 54 | } |
| 55 | |
| 56 | int v9fs_get_acl(struct inode *inode, struct p9_fid *fid) |
| 57 | { |
| 58 | int retval = 0; |
| 59 | struct posix_acl *pacl, *dacl; |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 60 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 61 | |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 62 | v9ses = v9fs_inode2v9ses(inode); |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 63 | if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) || |
| 64 | ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) { |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 65 | set_cached_acl(inode, ACL_TYPE_DEFAULT, NULL); |
| 66 | set_cached_acl(inode, ACL_TYPE_ACCESS, NULL); |
| 67 | return 0; |
| 68 | } |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 69 | /* get the default/access acl values and cache them */ |
Andreas Gruenbacher | 97d7929 | 2015-12-02 14:44:35 +0100 | [diff] [blame] | 70 | dacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_DEFAULT); |
| 71 | pacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_ACCESS); |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 72 | |
| 73 | if (!IS_ERR(dacl) && !IS_ERR(pacl)) { |
| 74 | set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl); |
| 75 | set_cached_acl(inode, ACL_TYPE_ACCESS, pacl); |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 76 | } else |
| 77 | retval = -EIO; |
| 78 | |
Venkateswararao Jujjuri (JV) | c61fa0d | 2011-01-13 15:28:39 -0800 | [diff] [blame] | 79 | if (!IS_ERR(dacl)) |
| 80 | posix_acl_release(dacl); |
| 81 | |
| 82 | if (!IS_ERR(pacl)) |
| 83 | posix_acl_release(pacl); |
| 84 | |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 85 | return retval; |
| 86 | } |
| 87 | |
| 88 | static struct posix_acl *v9fs_get_cached_acl(struct inode *inode, int type) |
| 89 | { |
| 90 | struct posix_acl *acl; |
| 91 | /* |
| 92 | * 9p Always cache the acl value when |
| 93 | * instantiating the inode (v9fs_inode_from_fid) |
| 94 | */ |
| 95 | acl = get_cached_acl(inode, type); |
| 96 | BUG_ON(acl == ACL_NOT_CACHED); |
| 97 | return acl; |
| 98 | } |
| 99 | |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 100 | struct posix_acl *v9fs_iop_get_acl(struct inode *inode, int type) |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 101 | { |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 102 | struct v9fs_session_info *v9ses; |
| 103 | |
| 104 | v9ses = v9fs_inode2v9ses(inode); |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 105 | if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) || |
| 106 | ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) { |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 107 | /* |
Venkateswararao Jujjuri (JV) | e782ef7 | 2011-01-25 15:40:54 -0800 | [diff] [blame] | 108 | * On access = client and acl = on mode get the acl |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 109 | * values from the server |
| 110 | */ |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 111 | return NULL; |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 112 | } |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 113 | return v9fs_get_cached_acl(inode, type); |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 114 | |
Aneesh Kumar K.V | 85ff872 | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 115 | } |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 116 | |
Al Viro | 0f235ca | 2013-01-31 12:54:47 -0500 | [diff] [blame] | 117 | static int v9fs_set_acl(struct p9_fid *fid, int type, struct posix_acl *acl) |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 118 | { |
| 119 | int retval; |
| 120 | char *name; |
| 121 | size_t size; |
| 122 | void *buffer; |
Venkateswararao Jujjuri (JV) | d344b0f | 2011-01-13 16:33:00 -0800 | [diff] [blame] | 123 | if (!acl) |
| 124 | return 0; |
| 125 | |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 126 | /* Set a setxattr request to server */ |
| 127 | size = posix_acl_xattr_size(acl->a_count); |
| 128 | buffer = kmalloc(size, GFP_KERNEL); |
| 129 | if (!buffer) |
| 130 | return -ENOMEM; |
Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 131 | retval = posix_acl_to_xattr(&init_user_ns, acl, buffer, size); |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 132 | if (retval < 0) |
| 133 | goto err_free_out; |
| 134 | switch (type) { |
| 135 | case ACL_TYPE_ACCESS: |
Andreas Gruenbacher | 97d7929 | 2015-12-02 14:44:35 +0100 | [diff] [blame] | 136 | name = XATTR_NAME_POSIX_ACL_ACCESS; |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 137 | break; |
| 138 | case ACL_TYPE_DEFAULT: |
Andreas Gruenbacher | 97d7929 | 2015-12-02 14:44:35 +0100 | [diff] [blame] | 139 | name = XATTR_NAME_POSIX_ACL_DEFAULT; |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 140 | break; |
| 141 | default: |
| 142 | BUG(); |
| 143 | } |
Al Viro | 0f235ca | 2013-01-31 12:54:47 -0500 | [diff] [blame] | 144 | retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0); |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 145 | err_free_out: |
| 146 | kfree(buffer); |
| 147 | return retval; |
| 148 | } |
| 149 | |
Al Viro | be308f0 | 2013-01-31 12:58:16 -0500 | [diff] [blame] | 150 | int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid) |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 151 | { |
| 152 | int retval = 0; |
Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 153 | struct posix_acl *acl; |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 154 | |
| 155 | if (S_ISLNK(inode->i_mode)) |
| 156 | return -EOPNOTSUPP; |
| 157 | acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS); |
| 158 | if (acl) { |
Christoph Hellwig | 5bf3258 | 2013-12-20 05:16:41 -0800 | [diff] [blame] | 159 | retval = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode); |
Al Viro | bc26ab5 | 2011-07-23 00:18:02 -0400 | [diff] [blame] | 160 | if (retval) |
| 161 | return retval; |
Al Viro | 7f165aa | 2013-01-31 12:46:55 -0500 | [diff] [blame] | 162 | set_cached_acl(inode, ACL_TYPE_ACCESS, acl); |
Al Viro | 0f235ca | 2013-01-31 12:54:47 -0500 | [diff] [blame] | 163 | retval = v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl); |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 164 | posix_acl_release(acl); |
Aneesh Kumar K.V | 6e8dc55 | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 165 | } |
| 166 | return retval; |
| 167 | } |
| 168 | |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 169 | int v9fs_set_create_acl(struct inode *inode, struct p9_fid *fid, |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 170 | struct posix_acl *dacl, struct posix_acl *acl) |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 171 | { |
Al Viro | 3592ac4 | 2013-01-31 13:45:39 -0500 | [diff] [blame] | 172 | set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl); |
| 173 | set_cached_acl(inode, ACL_TYPE_ACCESS, acl); |
| 174 | v9fs_set_acl(fid, ACL_TYPE_DEFAULT, dacl); |
| 175 | v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl); |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 176 | return 0; |
| 177 | } |
| 178 | |
Al Viro | 5fa6300 | 2013-01-31 13:31:23 -0500 | [diff] [blame] | 179 | void v9fs_put_acl(struct posix_acl *dacl, |
| 180 | struct posix_acl *acl) |
| 181 | { |
| 182 | posix_acl_release(dacl); |
| 183 | posix_acl_release(acl); |
| 184 | } |
| 185 | |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 186 | int v9fs_acl_mode(struct inode *dir, umode_t *modep, |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 187 | struct posix_acl **dpacl, struct posix_acl **pacl) |
| 188 | { |
| 189 | int retval = 0; |
Al Viro | d3fb612 | 2011-07-23 18:37:50 -0400 | [diff] [blame] | 190 | umode_t mode = *modep; |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 191 | struct posix_acl *acl = NULL; |
| 192 | |
| 193 | if (!S_ISLNK(mode)) { |
| 194 | acl = v9fs_get_cached_acl(dir, ACL_TYPE_DEFAULT); |
| 195 | if (IS_ERR(acl)) |
| 196 | return PTR_ERR(acl); |
| 197 | if (!acl) |
| 198 | mode &= ~current_umask(); |
| 199 | } |
| 200 | if (acl) { |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 201 | if (S_ISDIR(mode)) |
Al Viro | 1ec95bf | 2011-07-23 02:28:13 -0400 | [diff] [blame] | 202 | *dpacl = posix_acl_dup(acl); |
Christoph Hellwig | 37bc153 | 2013-12-20 05:16:42 -0800 | [diff] [blame] | 203 | retval = __posix_acl_create(&acl, GFP_NOFS, &mode); |
Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 204 | if (retval < 0) |
| 205 | return retval; |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 206 | if (retval > 0) |
Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 207 | *pacl = acl; |
Al Viro | 1ec95bf | 2011-07-23 02:28:13 -0400 | [diff] [blame] | 208 | else |
Al Viro | 826cae2 | 2011-07-23 03:10:32 -0400 | [diff] [blame] | 209 | posix_acl_release(acl); |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 210 | } |
| 211 | *modep = mode; |
| 212 | return 0; |
Aneesh Kumar K.V | ad77dbc | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 213 | } |
| 214 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 215 | static int v9fs_xattr_get_acl(const struct xattr_handler *handler, |
| 216 | struct dentry *dentry, const char *name, |
| 217 | void *buffer, size_t size) |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 218 | { |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 219 | struct v9fs_session_info *v9ses; |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 220 | struct posix_acl *acl; |
| 221 | int error; |
| 222 | |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 223 | v9ses = v9fs_dentry2v9ses(dentry); |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 224 | /* |
| 225 | * We allow set/get/list of acl when access=client is not specified |
| 226 | */ |
| 227 | if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 228 | return v9fs_xattr_get(dentry, handler->name, buffer, size); |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 229 | |
Andreas Gruenbacher | e409de9 | 2015-10-04 19:18:52 +0200 | [diff] [blame] | 230 | acl = v9fs_get_cached_acl(d_inode(dentry), handler->flags); |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 231 | if (IS_ERR(acl)) |
| 232 | return PTR_ERR(acl); |
| 233 | if (acl == NULL) |
| 234 | return -ENODATA; |
Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 235 | error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size); |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 236 | posix_acl_release(acl); |
| 237 | |
| 238 | return error; |
| 239 | } |
| 240 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 241 | static int v9fs_xattr_set_acl(const struct xattr_handler *handler, |
| 242 | struct dentry *dentry, const char *name, |
| 243 | const void *value, size_t size, int flags) |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 244 | { |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 245 | int retval; |
| 246 | struct posix_acl *acl; |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 247 | struct v9fs_session_info *v9ses; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 248 | struct inode *inode = d_inode(dentry); |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 249 | |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 250 | v9ses = v9fs_dentry2v9ses(dentry); |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 251 | /* |
| 252 | * set the attribute on the remote. Without even looking at the |
| 253 | * xattr value. We leave it to the server to validate |
| 254 | */ |
| 255 | if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 256 | return v9fs_xattr_set(dentry, handler->name, value, size, |
Andreas Gruenbacher | e409de9 | 2015-10-04 19:18:52 +0200 | [diff] [blame] | 257 | flags); |
Aneesh Kumar K.V | 76381a4 | 2010-09-28 00:27:41 +0530 | [diff] [blame] | 258 | |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 259 | if (S_ISLNK(inode->i_mode)) |
| 260 | return -EOPNOTSUPP; |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 261 | if (!inode_owner_or_capable(inode)) |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 262 | return -EPERM; |
| 263 | if (value) { |
| 264 | /* update the cached acl value */ |
Eric W. Biederman | 5f3a4a2 | 2012-09-10 20:17:44 -0700 | [diff] [blame] | 265 | acl = posix_acl_from_xattr(&init_user_ns, value, size); |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 266 | if (IS_ERR(acl)) |
| 267 | return PTR_ERR(acl); |
| 268 | else if (acl) { |
| 269 | retval = posix_acl_valid(acl); |
| 270 | if (retval) |
| 271 | goto err_out; |
| 272 | } |
| 273 | } else |
| 274 | acl = NULL; |
| 275 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 276 | switch (handler->flags) { |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 277 | case ACL_TYPE_ACCESS: |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 278 | if (acl) { |
Al Viro | d695212 | 2011-07-23 18:56:36 -0400 | [diff] [blame] | 279 | umode_t mode = inode->i_mode; |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 280 | retval = posix_acl_equiv_mode(acl, &mode); |
| 281 | if (retval < 0) |
| 282 | goto err_out; |
| 283 | else { |
| 284 | struct iattr iattr; |
| 285 | if (retval == 0) { |
| 286 | /* |
| 287 | * ACL can be represented |
| 288 | * by the mode bits. So don't |
| 289 | * update ACL. |
| 290 | */ |
| 291 | acl = NULL; |
| 292 | value = NULL; |
| 293 | size = 0; |
| 294 | } |
| 295 | /* Updte the mode bits */ |
| 296 | iattr.ia_mode = ((mode & S_IALLUGO) | |
| 297 | (inode->i_mode & ~S_IALLUGO)); |
| 298 | iattr.ia_valid = ATTR_MODE; |
| 299 | /* FIXME should we update ctime ? |
| 300 | * What is the following setxattr update the |
| 301 | * mode ? |
| 302 | */ |
| 303 | v9fs_vfs_setattr_dotl(dentry, &iattr); |
| 304 | } |
| 305 | } |
| 306 | break; |
| 307 | case ACL_TYPE_DEFAULT: |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 308 | if (!S_ISDIR(inode->i_mode)) { |
Aneesh Kumar K.V | 6f81c11 | 2010-12-10 12:19:31 +0530 | [diff] [blame] | 309 | retval = acl ? -EINVAL : 0; |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 310 | goto err_out; |
| 311 | } |
| 312 | break; |
| 313 | default: |
| 314 | BUG(); |
| 315 | } |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 316 | retval = v9fs_xattr_set(dentry, handler->name, value, size, flags); |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 317 | if (!retval) |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 318 | set_cached_acl(inode, handler->flags, acl); |
Aneesh Kumar K.V | 22d8dcd | 2010-09-28 00:27:40 +0530 | [diff] [blame] | 319 | err_out: |
| 320 | posix_acl_release(acl); |
| 321 | return retval; |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | const struct xattr_handler v9fs_xattr_acl_access_handler = { |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 325 | .name = XATTR_NAME_POSIX_ACL_ACCESS, |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 326 | .flags = ACL_TYPE_ACCESS, |
| 327 | .get = v9fs_xattr_get_acl, |
| 328 | .set = v9fs_xattr_set_acl, |
| 329 | }; |
| 330 | |
| 331 | const struct xattr_handler v9fs_xattr_acl_default_handler = { |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 332 | .name = XATTR_NAME_POSIX_ACL_DEFAULT, |
Aneesh Kumar K.V | 7a4566b | 2010-09-28 00:27:39 +0530 | [diff] [blame] | 333 | .flags = ACL_TYPE_DEFAULT, |
| 334 | .get = v9fs_xattr_get_acl, |
| 335 | .set = v9fs_xattr_set_acl, |
| 336 | }; |