Whamcloud - gitweb
LU-14677 llite: move env contexts to ll_inode_info level
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #include <linux/fs.h>
33 #include <linux/sched.h>
34 #include <linux/mm.h>
35 #include <linux/xattr.h>
36 #ifdef HAVE_LINUX_SELINUX_IS_ENABLED
37 #include <linux/selinux.h>
38 #endif
39
40 #define DEBUG_SUBSYSTEM S_LLITE
41
42 #include <obd_support.h>
43 #include <lustre_dlm.h>
44 #include <lustre_swab.h>
45
46 #include "llite_internal.h"
47
48 #ifndef HAVE_XATTR_HANDLER_NAME
49 static inline const char *xattr_prefix(const struct xattr_handler *handler)
50 {
51         return handler->prefix;
52 }
53 #endif
54
55 const struct xattr_handler *get_xattr_type(const char *name)
56 {
57         int i;
58
59         for (i = 0; ll_xattr_handlers[i]; i++) {
60                 const char *prefix = xattr_prefix(ll_xattr_handlers[i]);
61                 size_t prefix_len = strlen(prefix);
62
63                 if (!strncmp(prefix, name, prefix_len))
64                         return ll_xattr_handlers[i];
65         }
66
67         return NULL;
68 }
69
70 static int xattr_type_filter(struct ll_sb_info *sbi,
71                              const struct xattr_handler *handler)
72 {
73         /* No handler means XATTR_OTHER_T */
74         if (!handler)
75                 return -EOPNOTSUPP;
76
77         if ((handler->flags == XATTR_ACL_ACCESS_T ||
78              handler->flags == XATTR_ACL_DEFAULT_T) &&
79             !(sbi->ll_flags & LL_SBI_ACL))
80                 return -EOPNOTSUPP;
81
82         if (handler->flags == XATTR_USER_T &&
83             !(sbi->ll_flags & LL_SBI_USER_XATTR))
84                 return -EOPNOTSUPP;
85
86         if (handler->flags == XATTR_TRUSTED_T &&
87             !capable(CAP_SYS_ADMIN))
88                 return -EPERM;
89
90         return 0;
91 }
92
93 static int ll_xattr_set_common(const struct xattr_handler *handler,
94                                struct dentry *dentry, struct inode *inode,
95                                const char *name, const void *value, size_t size,
96                                int flags)
97 {
98         struct ll_sb_info *sbi = ll_i2sbi(inode);
99         struct ptlrpc_request *req = NULL;
100         const char *pv = value;
101         char *fullname;
102         ktime_t kstart = ktime_get();
103         u64 valid;
104         int rc;
105         ENTRY;
106
107         /* When setxattr() is called with a size of 0 the value is
108          * unconditionally replaced by "". When removexattr() is
109          * called we get a NULL value and XATTR_REPLACE for flags. */
110         if (!value && flags == XATTR_REPLACE)
111                 valid = OBD_MD_FLXATTRRM;
112         else
113                 valid = OBD_MD_FLXATTR;
114
115         /* FIXME: enable IMA when the conditions are ready */
116         if (handler->flags == XATTR_SECURITY_T &&
117             (!strcmp(name, "ima") || !strcmp(name, "evm")))
118                 RETURN(-EOPNOTSUPP);
119
120         rc = xattr_type_filter(sbi, handler);
121         if (rc)
122                 RETURN(rc);
123
124         if ((handler->flags == XATTR_ACL_ACCESS_T ||
125              handler->flags == XATTR_ACL_DEFAULT_T) &&
126             !inode_owner_or_capable(inode))
127                 RETURN(-EPERM);
128
129         /* b10667: ignore lustre special xattr for now */
130         if (!strcmp(name, "hsm") ||
131             ((handler->flags == XATTR_TRUSTED_T && !strcmp(name, "lov")) ||
132              (handler->flags == XATTR_LUSTRE_T && !strcmp(name, "lov"))))
133                 RETURN(0);
134
135         /* LU-549:  Disable security.selinux when selinux is disabled */
136         if (handler->flags == XATTR_SECURITY_T && !selinux_is_enabled() &&
137             strcmp(name, "selinux") == 0)
138                 RETURN(-EOPNOTSUPP);
139
140         /*
141          * In user.* namespace, only regular files and directories can have
142          * extended attributes.
143          */
144         if (handler->flags == XATTR_USER_T) {
145                 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
146                         RETURN(-EPERM);
147         }
148
149         /* Setting LL_XATTR_NAME_ENCRYPTION_CONTEXT xattr is only allowed
150          * when defining an encryption policy on a directory, ie when it
151          * comes from ll_set_context().
152          * When new files/dirs are created in an encrypted dir, the xattr
153          * is set directly in the create request.
154          */
155         if (handler->flags == XATTR_SECURITY_T &&
156             !strcmp(name, "c") &&
157             !test_and_clear_bit(LLIF_SET_ENC_CTX, &ll_i2info(inode)->lli_flags))
158                 RETURN(-EPERM);
159
160         fullname = kasprintf(GFP_KERNEL, "%s%s", xattr_prefix(handler), name);
161         if (!fullname)
162                 RETURN(-ENOMEM);
163
164         rc = md_setxattr(sbi->ll_md_exp, ll_inode2fid(inode), valid, fullname,
165                          pv, size, flags, ll_i2suppgid(inode), &req);
166         kfree(fullname);
167         if (rc) {
168                 if (rc == -EOPNOTSUPP && handler->flags == XATTR_USER_T) {
169                         LCONSOLE_INFO("Disabling user_xattr feature because it is not supported on the server\n");
170                         sbi->ll_flags &= ~LL_SBI_USER_XATTR;
171                 }
172                 RETURN(rc);
173         }
174
175         ptlrpc_req_finished(req);
176
177         ll_stats_ops_tally(ll_i2sbi(inode), valid == OBD_MD_FLXATTRRM ?
178                                 LPROC_LL_REMOVEXATTR : LPROC_LL_SETXATTR,
179                            ktime_us_delta(ktime_get(), kstart));
180
181         RETURN(0);
182 }
183
184 static int get_hsm_state(struct inode *inode, u32 *hus_states)
185 {
186         struct md_op_data *op_data;
187         struct hsm_user_state *hus;
188         int rc;
189
190         OBD_ALLOC_PTR(hus);
191         if (!hus)
192                 return -ENOMEM;
193
194         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
195                                      LUSTRE_OPC_ANY, hus);
196         if (!IS_ERR(op_data)) {
197                 rc = obd_iocontrol(LL_IOC_HSM_STATE_GET, ll_i2mdexp(inode),
198                                    sizeof(*op_data), op_data, NULL);
199                 if (!rc)
200                         *hus_states = hus->hus_states;
201                 else
202                         CDEBUG(D_VFSTRACE, "obd_iocontrol failed. rc = %d\n",
203                                rc);
204
205                 ll_finish_md_op_data(op_data);
206         } else {
207                 rc = PTR_ERR(op_data);
208                 CDEBUG(D_VFSTRACE, "Could not prepare the opdata. rc = %d\n",
209                        rc);
210         }
211         OBD_FREE_PTR(hus);
212         return rc;
213 }
214
215 static int ll_adjust_lum(struct inode *inode, struct lov_user_md *lump, size_t size)
216 {
217         struct lov_comp_md_v1 *comp_v1 = (struct lov_comp_md_v1 *)lump;
218         struct lov_user_md *v1 = lump;
219         bool need_clear_release = false;
220         bool release_checked = false;
221         bool is_composite = false;
222         u16 entry_count = 1;
223         int rc = 0;
224         int i;
225
226         if (!lump)
227                 return 0;
228
229         if (lump->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
230                 if (size < sizeof(*comp_v1))
231                         return -ERANGE;
232
233                 entry_count = comp_v1->lcm_entry_count;
234                 if (size < offsetof(typeof(*comp_v1), lcm_entries[entry_count]))
235                         return -ERANGE;
236                 is_composite = true;
237         }
238
239         for (i = 0; i < entry_count; i++) {
240                 if (lump->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
241                         void *ptr = comp_v1;
242
243                         if (comp_v1->lcm_entries[i].lcme_offset + sizeof(*v1) >
244                             size)
245                                 return -ERANGE;
246
247                         ptr += comp_v1->lcm_entries[i].lcme_offset;
248                         v1 = (struct lov_user_md *)ptr;
249                 }
250
251                 /*
252                  * Attributes that are saved via getxattr will always
253                  * have the stripe_offset as 0. Instead, the MDS
254                  * should be allowed to pick the starting OST index.
255                  * b=17846
256                  */
257                 if (!is_composite && v1->lmm_stripe_offset == 0)
258                         v1->lmm_stripe_offset = -1;
259
260                 /* Avoid anyone directly setting the RELEASED flag. */
261                 if (v1->lmm_pattern & LOV_PATTERN_F_RELEASED) {
262                         if (!release_checked) {
263                                 u32 state = HS_NONE;
264
265                                 rc = get_hsm_state(inode, &state);
266                                 if (rc)
267                                         return rc;
268
269                                 if (!(state & HS_ARCHIVED))
270                                         need_clear_release = true;
271                                 release_checked = true;
272                         }
273                         if (need_clear_release)
274                                 v1->lmm_pattern ^= LOV_PATTERN_F_RELEASED;
275                 }
276         }
277
278         return rc;
279 }
280
281 static int ll_setstripe_ea(struct dentry *dentry, struct lov_user_md *lump,
282                            size_t size)
283 {
284         struct inode *inode = dentry->d_inode;
285         int rc = 0;
286
287         /*
288          * It is possible to set an xattr to a "" value of zero size.
289          * For this case we are going to treat it as a removal.
290          */
291         if (!size && lump)
292                 lump = NULL;
293
294         if (size && size < sizeof(*lump)) {
295                 /* ll_adjust_lum() or ll_lov_user_md_size() might access
296                  * before size - just give up now.
297                  */
298                 return -ERANGE;
299         }
300         rc = ll_adjust_lum(inode, lump, size);
301         if (rc)
302                 return rc;
303
304         if (lump && S_ISREG(inode->i_mode)) {
305                 u64 it_flags = FMODE_WRITE;
306                 ssize_t lum_size;
307
308                 lum_size = ll_lov_user_md_size(lump);
309                 if (lum_size < 0 || size < lum_size)
310                         return -ERANGE;
311
312                 rc = ll_lov_setstripe_ea_info(inode, dentry, it_flags, lump,
313                                               lum_size);
314                 /**
315                  * b=10667: ignore -EEXIST.
316                  * Silently eat error on setting trusted.lov/lustre.lov
317                  * attribute for platforms that added the default option
318                  * to copy all attributes in 'cp' command. Both rsync and
319                  * tar --xattrs also will try to set LOVEA for existing
320                  * files.
321                  */
322                 if (rc == -EEXIST)
323                         rc = 0;
324         } else if (S_ISDIR(inode->i_mode)) {
325                 if (size != 0 && size < sizeof(struct lov_user_md))
326                         return -EINVAL;
327
328                 rc = ll_dir_setstripe(inode, lump, 0);
329         }
330
331         return rc;
332 }
333
334 static int ll_xattr_set(const struct xattr_handler *handler,
335                         struct dentry *dentry, struct inode *inode,
336                         const char *name, const void *value, size_t size,
337                         int flags)
338 {
339         ktime_t kstart = ktime_get();
340         int op_type = flags == XATTR_REPLACE ? LPROC_LL_REMOVEXATTR :
341                                                LPROC_LL_SETXATTR;
342         int rc;
343
344         LASSERT(inode);
345         LASSERT(name);
346
347         CDEBUG(D_VFSTRACE, "VFS Op:inode=" DFID "(%p), xattr %s\n",
348                PFID(ll_inode2fid(inode)), inode, name);
349
350         /* lustre/trusted.lov.xxx would be passed through xattr API */
351         if (!strcmp(name, "lov")) {
352                 rc = ll_setstripe_ea(dentry, (struct lov_user_md *)value,
353                                        size);
354                 ll_stats_ops_tally(ll_i2sbi(inode), op_type,
355                                    ktime_us_delta(ktime_get(), kstart));
356                 return rc;
357         } else if (!strcmp(name, "lma") || !strcmp(name, "link")) {
358                 ll_stats_ops_tally(ll_i2sbi(inode), op_type,
359                                    ktime_us_delta(ktime_get(), kstart));
360                 return 0;
361         }
362
363         if (strncmp(name, "lov.", 4) == 0 &&
364             (__swab32(((struct lov_user_md *)value)->lmm_magic) &
365             le32_to_cpu(LOV_MAGIC_MASK)) == le32_to_cpu(LOV_MAGIC_MAGIC))
366                 lustre_swab_lov_user_md((struct lov_user_md *)value, 0);
367
368         return ll_xattr_set_common(handler, dentry, inode, name, value, size,
369                                    flags);
370 }
371
372 int ll_xattr_list(struct inode *inode, const char *name, int type, void *buffer,
373                   size_t size, u64 valid)
374 {
375         struct ll_inode_info *lli = ll_i2info(inode);
376         struct ll_sb_info *sbi = ll_i2sbi(inode);
377         struct ptlrpc_request *req = NULL;
378         void *xdata;
379         int rc;
380         ENTRY;
381
382         if (sbi->ll_xattr_cache_enabled && type != XATTR_ACL_ACCESS_T &&
383             (type != XATTR_SECURITY_T || strcmp(name, "security.selinux"))) {
384                 rc = ll_xattr_cache_get(inode, name, buffer, size, valid);
385                 if (rc == -EAGAIN)
386                         goto getxattr_nocache;
387                 if (rc < 0)
388                         GOTO(out_xattr, rc);
389
390                 /* Add "system.posix_acl_access" to the list */
391                 if (lli->lli_posix_acl && valid & OBD_MD_FLXATTRLS) {
392                         if (size == 0) {
393                                 rc += sizeof(XATTR_NAME_ACL_ACCESS);
394                         } else if (size - rc >= sizeof(XATTR_NAME_ACL_ACCESS)) {
395                                 memcpy(buffer + rc, XATTR_NAME_ACL_ACCESS,
396                                        sizeof(XATTR_NAME_ACL_ACCESS));
397                                 rc += sizeof(XATTR_NAME_ACL_ACCESS);
398                         } else {
399                                 GOTO(out_xattr, rc = -ERANGE);
400                         }
401                 }
402         } else {
403 getxattr_nocache:
404                 rc = md_getxattr(sbi->ll_md_exp, ll_inode2fid(inode), valid,
405                                  name, size, &req);
406                 if (rc < 0)
407                         GOTO(out_xattr, rc);
408
409                 /* only detect the xattr size */
410                 if (size == 0)
411                         GOTO(out, rc);
412
413                 if (size < rc)
414                         GOTO(out, rc = -ERANGE);
415
416                 /* do not need swab xattr data */
417                 xdata = req_capsule_server_sized_get(&req->rq_pill, &RMF_EADATA,
418                                                      rc);
419                 if (!xdata)
420                         GOTO(out, rc = -EPROTO);
421
422                 memcpy(buffer, xdata, rc);
423         }
424
425         EXIT;
426
427 out_xattr:
428         if (rc == -EOPNOTSUPP && type == XATTR_USER_T) {
429                 LCONSOLE_INFO("%s: disabling user_xattr feature because "
430                               "it is not supported on the server: rc = %d\n",
431                               sbi->ll_fsname, rc);
432                 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
433         }
434 out:
435         ptlrpc_req_finished(req);
436         RETURN(rc);
437 }
438
439 static int ll_xattr_get_common(const struct xattr_handler *handler,
440                                struct dentry *dentry,
441                                struct inode *inode,
442                                const char *name, void *buffer, size_t size)
443 {
444         struct ll_sb_info *sbi = ll_i2sbi(inode);
445         ktime_t kstart = ktime_get();
446         char *fullname;
447         int rc;
448
449         ENTRY;
450
451         rc = xattr_type_filter(sbi, handler);
452         if (rc)
453                 RETURN(rc);
454
455         /* LU-549:  Disable security.selinux when selinux is disabled */
456         if (handler->flags == XATTR_SECURITY_T && !selinux_is_enabled() &&
457             !strcmp(name, "selinux"))
458                 RETURN(-EOPNOTSUPP);
459
460 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
461         /* posix acl is under protection of LOOKUP lock. when calling to this,
462          * we just have path resolution to the target inode, so we have great
463          * chance that cached ACL is uptodate.
464          */
465         if (handler->flags == XATTR_ACL_ACCESS_T) {
466                 struct ll_inode_info *lli = ll_i2info(inode);
467                 struct posix_acl *acl;
468
469                 read_lock(&lli->lli_lock);
470                 acl = posix_acl_dup(lli->lli_posix_acl);
471                 read_unlock(&lli->lli_lock);
472
473                 if (!acl)
474                         RETURN(-ENODATA);
475
476                 rc = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
477                 posix_acl_release(acl);
478                 RETURN(rc);
479         }
480         if (handler->flags == XATTR_ACL_DEFAULT_T && !S_ISDIR(inode->i_mode))
481                 RETURN(-ENODATA);
482 #endif
483
484         fullname = kasprintf(GFP_KERNEL, "%s%s", xattr_prefix(handler), name);
485         if (!fullname)
486                 RETURN(-ENOMEM);
487
488         rc = ll_xattr_list(inode, fullname, handler->flags, buffer, size,
489                            OBD_MD_FLXATTR);
490         kfree(fullname);
491         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR,
492                            ktime_us_delta(ktime_get(), kstart));
493
494         RETURN(rc);
495 }
496
497 static ssize_t ll_getxattr_lov(struct inode *inode, void *buf, size_t buf_size)
498 {
499         ssize_t rc;
500
501         if (S_ISREG(inode->i_mode)) {
502                 struct cl_object *obj = ll_i2info(inode)->lli_clob;
503                 struct cl_layout cl = {
504                         .cl_buf.lb_buf = buf,
505                         .cl_buf.lb_len = buf_size,
506                 };
507                 struct lu_env *env;
508                 u16 refcheck;
509
510                 if (!obj)
511                         RETURN(-ENODATA);
512
513                 env = cl_env_get(&refcheck);
514                 if (IS_ERR(env))
515                         RETURN(PTR_ERR(env));
516
517                 rc = cl_object_layout_get(env, obj, &cl);
518                 if (rc < 0)
519                         GOTO(out_env, rc);
520
521                 if (!cl.cl_size)
522                         GOTO(out_env, rc = -ENODATA);
523
524                 rc = cl.cl_size;
525
526                 if (!buf_size)
527                         GOTO(out_env, rc);
528
529                 LASSERT(buf && rc <= buf_size);
530
531                 /*
532                  * Do not return layout gen for getxattr() since
533                  * otherwise it would confuse tar --xattr by
534                  * recognizing layout gen as stripe offset when the
535                  * file is restored. See LU-2809.
536                  */
537                 if ((((struct lov_mds_md *)buf)->lmm_magic &
538                     __swab32(LOV_MAGIC_MAGIC)) == __swab32(LOV_MAGIC_MAGIC))
539                         lustre_swab_lov_user_md((struct lov_user_md *)buf,
540                                                 cl.cl_size);
541
542                 switch (((struct lov_mds_md *)buf)->lmm_magic) {
543                 case LOV_MAGIC_V1:
544                 case LOV_MAGIC_V3:
545                 case LOV_MAGIC_SPECIFIC:
546                         ((struct lov_mds_md *)buf)->lmm_layout_gen = 0;
547                         break;
548                 case LOV_MAGIC_COMP_V1:
549                 case LOV_MAGIC_FOREIGN:
550                         goto out_env;
551                 default:
552                         CERROR("Invalid LOV magic %08x\n",
553                                ((struct lov_mds_md *)buf)->lmm_magic);
554                         GOTO(out_env, rc = -EINVAL);
555                 }
556
557 out_env:
558                 cl_env_put(env, &refcheck);
559
560                 RETURN(rc);
561         } else if (S_ISDIR(inode->i_mode)) {
562                 struct ptlrpc_request *req = NULL;
563                 struct ptlrpc_request *root_req = NULL;
564                 struct lov_mds_md *lmm = NULL;
565                 int lmm_size = 0;
566
567                 rc = ll_dir_getstripe_default(inode, (void **)&lmm, &lmm_size,
568                                               &req, &root_req, 0);
569                 if (rc < 0)
570                         GOTO(out_req, rc);
571
572                 if (!buf_size)
573                         GOTO(out_req, rc = lmm_size);
574
575                 if (buf_size < lmm_size)
576                         GOTO(out_req, rc = -ERANGE);
577
578                 memcpy(buf, lmm, lmm_size);
579                 GOTO(out_req, rc = lmm_size);
580 out_req:
581                 if (req)
582                         ptlrpc_req_finished(req);
583                 if (root_req)
584                         ptlrpc_req_finished(root_req);
585
586                 RETURN(rc);
587         } else {
588                 RETURN(-ENODATA);
589         }
590 }
591
592 static int ll_xattr_get(const struct xattr_handler *handler,
593                         struct dentry *dentry, struct inode *inode,
594                         const char *name, void *buffer, size_t size)
595 {
596         LASSERT(inode);
597         LASSERT(name);
598
599         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
600                PFID(ll_inode2fid(inode)), inode, name);
601
602         if (!strcmp(name, "lov")) {
603                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR, 1);
604
605                 return ll_getxattr_lov(inode, buffer, size);
606         }
607
608         return ll_xattr_get_common(handler, dentry, inode, name, buffer, size);
609 }
610
611 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size)
612 {
613         struct inode *inode = dentry->d_inode;
614         struct ll_sb_info *sbi = ll_i2sbi(inode);
615         ktime_t kstart = ktime_get();
616         char *xattr_name;
617         ssize_t rc, rc2;
618         size_t len, rem;
619
620         LASSERT(inode);
621
622         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
623                PFID(ll_inode2fid(inode)), inode);
624
625         rc = ll_xattr_list(inode, NULL, XATTR_OTHER_T, buffer, size,
626                            OBD_MD_FLXATTRLS);
627         if (rc < 0)
628                 RETURN(rc);
629
630         /*
631          * If we're being called to get the size of the xattr list
632          * (size == 0) then just assume that a lustre.lov xattr
633          * exists.
634          */
635         if (!size)
636                 goto out;
637
638         xattr_name = buffer;
639         rem = rc;
640
641         while (rem > 0) {
642                 len = strnlen(xattr_name, rem - 1) + 1;
643                 rem -= len;
644                 if (!xattr_type_filter(sbi, get_xattr_type(xattr_name))) {
645                         /* Skip OK xattr type, leave it in buffer. */
646                         xattr_name += len;
647                         continue;
648                 }
649
650                 /*
651                  * Move up remaining xattrs in buffer
652                  * removing the xattr that is not OK.
653                  */
654                 memmove(xattr_name, xattr_name + len, rem);
655                 rc -= len;
656         }
657
658         rc2 = ll_getxattr_lov(inode, NULL, 0);
659         if (rc2 == -ENODATA)
660                 RETURN(rc);
661
662         if (rc2 < 0)
663                 RETURN(rc2);
664
665         if (size < rc + sizeof(XATTR_LUSTRE_LOV))
666                 RETURN(-ERANGE);
667
668         memcpy(buffer + rc, XATTR_LUSTRE_LOV, sizeof(XATTR_LUSTRE_LOV));
669
670 out:
671         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_LISTXATTR,
672                            ktime_us_delta(ktime_get(), kstart));
673
674         RETURN(rc + sizeof(XATTR_LUSTRE_LOV));
675 }
676
677 #ifdef HAVE_XATTR_HANDLER_SIMPLIFIED
678 static int ll_xattr_get_common_4_3(const struct xattr_handler *handler,
679                                    struct dentry *dentry, const char *name,
680                                    void *buffer, size_t size)
681 {
682         return ll_xattr_get_common(handler, dentry, dentry->d_inode, name,
683                                    buffer, size);
684 }
685
686 static int ll_xattr_get_4_3(const struct xattr_handler *handler,
687                             struct dentry *dentry, const char *name,
688                             void *buffer, size_t size)
689 {
690         return ll_xattr_get(handler, dentry, dentry->d_inode, name, buffer,
691                             size);
692 }
693
694 static int ll_xattr_set_common_4_3(const struct xattr_handler *handler,
695                                    struct dentry *dentry, const char *name,
696                                    const void *value, size_t size, int flags)
697 {
698         return ll_xattr_set_common(handler, dentry, dentry->d_inode, name,
699                                    value, size, flags);
700 }
701
702 static int ll_xattr_set_4_3(const struct xattr_handler *handler,
703                             struct dentry *dentry, const char *name,
704                             const void *value, size_t size, int flags)
705 {
706         return ll_xattr_set(handler, dentry, dentry->d_inode, name, value,
707                             size, flags);
708 }
709
710 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
711 const struct xattr_handler *get_xattr_handler(int handler_flag)
712 {
713         int i = 0;
714
715         while (ll_xattr_handlers[i]) {
716                 if (ll_xattr_handlers[i]->flags == handler_flag)
717                         return ll_xattr_handlers[i];
718                 i++;
719         }
720         return NULL;
721 }
722
723 static int ll_xattr_get_common_3_11(struct dentry *dentry, const char *name,
724                                    void *buffer, size_t size, int handler_flags)
725 {
726         const struct xattr_handler *handler = get_xattr_handler(handler_flags);
727
728         if (!handler)
729                 return -ENXIO;
730
731         return ll_xattr_get_common(handler, dentry, dentry->d_inode, name,
732                                    buffer, size);
733 }
734
735 static int ll_xattr_get_3_11(struct dentry *dentry, const char *name,
736                             void *buffer, size_t size, int handler_flags)
737 {
738         const struct xattr_handler *handler = get_xattr_handler(handler_flags);
739
740         if (!handler)
741                 return -ENXIO;
742
743         return ll_xattr_get(handler, dentry, dentry->d_inode, name, buffer,
744                             size);
745 }
746
747 static int ll_xattr_set_common_3_11(struct dentry *dentry, const char *name,
748                                    const void *value, size_t size, int flags,
749                                    int handler_flags)
750 {
751         const struct xattr_handler *handler = get_xattr_handler(handler_flags);
752
753         if (!handler)
754                 return -ENXIO;
755
756         return ll_xattr_set_common(handler, dentry, dentry->d_inode, name,
757                                    value, size, flags);
758 }
759
760 static int ll_xattr_set_3_11(struct dentry *dentry, const char *name,
761                             const void *value, size_t size, int flags,
762                             int handler_flags)
763 {
764         const struct xattr_handler *handler = get_xattr_handler(handler_flags);
765
766         if (!handler)
767                 return -ENXIO;
768
769         return ll_xattr_set(handler, dentry, dentry->d_inode, name, value,
770                             size, flags);
771 }
772 #endif
773
774 static const struct xattr_handler ll_user_xattr_handler = {
775         .prefix = XATTR_USER_PREFIX,
776         .flags = XATTR_USER_T,
777 #if defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
778         .get = ll_xattr_get_common_4_3,
779         .set = ll_xattr_set_common_4_3,
780 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
781         .get = ll_xattr_get_common_3_11,
782         .set = ll_xattr_set_common_3_11,
783 #else
784         .get = ll_xattr_get_common,
785         .set = ll_xattr_set_common,
786 #endif
787 };
788
789 static const struct xattr_handler ll_trusted_xattr_handler = {
790         .prefix = XATTR_TRUSTED_PREFIX,
791         .flags = XATTR_TRUSTED_T,
792 #if defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
793         .get = ll_xattr_get_4_3,
794         .set = ll_xattr_set_4_3,
795 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
796         .get = ll_xattr_get_3_11,
797         .set = ll_xattr_set_3_11,
798 #else
799         .get = ll_xattr_get,
800         .set = ll_xattr_set,
801 #endif
802 };
803
804 static const struct xattr_handler ll_security_xattr_handler = {
805         .prefix = XATTR_SECURITY_PREFIX,
806         .flags = XATTR_SECURITY_T,
807 #if defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
808         .get = ll_xattr_get_common_4_3,
809         .set = ll_xattr_set_common_4_3,
810 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
811         .get = ll_xattr_get_common_3_11,
812         .set = ll_xattr_set_common_3_11,
813 #else
814         .get = ll_xattr_get_common,
815         .set = ll_xattr_set_common,
816 #endif
817 };
818
819 static const struct xattr_handler ll_acl_access_xattr_handler = {
820 #ifdef HAVE_XATTR_HANDLER_NAME
821         .name = XATTR_NAME_POSIX_ACL_ACCESS,
822 #else
823         .prefix = XATTR_NAME_POSIX_ACL_ACCESS,
824 #endif
825         .flags = XATTR_ACL_ACCESS_T,
826 #if defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
827         .get = ll_xattr_get_common_4_3,
828         .set = ll_xattr_set_common_4_3,
829 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
830         .get = ll_xattr_get_common_3_11,
831         .set = ll_xattr_set_common_3_11,
832 #else
833         .get = ll_xattr_get_common,
834         .set = ll_xattr_set_common,
835 #endif
836 };
837
838 static const struct xattr_handler ll_acl_default_xattr_handler = {
839 #ifdef HAVE_XATTR_HANDLER_NAME
840         .name = XATTR_NAME_POSIX_ACL_DEFAULT,
841 #else
842         .prefix = XATTR_NAME_POSIX_ACL_DEFAULT,
843 #endif
844         .flags = XATTR_ACL_DEFAULT_T,
845 #if defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
846         .get = ll_xattr_get_common_4_3,
847         .set = ll_xattr_set_common_4_3,
848 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
849         .get = ll_xattr_get_common_3_11,
850         .set = ll_xattr_set_common_3_11,
851 #else
852         .get = ll_xattr_get_common,
853         .set = ll_xattr_set_common,
854 #endif
855 };
856
857 static const struct xattr_handler ll_lustre_xattr_handler = {
858         .prefix = XATTR_LUSTRE_PREFIX,
859         .flags = XATTR_LUSTRE_T,
860 #if defined(HAVE_XATTR_HANDLER_SIMPLIFIED)
861         .get = ll_xattr_get_4_3,
862         .set = ll_xattr_set_4_3,
863 #elif !defined(HAVE_XATTR_HANDLER_INODE_PARAM)
864         .get = ll_xattr_get_3_11,
865         .set = ll_xattr_set_3_11,
866 #else
867         .get = ll_xattr_get,
868         .set = ll_xattr_set,
869 #endif
870 };
871
872 const struct xattr_handler *ll_xattr_handlers[] = {
873         &ll_user_xattr_handler,
874         &ll_trusted_xattr_handler,
875         &ll_security_xattr_handler,
876 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
877         &ll_acl_access_xattr_handler,
878         &ll_acl_default_xattr_handler,
879 #endif
880         &ll_lustre_xattr_handler,
881         NULL,
882 };