3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License version 2 for more details (a copy is included
13 * in the LICENSE file that accompanied this code).
15 * You should have received a copy of the GNU General Public License
16 * version 2 along with this program; If not, see http://www.gnu.org/licenses
18 * Please visit http://www.xyratex.com/contact if you need additional
19 * information or have any questions.
25 * Copyright 2012 Xyratex Technology Limited
27 * Copyright (c) 2013, 2017, Intel Corporation.
29 * Author: Andrew Perepechko <Andrew_Perepechko@xyratex.com>
33 #define DEBUG_SUBSYSTEM S_LLITE
36 #include <linux/sched.h>
38 #include <obd_support.h>
39 #include <lustre_dlm.h>
40 #include "llite_internal.h"
42 /* If we ever have hundreds of extended attributes, we might want to consider
43 * using a hash or a tree structure instead of list for faster lookups.
45 struct ll_xattr_entry {
46 struct list_head xe_list; /* protected with
47 * lli_xattrs_list_rwsem */
48 char *xe_name; /* xattr name, \0-terminated */
49 char *xe_value; /* xattr value */
50 unsigned xe_namelen; /* strlen(xe_name) + 1 */
51 unsigned xe_vallen; /* xattr value length */
54 static struct kmem_cache *xattr_kmem;
55 static struct lu_kmem_descr xattr_caches[] = {
57 .ckd_cache = &xattr_kmem,
58 .ckd_name = "xattr_kmem",
59 .ckd_size = sizeof(struct ll_xattr_entry)
66 int ll_xattr_init(void)
68 return lu_kmem_init(xattr_caches);
71 void ll_xattr_fini(void)
73 lu_kmem_fini(xattr_caches);
77 * Initializes xattr cache for an inode.
79 * This initializes the xattr list and marks cache presence.
81 static void ll_xattr_cache_init(struct ll_inode_info *lli)
87 INIT_LIST_HEAD(&lli->lli_xattrs);
88 set_bit(LLIF_XATTR_CACHE, &lli->lli_flags);
92 * This looks for a specific extended attribute.
94 * Find in @cache and return @xattr_name attribute in @xattr,
95 * for the NULL @xattr_name return the first cached @xattr.
98 * \retval -ENODATA if not found
100 static int ll_xattr_cache_find(struct list_head *cache,
101 const char *xattr_name,
102 struct ll_xattr_entry **xattr)
104 struct ll_xattr_entry *entry;
108 list_for_each_entry(entry, cache, xe_list) {
109 /* xattr_name == NULL means look for any entry */
110 if (xattr_name == NULL ||
111 strcmp(xattr_name, entry->xe_name) == 0) {
113 CDEBUG(D_CACHE, "find: [%s]=%.*s\n",
114 entry->xe_name, entry->xe_vallen,
124 * This adds an xattr.
126 * Add @xattr_name attr with @xattr_val value and @xattr_val_len length,
129 * \retval -ENOMEM if no memory could be allocated for the cached attr
130 * \retval -EPROTO if duplicate xattr is being added
132 static int ll_xattr_cache_add(struct list_head *cache,
133 const char *xattr_name,
134 const char *xattr_val,
135 unsigned xattr_val_len)
137 struct ll_xattr_entry *xattr;
141 if (ll_xattr_cache_find(cache, xattr_name, &xattr) == 0) {
142 CDEBUG(D_CACHE, "duplicate xattr: [%s]\n", xattr_name);
146 OBD_SLAB_ALLOC_PTR_GFP(xattr, xattr_kmem, GFP_NOFS);
148 CDEBUG(D_CACHE, "failed to allocate xattr\n");
152 xattr->xe_namelen = strlen(xattr_name) + 1;
154 OBD_ALLOC(xattr->xe_name, xattr->xe_namelen);
155 if (!xattr->xe_name) {
156 CDEBUG(D_CACHE, "failed to alloc xattr name %u\n",
160 OBD_ALLOC(xattr->xe_value, xattr_val_len);
161 if (!xattr->xe_value) {
162 CDEBUG(D_CACHE, "failed to alloc xattr value %d\n",
167 memcpy(xattr->xe_name, xattr_name, xattr->xe_namelen);
168 memcpy(xattr->xe_value, xattr_val, xattr_val_len);
169 xattr->xe_vallen = xattr_val_len;
170 list_add(&xattr->xe_list, cache);
172 CDEBUG(D_CACHE, "set: [%s]=%.*s\n", xattr_name,
173 xattr_val_len, xattr_val);
177 OBD_FREE(xattr->xe_name, xattr->xe_namelen);
179 OBD_SLAB_FREE_PTR(xattr, xattr_kmem);
185 * This removes an extended attribute from cache.
187 * Remove @xattr_name attribute from @cache.
190 * \retval -ENODATA if @xattr_name is not cached
192 static int ll_xattr_cache_del(struct list_head *cache,
193 const char *xattr_name)
195 struct ll_xattr_entry *xattr;
199 CDEBUG(D_CACHE, "del xattr: %s\n", xattr_name);
201 if (ll_xattr_cache_find(cache, xattr_name, &xattr) == 0) {
202 list_del(&xattr->xe_list);
203 OBD_FREE(xattr->xe_name, xattr->xe_namelen);
204 OBD_FREE(xattr->xe_value, xattr->xe_vallen);
205 OBD_SLAB_FREE_PTR(xattr, xattr_kmem);
214 * This iterates cached extended attributes.
216 * Walk over cached attributes in @cache and
217 * fill in @xld_buffer or only calculate buffer
218 * size if @xld_buffer is NULL.
220 * \retval >= 0 buffer list size
221 * \retval -ENODATA if the list cannot fit @xld_size buffer
223 static int ll_xattr_cache_list(struct list_head *cache,
227 struct ll_xattr_entry *xattr, *tmp;
232 list_for_each_entry_safe(xattr, tmp, cache, xe_list) {
233 CDEBUG(D_CACHE, "list: buffer=%p[%d] name=%s\n",
234 xld_buffer, xld_tail, xattr->xe_name);
237 xld_size -= xattr->xe_namelen;
240 memcpy(&xld_buffer[xld_tail],
241 xattr->xe_name, xattr->xe_namelen);
243 xld_tail += xattr->xe_namelen;
253 * Check if the xattr cache is initialized (filled).
255 * \retval 0 @cache is not initialized
256 * \retval 1 @cache is initialized
258 static int ll_xattr_cache_valid(struct ll_inode_info *lli)
260 return test_bit(LLIF_XATTR_CACHE, &lli->lli_flags);
264 * This finalizes the xattr cache.
266 * Free all xattr memory. @lli is the inode info pointer.
268 * \retval 0 no error occured
270 static int ll_xattr_cache_destroy_locked(struct ll_inode_info *lli)
274 if (!ll_xattr_cache_valid(lli))
277 while (ll_xattr_cache_del(&lli->lli_xattrs, NULL) == 0)
280 clear_bit(LLIF_XATTR_CACHE, &lli->lli_flags);
285 int ll_xattr_cache_destroy(struct inode *inode)
287 struct ll_inode_info *lli = ll_i2info(inode);
292 down_write(&lli->lli_xattrs_list_rwsem);
293 rc = ll_xattr_cache_destroy_locked(lli);
294 up_write(&lli->lli_xattrs_list_rwsem);
300 * Match or enqueue a PR lock.
302 * Find or request an LDLM lock with xattr data.
303 * Since LDLM does not provide API for atomic match_or_enqueue,
304 * the function handles it with a separate enq lock.
305 * If successful, the function exits with the list lock held.
307 * \retval 0 no error occured
308 * \retval -ENOMEM not enough memory
310 static int ll_xattr_find_get_lock(struct inode *inode,
311 struct lookup_intent *oit,
312 struct ptlrpc_request **req)
315 struct lustre_handle lockh = { 0 };
316 struct md_op_data *op_data;
317 struct ll_inode_info *lli = ll_i2info(inode);
318 struct ll_sb_info *sbi = ll_i2sbi(inode);
319 struct obd_export *exp = sbi->ll_md_exp;
324 mutex_lock(&lli->lli_xattrs_enq_lock);
325 /* inode may have been shrunk and recreated, so data is gone, match lock
326 * only when data exists. */
327 if (ll_xattr_cache_valid(lli)) {
328 /* Try matching first. */
329 mode = ll_take_md_lock(inode, MDS_INODELOCK_XATTR, &lockh, 0,
332 /* fake oit in mdc_revalidate_lock() manner */
333 oit->it_lock_handle = lockh.cookie;
334 oit->it_lock_mode = mode;
339 /* Enqueue if the lock isn't cached locally. */
340 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
341 LUSTRE_OPC_ANY, NULL);
342 if (IS_ERR(op_data)) {
343 mutex_unlock(&lli->lli_xattrs_enq_lock);
344 RETURN(PTR_ERR(op_data));
347 op_data->op_valid = OBD_MD_FLXATTR | OBD_MD_FLXATTRLS;
349 rc = md_intent_lock(exp, op_data, oit, req, &ll_md_blocking_ast, 0);
350 ll_finish_md_op_data(op_data);
351 *req = oit->it_request;
354 CDEBUG(D_CACHE, "md_intent_lock failed with %d for fid "DFID"\n",
355 rc, PFID(ll_inode2fid(inode)));
356 mutex_unlock(&lli->lli_xattrs_enq_lock);
361 down_write(&lli->lli_xattrs_list_rwsem);
362 mutex_unlock(&lli->lli_xattrs_enq_lock);
368 * Refill the xattr cache.
370 * Fetch and cache the whole of xattrs for @inode, acquiring a read lock.
372 * \retval 0 no error occured
373 * \retval -EPROTO network protocol error
374 * \retval -ENOMEM not enough memory for the cache
376 static int ll_xattr_cache_refill(struct inode *inode)
378 struct lookup_intent oit = { .it_op = IT_GETXATTR };
379 struct ll_sb_info *sbi = ll_i2sbi(inode);
380 struct ptlrpc_request *req = NULL;
381 const char *xdata, *xval, *xtail, *xvtail;
382 struct ll_inode_info *lli = ll_i2info(inode);
383 struct mdt_body *body;
389 rc = ll_xattr_find_get_lock(inode, &oit, &req);
393 /* Do we have the data at this point? */
394 if (ll_xattr_cache_valid(lli)) {
395 ll_stats_ops_tally(sbi, LPROC_LL_GETXATTR_HITS, 1);
396 ll_intent_drop_lock(&oit);
397 GOTO(err_req, rc = 0);
400 /* Matched but no cache? Cancelled on error by a parallel refill. */
401 if (unlikely(req == NULL)) {
402 CDEBUG(D_CACHE, "cancelled by a parallel getxattr\n");
403 ll_intent_drop_lock(&oit);
404 GOTO(err_unlock, rc = -EAGAIN);
407 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
409 CERROR("no MDT BODY in the refill xattr reply\n");
410 GOTO(err_cancel, rc = -EPROTO);
412 /* do not need swab xattr data */
413 xdata = req_capsule_server_sized_get(&req->rq_pill, &RMF_EADATA,
414 body->mbo_eadatasize);
415 xval = req_capsule_server_sized_get(&req->rq_pill, &RMF_EAVALS,
417 xsizes = req_capsule_server_sized_get(&req->rq_pill, &RMF_EAVALS_LENS,
418 body->mbo_max_mdsize *
420 if (xdata == NULL || xval == NULL || xsizes == NULL) {
421 CERROR("wrong setxattr reply\n");
422 GOTO(err_cancel, rc = -EPROTO);
425 xtail = xdata + body->mbo_eadatasize;
426 xvtail = xval + body->mbo_aclsize;
428 CDEBUG(D_CACHE, "caching: xdata=%p xtail=%p\n", xdata, xtail);
430 ll_xattr_cache_init(lli);
432 for (i = 0; i < body->mbo_max_mdsize; i++) {
433 CDEBUG(D_CACHE, "caching [%s]=%.*s\n", xdata, *xsizes, xval);
434 /* Perform consistency checks: attr names and vals in pill */
435 if (memchr(xdata, 0, xtail - xdata) == NULL) {
436 CERROR("xattr protocol violation (names are broken)\n");
438 } else if (xval + *xsizes > xvtail) {
439 CERROR("xattr protocol violation (vals are broken)\n");
441 } else if (OBD_FAIL_CHECK(OBD_FAIL_LLITE_XATTR_ENOMEM)) {
443 } else if (!strcmp(xdata, XATTR_NAME_ACL_ACCESS)) {
444 /* Filter out ACL ACCESS since it's cached separately */
445 CDEBUG(D_CACHE, "not caching %s\n",
446 XATTR_NAME_ACL_ACCESS);
448 } else if (!strcmp(xdata, "security.selinux")) {
449 /* Filter out security.selinux, it is cached in slab */
450 CDEBUG(D_CACHE, "not caching security.selinux\n");
453 rc = ll_xattr_cache_add(&lli->lli_xattrs, xdata, xval,
457 ll_xattr_cache_destroy_locked(lli);
458 GOTO(err_cancel, rc);
460 xdata += strlen(xdata) + 1;
465 if (xdata != xtail || xval != xvtail)
466 CERROR("a hole in xattr data\n");
468 ll_set_lock_data(sbi->ll_md_exp, inode, &oit, NULL);
469 ll_intent_drop_lock(&oit);
471 ptlrpc_req_finished(req);
475 ldlm_lock_decref_and_cancel((struct lustre_handle *)
479 up_write(&lli->lli_xattrs_list_rwsem);
484 ptlrpc_req_finished(req);
489 * Get an xattr value or list xattrs using the write-through cache.
491 * Get the xattr value (@valid has OBD_MD_FLXATTR set) of @name or
492 * list xattr names (@valid has OBD_MD_FLXATTRLS set) for @inode.
493 * The resulting value/list is stored in @buffer if the former
494 * is not larger than @size.
496 * \retval 0 no error occured
497 * \retval -EPROTO network protocol error
498 * \retval -ENOMEM not enough memory for the cache
499 * \retval -ERANGE the buffer is not large enough
500 * \retval -ENODATA no such attr or the list is empty
502 int ll_xattr_cache_get(struct inode *inode,
508 struct ll_inode_info *lli = ll_i2info(inode);
513 LASSERT(!!(valid & OBD_MD_FLXATTR) ^ !!(valid & OBD_MD_FLXATTRLS));
515 down_read(&lli->lli_xattrs_list_rwsem);
516 if (!ll_xattr_cache_valid(lli)) {
517 up_read(&lli->lli_xattrs_list_rwsem);
518 rc = ll_xattr_cache_refill(inode);
521 downgrade_write(&lli->lli_xattrs_list_rwsem);
523 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR_HITS, 1);
526 if (valid & OBD_MD_FLXATTR) {
527 struct ll_xattr_entry *xattr;
529 rc = ll_xattr_cache_find(&lli->lli_xattrs, name, &xattr);
531 rc = xattr->xe_vallen;
532 /* zero size means we are only requested size in rc */
534 if (size >= xattr->xe_vallen)
535 memcpy(buffer, xattr->xe_value,
541 } else if (valid & OBD_MD_FLXATTRLS) {
542 rc = ll_xattr_cache_list(&lli->lli_xattrs,
543 size ? buffer : NULL, size);
548 up_read(&lli->lli_xattrs_list_rwsem);
554 * Insert an xattr value into the cache.
556 * Add @name xattr with @buffer value and @size length for @inode.
557 * Init cache for @inode if necessary.
560 * \retval < 0 from ll_xattr_cache_add(), except -EPROTO is ignored for
561 * LL_XATTR_NAME_ENCRYPTION_CONTEXT xattr
563 int ll_xattr_cache_insert(struct inode *inode,
568 struct ll_inode_info *lli = ll_i2info(inode);
573 down_read(&lli->lli_xattrs_list_rwsem);
574 if (!ll_xattr_cache_valid(lli))
575 ll_xattr_cache_init(lli);
576 rc = ll_xattr_cache_add(&lli->lli_xattrs, name, buffer,
578 up_read(&lli->lli_xattrs_list_rwsem);
581 strcmp(name, LL_XATTR_NAME_ENCRYPTION_CONTEXT) == 0)
582 /* it means enc ctx was already in cache,
583 * ignore error as it cannot be modified