Whamcloud - gitweb
077363d0d459dc4ee9069844ad716ba245cc2f62
[fs/lustre-release.git] / lustre / mdt / mdt_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  * lustre/mdt/mdt_xattr.c
32  *
33  * Lustre Metadata Target (mdt) extended attributes management.
34  *
35  * Author: Peter Braam <braam@clusterfs.com>
36  * Author: Andreas Dilger <adilger@clusterfs.com>
37  * Author: Phil Schwan <phil@clusterfs.com>
38  * Author: Huang Hua <huanghua@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <linux/xattr.h>
44 #include <obd_class.h>
45 #include <lustre_nodemap.h>
46 #include <lustre_acl.h>
47 #include <lustre_lmv.h>
48 #include "mdt_internal.h"
49
50
51 /* return EADATA length to the caller. negative value means error */
52 static int mdt_getxattr_pack_reply(struct mdt_thread_info *info)
53 {
54         struct req_capsule *pill = info->mti_pill;
55         struct ptlrpc_request *req = mdt_info_req(info);
56         const char *xattr_name;
57         u64 valid;
58         static const char user_string[] = "user.";
59         int size;
60         int rc = 0;
61         int rc2;
62         ENTRY;
63
64         valid = info->mti_body->mbo_valid & (OBD_MD_FLXATTR | OBD_MD_FLXATTRLS);
65
66         /* Determine how many bytes we need */
67         if (valid == OBD_MD_FLXATTR) {
68                 xattr_name = req_capsule_client_get(pill, &RMF_NAME);
69                 if (!xattr_name)
70                         RETURN(-EFAULT);
71
72                 if (!(exp_connect_flags(req->rq_export) & OBD_CONNECT_XATTR) &&
73                     !strncmp(xattr_name, user_string, sizeof(user_string) - 1))
74                         RETURN(-EOPNOTSUPP);
75
76                 size = mo_xattr_get(info->mti_env,
77                                     mdt_object_child(info->mti_object),
78                                     &LU_BUF_NULL, xattr_name);
79                 if (size == -ENODATA) {
80                         /* XXX: Some client code will not handle -ENODATA
81                          * for XATTR_NAME_LOV (trusted.lov) properly.
82                          */
83                         if (strcmp(xattr_name, XATTR_NAME_LOV) == 0)
84                                 rc = 0;
85                         else
86                                 rc = -ENODATA;
87
88                         size = 0;
89                 }
90         } else if (valid == OBD_MD_FLXATTRLS) {
91                 xattr_name = "list";
92                 size = mo_xattr_list(info->mti_env,
93                                      mdt_object_child(info->mti_object),
94                                      &LU_BUF_NULL);
95         } else if (valid == OBD_MD_FLXATTRALL) {
96                 xattr_name = "all";
97                 /* N.B. eadatasize = 0 is not valid for FLXATTRALL */
98                 /* We could calculate accurate sizes, but this would
99                  * introduce a lot of overhead, let's do it later...
100                  */
101                 size = info->mti_body->mbo_eadatasize;
102                 if (size <= 0 || size > info->mti_mdt->mdt_max_ea_size ||
103                     size & (sizeof(__u32) - 1)) {
104                         DEBUG_REQ(D_ERROR, req,
105                                   "%s: invalid EA size(%d) for FLXATTRALL\n",
106                                   mdt_obd_name(info->mti_mdt), size);
107                         RETURN(-EINVAL);
108                 }
109                 req_capsule_set_size(pill, &RMF_EAVALS, RCL_SERVER, size);
110                 req_capsule_set_size(pill, &RMF_EAVALS_LENS, RCL_SERVER, size);
111         } else {
112                 CDEBUG(D_INFO, "Valid bits: %#llx\n",
113                        info->mti_body->mbo_valid);
114                 RETURN(-EINVAL);
115         }
116
117         if (size < 0) {
118                 if (size != -EOPNOTSUPP && size != -ENOENT)
119                         CERROR("%s: error geting EA size for '%s': rc = %d\n",
120                                mdt_obd_name(info->mti_mdt), xattr_name, size);
121                 RETURN(size);
122         }
123
124         if (req_capsule_has_field(pill, &RMF_ACL, RCL_SERVER))
125                 req_capsule_set_size(pill, &RMF_ACL, RCL_SERVER,
126                                      LUSTRE_POSIX_ACL_MAX_SIZE_OLD);
127
128         req_capsule_set_size(pill, &RMF_EADATA, RCL_SERVER,
129                              info->mti_body->mbo_eadatasize == 0 ? 0 : size);
130
131         rc2 = req_capsule_server_pack(pill);
132         if (rc2 < 0)
133                 RETURN(rc2);
134
135         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETXATTR_PACK))
136                 RETURN(-ENOMEM);
137
138         RETURN(rc < 0 ? rc : size);
139 }
140
141 static int mdt_nodemap_map_acl(struct mdt_thread_info *info, void *buf,
142                                size_t size, const char *name,
143                                enum nodemap_tree_type tree_type)
144 {
145         struct lu_nodemap      *nodemap;
146         struct obd_export      *exp = info->mti_exp;
147         int                     rc = size;
148
149         ENTRY;
150
151         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
152             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
153                 if (size > info->mti_mdt->mdt_max_ea_size ||
154                      (!exp_connect_large_acl(exp) &&
155                       size > LUSTRE_POSIX_ACL_MAX_SIZE_OLD))
156                         GOTO(out, rc = -ERANGE);
157
158                 nodemap = nodemap_get_from_exp(exp);
159                 if (IS_ERR(nodemap))
160                         GOTO(out, rc = PTR_ERR(nodemap));
161
162                 rc = nodemap_map_acl(nodemap, buf, size, tree_type);
163                 nodemap_putref(nodemap);
164                 if (rc < 0)
165                         GOTO(out, rc);
166         }
167 out:
168         RETURN(rc);
169 }
170
171 static int mdt_getxattr_all(struct mdt_thread_info *info,
172                             struct mdt_body *reqbody, struct mdt_body *repbody,
173                             struct lu_buf *buf, struct md_object *next)
174 {
175         const struct lu_env *env = info->mti_env;
176         char *v, *b, *eadatahead, *eadatatail;
177         __u32 *sizes;
178         int eadatasize, eavallen = 0, eavallens = 0, rc;
179
180         ENTRY;
181
182         /*
183          * The format of the pill is the following:
184          * EADATA:      attr1\0attr2\0...attrn\0
185          * EAVALS:      val1val2...valn
186          * EAVALS_LENS: 4,4,...4
187          */
188
189         eadatahead = buf->lb_buf;
190
191         /* Fill out EADATA first */
192         rc = mo_xattr_list(env, next, buf);
193         if (rc < 0)
194                 GOTO(out_shrink, rc);
195
196         eadatasize = rc;
197         eadatatail = eadatahead + eadatasize;
198
199         v = req_capsule_server_get(info->mti_pill, &RMF_EAVALS);
200         sizes = req_capsule_server_get(info->mti_pill, &RMF_EAVALS_LENS);
201
202         /* Fill out EAVALS and EAVALS_LENS */
203         for (b = eadatahead; b < eadatatail; b += strlen(b) + 1, v += rc) {
204                 buf->lb_buf = v;
205                 buf->lb_len = reqbody->mbo_eadatasize - eavallen;
206                 rc = mo_xattr_get(env, next, buf, b);
207                 if (rc < 0)
208                         GOTO(out_shrink, rc);
209                 rc = mdt_nodemap_map_acl(info, buf->lb_buf, rc, b,
210                                          NODEMAP_FS_TO_CLIENT);
211                 if (rc < 0)
212                         GOTO(out_shrink, rc);
213                 sizes[eavallens] = rc;
214                 eavallens++;
215                 eavallen += rc;
216         }
217
218 out_shrink:
219         if (rc < 0) {
220                 eadatasize = 0;
221                 eavallens = 0;
222                 eavallen = 0;
223         }
224         repbody->mbo_aclsize = eavallen;
225         repbody->mbo_max_mdsize = eavallens;
226
227         req_capsule_shrink(info->mti_pill, &RMF_EAVALS, eavallen, RCL_SERVER);
228         req_capsule_shrink(info->mti_pill, &RMF_EAVALS_LENS,
229                            eavallens * sizeof(__u32), RCL_SERVER);
230         req_capsule_shrink(info->mti_pill, &RMF_EADATA, eadatasize, RCL_SERVER);
231
232         if (rc >= 0)
233                 RETURN(eadatasize);
234         return rc;
235 }
236
237 int mdt_getxattr(struct mdt_thread_info *info)
238 {
239         struct ptlrpc_request  *req = mdt_info_req(info);
240         struct mdt_body        *reqbody;
241         struct mdt_body        *repbody = NULL;
242         struct md_object       *next;
243         struct lu_buf          *buf;
244         int                     easize, rc;
245         u64                     valid;
246         ktime_t                 kstart = ktime_get();
247         ENTRY;
248
249         LASSERT(info->mti_object != NULL);
250         LASSERT(lu_object_assert_exists(&info->mti_object->mot_obj));
251
252         CDEBUG(D_INODE, "getxattr "DFID"\n", PFID(&info->mti_body->mbo_fid1));
253
254         rc = req_check_sepol(info->mti_pill);
255         if (rc)
256                 RETURN(err_serious(rc));
257
258         reqbody = req_capsule_client_get(info->mti_pill, &RMF_MDT_BODY);
259         if (reqbody == NULL)
260                 RETURN(err_serious(-EFAULT));
261
262         rc = mdt_init_ucred(info, reqbody);
263         if (rc)
264                 RETURN(err_serious(rc));
265
266         next = mdt_object_child(info->mti_object);
267         easize = mdt_getxattr_pack_reply(info);
268         if (easize == -ENODATA)
269                 GOTO(out, rc = easize);
270         else if (easize < 0)
271                 GOTO(out, rc = err_serious(easize));
272
273         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
274         LASSERT(repbody != NULL);
275
276         /* No need further getxattr. */
277         if (easize == 0 || reqbody->mbo_eadatasize == 0)
278                 GOTO(out, rc = easize);
279
280         buf = &info->mti_buf;
281         buf->lb_buf = req_capsule_server_get(info->mti_pill, &RMF_EADATA);
282         buf->lb_len = easize;
283
284         valid = info->mti_body->mbo_valid & (OBD_MD_FLXATTR | OBD_MD_FLXATTRLS);
285
286         if (valid == OBD_MD_FLXATTR) {
287                 const char *xattr_name = req_capsule_client_get(info->mti_pill,
288                                                                 &RMF_NAME);
289                 rc = mo_xattr_get(info->mti_env, next, buf, xattr_name);
290                 if (rc < 0)
291                         GOTO(out, rc);
292
293                 rc = mdt_nodemap_map_acl(info, buf->lb_buf, rc, xattr_name,
294                                          NODEMAP_FS_TO_CLIENT);
295         } else if (valid == OBD_MD_FLXATTRLS) {
296                 CDEBUG(D_INODE, "listxattr\n");
297
298                 rc = mo_xattr_list(info->mti_env, next, buf);
299                 if (rc < 0)
300                         CDEBUG(D_INFO, "listxattr failed: %d\n", rc);
301         } else if (valid == OBD_MD_FLXATTRALL) {
302                 rc = mdt_getxattr_all(info, reqbody, repbody,
303                                       buf, next);
304         } else
305                 LBUG();
306
307         EXIT;
308 out:
309         if (rc >= 0) {
310                 mdt_counter_incr(req, LPROC_MDT_GETXATTR,
311                                  ktime_us_delta(ktime_get(), kstart));
312                 /* LU-11109: Set OBD_MD_FLXATTR on success so that
313                  * newer clients can distinguish between nonexistent
314                  * xattrs and zero length values.
315                  */
316                 repbody->mbo_valid |= OBD_MD_FLXATTR;
317                 repbody->mbo_eadatasize = rc;
318                 rc = 0;
319         }
320         mdt_exit_ucred(info);
321         return rc;
322 }
323
324 /* update dir layout after migration/restripe */
325 int mdt_dir_layout_update(struct mdt_thread_info *info)
326 {
327         const struct lu_env *env = info->mti_env;
328         struct mdt_device *mdt = info->mti_mdt;
329         struct lu_ucred *uc = mdt_ucred(info);
330         struct mdt_reint_record *rr = &info->mti_rr;
331         struct lmv_user_md *lmu = rr->rr_eadata;
332         __u32 lum_stripe_count = lmu->lum_stripe_count;
333         struct md_layout_change *mlc = &info->mti_mlc;
334         struct lmv_mds_md_v1 *lmv;
335         struct md_attr *ma = &info->mti_attr;
336         struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
337         struct mdt_object *pobj = NULL;
338         struct mdt_object *obj;
339         struct mdt_lock_handle *lhp = NULL;
340         struct mdt_lock_handle *lhc;
341         bool shrink = false;
342         int rc;
343
344         ENTRY;
345
346         if (!mdt->mdt_enable_dir_migration)
347                 RETURN(-EPERM);
348
349         if (!md_capable(uc, CAP_SYS_ADMIN) &&
350             uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
351             mdt->mdt_enable_remote_dir_gid != -1)
352                 RETURN(-EPERM);
353
354         obj = mdt_object_find(env, mdt, rr->rr_fid1);
355         if (IS_ERR(obj))
356                 RETURN(PTR_ERR(obj));
357
358         /* get parent from PFID */
359         rc = mdt_attr_get_pfid(info, obj, &ma->ma_pfid);
360         if (rc)
361                 GOTO(put_obj, rc);
362
363         pobj = mdt_object_find(env, mdt, &ma->ma_pfid);
364         if (IS_ERR(pobj))
365                 GOTO(put_obj, rc = PTR_ERR(pobj));
366
367         /* revoke object remote LOOKUP lock */
368         if (mdt_object_remote(pobj)) {
369                 rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
370                 if (rc)
371                         GOTO(put_pobj, rc);
372         }
373
374         /*
375          * lock parent if dir will be shrunk to 1 stripe, because dir will be
376          * converted to normal directory, as will change dir FID and update
377          * namespace of parent.
378          */
379         lhp = &info->mti_lh[MDT_LH_PARENT];
380         mdt_lock_reg_init(lhp, LCK_PW);
381
382         if (le32_to_cpu(lmu->lum_stripe_count) < 2) {
383                 rc = mdt_reint_object_lock(info, pobj, lhp,
384                                            MDS_INODELOCK_UPDATE, true);
385                 if (rc)
386                         GOTO(put_pobj, rc);
387         }
388
389         /* lock object */
390         lhc = &info->mti_lh[MDT_LH_CHILD];
391         mdt_lock_reg_init(lhc, LCK_EX);
392         rc = mdt_reint_striped_lock(info, obj, lhc, MDS_INODELOCK_FULL, einfo,
393                                     true);
394         if (rc)
395                 GOTO(unlock_pobj, rc);
396
397         rc = mdt_stripe_get(info, obj, ma, XATTR_NAME_LMV);
398         if (rc)
399                 GOTO(unlock_obj, rc);
400
401         /* user may run 'lfs migrate' multiple times, so it's shrunk already */
402         if (!(ma->ma_valid & MA_LMV))
403                 GOTO(unlock_obj, rc = -EALREADY);
404
405         lmv = &ma->ma_lmv->lmv_md_v1;
406         if (!lmv_is_sane(lmv))
407                 GOTO(unlock_obj, rc = -EBADF);
408
409         /* ditto */
410         if (!lmv_is_layout_changing(lmv))
411                 GOTO(unlock_obj, rc = -EALREADY);
412
413         lum_stripe_count = lmu->lum_stripe_count;
414         if (!lum_stripe_count)
415                 lum_stripe_count = cpu_to_le32(1);
416
417         if (lmv_is_migrating(lmv)) {
418                 if (lmv->lmv_migrate_offset != lum_stripe_count) {
419                         CERROR("%s: "DFID" migrate mdt count mismatch %u != %u\n",
420                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
421                                 lmv->lmv_migrate_offset, lmu->lum_stripe_count);
422                         GOTO(unlock_obj, rc = -EINVAL);
423                 }
424
425                 if (lmu->lum_stripe_offset != lmv->lmv_master_mdt_index) {
426                         CERROR("%s: "DFID" migrate mdt index mismatch %u != %u\n",
427                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
428                                 lmv->lmv_master_mdt_index,
429                                 lmu->lum_stripe_offset);
430                         GOTO(unlock_obj, rc = -EINVAL);
431                 }
432
433                 if (lum_stripe_count > 1 && lmu->lum_hash_type &&
434                     lmu->lum_hash_type !=
435                     (lmv->lmv_hash_type & cpu_to_le32(LMV_HASH_TYPE_MASK))) {
436                         CERROR("%s: "DFID" migrate mdt hash mismatch %u != %u\n",
437                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
438                                 lmv->lmv_hash_type, lmu->lum_hash_type);
439                         GOTO(unlock_obj, rc = -EINVAL);
440                 }
441
442                 shrink = true;
443         } else if (lmv_is_splitting(lmv)) {
444                 if (lmv->lmv_stripe_count != lum_stripe_count) {
445                         CERROR("%s: "DFID" stripe count mismatch %u != %u\n",
446                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
447                                 lmv->lmv_stripe_count, lmu->lum_stripe_count);
448                         GOTO(unlock_obj, rc = -EINVAL);
449                 }
450
451                 if (lmu->lum_stripe_offset != LMV_OFFSET_DEFAULT) {
452                         CERROR("%s: "DFID" dir split offset %u != -1\n",
453                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
454                                 lmu->lum_stripe_offset);
455                         GOTO(unlock_obj, rc = -EINVAL);
456                 }
457
458                 if (lmu->lum_hash_type &&
459                     lmu->lum_hash_type !=
460                     (lmv->lmv_hash_type & cpu_to_le32(LMV_HASH_TYPE_MASK))) {
461                         CERROR("%s: "DFID" split hash mismatch %u != %u\n",
462                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
463                                 lmv->lmv_hash_type, lmu->lum_hash_type);
464                         GOTO(unlock_obj, rc = -EINVAL);
465                 }
466         } else if (lmv_is_merging(lmv)) {
467                 if (lmv->lmv_merge_offset != lum_stripe_count) {
468                         CERROR("%s: "DFID" stripe count mismatch %u != %u\n",
469                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
470                                 lmv->lmv_merge_offset, lmu->lum_stripe_count);
471                         GOTO(unlock_obj, rc = -EINVAL);
472                 }
473
474                 if (lmu->lum_stripe_offset != LMV_OFFSET_DEFAULT) {
475                         CERROR("%s: "DFID" dir merge offset %u != -1\n",
476                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
477                                 lmu->lum_stripe_offset);
478                         GOTO(unlock_obj, rc = -EINVAL);
479                 }
480
481                 if (lmu->lum_hash_type &&
482                     (lmu->lum_hash_type & cpu_to_le32(LMV_HASH_TYPE_MASK)) !=
483                     (lmv->lmv_merge_hash & cpu_to_le32(LMV_HASH_TYPE_MASK))) {
484                         CERROR("%s: "DFID" merge hash mismatch %u != %u\n",
485                                 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
486                                 lmv->lmv_merge_hash, lmu->lum_hash_type);
487                         GOTO(unlock_obj, rc = -EINVAL);
488                 }
489
490                 if (lum_stripe_count < lmv->lmv_stripe_count)
491                         shrink = true;
492         }
493
494         if (shrink) {
495                 mlc->mlc_opc = MD_LAYOUT_SHRINK;
496                 mlc->mlc_buf.lb_buf = rr->rr_eadata;
497                 mlc->mlc_buf.lb_len = rr->rr_eadatalen;
498                 rc = mo_layout_change(env, mdt_object_child(obj), mlc);
499         } else {
500                 struct lu_buf *buf = &info->mti_buf;
501                 u32 version = le32_to_cpu(lmv->lmv_layout_version);
502
503                 lmv->lmv_hash_type &= ~LMV_HASH_FLAG_LAYOUT_CHANGE;
504                 lmv->lmv_layout_version = cpu_to_le32(++version);
505                 lmv->lmv_migrate_offset = 0;
506                 lmv->lmv_migrate_hash = 0;
507                 buf->lb_buf = lmv;
508                 buf->lb_len = sizeof(*lmv);
509                 rc = mo_xattr_set(env, mdt_object_child(obj), buf,
510                                   XATTR_NAME_LMV, LU_XATTR_REPLACE);
511         }
512         GOTO(unlock_obj, rc);
513
514 unlock_obj:
515         mdt_reint_striped_unlock(info, obj, lhc, einfo, rc);
516 unlock_pobj:
517         mdt_object_unlock(info, pobj, lhp, rc);
518 put_pobj:
519         mdt_object_put(env, pobj);
520 put_obj:
521         mdt_object_put(env, obj);
522
523         return rc;
524 }
525
526 int mdt_reint_setxattr(struct mdt_thread_info *info,
527                        struct mdt_lock_handle *unused)
528 {
529         struct ptlrpc_request   *req = mdt_info_req(info);
530         struct mdt_lock_handle  *lh;
531         const struct lu_env     *env  = info->mti_env;
532         struct lu_buf           *buf  = &info->mti_buf;
533         struct mdt_reint_record *rr   = &info->mti_rr;
534         struct md_attr          *ma = &info->mti_attr;
535         struct lu_attr          *attr = &info->mti_attr.ma_attr;
536         struct mdt_object       *obj;
537         struct md_object        *child;
538         __u64                    valid = attr->la_valid;
539         const char              *xattr_name = rr->rr_name.ln_name;
540         int                      xattr_len = rr->rr_eadatalen;
541         __u64                    lockpart = MDS_INODELOCK_UPDATE;
542         ktime_t                  kstart = ktime_get();
543         int                      rc;
544         ENTRY;
545
546         CDEBUG(D_INODE, "setxattr for "DFID": %s %s\n", PFID(rr->rr_fid1),
547                valid & OBD_MD_FLXATTR ? "set" : "remove", xattr_name);
548
549         if (info->mti_dlm_req)
550                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
551
552         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SETXATTR))
553                 RETURN(err_serious(-ENOMEM));
554
555         rc = mdt_init_ucred_reint(info);
556         if (rc != 0)
557                 RETURN(rc);
558
559         if (strncmp(xattr_name, XATTR_USER_PREFIX,
560                     sizeof(XATTR_USER_PREFIX) - 1) == 0) {
561                 if (!(exp_connect_flags(req->rq_export) & OBD_CONNECT_XATTR))
562                         GOTO(out, rc = -EOPNOTSUPP);
563         } else if (strncmp(xattr_name, XATTR_TRUSTED_PREFIX,
564                     sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0) {
565
566                 /* setxattr(LMV) with lum is used to shrink dir layout */
567                 if (strcmp(xattr_name, XATTR_NAME_LMV) == 0) {
568                         __u32 *magic = rr->rr_eadata;
569
570                         /* we don't let to remove LMV? */
571                         if (!rr->rr_eadata)
572                                 GOTO(out, rc = 0);
573
574                         if (le32_to_cpu(*magic) == LMV_USER_MAGIC ||
575                             le32_to_cpu(*magic) == LMV_USER_MAGIC_SPECIFIC) {
576                                 rc = mdt_dir_layout_update(info);
577                                 GOTO(out, rc);
578                         }
579                 }
580
581                 if (!md_capable(mdt_ucred(info), CAP_SYS_ADMIN))
582                         GOTO(out, rc = -EPERM);
583
584                 if (strcmp(xattr_name, XATTR_NAME_LOV) == 0 ||
585                     strcmp(xattr_name, XATTR_NAME_LMA) == 0 ||
586                     strcmp(xattr_name, XATTR_NAME_LMV) == 0 ||
587                     strcmp(xattr_name, XATTR_NAME_LINK) == 0 ||
588                     strcmp(xattr_name, XATTR_NAME_FID) == 0 ||
589                     strcmp(xattr_name, XATTR_NAME_VERSION) == 0 ||
590                     strcmp(xattr_name, XATTR_NAME_SOM) == 0 ||
591                     strcmp(xattr_name, XATTR_NAME_HSM) == 0 ||
592                     strcmp(xattr_name, XATTR_NAME_LFSCK_NAMESPACE) == 0)
593                         GOTO(out, rc = 0);
594         } else if ((valid & OBD_MD_FLXATTR) &&
595                    (strcmp(xattr_name, XATTR_NAME_ACL_ACCESS) == 0 ||
596                     strcmp(xattr_name, XATTR_NAME_ACL_DEFAULT) == 0)) {
597                 rc = mdt_nodemap_map_acl(info, rr->rr_eadata, xattr_len,
598                                          xattr_name, NODEMAP_CLIENT_TO_FS);
599                 if (rc < 0)
600                         GOTO(out, rc);
601                 /* ACLs were mapped out, return an error so the user knows */
602                 if (rc != xattr_len)
603                         GOTO(out, rc = -EPERM);
604         } else if ((strlen(xattr_name) > sizeof(XATTR_LUSTRE_LOV)) &&
605                    strncmp(xattr_name, XATTR_LUSTRE_LOV,
606                            strlen(XATTR_LUSTRE_LOV)) == 0) {
607
608                 if (!allowed_lustre_lov(xattr_name)) {
609                         CERROR("%s: invalid xattr name: %s\n",
610                                mdt_obd_name(info->mti_mdt), xattr_name);
611                         GOTO(out, rc = -EINVAL);
612                 }
613
614                 lockpart |= MDS_INODELOCK_LAYOUT;
615         }
616
617         /* Revoke all clients' lookup lock, since the access
618          * permissions for this inode is changed when ACL_ACCESS is
619          * set. This isn't needed for ACL_DEFAULT, since that does
620          * not change the access permissions of this inode, nor any
621          * other existing inodes. It is setting the ACLs inherited
622          * by new directories/files at create time.
623          */
624         /* We need revoke both LOOKUP|PERM lock here, see mdt_attr_set. */
625         if (!strcmp(xattr_name, XATTR_NAME_ACL_ACCESS))
626                 lockpart |= MDS_INODELOCK_PERM | MDS_INODELOCK_LOOKUP;
627         /* We need to take the lock on behalf of old clients so that newer
628          * clients flush their xattr caches
629          */
630         else
631                 lockpart |= MDS_INODELOCK_XATTR;
632
633         lh = &info->mti_lh[MDT_LH_PARENT];
634         /* ACLs were sent to clients under LCK_CR locks, so taking LCK_EX
635          * to cancel them.
636          */
637         mdt_lock_reg_init(lh, LCK_EX);
638         obj = mdt_object_find_lock(info, rr->rr_fid1, lh, lockpart);
639         if (IS_ERR(obj))
640                 GOTO(out, rc = PTR_ERR(obj));
641
642         tgt_vbr_obj_set(env, mdt_obj2dt(obj));
643         rc = mdt_version_get_check_save(info, obj, 0);
644         if (rc)
645                 GOTO(out_unlock, rc);
646
647         if (unlikely(!(valid & OBD_MD_FLCTIME))) {
648                 /* This isn't strictly an error, but all current clients
649                  * should set OBD_MD_FLCTIME when setting attributes.
650                  */
651                 CWARN("%s: client miss to set OBD_MD_FLCTIME when setxattr %s: [object "DFID"] [valid %llu]\n",
652                       mdt_obd_name(info->mti_mdt), xattr_name,
653                       PFID(rr->rr_fid1), valid);
654                 attr->la_ctime = ktime_get_real_seconds();
655         }
656         attr->la_valid = LA_CTIME;
657         child = mdt_object_child(obj);
658         if (valid & OBD_MD_FLXATTR) {
659                 int     flags = 0;
660
661                 if (attr->la_flags & XATTR_REPLACE)
662                         flags |= LU_XATTR_REPLACE;
663
664                 if (attr->la_flags & XATTR_CREATE)
665                         flags |= LU_XATTR_CREATE;
666
667                 mdt_fail_write(env, info->mti_mdt->mdt_bottom,
668                                OBD_FAIL_MDS_SETXATTR_WRITE);
669
670                 buf->lb_buf = rr->rr_eadata;
671                 buf->lb_len = xattr_len;
672                 rc = mo_xattr_set(env, child, buf, xattr_name, flags);
673                 /* update ctime after xattr changed */
674                 if (rc == 0) {
675                         ma->ma_attr_flags |= MDS_PERM_BYPASS;
676                         mo_attr_set(env, child, ma);
677                 }
678         } else if (valid & OBD_MD_FLXATTRRM) {
679                 rc = mo_xattr_del(env, child, xattr_name);
680                 /* update ctime after xattr changed */
681                 if (rc == 0) {
682                         ma->ma_attr_flags |= MDS_PERM_BYPASS;
683                         mo_attr_set(env, child, ma);
684                 }
685         } else {
686                 CDEBUG(D_INFO, "valid bits: %#llx\n", valid);
687                 rc = -EINVAL;
688         }
689
690         if (rc == 0)
691                 mdt_counter_incr(req, LPROC_MDT_SETXATTR,
692                                  ktime_us_delta(ktime_get(), kstart));
693
694         EXIT;
695 out_unlock:
696         mdt_object_unlock_put(info, obj, lh, rc);
697 out:
698         mdt_exit_ucred(info);
699         return rc;
700 }