Loading...
1/*
2 * Copyright (C) 2008 Christoph Hellwig.
3 * Portions Copyright (C) 2000-2008 Silicon Graphics, Inc.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include "xfs.h"
20#include "xfs_da_btree.h"
21#include "xfs_bmap_btree.h"
22#include "xfs_inode.h"
23#include "xfs_attr.h"
24#include "xfs_attr_leaf.h"
25#include "xfs_acl.h"
26#include "xfs_vnodeops.h"
27
28#include <linux/posix_acl_xattr.h>
29#include <linux/xattr.h>
30
31
32static int
33xfs_xattr_get(struct dentry *dentry, const char *name,
34 void *value, size_t size, int xflags)
35{
36 struct xfs_inode *ip = XFS_I(dentry->d_inode);
37 int error, asize = size;
38
39 if (strcmp(name, "") == 0)
40 return -EINVAL;
41
42 /* Convert Linux syscall to XFS internal ATTR flags */
43 if (!size) {
44 xflags |= ATTR_KERNOVAL;
45 value = NULL;
46 }
47
48 error = -xfs_attr_get(ip, (unsigned char *)name, value, &asize, xflags);
49 if (error)
50 return error;
51 return asize;
52}
53
54static int
55xfs_xattr_set(struct dentry *dentry, const char *name, const void *value,
56 size_t size, int flags, int xflags)
57{
58 struct xfs_inode *ip = XFS_I(dentry->d_inode);
59
60 if (strcmp(name, "") == 0)
61 return -EINVAL;
62
63 /* Convert Linux syscall to XFS internal ATTR flags */
64 if (flags & XATTR_CREATE)
65 xflags |= ATTR_CREATE;
66 if (flags & XATTR_REPLACE)
67 xflags |= ATTR_REPLACE;
68
69 if (!value)
70 return -xfs_attr_remove(ip, (unsigned char *)name, xflags);
71 return -xfs_attr_set(ip, (unsigned char *)name,
72 (void *)value, size, xflags);
73}
74
75static const struct xattr_handler xfs_xattr_user_handler = {
76 .prefix = XATTR_USER_PREFIX,
77 .flags = 0, /* no flags implies user namespace */
78 .get = xfs_xattr_get,
79 .set = xfs_xattr_set,
80};
81
82static const struct xattr_handler xfs_xattr_trusted_handler = {
83 .prefix = XATTR_TRUSTED_PREFIX,
84 .flags = ATTR_ROOT,
85 .get = xfs_xattr_get,
86 .set = xfs_xattr_set,
87};
88
89static const struct xattr_handler xfs_xattr_security_handler = {
90 .prefix = XATTR_SECURITY_PREFIX,
91 .flags = ATTR_SECURE,
92 .get = xfs_xattr_get,
93 .set = xfs_xattr_set,
94};
95
96const struct xattr_handler *xfs_xattr_handlers[] = {
97 &xfs_xattr_user_handler,
98 &xfs_xattr_trusted_handler,
99 &xfs_xattr_security_handler,
100#ifdef CONFIG_XFS_POSIX_ACL
101 &xfs_xattr_acl_access_handler,
102 &xfs_xattr_acl_default_handler,
103#endif
104 NULL
105};
106
107static unsigned int xfs_xattr_prefix_len(int flags)
108{
109 if (flags & XFS_ATTR_SECURE)
110 return sizeof("security");
111 else if (flags & XFS_ATTR_ROOT)
112 return sizeof("trusted");
113 else
114 return sizeof("user");
115}
116
117static const char *xfs_xattr_prefix(int flags)
118{
119 if (flags & XFS_ATTR_SECURE)
120 return xfs_xattr_security_handler.prefix;
121 else if (flags & XFS_ATTR_ROOT)
122 return xfs_xattr_trusted_handler.prefix;
123 else
124 return xfs_xattr_user_handler.prefix;
125}
126
127static int
128xfs_xattr_put_listent(
129 struct xfs_attr_list_context *context,
130 int flags,
131 unsigned char *name,
132 int namelen,
133 int valuelen,
134 unsigned char *value)
135{
136 unsigned int prefix_len = xfs_xattr_prefix_len(flags);
137 char *offset;
138 int arraytop;
139
140 ASSERT(context->count >= 0);
141
142 /*
143 * Only show root namespace entries if we are actually allowed to
144 * see them.
145 */
146 if ((flags & XFS_ATTR_ROOT) && !capable(CAP_SYS_ADMIN))
147 return 0;
148
149 arraytop = context->count + prefix_len + namelen + 1;
150 if (arraytop > context->firstu) {
151 context->count = -1; /* insufficient space */
152 return 1;
153 }
154 offset = (char *)context->alist + context->count;
155 strncpy(offset, xfs_xattr_prefix(flags), prefix_len);
156 offset += prefix_len;
157 strncpy(offset, (char *)name, namelen); /* real name */
158 offset += namelen;
159 *offset = '\0';
160 context->count += prefix_len + namelen + 1;
161 return 0;
162}
163
164static int
165xfs_xattr_put_listent_sizes(
166 struct xfs_attr_list_context *context,
167 int flags,
168 unsigned char *name,
169 int namelen,
170 int valuelen,
171 unsigned char *value)
172{
173 context->count += xfs_xattr_prefix_len(flags) + namelen + 1;
174 return 0;
175}
176
177static int
178list_one_attr(const char *name, const size_t len, void *data,
179 size_t size, ssize_t *result)
180{
181 char *p = data + *result;
182
183 *result += len;
184 if (!size)
185 return 0;
186 if (*result > size)
187 return -ERANGE;
188
189 strcpy(p, name);
190 return 0;
191}
192
193ssize_t
194xfs_vn_listxattr(struct dentry *dentry, char *data, size_t size)
195{
196 struct xfs_attr_list_context context;
197 struct attrlist_cursor_kern cursor = { 0 };
198 struct inode *inode = dentry->d_inode;
199 int error;
200
201 /*
202 * First read the regular on-disk attributes.
203 */
204 memset(&context, 0, sizeof(context));
205 context.dp = XFS_I(inode);
206 context.cursor = &cursor;
207 context.resynch = 1;
208 context.alist = data;
209 context.bufsize = size;
210 context.firstu = context.bufsize;
211
212 if (size)
213 context.put_listent = xfs_xattr_put_listent;
214 else
215 context.put_listent = xfs_xattr_put_listent_sizes;
216
217 xfs_attr_list_int(&context);
218 if (context.count < 0)
219 return -ERANGE;
220
221 /*
222 * Then add the two synthetic ACL attributes.
223 */
224 if (posix_acl_access_exists(inode)) {
225 error = list_one_attr(POSIX_ACL_XATTR_ACCESS,
226 strlen(POSIX_ACL_XATTR_ACCESS) + 1,
227 data, size, &context.count);
228 if (error)
229 return error;
230 }
231
232 if (posix_acl_default_exists(inode)) {
233 error = list_one_attr(POSIX_ACL_XATTR_DEFAULT,
234 strlen(POSIX_ACL_XATTR_DEFAULT) + 1,
235 data, size, &context.count);
236 if (error)
237 return error;
238 }
239
240 return context.count;
241}
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2008 Christoph Hellwig.
4 * Portions Copyright (C) 2000-2008 Silicon Graphics, Inc.
5 */
6
7#include "xfs.h"
8#include "xfs_shared.h"
9#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_da_format.h"
12#include "xfs_trans_resv.h"
13#include "xfs_mount.h"
14#include "xfs_inode.h"
15#include "xfs_da_btree.h"
16#include "xfs_attr.h"
17#include "xfs_acl.h"
18#include "xfs_log.h"
19#include "xfs_xattr.h"
20
21#include <linux/posix_acl_xattr.h>
22
23/*
24 * Get permission to use log-assisted atomic exchange of file extents.
25 *
26 * Callers must not be running any transactions or hold any inode locks, and
27 * they must release the permission by calling xlog_drop_incompat_feat
28 * when they're done.
29 */
30static inline int
31xfs_attr_grab_log_assist(
32 struct xfs_mount *mp)
33{
34 int error = 0;
35
36 /*
37 * Protect ourselves from an idle log clearing the logged xattrs log
38 * incompat feature bit.
39 */
40 xlog_use_incompat_feat(mp->m_log);
41
42 /*
43 * If log-assisted xattrs are already enabled, the caller can use the
44 * log assisted swap functions with the log-incompat reference we got.
45 */
46 if (xfs_sb_version_haslogxattrs(&mp->m_sb))
47 return 0;
48
49 /*
50 * Check if the filesystem featureset is new enough to set this log
51 * incompat feature bit. Strictly speaking, the minimum requirement is
52 * a V5 filesystem for the superblock field, but we'll require rmap
53 * or reflink to avoid having to deal with really old kernels.
54 */
55 if (!xfs_has_reflink(mp) && !xfs_has_rmapbt(mp)) {
56 error = -EOPNOTSUPP;
57 goto drop_incompat;
58 }
59
60 /* Enable log-assisted xattrs. */
61 error = xfs_add_incompat_log_feature(mp,
62 XFS_SB_FEAT_INCOMPAT_LOG_XATTRS);
63 if (error)
64 goto drop_incompat;
65
66 xfs_warn_mount(mp, XFS_OPSTATE_WARNED_LARP,
67 "EXPERIMENTAL logged extended attributes feature in use. Use at your own risk!");
68
69 return 0;
70drop_incompat:
71 xlog_drop_incompat_feat(mp->m_log);
72 return error;
73}
74
75static inline void
76xfs_attr_rele_log_assist(
77 struct xfs_mount *mp)
78{
79 xlog_drop_incompat_feat(mp->m_log);
80}
81
82static inline bool
83xfs_attr_want_log_assist(
84 struct xfs_mount *mp)
85{
86#ifdef DEBUG
87 /* Logged xattrs require a V5 super for log_incompat */
88 return xfs_has_crc(mp) && xfs_globals.larp;
89#else
90 return false;
91#endif
92}
93
94/*
95 * Set or remove an xattr, having grabbed the appropriate logging resources
96 * prior to calling libxfs.
97 */
98int
99xfs_attr_change(
100 struct xfs_da_args *args)
101{
102 struct xfs_mount *mp = args->dp->i_mount;
103 bool use_logging = false;
104 int error;
105
106 ASSERT(!(args->op_flags & XFS_DA_OP_LOGGED));
107
108 if (xfs_attr_want_log_assist(mp)) {
109 error = xfs_attr_grab_log_assist(mp);
110 if (error)
111 return error;
112
113 args->op_flags |= XFS_DA_OP_LOGGED;
114 use_logging = true;
115 }
116
117 error = xfs_attr_set(args);
118
119 if (use_logging)
120 xfs_attr_rele_log_assist(mp);
121 return error;
122}
123
124
125static int
126xfs_xattr_get(const struct xattr_handler *handler, struct dentry *unused,
127 struct inode *inode, const char *name, void *value, size_t size)
128{
129 struct xfs_da_args args = {
130 .dp = XFS_I(inode),
131 .attr_filter = handler->flags,
132 .name = name,
133 .namelen = strlen(name),
134 .value = value,
135 .valuelen = size,
136 };
137 int error;
138
139 if (xfs_ifork_zapped(XFS_I(inode), XFS_ATTR_FORK))
140 return -EIO;
141
142 error = xfs_attr_get(&args);
143 if (error)
144 return error;
145 return args.valuelen;
146}
147
148static int
149xfs_xattr_set(const struct xattr_handler *handler,
150 struct mnt_idmap *idmap, struct dentry *unused,
151 struct inode *inode, const char *name, const void *value,
152 size_t size, int flags)
153{
154 struct xfs_da_args args = {
155 .dp = XFS_I(inode),
156 .attr_filter = handler->flags,
157 .attr_flags = flags,
158 .name = name,
159 .namelen = strlen(name),
160 .value = (void *)value,
161 .valuelen = size,
162 };
163 int error;
164
165 error = xfs_attr_change(&args);
166 if (!error && (handler->flags & XFS_ATTR_ROOT))
167 xfs_forget_acl(inode, name);
168 return error;
169}
170
171static const struct xattr_handler xfs_xattr_user_handler = {
172 .prefix = XATTR_USER_PREFIX,
173 .flags = 0, /* no flags implies user namespace */
174 .get = xfs_xattr_get,
175 .set = xfs_xattr_set,
176};
177
178static const struct xattr_handler xfs_xattr_trusted_handler = {
179 .prefix = XATTR_TRUSTED_PREFIX,
180 .flags = XFS_ATTR_ROOT,
181 .get = xfs_xattr_get,
182 .set = xfs_xattr_set,
183};
184
185static const struct xattr_handler xfs_xattr_security_handler = {
186 .prefix = XATTR_SECURITY_PREFIX,
187 .flags = XFS_ATTR_SECURE,
188 .get = xfs_xattr_get,
189 .set = xfs_xattr_set,
190};
191
192const struct xattr_handler * const xfs_xattr_handlers[] = {
193 &xfs_xattr_user_handler,
194 &xfs_xattr_trusted_handler,
195 &xfs_xattr_security_handler,
196 NULL
197};
198
199static void
200__xfs_xattr_put_listent(
201 struct xfs_attr_list_context *context,
202 char *prefix,
203 int prefix_len,
204 unsigned char *name,
205 int namelen)
206{
207 char *offset;
208 int arraytop;
209
210 if (context->count < 0 || context->seen_enough)
211 return;
212
213 if (!context->buffer)
214 goto compute_size;
215
216 arraytop = context->count + prefix_len + namelen + 1;
217 if (arraytop > context->firstu) {
218 context->count = -1; /* insufficient space */
219 context->seen_enough = 1;
220 return;
221 }
222 offset = context->buffer + context->count;
223 memcpy(offset, prefix, prefix_len);
224 offset += prefix_len;
225 strncpy(offset, (char *)name, namelen); /* real name */
226 offset += namelen;
227 *offset = '\0';
228
229compute_size:
230 context->count += prefix_len + namelen + 1;
231 return;
232}
233
234static void
235xfs_xattr_put_listent(
236 struct xfs_attr_list_context *context,
237 int flags,
238 unsigned char *name,
239 int namelen,
240 int valuelen)
241{
242 char *prefix;
243 int prefix_len;
244
245 ASSERT(context->count >= 0);
246
247 if (flags & XFS_ATTR_ROOT) {
248#ifdef CONFIG_XFS_POSIX_ACL
249 if (namelen == SGI_ACL_FILE_SIZE &&
250 strncmp(name, SGI_ACL_FILE,
251 SGI_ACL_FILE_SIZE) == 0) {
252 __xfs_xattr_put_listent(
253 context, XATTR_SYSTEM_PREFIX,
254 XATTR_SYSTEM_PREFIX_LEN,
255 XATTR_POSIX_ACL_ACCESS,
256 strlen(XATTR_POSIX_ACL_ACCESS));
257 } else if (namelen == SGI_ACL_DEFAULT_SIZE &&
258 strncmp(name, SGI_ACL_DEFAULT,
259 SGI_ACL_DEFAULT_SIZE) == 0) {
260 __xfs_xattr_put_listent(
261 context, XATTR_SYSTEM_PREFIX,
262 XATTR_SYSTEM_PREFIX_LEN,
263 XATTR_POSIX_ACL_DEFAULT,
264 strlen(XATTR_POSIX_ACL_DEFAULT));
265 }
266#endif
267
268 /*
269 * Only show root namespace entries if we are actually allowed to
270 * see them.
271 */
272 if (!capable(CAP_SYS_ADMIN))
273 return;
274
275 prefix = XATTR_TRUSTED_PREFIX;
276 prefix_len = XATTR_TRUSTED_PREFIX_LEN;
277 } else if (flags & XFS_ATTR_SECURE) {
278 prefix = XATTR_SECURITY_PREFIX;
279 prefix_len = XATTR_SECURITY_PREFIX_LEN;
280 } else {
281 prefix = XATTR_USER_PREFIX;
282 prefix_len = XATTR_USER_PREFIX_LEN;
283 }
284
285 __xfs_xattr_put_listent(context, prefix, prefix_len, name,
286 namelen);
287 return;
288}
289
290ssize_t
291xfs_vn_listxattr(
292 struct dentry *dentry,
293 char *data,
294 size_t size)
295{
296 struct xfs_attr_list_context context;
297 struct inode *inode = d_inode(dentry);
298 int error;
299
300 if (xfs_ifork_zapped(XFS_I(inode), XFS_ATTR_FORK))
301 return -EIO;
302
303 /*
304 * First read the regular on-disk attributes.
305 */
306 memset(&context, 0, sizeof(context));
307 context.dp = XFS_I(inode);
308 context.resynch = 1;
309 context.buffer = size ? data : NULL;
310 context.bufsize = size;
311 context.firstu = context.bufsize;
312 context.put_listent = xfs_xattr_put_listent;
313
314 error = xfs_attr_list(&context);
315 if (error)
316 return error;
317 if (context.count < 0)
318 return -ERANGE;
319
320 return context.count;
321}