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