Linux Audio

Check our new training course

Loading...
  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>
 20#include <linux/sched.h>
 21#include <linux/posix_acl_xattr.h>
 22#include "xattr.h"
 23#include "acl.h"
 24#include "v9fs.h"
 25#include "v9fs_vfs.h"
 26#include "fid.h"
 27
 28static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
 29{
 30	ssize_t size;
 31	void *value = NULL;
 32	struct posix_acl *acl = NULL;
 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) {
 41			acl = posix_acl_from_xattr(&init_user_ns, value, size);
 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
 51err_out:
 52	kfree(value);
 53	return acl;
 54}
 55
 56int v9fs_get_acl(struct inode *inode, struct p9_fid *fid)
 57{
 58	int retval = 0;
 59	struct posix_acl *pacl, *dacl;
 60	struct v9fs_session_info *v9ses;
 61
 62	v9ses = v9fs_inode2v9ses(inode);
 63	if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
 64			((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
 65		set_cached_acl(inode, ACL_TYPE_DEFAULT, NULL);
 66		set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
 67		return 0;
 68	}
 69	/* get the default/access acl values and cache them */
 70	dacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_DEFAULT);
 71	pacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_ACCESS);
 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);
 76	} else
 77		retval = -EIO;
 78
 79	if (!IS_ERR(dacl))
 80		posix_acl_release(dacl);
 81
 82	if (!IS_ERR(pacl))
 83		posix_acl_release(pacl);
 84
 85	return retval;
 86}
 87
 88static 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(is_uncached_acl(acl));
 97	return acl;
 98}
 99
100struct posix_acl *v9fs_iop_get_acl(struct inode *inode, int type)
101{
102	struct v9fs_session_info *v9ses;
103
104	v9ses = v9fs_inode2v9ses(inode);
105	if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
106			((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
107		/*
108		 * On access = client  and acl = on mode get the acl
109		 * values from the server
110		 */
111		return NULL;
112	}
113	return v9fs_get_cached_acl(inode, type);
114
115}
116
117static int v9fs_set_acl(struct p9_fid *fid, int type, struct posix_acl *acl)
118{
119	int retval;
120	char *name;
121	size_t size;
122	void *buffer;
123	if (!acl)
124		return 0;
125
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;
131	retval = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
132	if (retval < 0)
133		goto err_free_out;
134	switch (type) {
135	case ACL_TYPE_ACCESS:
136		name = XATTR_NAME_POSIX_ACL_ACCESS;
137		break;
138	case ACL_TYPE_DEFAULT:
139		name = XATTR_NAME_POSIX_ACL_DEFAULT;
140		break;
141	default:
142		BUG();
143	}
144	retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0);
145err_free_out:
146	kfree(buffer);
147	return retval;
148}
149
150int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid)
151{
152	int retval = 0;
153	struct posix_acl *acl;
154
155	if (S_ISLNK(inode->i_mode))
156		return -EOPNOTSUPP;
157	acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS);
158	if (acl) {
159		retval = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
160		if (retval)
161			return retval;
162		set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
163		retval = v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
164		posix_acl_release(acl);
165	}
166	return retval;
167}
168
169int v9fs_set_create_acl(struct inode *inode, struct p9_fid *fid,
170			struct posix_acl *dacl, struct posix_acl *acl)
171{
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);
176	return 0;
177}
178
179void 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
186int v9fs_acl_mode(struct inode *dir, umode_t *modep,
187		  struct posix_acl **dpacl, struct posix_acl **pacl)
188{
189	int retval = 0;
190	umode_t mode = *modep;
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) {
201		if (S_ISDIR(mode))
202			*dpacl = posix_acl_dup(acl);
203		retval = __posix_acl_create(&acl, GFP_NOFS, &mode);
204		if (retval < 0)
205			return retval;
206		if (retval > 0)
207			*pacl = acl;
208		else
209			posix_acl_release(acl);
210	}
211	*modep  = mode;
212	return 0;
213}
214
215static int v9fs_xattr_get_acl(const struct xattr_handler *handler,
216			      struct dentry *dentry, struct inode *inode,
217			      const char *name, void *buffer, size_t size)
218{
219	struct v9fs_session_info *v9ses;
220	struct posix_acl *acl;
221	int error;
222
223	v9ses = v9fs_dentry2v9ses(dentry);
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)
228		return v9fs_xattr_get(dentry, handler->name, buffer, size);
229
230	acl = v9fs_get_cached_acl(inode, handler->flags);
231	if (IS_ERR(acl))
232		return PTR_ERR(acl);
233	if (acl == NULL)
234		return -ENODATA;
235	error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
236	posix_acl_release(acl);
237
238	return error;
239}
240
241static int v9fs_xattr_set_acl(const struct xattr_handler *handler,
242			      struct dentry *dentry, struct inode *inode,
243			      const char *name, const void *value,
244			      size_t size, int flags)
245{
246	int retval;
247	struct posix_acl *acl;
248	struct v9fs_session_info *v9ses;
249
250	v9ses = v9fs_dentry2v9ses(dentry);
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)
256		return v9fs_xattr_set(dentry, handler->name, value, size,
257				      flags);
258
259	if (S_ISLNK(inode->i_mode))
260		return -EOPNOTSUPP;
261	if (!inode_owner_or_capable(inode))
262		return -EPERM;
263	if (value) {
264		/* update the cached acl value */
265		acl = posix_acl_from_xattr(&init_user_ns, value, size);
266		if (IS_ERR(acl))
267			return PTR_ERR(acl);
268		else if (acl) {
269			retval = posix_acl_valid(inode->i_sb->s_user_ns, acl);
270			if (retval)
271				goto err_out;
272		}
273	} else
274		acl = NULL;
275
276	switch (handler->flags) {
277	case ACL_TYPE_ACCESS:
278		if (acl) {
279			struct iattr iattr;
280			struct posix_acl *old_acl = acl;
281
282			retval = posix_acl_update_mode(inode, &iattr.ia_mode, &acl);
283			if (retval)
284				goto err_out;
285			if (!acl) {
286				/*
287				 * ACL can be represented
288				 * by the mode bits. So don't
289				 * update ACL.
290				 */
291				posix_acl_release(old_acl);
292				value = NULL;
293				size = 0;
294			}
295			iattr.ia_valid = ATTR_MODE;
296			/* FIXME should we update ctime ?
297			 * What is the following setxattr update the
298			 * mode ?
299			 */
300			v9fs_vfs_setattr_dotl(dentry, &iattr);
301		}
302		break;
303	case ACL_TYPE_DEFAULT:
304		if (!S_ISDIR(inode->i_mode)) {
305			retval = acl ? -EINVAL : 0;
306			goto err_out;
307		}
308		break;
309	default:
310		BUG();
311	}
312	retval = v9fs_xattr_set(dentry, handler->name, value, size, flags);
313	if (!retval)
314		set_cached_acl(inode, handler->flags, acl);
315err_out:
316	posix_acl_release(acl);
317	return retval;
318}
319
320const struct xattr_handler v9fs_xattr_acl_access_handler = {
321	.name	= XATTR_NAME_POSIX_ACL_ACCESS,
322	.flags	= ACL_TYPE_ACCESS,
323	.get	= v9fs_xattr_get_acl,
324	.set	= v9fs_xattr_set_acl,
325};
326
327const struct xattr_handler v9fs_xattr_acl_default_handler = {
328	.name	= XATTR_NAME_POSIX_ACL_DEFAULT,
329	.flags	= ACL_TYPE_DEFAULT,
330	.get	= v9fs_xattr_get_acl,
331	.set	= v9fs_xattr_set_acl,
332};
  1// SPDX-License-Identifier: LGPL-2.1
  2/*
  3 * Copyright IBM Corporation, 2010
  4 * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
  5 */
  6
  7#include <linux/module.h>
  8#include <linux/fs.h>
  9#include <net/9p/9p.h>
 10#include <net/9p/client.h>
 11#include <linux/slab.h>
 12#include <linux/sched.h>
 13#include <linux/posix_acl_xattr.h>
 14#include "xattr.h"
 15#include "acl.h"
 16#include "v9fs.h"
 17#include "v9fs_vfs.h"
 18#include "fid.h"
 19
 20static struct posix_acl *v9fs_fid_get_acl(struct p9_fid *fid, const char *name)
 21{
 22	ssize_t size;
 23	void *value = NULL;
 24	struct posix_acl *acl = NULL;
 25
 26	size = v9fs_fid_xattr_get(fid, name, NULL, 0);
 27	if (size < 0)
 28		return ERR_PTR(size);
 29	if (size == 0)
 30		return ERR_PTR(-ENODATA);
 31
 32	value = kzalloc(size, GFP_NOFS);
 33	if (!value)
 34		return ERR_PTR(-ENOMEM);
 35
 36	size = v9fs_fid_xattr_get(fid, name, value, size);
 37	if (size < 0)
 38		acl = ERR_PTR(size);
 39	else if (size == 0)
 40		acl = ERR_PTR(-ENODATA);
 41	else
 42		acl = posix_acl_from_xattr(&init_user_ns, value, size);
 43	kfree(value);
 44	return acl;
 45}
 46
 47static struct posix_acl *v9fs_acl_get(struct dentry *dentry, const char *name)
 48{
 49	struct p9_fid *fid;
 50	struct posix_acl *acl = NULL;
 51
 52	fid = v9fs_fid_lookup(dentry);
 53	if (IS_ERR(fid))
 54		return ERR_CAST(fid);
 55
 56	acl = v9fs_fid_get_acl(fid, name);
 57	p9_fid_put(fid);
 58	return acl;
 59}
 60
 61static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, const char *name)
 62{
 63	int retval;
 64	struct posix_acl *acl = NULL;
 65
 66	acl = v9fs_fid_get_acl(fid, name);
 67	if (!IS_ERR(acl))
 68		return acl;
 69
 70	retval = PTR_ERR(acl);
 71	if (retval == -ENODATA || retval == -ENOSYS || retval == -EOPNOTSUPP)
 72		return NULL;
 73
 74	/* map everything else to -EIO */
 75	return ERR_PTR(-EIO);
 76}
 77
 78int v9fs_get_acl(struct inode *inode, struct p9_fid *fid)
 79{
 80	int retval = 0;
 81	struct posix_acl *pacl, *dacl;
 82	struct v9fs_session_info *v9ses;
 83
 84	v9ses = v9fs_inode2v9ses(inode);
 85	if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
 86			((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
 87		set_cached_acl(inode, ACL_TYPE_DEFAULT, NULL);
 88		set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
 89		return 0;
 90	}
 91	/* get the default/access acl values and cache them */
 92	dacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_DEFAULT);
 93	pacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_ACCESS);
 94
 95	if (!IS_ERR(dacl) && !IS_ERR(pacl)) {
 96		set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
 97		set_cached_acl(inode, ACL_TYPE_ACCESS, pacl);
 98	} else
 99		retval = -EIO;
100
101	if (!IS_ERR(dacl))
102		posix_acl_release(dacl);
103
104	if (!IS_ERR(pacl))
105		posix_acl_release(pacl);
106
107	return retval;
108}
109
110static struct posix_acl *v9fs_get_cached_acl(struct inode *inode, int type)
111{
112	struct posix_acl *acl;
113	/*
114	 * 9p Always cache the acl value when
115	 * instantiating the inode (v9fs_inode_from_fid)
116	 */
117	acl = get_cached_acl(inode, type);
118	BUG_ON(is_uncached_acl(acl));
119	return acl;
120}
121
122struct posix_acl *v9fs_iop_get_inode_acl(struct inode *inode, int type, bool rcu)
123{
124	struct v9fs_session_info *v9ses;
125
126	if (rcu)
127		return ERR_PTR(-ECHILD);
128
129	v9ses = v9fs_inode2v9ses(inode);
130	if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
131			((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
132		/*
133		 * On access = client  and acl = on mode get the acl
134		 * values from the server
135		 */
136		return NULL;
137	}
138	return v9fs_get_cached_acl(inode, type);
139
140}
141
142struct posix_acl *v9fs_iop_get_acl(struct mnt_idmap *idmap,
143				   struct dentry *dentry, int type)
144{
145	struct v9fs_session_info *v9ses;
146
147	v9ses = v9fs_dentry2v9ses(dentry);
148	/* We allow set/get/list of acl when access=client is not specified. */
149	if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
150		return v9fs_acl_get(dentry, posix_acl_xattr_name(type));
151	return v9fs_get_cached_acl(d_inode(dentry), type);
152}
153
154int v9fs_iop_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
155		     struct posix_acl *acl, int type)
156{
157	int retval;
158	size_t size = 0;
159	void *value = NULL;
160	const char *acl_name;
161	struct v9fs_session_info *v9ses;
162	struct inode *inode = d_inode(dentry);
163
164	if (acl) {
165		retval = posix_acl_valid(inode->i_sb->s_user_ns, acl);
166		if (retval)
167			goto err_out;
168
169		size = posix_acl_xattr_size(acl->a_count);
170
171		value = kzalloc(size, GFP_NOFS);
172		if (!value) {
173			retval = -ENOMEM;
174			goto err_out;
175		}
176
177		retval = posix_acl_to_xattr(&init_user_ns, acl, value, size);
178		if (retval < 0)
179			goto err_out;
180	}
181
182	/*
183	 * set the attribute on the remote. Without even looking at the
184	 * xattr value. We leave it to the server to validate
185	 */
186	acl_name = posix_acl_xattr_name(type);
187	v9ses = v9fs_dentry2v9ses(dentry);
188	if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) {
189		retval = v9fs_xattr_set(dentry, acl_name, value, size, 0);
190		goto err_out;
191	}
192
193	if (S_ISLNK(inode->i_mode)) {
194		retval = -EOPNOTSUPP;
195		goto err_out;
196	}
197
198	if (!inode_owner_or_capable(&nop_mnt_idmap, inode)) {
199		retval = -EPERM;
200		goto err_out;
201	}
202
203	switch (type) {
204	case ACL_TYPE_ACCESS:
205		if (acl) {
206			struct iattr iattr = {};
207			struct posix_acl *acl_mode = acl;
208
209			retval = posix_acl_update_mode(&nop_mnt_idmap, inode,
210						       &iattr.ia_mode,
211						       &acl_mode);
212			if (retval)
213				goto err_out;
214			if (!acl_mode) {
215				/*
216				 * ACL can be represented by the mode bits.
217				 * So don't update ACL below.
218				 */
219				kfree(value);
220				value = NULL;
221				size = 0;
222			}
223			iattr.ia_valid = ATTR_MODE;
224			/*
225			 * FIXME should we update ctime ?
226			 * What is the following setxattr update the mode ?
227			 */
228			v9fs_vfs_setattr_dotl(&nop_mnt_idmap, dentry, &iattr);
229		}
230		break;
231	case ACL_TYPE_DEFAULT:
232		if (!S_ISDIR(inode->i_mode)) {
233			retval = acl ? -EINVAL : 0;
234			goto err_out;
235		}
236		break;
237	}
238
239	retval = v9fs_xattr_set(dentry, acl_name, value, size, 0);
240	if (!retval)
241		set_cached_acl(inode, type, acl);
242
243err_out:
244	kfree(value);
245	return retval;
246}
247
248static int v9fs_set_acl(struct p9_fid *fid, int type, struct posix_acl *acl)
249{
250	int retval;
251	char *name;
252	size_t size;
253	void *buffer;
254
255	if (!acl)
256		return 0;
257
258	/* Set a setxattr request to server */
259	size = posix_acl_xattr_size(acl->a_count);
260	buffer = kmalloc(size, GFP_KERNEL);
261	if (!buffer)
262		return -ENOMEM;
263	retval = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
264	if (retval < 0)
265		goto err_free_out;
266	switch (type) {
267	case ACL_TYPE_ACCESS:
268		name = XATTR_NAME_POSIX_ACL_ACCESS;
269		break;
270	case ACL_TYPE_DEFAULT:
271		name = XATTR_NAME_POSIX_ACL_DEFAULT;
272		break;
273	default:
274		BUG();
275	}
276	retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0);
277err_free_out:
278	kfree(buffer);
279	return retval;
280}
281
282int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid)
283{
284	int retval = 0;
285	struct posix_acl *acl;
286
287	if (S_ISLNK(inode->i_mode))
288		return -EOPNOTSUPP;
289	acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS);
290	if (acl) {
291		retval = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
292		if (retval)
293			return retval;
294		set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
295		retval = v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
296		posix_acl_release(acl);
297	}
298	return retval;
299}
300
301int v9fs_set_create_acl(struct inode *inode, struct p9_fid *fid,
302			struct posix_acl *dacl, struct posix_acl *acl)
303{
304	set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
305	set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
306	v9fs_set_acl(fid, ACL_TYPE_DEFAULT, dacl);
307	v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
308	return 0;
309}
310
311void v9fs_put_acl(struct posix_acl *dacl,
312		  struct posix_acl *acl)
313{
314	posix_acl_release(dacl);
315	posix_acl_release(acl);
316}
317
318int v9fs_acl_mode(struct inode *dir, umode_t *modep,
319		  struct posix_acl **dpacl, struct posix_acl **pacl)
320{
321	int retval = 0;
322	umode_t mode = *modep;
323	struct posix_acl *acl = NULL;
324
325	if (!S_ISLNK(mode)) {
326		acl = v9fs_get_cached_acl(dir, ACL_TYPE_DEFAULT);
327		if (IS_ERR(acl))
328			return PTR_ERR(acl);
329		if (!acl)
330			mode &= ~current_umask();
331	}
332	if (acl) {
333		if (S_ISDIR(mode))
334			*dpacl = posix_acl_dup(acl);
335		retval = __posix_acl_create(&acl, GFP_NOFS, &mode);
336		if (retval < 0)
337			return retval;
338		if (retval > 0)
339			*pacl = acl;
340		else
341			posix_acl_release(acl);
342	}
343	*modep  = mode;
344	return 0;
345}