blob: 24c6898159cc1ea5e2622574968ff1bbf62268b5 [file] [log] [blame]
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09002#include <linux/gfp.h>
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00003#include <linux/nfs.h>
4#include <linux/nfs3.h>
5#include <linux/nfs_fs.h>
Christoph Hellwig334a13e2005-06-28 20:44:58 -07006#include <linux/posix_acl_xattr.h>
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00007#include <linux/nfsacl.h>
8
Trond Myklebustf41f7412008-06-11 17:39:04 -04009#include "internal.h"
10
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000011#define NFSDBG_FACILITY NFSDBG_PROC
12
Christoph Hellwig013cdf12013-12-20 05:16:53 -080013struct posix_acl *nfs3_get_acl(struct inode *inode, int type)
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000014{
15 struct nfs_server *server = NFS_SERVER(inode);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000016 struct page *pages[NFSACL_MAXPAGES] = { };
17 struct nfs3_getaclargs args = {
18 .fh = NFS_FH(inode),
19 /* The xdr layer may allocate pages here. */
20 .pages = pages,
21 };
22 struct nfs3_getaclres res = {
Trond Myklebust17280172012-03-11 13:11:00 -040023 NULL,
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000024 };
Chuck Leverdead28d2006-03-20 13:44:23 -050025 struct rpc_message msg = {
26 .rpc_argp = &args,
27 .rpc_resp = &res,
28 };
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000029 int status, count;
30
31 if (!nfs_server_capable(inode, NFS_CAP_ACLS))
32 return ERR_PTR(-EOPNOTSUPP);
33
Andreas Gruenbacher5c6a9f72005-06-22 17:16:27 +000034 status = nfs_revalidate_inode(server, inode);
35 if (status < 0)
36 return ERR_PTR(status);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000037
Andreas Gruenbacher5c6a9f72005-06-22 17:16:27 +000038 /*
39 * Only get the access acl when explicitly requested: We don't
40 * need it for access decisions, and only some applications use
41 * it. Applications which request the access acl first are not
42 * penalized from this optimization.
43 */
44 if (type == ACL_TYPE_ACCESS)
45 args.mask |= NFS_ACLCNT|NFS_ACL;
46 if (S_ISDIR(inode->i_mode))
47 args.mask |= NFS_DFACLCNT|NFS_DFACL;
48 if (args.mask == 0)
49 return NULL;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000050
51 dprintk("NFS call getacl\n");
Chuck Leverdead28d2006-03-20 13:44:23 -050052 msg.rpc_proc = &server->client_acl->cl_procinfo[ACLPROC3_GETACL];
Trond Myklebust6e94d622010-04-16 16:22:52 -040053 res.fattr = nfs_alloc_fattr();
54 if (res.fattr == NULL)
55 return ERR_PTR(-ENOMEM);
56
Chuck Leverdead28d2006-03-20 13:44:23 -050057 status = rpc_call_sync(server->client_acl, &msg, 0);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000058 dprintk("NFS reply getacl: %d\n", status);
59
60 /* pages may have been allocated at the xdr layer. */
61 for (count = 0; count < NFSACL_MAXPAGES && args.pages[count]; count++)
62 __free_page(args.pages[count]);
63
64 switch (status) {
65 case 0:
Trond Myklebust6e94d622010-04-16 16:22:52 -040066 status = nfs_refresh_inode(inode, res.fattr);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000067 break;
68 case -EPFNOSUPPORT:
69 case -EPROTONOSUPPORT:
70 dprintk("NFS_V3_ACL extension not supported; disabling\n");
71 server->caps &= ~NFS_CAP_ACLS;
72 case -ENOTSUPP:
73 status = -EOPNOTSUPP;
74 default:
75 goto getout;
76 }
77 if ((args.mask & res.mask) != args.mask) {
78 status = -EIO;
79 goto getout;
80 }
81
82 if (res.acl_access != NULL) {
Noah Massey718360c2014-01-30 21:31:12 -050083 if ((posix_acl_equiv_mode(res.acl_access, NULL) == 0) ||
Christoph Hellwig013cdf12013-12-20 05:16:53 -080084 res.acl_access->a_count == 0) {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000085 posix_acl_release(res.acl_access);
86 res.acl_access = NULL;
87 }
88 }
89
Christoph Hellwig013cdf12013-12-20 05:16:53 -080090 if (res.mask & NFS_ACL)
91 set_cached_acl(inode, ACL_TYPE_ACCESS, res.acl_access);
92 else
93 forget_cached_acl(inode, ACL_TYPE_ACCESS);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000094
Christoph Hellwig013cdf12013-12-20 05:16:53 -080095 if (res.mask & NFS_DFACL)
96 set_cached_acl(inode, ACL_TYPE_DEFAULT, res.acl_default);
97 else
98 forget_cached_acl(inode, ACL_TYPE_DEFAULT);
99
100 nfs_free_fattr(res.fattr);
101 if (type == ACL_TYPE_ACCESS) {
102 posix_acl_release(res.acl_default);
103 return res.acl_access;
104 } else {
105 posix_acl_release(res.acl_access);
106 return res.acl_default;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000107 }
108
109getout:
110 posix_acl_release(res.acl_access);
111 posix_acl_release(res.acl_default);
Trond Myklebust6e94d622010-04-16 16:22:52 -0400112 nfs_free_fattr(res.fattr);
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800113 return ERR_PTR(status);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000114}
115
Trond Myklebust8f493b92014-02-02 14:36:42 -0500116static int __nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800117 struct posix_acl *dfacl)
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000118{
119 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebust6e94d622010-04-16 16:22:52 -0400120 struct nfs_fattr *fattr;
Trond Myklebustae461412009-03-10 20:33:18 -0400121 struct page *pages[NFSACL_MAXPAGES];
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000122 struct nfs3_setaclargs args = {
123 .inode = inode,
124 .mask = NFS_ACL,
125 .acl_access = acl,
126 .pages = pages,
127 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500128 struct rpc_message msg = {
129 .rpc_argp = &args,
130 .rpc_resp = &fattr,
131 };
Trond Myklebustf87d928f2014-08-24 14:46:48 -0400132 int status = 0;
133
134 if (acl == NULL && (!S_ISDIR(inode->i_mode) || dfacl == NULL))
135 goto out;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000136
137 status = -EOPNOTSUPP;
138 if (!nfs_server_capable(inode, NFS_CAP_ACLS))
139 goto out;
140
Chuck Leverf61f6da2011-01-21 03:05:38 +0000141 /* We are doing this here because XDR marshalling does not
142 * return any results, it BUGs. */
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000143 status = -ENOSPC;
144 if (acl != NULL && acl->a_count > NFS_ACL_MAX_ENTRIES)
145 goto out;
146 if (dfacl != NULL && dfacl->a_count > NFS_ACL_MAX_ENTRIES)
147 goto out;
148 if (S_ISDIR(inode->i_mode)) {
149 args.mask |= NFS_DFACL;
150 args.acl_default = dfacl;
Trond Myklebustae461412009-03-10 20:33:18 -0400151 args.len = nfsacl_size(acl, dfacl);
152 } else
153 args.len = nfsacl_size(acl, NULL);
154
155 if (args.len > NFS_ACL_INLINE_BUFSIZE) {
156 unsigned int npages = 1 + ((args.len - 1) >> PAGE_SHIFT);
157
158 status = -ENOMEM;
159 do {
160 args.pages[args.npages] = alloc_page(GFP_KERNEL);
161 if (args.pages[args.npages] == NULL)
162 goto out_freepages;
163 args.npages++;
164 } while (args.npages < npages);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000165 }
166
167 dprintk("NFS call setacl\n");
Trond Myklebust6e94d622010-04-16 16:22:52 -0400168 status = -ENOMEM;
169 fattr = nfs_alloc_fattr();
170 if (fattr == NULL)
171 goto out_freepages;
172
Chuck Leverdead28d2006-03-20 13:44:23 -0500173 msg.rpc_proc = &server->client_acl->cl_procinfo[ACLPROC3_SETACL];
Trond Myklebust6e94d622010-04-16 16:22:52 -0400174 msg.rpc_resp = fattr;
Chuck Leverdead28d2006-03-20 13:44:23 -0500175 status = rpc_call_sync(server->client_acl, &msg, 0);
Trond Myklebustf41f7412008-06-11 17:39:04 -0400176 nfs_access_zap_cache(inode);
177 nfs_zap_acl_cache(inode);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000178 dprintk("NFS reply setacl: %d\n", status);
179
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000180 switch (status) {
181 case 0:
Trond Myklebust6e94d622010-04-16 16:22:52 -0400182 status = nfs_refresh_inode(inode, fattr);
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800183 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
184 set_cached_acl(inode, ACL_TYPE_DEFAULT, dfacl);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000185 break;
186 case -EPFNOSUPPORT:
187 case -EPROTONOSUPPORT:
188 dprintk("NFS_V3_ACL SETACL RPC not supported"
189 "(will not retry)\n");
190 server->caps &= ~NFS_CAP_ACLS;
191 case -ENOTSUPP:
192 status = -EOPNOTSUPP;
193 }
Trond Myklebust6e94d622010-04-16 16:22:52 -0400194 nfs_free_fattr(fattr);
Trond Myklebustae461412009-03-10 20:33:18 -0400195out_freepages:
196 while (args.npages != 0) {
197 args.npages--;
198 __free_page(args.pages[args.npages]);
199 }
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000200out:
201 return status;
202}
203
Trond Myklebust8f493b92014-02-02 14:36:42 -0500204int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
205 struct posix_acl *dfacl)
206{
207 int ret;
208 ret = __nfs3_proc_setacls(inode, acl, dfacl);
209 return (ret == -EOPNOTSUPP) ? 0 : ret;
210
211}
212
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800213int nfs3_set_acl(struct inode *inode, struct posix_acl *acl, int type)
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000214{
215 struct posix_acl *alloc = NULL, *dfacl = NULL;
216 int status;
217
218 if (S_ISDIR(inode->i_mode)) {
219 switch(type) {
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800220 case ACL_TYPE_ACCESS:
221 alloc = dfacl = get_acl(inode, ACL_TYPE_DEFAULT);
222 if (IS_ERR(alloc))
223 goto fail;
224 break;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000225
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800226 case ACL_TYPE_DEFAULT:
227 dfacl = acl;
228 alloc = acl = get_acl(inode, ACL_TYPE_ACCESS);
229 if (IS_ERR(alloc))
230 goto fail;
231 break;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000232 }
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800233 }
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000234
235 if (acl == NULL) {
236 alloc = acl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
237 if (IS_ERR(alloc))
238 goto fail;
239 }
Trond Myklebust8f493b92014-02-02 14:36:42 -0500240 status = __nfs3_proc_setacls(inode, acl, dfacl);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000241 posix_acl_release(alloc);
242 return status;
243
244fail:
245 return PTR_ERR(alloc);
246}
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000247
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800248const struct xattr_handler *nfs3_xattr_handlers[] = {
249 &posix_acl_access_xattr_handler,
250 &posix_acl_default_xattr_handler,
251 NULL,
252};
Christoph Hellwig74adf832014-06-18 11:07:03 +0200253
254static int
255nfs3_list_one_acl(struct inode *inode, int type, const char *name, void *data,
256 size_t size, ssize_t *result)
257{
258 struct posix_acl *acl;
259 char *p = data + *result;
260
261 acl = get_acl(inode, type);
Andrey Utkin7a9e75a2014-07-26 14:58:01 +0300262 if (IS_ERR_OR_NULL(acl))
Christoph Hellwig74adf832014-06-18 11:07:03 +0200263 return 0;
264
265 posix_acl_release(acl);
266
267 *result += strlen(name);
268 *result += 1;
269 if (!size)
270 return 0;
271 if (*result > size)
272 return -ERANGE;
273
274 strcpy(p, name);
275 return 0;
276}
277
278ssize_t
279nfs3_listxattr(struct dentry *dentry, char *data, size_t size)
280{
281 struct inode *inode = dentry->d_inode;
282 ssize_t result = 0;
283 int error;
284
285 error = nfs3_list_one_acl(inode, ACL_TYPE_ACCESS,
286 POSIX_ACL_XATTR_ACCESS, data, size, &result);
287 if (error)
288 return error;
289
290 error = nfs3_list_one_acl(inode, ACL_TYPE_DEFAULT,
291 POSIX_ACL_XATTR_DEFAULT, data, size, &result);
292 if (error)
293 return error;
294 return result;
295}