blob: 87217dd0433e5a0ec9b8f958bf88a7d2217d6aa6 [file] [log] [blame]
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +05301/*
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 <linux/sched.h>
Al Viro070b3652015-04-01 20:17:51 -040018#include <linux/uio.h>
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053019#include <net/9p/9p.h>
20#include <net/9p/client.h>
21
22#include "fid.h"
23#include "xattr.h"
24
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053025ssize_t v9fs_fid_xattr_get(struct p9_fid *fid, const char *name,
26 void *buffer, size_t buffer_size)
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053027{
28 ssize_t retval;
Al Viroe1200fe62015-04-01 23:42:28 -040029 u64 attr_size;
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053030 struct p9_fid *attr_fid;
Al Viroe1200fe62015-04-01 23:42:28 -040031 struct kvec kvec = {.iov_base = buffer, .iov_len = buffer_size};
32 struct iov_iter to;
33 int err;
34
David Howellsaa563d72018-10-20 00:57:56 +010035 iov_iter_kvec(&to, READ, &kvec, 1, buffer_size);
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053036
37 attr_fid = p9_client_xattrwalk(fid, name, &attr_size);
38 if (IS_ERR(attr_fid)) {
39 retval = PTR_ERR(attr_fid);
Joe Perches5d385152011-11-28 10:40:46 -080040 p9_debug(P9_DEBUG_VFS, "p9_client_attrwalk failed %zd\n",
41 retval);
Al Viroe1200fe62015-04-01 23:42:28 -040042 return retval;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053043 }
44 if (attr_size > buffer_size) {
Al Viroe1200fe62015-04-01 23:42:28 -040045 if (!buffer_size) /* request to get the attr_size */
46 retval = attr_size;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053047 else
Al Viroe1200fe62015-04-01 23:42:28 -040048 retval = -ERANGE;
49 } else {
50 iov_iter_truncate(&to, attr_size);
51 retval = p9_client_read(attr_fid, 0, &to, &err);
52 if (err)
53 retval = err;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053054 }
Al Viroe1200fe62015-04-01 23:42:28 -040055 p9_client_clunk(attr_fid);
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053056 return retval;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053057}
58
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053059
60/*
61 * v9fs_xattr_get()
62 *
63 * Copy an extended attribute into the buffer
64 * provided, or compute the buffer size required.
65 * Buffer is NULL to compute the size of the buffer required.
66 *
67 * Returns a negative error number on failure, or the number of bytes
68 * used / required on success.
69 */
70ssize_t v9fs_xattr_get(struct dentry *dentry, const char *name,
71 void *buffer, size_t buffer_size)
72{
73 struct p9_fid *fid;
Jianyong Wu6636b6d2020-09-23 22:11:46 +080074 int ret;
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053075
Joe Perches5d385152011-11-28 10:40:46 -080076 p9_debug(P9_DEBUG_VFS, "name = %s value_len = %zu\n",
77 name, buffer_size);
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053078 fid = v9fs_fid_lookup(dentry);
79 if (IS_ERR(fid))
80 return PTR_ERR(fid);
Jianyong Wu6636b6d2020-09-23 22:11:46 +080081 ret = v9fs_fid_xattr_get(fid, name, buffer, buffer_size);
82 p9_client_clunk(fid);
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053083
Jianyong Wu6636b6d2020-09-23 22:11:46 +080084 return ret;
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053085}
86
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053087/*
88 * v9fs_xattr_set()
89 *
90 * Create, replace or remove an extended attribute for this inode. Buffer
91 * is NULL to remove an existing extended attribute, and non-NULL to
92 * either replace an existing extended attribute, or create a new extended
93 * attribute. The flags XATTR_REPLACE and XATTR_CREATE
94 * specify that an extended attribute must exist and must not exist
95 * previous to the call, respectively.
96 *
97 * Returns 0, or a negative error number on failure.
98 */
99int v9fs_xattr_set(struct dentry *dentry, const char *name,
100 const void *value, size_t value_len, int flags)
101{
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800102 int ret;
103 struct p9_fid *fid;
104
105 fid = v9fs_fid_lookup(dentry);
106 if (IS_ERR(fid))
107 return PTR_ERR(fid);
108 ret = v9fs_fid_xattr_set(fid, name, value, value_len, flags);
109 p9_client_clunk(fid);
110 return ret;
Al Viro38baba92013-01-31 12:34:58 -0500111}
112
113int v9fs_fid_xattr_set(struct p9_fid *fid, const char *name,
114 const void *value, size_t value_len, int flags)
115{
Al Viro070b3652015-04-01 20:17:51 -0400116 struct kvec kvec = {.iov_base = (void *)value, .iov_len = value_len};
117 struct iov_iter from;
piaojun31117842018-07-25 11:13:16 +0800118 int retval, err;
Al Viro070b3652015-04-01 20:17:51 -0400119
David Howellsaa563d72018-10-20 00:57:56 +0100120 iov_iter_kvec(&from, WRITE, &kvec, 1, value_len);
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +0530121
Joe Perches5d385152011-11-28 10:40:46 -0800122 p9_debug(P9_DEBUG_VFS, "name = %s value_len = %zu flags = %d\n",
123 name, value_len, flags);
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +0530124
Al Viro38baba92013-01-31 12:34:58 -0500125 /* Clone it */
Al Viro7d50a292016-08-03 11:12:12 -0400126 fid = clone_fid(fid);
Al Viro38baba92013-01-31 12:34:58 -0500127 if (IS_ERR(fid))
128 return PTR_ERR(fid);
129
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +0530130 /*
131 * On success fid points to xattr
132 */
133 retval = p9_client_xattrcreate(fid, name, value_len, flags);
Al Viro070b3652015-04-01 20:17:51 -0400134 if (retval < 0)
Joe Perches5d385152011-11-28 10:40:46 -0800135 p9_debug(P9_DEBUG_VFS, "p9_client_xattrcreate failed %d\n",
136 retval);
Al Viro070b3652015-04-01 20:17:51 -0400137 else
138 p9_client_write(fid, 0, &from, &retval);
piaojun31117842018-07-25 11:13:16 +0800139 err = p9_client_clunk(fid);
140 if (!retval && err)
141 retval = err;
Geyslan G. Bembdd5c282013-10-21 16:47:58 -0300142 return retval;
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +0530143}
144
145ssize_t v9fs_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
146{
147 return v9fs_xattr_get(dentry, NULL, buffer, buffer_size);
148}
149
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200150static int v9fs_xattr_handler_get(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -0400151 struct dentry *dentry, struct inode *inode,
152 const char *name, void *buffer, size_t size)
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200153{
154 const char *full_name = xattr_full_name(handler, name);
155
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200156 return v9fs_xattr_get(dentry, full_name, buffer, size);
157}
158
159static int v9fs_xattr_handler_set(const struct xattr_handler *handler,
Al Viro59301222016-05-27 10:19:30 -0400160 struct dentry *dentry, struct inode *inode,
161 const char *name, const void *value,
162 size_t size, int flags)
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200163{
164 const char *full_name = xattr_full_name(handler, name);
165
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200166 return v9fs_xattr_set(dentry, full_name, value, size, flags);
167}
168
169static struct xattr_handler v9fs_xattr_user_handler = {
170 .prefix = XATTR_USER_PREFIX,
171 .get = v9fs_xattr_handler_get,
172 .set = v9fs_xattr_handler_set,
173};
174
175static struct xattr_handler v9fs_xattr_trusted_handler = {
176 .prefix = XATTR_TRUSTED_PREFIX,
177 .get = v9fs_xattr_handler_get,
178 .set = v9fs_xattr_handler_set,
179};
180
181#ifdef CONFIG_9P_FS_SECURITY
182static struct xattr_handler v9fs_xattr_security_handler = {
183 .prefix = XATTR_SECURITY_PREFIX,
184 .get = v9fs_xattr_handler_get,
185 .set = v9fs_xattr_handler_set,
186};
187#endif
188
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +0530189const struct xattr_handler *v9fs_xattr_handlers[] = {
190 &v9fs_xattr_user_handler,
Jim Garlickd9a73852013-05-29 12:09:39 -0700191 &v9fs_xattr_trusted_handler,
Aneesh Kumar K.V7a4566b2010-09-28 00:27:39 +0530192#ifdef CONFIG_9P_FS_POSIX_ACL
193 &v9fs_xattr_acl_access_handler,
194 &v9fs_xattr_acl_default_handler,
195#endif
Jim Garlickd9a73852013-05-29 12:09:39 -0700196#ifdef CONFIG_9P_FS_SECURITY
197 &v9fs_xattr_security_handler,
198#endif
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +0530199 NULL
200};