Whamcloud - gitweb
dfa3e55fc2ee6fb11803d8158881b71aea2499a5
[fs/lustre-release.git] / lustre / llite / xattr.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #include <linux/fs.h>
38 #include <linux/sched.h>
39 #include <linux/mm.h>
40 #include <linux/selinux.h>
41
42 #define DEBUG_SUBSYSTEM S_LLITE
43
44 #include <obd_support.h>
45 #include <lustre_lite.h>
46 #include <lustre_dlm.h>
47 #include <lustre_ver.h>
48 #include <lustre_eacl.h>
49
50 #include "llite_internal.h"
51
52 #define XATTR_USER_T            (1)
53 #define XATTR_TRUSTED_T         (2)
54 #define XATTR_SECURITY_T        (3)
55 #define XATTR_ACL_ACCESS_T      (4)
56 #define XATTR_ACL_DEFAULT_T     (5)
57 #define XATTR_LUSTRE_T          (6)
58 #define XATTR_OTHER_T           (7)
59
60 static
61 int get_xattr_type(const char *name)
62 {
63         if (!strcmp(name, POSIX_ACL_XATTR_ACCESS))
64                 return XATTR_ACL_ACCESS_T;
65
66         if (!strcmp(name, POSIX_ACL_XATTR_DEFAULT))
67                 return XATTR_ACL_DEFAULT_T;
68
69         if (!strncmp(name, XATTR_USER_PREFIX,
70                      sizeof(XATTR_USER_PREFIX) - 1))
71                 return XATTR_USER_T;
72
73         if (!strncmp(name, XATTR_TRUSTED_PREFIX,
74                      sizeof(XATTR_TRUSTED_PREFIX) - 1))
75                 return XATTR_TRUSTED_T;
76
77         if (!strncmp(name, XATTR_SECURITY_PREFIX,
78                      sizeof(XATTR_SECURITY_PREFIX) - 1))
79                 return XATTR_SECURITY_T;
80
81         if (!strncmp(name, XATTR_LUSTRE_PREFIX,
82                      sizeof(XATTR_LUSTRE_PREFIX) - 1))
83                 return XATTR_LUSTRE_T;
84
85         return XATTR_OTHER_T;
86 }
87
88 static
89 int xattr_type_filter(struct ll_sb_info *sbi, int xattr_type)
90 {
91         if ((xattr_type == XATTR_ACL_ACCESS_T ||
92              xattr_type == XATTR_ACL_DEFAULT_T) &&
93            !(sbi->ll_flags & LL_SBI_ACL))
94                 return -EOPNOTSUPP;
95
96         if (xattr_type == XATTR_USER_T && !(sbi->ll_flags & LL_SBI_USER_XATTR))
97                 return -EOPNOTSUPP;
98         if (xattr_type == XATTR_TRUSTED_T && !cfs_capable(CFS_CAP_SYS_ADMIN))
99                 return -EPERM;
100         if (xattr_type == XATTR_OTHER_T)
101                 return -EOPNOTSUPP;
102
103         return 0;
104 }
105
106 static
107 int ll_setxattr_common(struct inode *inode, const char *name,
108                        const void *value, size_t size,
109                        int flags, __u64 valid)
110 {
111         struct ll_sb_info *sbi = ll_i2sbi(inode);
112         struct ptlrpc_request *req = NULL;
113         int xattr_type, rc;
114         struct obd_capa *oc;
115         posix_acl_xattr_header *new_value = NULL;
116         struct rmtacl_ctl_entry *rce = NULL;
117         ext_acl_xattr_header *acl = NULL;
118         const char *pv = value;
119         ENTRY;
120
121         xattr_type = get_xattr_type(name);
122         rc = xattr_type_filter(sbi, xattr_type);
123         if (rc)
124                 RETURN(rc);
125
126         if ((xattr_type == XATTR_ACL_ACCESS_T ||
127              xattr_type == XATTR_ACL_DEFAULT_T) &&
128 #ifdef HAVE_INODE_OWNER_OR_CAPABLE
129             !inode_owner_or_capable(inode))
130 #else
131             !is_owner_or_cap(inode))
132 #endif
133                 return -EPERM;
134
135         /* b10667: ignore lustre special xattr for now */
136         if ((xattr_type == XATTR_TRUSTED_T && strcmp(name, "trusted.lov") == 0) ||
137             (xattr_type == XATTR_LUSTRE_T && strcmp(name, "lustre.lov") == 0))
138                 RETURN(0);
139
140         /* b15587: ignore security.capability xattr for now */
141         if ((xattr_type == XATTR_SECURITY_T &&
142             strcmp(name, "security.capability") == 0))
143                 RETURN(0);
144
145         /* LU-549:  Disable security.selinux when selinux is disabled */
146         if (xattr_type == XATTR_SECURITY_T && !selinux_is_enabled() &&
147             strcmp(name, "security.selinux") == 0)
148                 RETURN(-EOPNOTSUPP);
149
150 #ifdef CONFIG_FS_POSIX_ACL
151         if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
152             (xattr_type == XATTR_ACL_ACCESS_T ||
153             xattr_type == XATTR_ACL_DEFAULT_T)) {
154                 rce = rct_search(&sbi->ll_rct, current_pid());
155                 if (rce == NULL ||
156                     (rce->rce_ops != RMT_LSETFACL &&
157                     rce->rce_ops != RMT_RSETFACL))
158                         RETURN(-EOPNOTSUPP);
159
160                 if (rce->rce_ops == RMT_LSETFACL) {
161                         struct eacl_entry *ee;
162
163                         ee = et_search_del(&sbi->ll_et, current_pid(),
164                                            ll_inode2fid(inode), xattr_type);
165                         LASSERT(ee != NULL);
166                         if (valid & OBD_MD_FLXATTR) {
167                                 acl = lustre_acl_xattr_merge2ext(
168                                                 (posix_acl_xattr_header *)value,
169                                                 size, ee->ee_acl);
170                                 if (IS_ERR(acl)) {
171                                         ee_free(ee);
172                                         RETURN(PTR_ERR(acl));
173                                 }
174                                 size =  CFS_ACL_XATTR_SIZE(\
175                                                 le32_to_cpu(acl->a_count), \
176                                                 ext_acl_xattr);
177                                 pv = (const char *)acl;
178                         }
179                         ee_free(ee);
180                 } else if (rce->rce_ops == RMT_RSETFACL) {
181                         int acl_size = lustre_posix_acl_xattr_filter(
182                                                 (posix_acl_xattr_header *)value,
183                                                 size, &new_value);
184                         if (unlikely(acl_size < 0))
185                                 RETURN(acl_size);
186                         size = acl_size;
187
188                         pv = (const char *)new_value;
189                 } else
190                         RETURN(-EOPNOTSUPP);
191
192                 valid |= rce_ops2valid(rce->rce_ops);
193         }
194 #endif
195         oc = ll_mdscapa_get(inode);
196         rc = md_setxattr(sbi->ll_md_exp, ll_inode2fid(inode), oc,
197                         valid, name, pv, size, 0, flags,
198                         ll_i2suppgid(inode), &req);
199         capa_put(oc);
200 #ifdef CONFIG_FS_POSIX_ACL
201         if (new_value != NULL)
202                 lustre_posix_acl_xattr_free(new_value, size);
203         if (acl != NULL)
204                 lustre_ext_acl_xattr_free(acl);
205 #endif
206         if (rc) {
207                 if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) {
208                         LCONSOLE_INFO("Disabling user_xattr feature because "
209                                       "it is not supported on the server\n");
210                         sbi->ll_flags &= ~LL_SBI_USER_XATTR;
211                 }
212                 RETURN(rc);
213         }
214
215         ptlrpc_req_finished(req);
216         RETURN(0);
217 }
218
219 int ll_setxattr(struct dentry *dentry, const char *name,
220                 const void *value, size_t size, int flags)
221 {
222         struct inode *inode = dentry->d_inode;
223
224         LASSERT(inode);
225         LASSERT(name);
226
227         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
228                PFID(ll_inode2fid(inode)), inode, name);
229
230         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_SETXATTR, 1);
231
232         if ((strncmp(name, XATTR_TRUSTED_PREFIX,
233                      sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 &&
234              strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) ||
235             (strncmp(name, XATTR_LUSTRE_PREFIX,
236                      sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 &&
237              strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) {
238                 struct lov_user_md *lump = (struct lov_user_md *)value;
239                 int rc = 0;
240
241                 /* Attributes that are saved via getxattr will always have
242                  * the stripe_offset as 0.  Instead, the MDS should be
243                  * allowed to pick the starting OST index.   b=17846 */
244                 if (lump != NULL && lump->lmm_stripe_offset == 0)
245                         lump->lmm_stripe_offset = -1;
246
247                 if (lump != NULL && S_ISREG(inode->i_mode)) {
248                         struct file     f;
249                         __u64           it_flags = FMODE_WRITE;
250                         int lum_size = (lump->lmm_magic == LOV_USER_MAGIC_V1) ?
251                                 sizeof(*lump) : sizeof(struct lov_user_md_v3);
252
253                         f.f_dentry = dentry;
254                         rc = ll_lov_setstripe_ea_info(inode, &f, it_flags, lump,
255                                                       lum_size);
256                         /* b10667: rc always be 0 here for now */
257                         rc = 0;
258                 } else if (S_ISDIR(inode->i_mode)) {
259                         rc = ll_dir_setstripe(inode, lump, 0);
260                 }
261
262                 return rc;
263
264         } else if (strcmp(name, XATTR_NAME_LMA) == 0 ||
265                    strcmp(name, XATTR_NAME_LINK) == 0)
266                 return 0;
267
268         return ll_setxattr_common(inode, name, value, size, flags,
269                                   OBD_MD_FLXATTR);
270 }
271
272 int ll_removexattr(struct dentry *dentry, const char *name)
273 {
274         struct inode *inode = dentry->d_inode;
275
276         LASSERT(inode);
277         LASSERT(name);
278
279         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
280                PFID(ll_inode2fid(inode)), inode, name);
281
282         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_REMOVEXATTR, 1);
283         return ll_setxattr_common(inode, name, NULL, 0, 0,
284                                   OBD_MD_FLXATTRRM);
285 }
286
287 static
288 int ll_getxattr_common(struct inode *inode, const char *name,
289                        void *buffer, size_t size, __u64 valid)
290 {
291         struct ll_sb_info *sbi = ll_i2sbi(inode);
292         struct ptlrpc_request *req = NULL;
293         struct mdt_body *body;
294         int xattr_type, rc;
295         void *xdata;
296         struct obd_capa *oc;
297         struct rmtacl_ctl_entry *rce = NULL;
298         struct ll_inode_info *lli = ll_i2info(inode);
299         ENTRY;
300
301         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
302                PFID(ll_inode2fid(inode)), inode);
303
304         /* listxattr have slightly different behavior from of ext3:
305          * without 'user_xattr' ext3 will list all xattr names but
306          * filtered out "^user..*"; we list them all for simplicity.
307          */
308         if (!name) {
309                 xattr_type = XATTR_OTHER_T;
310                 goto do_getxattr;
311         }
312
313         xattr_type = get_xattr_type(name);
314         rc = xattr_type_filter(sbi, xattr_type);
315         if (rc)
316                 RETURN(rc);
317
318         /* b15587: ignore security.capability xattr for now */
319         if ((xattr_type == XATTR_SECURITY_T &&
320             strcmp(name, "security.capability") == 0))
321                 RETURN(-ENODATA);
322
323         /* LU-549:  Disable security.selinux when selinux is disabled */
324         if (xattr_type == XATTR_SECURITY_T && !selinux_is_enabled() &&
325             strcmp(name, "security.selinux") == 0)
326                 RETURN(-EOPNOTSUPP);
327
328 #ifdef CONFIG_FS_POSIX_ACL
329         if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
330             (xattr_type == XATTR_ACL_ACCESS_T ||
331             xattr_type == XATTR_ACL_DEFAULT_T)) {
332                 rce = rct_search(&sbi->ll_rct, current_pid());
333                 if (rce == NULL ||
334                     (rce->rce_ops != RMT_LSETFACL &&
335                     rce->rce_ops != RMT_LGETFACL &&
336                     rce->rce_ops != RMT_RSETFACL &&
337                     rce->rce_ops != RMT_RGETFACL))
338                         RETURN(-EOPNOTSUPP);
339         }
340
341         /* posix acl is under protection of LOOKUP lock. when calling to this,
342          * we just have path resolution to the target inode, so we have great
343          * chance that cached ACL is uptodate.
344          */
345         if (xattr_type == XATTR_ACL_ACCESS_T &&
346             !(sbi->ll_flags & LL_SBI_RMT_CLIENT)) {
347
348                 struct posix_acl *acl;
349
350                 spin_lock(&lli->lli_lock);
351                 acl = posix_acl_dup(lli->lli_posix_acl);
352                 spin_unlock(&lli->lli_lock);
353
354                 if (!acl)
355                         RETURN(-ENODATA);
356
357                 rc = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
358                 posix_acl_release(acl);
359                 RETURN(rc);
360         }
361         if (xattr_type == XATTR_ACL_DEFAULT_T && !S_ISDIR(inode->i_mode))
362                 RETURN(-ENODATA);
363 #endif
364
365 do_getxattr:
366         if (sbi->ll_xattr_cache_enabled && xattr_type != XATTR_ACL_ACCESS_T) {
367                 rc = ll_xattr_cache_get(inode, name, buffer, size, valid);
368                 if (rc == -EAGAIN)
369                         goto getxattr_nocache;
370                 if (rc < 0)
371                         GOTO(out_xattr, rc);
372
373                 /* Add "system.posix_acl_access" to the list */
374                 if (lli->lli_posix_acl != NULL && valid & OBD_MD_FLXATTRLS) {
375                         if (size == 0) {
376                                 rc += sizeof(XATTR_NAME_ACL_ACCESS);
377                         } else if (size - rc >= sizeof(XATTR_NAME_ACL_ACCESS)) {
378                                 memcpy(buffer + rc, XATTR_NAME_ACL_ACCESS,
379                                        sizeof(XATTR_NAME_ACL_ACCESS));
380                                 rc += sizeof(XATTR_NAME_ACL_ACCESS);
381                         } else {
382                                 GOTO(out_xattr, rc = -ERANGE);
383                         }
384                 }
385         } else {
386 getxattr_nocache:
387                 oc = ll_mdscapa_get(inode);
388                 rc = md_getxattr(sbi->ll_md_exp, ll_inode2fid(inode), oc,
389                                 valid | (rce ? rce_ops2valid(rce->rce_ops) : 0),
390                                 name, NULL, 0, size, 0, &req);
391                 capa_put(oc);
392
393                 if (rc < 0)
394                         GOTO(out_xattr, rc);
395
396                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
397                 LASSERT(body);
398
399                 /* only detect the xattr size */
400                 if (size == 0)
401                         GOTO(out, rc = body->mbo_eadatasize);
402
403                 if (size < body->mbo_eadatasize) {
404                         CERROR("server bug: replied size %u > %u\n",
405                                 body->mbo_eadatasize, (int)size);
406                         GOTO(out, rc = -ERANGE);
407                 }
408
409                 if (body->mbo_eadatasize == 0)
410                         GOTO(out, rc = -ENODATA);
411
412                 /* do not need swab xattr data */
413                 xdata = req_capsule_server_sized_get(&req->rq_pill, &RMF_EADATA,
414                                                         body->mbo_eadatasize);
415                 if (!xdata)
416                         GOTO(out, rc = -EFAULT);
417
418                 memcpy(buffer, xdata, body->mbo_eadatasize);
419                 rc = body->mbo_eadatasize;
420         }
421
422 #ifdef CONFIG_FS_POSIX_ACL
423         if (rce != NULL && rce->rce_ops == RMT_LSETFACL) {
424                 ext_acl_xattr_header *acl;
425
426                 acl = lustre_posix_acl_xattr_2ext(buffer, rc);
427                 if (IS_ERR(acl))
428                         GOTO(out, rc = PTR_ERR(acl));
429
430                 rc = ee_add(&sbi->ll_et, current_pid(), ll_inode2fid(inode),
431                             xattr_type, acl);
432                 if (unlikely(rc < 0)) {
433                         lustre_ext_acl_xattr_free(acl);
434                         GOTO(out, rc);
435                 }
436         }
437 #endif
438         EXIT;
439
440 out_xattr:
441         if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) {
442                 LCONSOLE_INFO("%s: disabling user_xattr feature because "
443                                 "it is not supported on the server: rc = %d\n",
444                                 ll_get_fsname(inode->i_sb, NULL, 0), rc);
445                 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
446         }
447 out:
448         ptlrpc_req_finished(req);
449         return rc;
450 }
451
452 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
453                     void *buffer, size_t size)
454 {
455         struct inode *inode = dentry->d_inode;
456
457         LASSERT(inode);
458         LASSERT(name);
459
460         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
461                PFID(ll_inode2fid(inode)), inode, name);
462
463         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR, 1);
464
465         if ((strncmp(name, XATTR_TRUSTED_PREFIX,
466                      sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 &&
467              strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) ||
468             (strncmp(name, XATTR_LUSTRE_PREFIX,
469                      sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 &&
470              strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) {
471                 struct lov_stripe_md *lsm;
472                 struct lov_user_md *lump;
473                 struct lov_mds_md *lmm = NULL;
474                 struct ptlrpc_request *request = NULL;
475                 int rc = 0, lmmsize = 0;
476
477                 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
478                         return -ENODATA;
479
480                 lsm = ccc_inode_lsm_get(inode);
481                 if (lsm == NULL) {
482                         if (S_ISDIR(inode->i_mode)) {
483                                 rc = ll_dir_getstripe(inode, (void **)&lmm,
484                                                       &lmmsize, &request, 0);
485                         } else {
486                                 rc = -ENODATA;
487                         }
488                 } else {
489                         /* LSM is present already after lookup/getattr call.
490                          * we need to grab layout lock once it is implemented */
491                         rc = obd_packmd(ll_i2dtexp(inode), &lmm, lsm);
492                         lmmsize = rc;
493                 }
494                 ccc_inode_lsm_put(inode, lsm);
495
496                 if (rc < 0)
497                        GOTO(out, rc);
498
499                 if (size == 0) {
500                         /* used to call ll_get_max_mdsize() forward to get
501                          * the maximum buffer size, while some apps (such as
502                          * rsync 3.0.x) care much about the exact xattr value
503                          * size */
504                         rc = lmmsize;
505                         GOTO(out, rc);
506                 }
507
508                 if (size < lmmsize) {
509                         CERROR("server bug: replied size %d > %d for %s (%s)\n",
510                                lmmsize, (int)size, dentry->d_name.name, name);
511                         GOTO(out, rc = -ERANGE);
512                 }
513
514                 lump = (struct lov_user_md *)buffer;
515                 memcpy(lump, lmm, lmmsize);
516                 /* do not return layout gen for getxattr otherwise it would
517                  * confuse tar --xattr by recognizing layout gen as stripe
518                  * offset when the file is restored. See LU-2809. */
519                 lump->lmm_layout_gen = 0;
520
521                 rc = lmmsize;
522 out:
523                 if (request)
524                         ptlrpc_req_finished(request);
525                 else if (lmm)
526                         obd_free_diskmd(ll_i2dtexp(inode), &lmm);
527                 return(rc);
528         }
529
530         return ll_getxattr_common(inode, name, buffer, size, OBD_MD_FLXATTR);
531 }
532
533 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size)
534 {
535         struct inode *inode = dentry->d_inode;
536         int rc = 0, rc2 = 0;
537         struct lov_mds_md *lmm = NULL;
538         struct ptlrpc_request *request = NULL;
539         int lmmsize;
540
541         LASSERT(inode);
542
543         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
544                PFID(ll_inode2fid(inode)), inode);
545
546         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_LISTXATTR, 1);
547
548         rc = ll_getxattr_common(inode, NULL, buffer, size, OBD_MD_FLXATTRLS);
549         if (rc < 0)
550                 GOTO(out, rc);
551
552         if (buffer != NULL) {
553                 struct ll_sb_info *sbi = ll_i2sbi(inode);
554                 char *xattr_name = buffer;
555                 int xlen, rem = rc;
556
557                 while (rem > 0) {
558                         xlen = strnlen(xattr_name, rem - 1) + 1;
559                         rem -= xlen;
560                         if (xattr_type_filter(sbi,
561                                         get_xattr_type(xattr_name)) == 0) {
562                                 /* skip OK xattr type
563                                  * leave it in buffer
564                                  */
565                                 xattr_name += xlen;
566                                 continue;
567                         }
568                         /* move up remaining xattrs in buffer
569                          * removing the xattr that is not OK
570                          */
571                         memmove(xattr_name, xattr_name + xlen, rem);
572                         rc -= xlen;
573                 }
574         }
575         if (S_ISREG(inode->i_mode)) {
576                 if (!ll_i2info(inode)->lli_has_smd)
577                         rc2 = -1;
578         } else if (S_ISDIR(inode->i_mode)) {
579                 rc2 = ll_dir_getstripe(inode, (void **)&lmm, &lmmsize, &request,
580                                        0);
581         }
582
583         if (rc2 < 0) {
584                 GOTO(out, rc2 = 0);
585         } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)) {
586                 const int prefix_len = sizeof(XATTR_LUSTRE_PREFIX) - 1;
587                 const size_t name_len   = sizeof("lov") - 1;
588                 const size_t total_len  = prefix_len + name_len + 1;
589
590                 if (((rc + total_len) > size) && (buffer != NULL)) {
591                         ptlrpc_req_finished(request);
592                         return -ERANGE;
593                 }
594
595                 if (buffer != NULL) {
596                         buffer += rc;
597                         memcpy(buffer, XATTR_LUSTRE_PREFIX, prefix_len);
598                         memcpy(buffer + prefix_len, "lov", name_len);
599                         buffer[prefix_len + name_len] = '\0';
600                 }
601                 rc2 = total_len;
602         }
603 out:
604         ptlrpc_req_finished(request);
605         rc = rc + rc2;
606
607         return rc;
608 }