blob: 10587413b20e464299829ec32bc32ced475a37ff [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Mike Marshall5db11c22015-07-17 10:38:12 -04002/*
3 * (C) 2001 Clemson University and The University of Chicago
4 *
5 * See COPYING in top-level directory.
6 */
7
8#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -05009#include "orangefs-kernel.h"
10#include "orangefs-bufmap.h"
Mike Marshall5db11c22015-07-17 10:38:12 -040011#include <linux/posix_acl_xattr.h>
Mike Marshall5db11c22015-07-17 10:38:12 -040012
Yi Liu8bb8aef2015-11-24 15:12:14 -050013struct posix_acl *orangefs_get_acl(struct inode *inode, int type)
Mike Marshall5db11c22015-07-17 10:38:12 -040014{
15 struct posix_acl *acl;
16 int ret;
17 char *key = NULL, *value = NULL;
18
19 switch (type) {
20 case ACL_TYPE_ACCESS:
Andreas Gruenbacher972a7342016-05-30 11:25:59 +020021 key = XATTR_NAME_POSIX_ACL_ACCESS;
Mike Marshall5db11c22015-07-17 10:38:12 -040022 break;
23 case ACL_TYPE_DEFAULT:
Andreas Gruenbacher972a7342016-05-30 11:25:59 +020024 key = XATTR_NAME_POSIX_ACL_DEFAULT;
Mike Marshall5db11c22015-07-17 10:38:12 -040025 break;
26 default:
Yi Liu8bb8aef2015-11-24 15:12:14 -050027 gossip_err("orangefs_get_acl: bogus value of type %d\n", type);
Mike Marshall5db11c22015-07-17 10:38:12 -040028 return ERR_PTR(-EINVAL);
29 }
30 /*
31 * Rather than incurring a network call just to determine the exact
32 * length of the attribute, I just allocate a max length to save on
33 * the network call. Conceivably, we could pass NULL to
Yi Liu8bb8aef2015-11-24 15:12:14 -050034 * orangefs_inode_getxattr() to probe the length of the value, but
Mike Marshall5db11c22015-07-17 10:38:12 -040035 * I don't do that for now.
36 */
Yi Liu8bb8aef2015-11-24 15:12:14 -050037 value = kmalloc(ORANGEFS_MAX_XATTR_VALUELEN, GFP_KERNEL);
Markus Elfring0b082732017-08-17 21:35:16 +020038 if (!value)
Mike Marshall5db11c22015-07-17 10:38:12 -040039 return ERR_PTR(-ENOMEM);
40
41 gossip_debug(GOSSIP_ACL_DEBUG,
42 "inode %pU, key %s, type %d\n",
43 get_khandle_from_ino(inode),
44 key,
45 type);
Andreas Gruenbacherd373a712016-06-04 11:02:33 +020046 ret = orangefs_inode_getxattr(inode, key, value,
47 ORANGEFS_MAX_XATTR_VALUELEN);
Mike Marshall5db11c22015-07-17 10:38:12 -040048 /* if the key exists, convert it to an in-memory rep */
49 if (ret > 0) {
50 acl = posix_acl_from_xattr(&init_user_ns, value, ret);
51 } else if (ret == -ENODATA || ret == -ENOSYS) {
52 acl = NULL;
53 } else {
54 gossip_err("inode %pU retrieving acl's failed with error %d\n",
55 get_khandle_from_ino(inode),
56 ret);
57 acl = ERR_PTR(ret);
58 }
59 /* kfree(NULL) is safe, so don't worry if value ever got used */
60 kfree(value);
61 return acl;
62}
63
Jan Karab5accbb2017-06-22 15:31:13 +020064static int __orangefs_set_acl(struct inode *inode, struct posix_acl *acl,
65 int type)
Mike Marshall5db11c22015-07-17 10:38:12 -040066{
Mike Marshall5db11c22015-07-17 10:38:12 -040067 int error = 0;
68 void *value = NULL;
69 size_t size = 0;
70 const char *name = NULL;
71
72 switch (type) {
73 case ACL_TYPE_ACCESS:
Andreas Gruenbacher972a7342016-05-30 11:25:59 +020074 name = XATTR_NAME_POSIX_ACL_ACCESS;
Mike Marshall5db11c22015-07-17 10:38:12 -040075 break;
76 case ACL_TYPE_DEFAULT:
Andreas Gruenbacher972a7342016-05-30 11:25:59 +020077 name = XATTR_NAME_POSIX_ACL_DEFAULT;
Mike Marshall5db11c22015-07-17 10:38:12 -040078 break;
79 default:
80 gossip_err("%s: invalid type %d!\n", __func__, type);
81 return -EINVAL;
82 }
83
84 gossip_debug(GOSSIP_ACL_DEBUG,
85 "%s: inode %pU, key %s type %d\n",
86 __func__, get_khandle_from_ino(inode),
87 name,
88 type);
89
90 if (acl) {
91 size = posix_acl_xattr_size(acl->a_count);
92 value = kmalloc(size, GFP_KERNEL);
93 if (!value)
94 return -ENOMEM;
95
96 error = posix_acl_to_xattr(&init_user_ns, acl, value, size);
97 if (error < 0)
98 goto out;
99 }
100
101 gossip_debug(GOSSIP_ACL_DEBUG,
102 "%s: name %s, value %p, size %zd, acl %p\n",
103 __func__, name, value, size, acl);
104 /*
105 * Go ahead and set the extended attribute now. NOTE: Suppose acl
106 * was NULL, then value will be NULL and size will be 0 and that
107 * will xlate to a removexattr. However, we don't want removexattr
108 * complain if attributes does not exist.
109 */
Andreas Gruenbacherd373a712016-06-04 11:02:33 +0200110 error = orangefs_inode_setxattr(inode, name, value, size, 0);
Mike Marshall5db11c22015-07-17 10:38:12 -0400111
112out:
113 kfree(value);
114 if (!error)
115 set_cached_acl(inode, type, acl);
116 return error;
117}
118
Jan Karab5accbb2017-06-22 15:31:13 +0200119int orangefs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
120{
121 int error;
Mike Marshall4bef6902017-08-10 13:50:50 -0400122 struct iattr iattr;
123 int rc;
Jan Karab5accbb2017-06-22 15:31:13 +0200124
125 if (type == ACL_TYPE_ACCESS && acl) {
Mike Marshall4bef6902017-08-10 13:50:50 -0400126 /*
127 * posix_acl_update_mode checks to see if the permissions
128 * described by the ACL can be encoded into the
129 * object's mode. If so, it sets "acl" to NULL
130 * and "mode" to the new desired value. It is up to
131 * us to propagate the new mode back to the server...
132 */
133 error = posix_acl_update_mode(inode, &iattr.ia_mode, &acl);
Jan Karab5accbb2017-06-22 15:31:13 +0200134 if (error) {
135 gossip_err("%s: posix_acl_update_mode err: %d\n",
136 __func__,
137 error);
138 return error;
139 }
140
Mike Marshall4bef6902017-08-10 13:50:50 -0400141 if (acl) {
142 rc = __orangefs_set_acl(inode, acl, type);
143 } else {
144 iattr.ia_valid = ATTR_MODE;
145 rc = orangefs_inode_setattr(inode, &iattr);
146 }
147
148 return rc;
149
150 } else {
151 return -EINVAL;
Jan Karab5accbb2017-06-22 15:31:13 +0200152 }
Jan Karab5accbb2017-06-22 15:31:13 +0200153}
154
Yi Liu8bb8aef2015-11-24 15:12:14 -0500155int orangefs_init_acl(struct inode *inode, struct inode *dir)
Mike Marshall5db11c22015-07-17 10:38:12 -0400156{
Mike Marshall5db11c22015-07-17 10:38:12 -0400157 struct posix_acl *default_acl, *acl;
158 umode_t mode = inode->i_mode;
Martin Brandenburga55f2d82017-11-07 15:01:40 -0500159 struct iattr iattr;
Mike Marshall5db11c22015-07-17 10:38:12 -0400160 int error = 0;
161
Mike Marshall5db11c22015-07-17 10:38:12 -0400162 error = posix_acl_create(dir, &mode, &default_acl, &acl);
163 if (error)
164 return error;
165
166 if (default_acl) {
Jan Karab5accbb2017-06-22 15:31:13 +0200167 error = __orangefs_set_acl(inode, default_acl,
168 ACL_TYPE_DEFAULT);
Mike Marshall5db11c22015-07-17 10:38:12 -0400169 posix_acl_release(default_acl);
170 }
171
172 if (acl) {
173 if (!error)
Jan Karab5accbb2017-06-22 15:31:13 +0200174 error = __orangefs_set_acl(inode, acl, ACL_TYPE_ACCESS);
Mike Marshall5db11c22015-07-17 10:38:12 -0400175 posix_acl_release(acl);
176 }
177
178 /* If mode of the inode was changed, then do a forcible ->setattr */
179 if (mode != inode->i_mode) {
Martin Brandenburga55f2d82017-11-07 15:01:40 -0500180 memset(&iattr, 0, sizeof iattr);
Mike Marshall5db11c22015-07-17 10:38:12 -0400181 inode->i_mode = mode;
Martin Brandenburga55f2d82017-11-07 15:01:40 -0500182 iattr.ia_mode = mode;
183 iattr.ia_valid |= ATTR_MODE;
184 orangefs_inode_setattr(inode, &iattr);
Mike Marshall5db11c22015-07-17 10:38:12 -0400185 }
186
187 return error;
188}