Whamcloud - gitweb
LU-4684 migrate: migrate striped directory
[fs/lustre-release.git] / lustre / mdd / mdd_object.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  * lustre/mdd/mdd_object.c
33  *
34  * Lustre Metadata Server (mdd) routines
35  *
36  * Author: Wang Di <wangdi@clusterfs.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_MDS
40
41 #include <linux/module.h>
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <obd_support.h>
45 #include <lprocfs_status.h>
46 /* fid_be_cpu(), fid_cpu_to_be(). */
47 #include <lustre_fid.h>
48 #include <lustre_idmap.h>
49 #include <uapi/linux/lustre/lustre_param.h>
50 #include <lustre_mds.h>
51
52 #include "mdd_internal.h"
53
54 static const struct lu_object_operations mdd_lu_obj_ops;
55
56 struct mdd_object_user {
57         struct list_head        mou_list;       /**< linked off mod_users */
58         int                     mou_flags;      /**< open mode by client */
59         __u64                   mou_uidgid;     /**< uid_gid on client */
60         int                     mou_opencount;  /**< # opened */
61         ktime_t                 mou_deniednext; /**< time of next access denied
62                                                  * notfication
63                                                  */
64 };
65
66 static int mdd_xattr_get(const struct lu_env *env,
67                          struct md_object *obj, struct lu_buf *buf,
68                          const char *name);
69
70 static int mdd_changelog_data_store_by_fid(const struct lu_env *env,
71                                            struct mdd_device *mdd,
72                                            enum changelog_rec_type type,
73                                            int flags, const struct lu_fid *fid,
74                                            const char *xattr_name,
75                                            struct thandle *handle);
76
77 static inline bool has_prefix(const char *str, const char *prefix);
78
79
80 static unsigned int flags_helper(int flags)
81 {
82         unsigned int mflags = 0;
83
84         if (flags & MDS_FMODE_EXEC) {
85                 mflags = MDS_FMODE_EXEC;
86         } else {
87                 if (flags & MDS_FMODE_READ)
88                         mflags = MDS_FMODE_READ;
89                 if (flags &
90                     (MDS_FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
91                         mflags |= MDS_FMODE_WRITE;
92         }
93
94         return mflags;
95 }
96
97 /** Allocate/init a user and its sub-structures.
98  *
99  * \param flags [IN]
100  * \param uid [IN]
101  * \param gid [IN]
102  * \retval mou [OUT] success valid structure
103  * \retval mou [OUT]
104  */
105 static struct mdd_object_user *mdd_obj_user_alloc(int flags,
106                                                   uid_t uid, gid_t gid)
107 {
108         struct mdd_object_user *mou;
109
110         ENTRY;
111
112         OBD_SLAB_ALLOC_PTR(mou, mdd_object_kmem);
113         if (mou == NULL)
114                 RETURN(ERR_PTR(-ENOMEM));
115
116         mou->mou_flags = flags;
117         mou->mou_uidgid = ((__u64)uid << 32) | gid;
118         mou->mou_opencount = 0;
119         mou->mou_deniednext = ktime_set(0, 0);
120
121         RETURN(mou);
122 }
123
124 /**
125  * Free a user and its sub-structures.
126  *
127  * \param mou [IN]  user to be freed.
128  */
129 static void mdd_obj_user_free(struct mdd_object_user *mou)
130 {
131         OBD_SLAB_FREE_PTR(mou, mdd_object_kmem);
132 }
133
134 /**
135  * Find if UID/GID already has this file open
136  *
137  * Caller should have write-locked \param mdd_obj.
138  * \param mdd_obj [IN] mdd_obj
139  * \param uid [IN] client uid
140  * \param gid [IN] client gid
141  * \retval user pointer or NULL if not found
142  */
143 static
144 struct mdd_object_user *mdd_obj_user_find(struct mdd_object *mdd_obj,
145                                           uid_t uid, gid_t gid, int flags)
146 {
147         struct mdd_object_user *mou;
148         __u64 uidgid;
149
150         ENTRY;
151
152         uidgid = ((__u64)uid << 32) | gid;
153         list_for_each_entry(mou, &mdd_obj->mod_users, mou_list) {
154                 if (mou->mou_uidgid == uidgid &&
155                     flags_helper(mou->mou_flags) == flags_helper(flags))
156                         RETURN(mou);
157         }
158         RETURN(NULL);
159 }
160
161 /**
162  * Add a user to the list of openers for this file
163  *
164  * Caller should have write-locked \param mdd_obj.
165  * \param mdd_obj [IN] mdd_obj
166  * \param mou [IN] user
167  * \retval 0 success
168  * \retval -ve failure
169  */
170 static int mdd_obj_user_add(struct mdd_object *mdd_obj,
171                             struct mdd_object_user *mou,
172                             bool denied)
173 {
174         struct mdd_device *mdd = mdd_obj2mdd_dev(mdd_obj);
175         struct mdd_object_user *tmp;
176         __u32 uid = mou->mou_uidgid >> 32;
177         __u32 gid = mou->mou_uidgid & ((1UL << 32) - 1);
178
179         ENTRY;
180
181         tmp = mdd_obj_user_find(mdd_obj, uid,
182                                 gid, mou->mou_flags);
183         if (tmp != NULL)
184                 RETURN(-EEXIST);
185
186         list_add_tail(&mou->mou_list, &mdd_obj->mod_users);
187
188         if (denied)
189                 /* next 'access denied' notification cannot happen before
190                  * mou_deniednext
191                  */
192                 mou->mou_deniednext =
193                         ktime_add(ktime_get(),
194                                   ktime_set(mdd->mdd_cl.mc_deniednext, 0));
195         else
196                 mou->mou_opencount++;
197
198         RETURN(0);
199 }
200 /**
201  * Remove UID from the list
202  *
203  * Caller should have write-locked \param mdd_obj.
204  * \param mdd_obj [IN] mdd_obj
205  * \param uid [IN] user
206  * \retval -ve failure
207  */
208 static int mdd_obj_user_remove(struct mdd_object *mdd_obj,
209                                struct mdd_object_user *mou)
210 {
211         ENTRY;
212
213         if (mou == NULL)
214                 RETURN(-ENOENT);
215
216         list_del_init(&mou->mou_list);
217
218         mdd_obj_user_free(mou);
219
220         RETURN(0);
221 }
222 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
223                struct lu_attr *la)
224 {
225         int rc;
226
227         if (mdd_object_exists(obj) == 0)
228                 return -ENOENT;
229
230         rc = mdo_attr_get(env, obj, la);
231         if (unlikely(rc != 0)) {
232                 if (rc == -ENOENT)
233                         obj->mod_flags |= DEAD_OBJ;
234                 return rc;
235         }
236
237         if (la->la_valid & LA_FLAGS &&
238             la->la_flags & LUSTRE_ORPHAN_FL)
239                 obj->mod_flags |= ORPHAN_OBJ | DEAD_OBJ;
240
241         return 0;
242 }
243
244 struct mdd_thread_info *mdd_env_info(const struct lu_env *env)
245 {
246         struct mdd_thread_info *info;
247
248         lu_env_refill((struct lu_env *)env);
249         info = lu_context_key_get(&env->le_ctx, &mdd_thread_key);
250         LASSERT(info != NULL);
251         return info;
252 }
253
254 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len)
255 {
256         struct lu_buf *buf;
257
258         buf = &mdd_env_info(env)->mti_buf[0];
259         buf->lb_buf = area;
260         buf->lb_len = len;
261         return buf;
262 }
263
264 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
265                                        const void *area, ssize_t len)
266 {
267         struct lu_buf *buf;
268
269         buf = &mdd_env_info(env)->mti_buf[0];
270         buf->lb_buf = (void *)area;
271         buf->lb_len = len;
272         return buf;
273 }
274
275 struct lu_object *mdd_object_alloc(const struct lu_env *env,
276                                    const struct lu_object_header *hdr,
277                                    struct lu_device *d)
278 {
279         struct mdd_object *mdd_obj;
280         struct lu_object *o;
281
282         OBD_SLAB_ALLOC_PTR_GFP(mdd_obj, mdd_object_kmem, GFP_NOFS);
283         if (!mdd_obj)
284                 return NULL;
285
286         o = mdd2lu_obj(mdd_obj);
287         lu_object_init(o, NULL, d);
288         mdd_obj->mod_obj.mo_ops = &mdd_obj_ops;
289         mdd_obj->mod_obj.mo_dir_ops = &mdd_dir_ops;
290         mdd_obj->mod_count = 0;
291         o->lo_ops = &mdd_lu_obj_ops;
292         INIT_LIST_HEAD(&mdd_obj->mod_users);
293
294         return o;
295 }
296
297 static int mdd_object_init(const struct lu_env *env, struct lu_object *o,
298                            const struct lu_object_conf *unused)
299 {
300         struct mdd_device *d = lu2mdd_dev(o->lo_dev);
301         struct mdd_object *mdd_obj = lu2mdd_obj(o);
302         struct lu_object  *below;
303         struct lu_device  *under;
304         ENTRY;
305
306         mdd_obj->mod_cltime = ktime_set(0, 0);
307         under = &d->mdd_child->dd_lu_dev;
308         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
309         if (IS_ERR(below))
310                 RETURN(PTR_ERR(below));
311
312         lu_object_add(o, below);
313
314         RETURN(0);
315 }
316
317 static int mdd_object_start(const struct lu_env *env, struct lu_object *o)
318 {
319         int rc = 0;
320
321         if (lu_object_exists(o)) {
322                 struct mdd_object *mdd_obj = lu2mdd_obj(o);
323                 struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
324
325                 rc = mdd_la_get(env, mdd_obj, attr);
326         }
327
328         return rc;
329 }
330
331 static void mdd_object_free(const struct lu_env *env, struct lu_object *o)
332 {
333         struct mdd_object *mdd = lu2mdd_obj(o);
334         struct mdd_object_user *mou, *tmp2;
335
336         /* free user list */
337         list_for_each_entry_safe(mou, tmp2, &mdd->mod_users, mou_list) {
338                 list_del(&mou->mou_list);
339                 mdd_obj_user_free(mou);
340         }
341
342         lu_object_fini(o);
343         OBD_SLAB_FREE_PTR(mdd, mdd_object_kmem);
344 }
345
346 static int mdd_object_print(const struct lu_env *env, void *cookie,
347                             lu_printer_t p, const struct lu_object *o)
348 {
349         struct mdd_object *mdd = lu2mdd_obj((struct lu_object *)o);
350
351         return (*p)(env, cookie,
352                     LUSTRE_MDD_NAME"-object@%p(open_count=%d, valid=%x, cltime=%lldns, flags=%lx)",
353                     mdd, mdd->mod_count, mdd->mod_valid,
354                     ktime_to_ns(mdd->mod_cltime), mdd->mod_flags);
355 }
356
357 static const struct lu_object_operations mdd_lu_obj_ops = {
358         .loo_object_init    = mdd_object_init,
359         .loo_object_start   = mdd_object_start,
360         .loo_object_free    = mdd_object_free,
361         .loo_object_print   = mdd_object_print,
362 };
363
364 struct mdd_object *mdd_object_find(const struct lu_env *env,
365                                    struct mdd_device *d,
366                                    const struct lu_fid *f)
367 {
368         return md2mdd_obj(md_object_find_slice(env, &d->mdd_md_dev, f));
369 }
370
371 /*
372  * No permission check is needed.
373  */
374 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
375                  struct md_attr *ma)
376 {
377         struct mdd_object *mdd_obj = md2mdd_obj(obj);
378         int               rc;
379
380         ENTRY;
381
382         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
383         if ((ma->ma_need & MA_INODE) != 0 && mdd_is_dead_obj(mdd_obj))
384                 ma->ma_attr.la_nlink = 0;
385
386         RETURN(rc);
387 }
388
389 /*
390  * No permission check is needed.
391  */
392 static int mdd_xattr_get(const struct lu_env *env,
393                          struct md_object *obj, struct lu_buf *buf,
394                          const char *name)
395 {
396         struct mdd_object *mdd_obj = md2mdd_obj(obj);
397         struct mdd_device *mdd;
398         int rc;
399
400         ENTRY;
401
402         if (mdd_object_exists(mdd_obj) == 0) {
403                 CERROR("%s: object "DFID" not found: rc = -2\n",
404                        mdd_obj_dev_name(mdd_obj),
405                        PFID(mdd_object_fid(mdd_obj)));
406                 return -ENOENT;
407         }
408
409         /* If the object has been destroyed, then do not get LMVEA, because
410          * it needs to load stripes from the iteration of the master object,
411          * and it will cause problem if master object has been destroyed, see
412          * LU-6427 */
413         if (unlikely((mdd_obj->mod_flags & DEAD_OBJ) &&
414                      !(mdd_obj->mod_flags & ORPHAN_OBJ) &&
415                       strcmp(name, XATTR_NAME_LMV) == 0))
416                 RETURN(-ENOENT);
417
418         /* If the object has been delete from the namespace, then
419          * get linkEA should return -ENOENT as well */
420         if (unlikely((mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ)) &&
421                       strcmp(name, XATTR_NAME_LINK) == 0))
422                 RETURN(-ENOENT);
423
424         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
425         rc = mdo_xattr_get(env, mdd_obj, buf, name);
426         mdd_read_unlock(env, mdd_obj);
427
428         mdd = mdo2mdd(obj);
429
430         /* record only getting user xattrs and acls */
431         if (rc >= 0 &&
432             mdd_changelog_enabled(env, mdd, CL_GETXATTR) &&
433             (has_prefix(name, XATTR_USER_PREFIX) ||
434              has_prefix(name, XATTR_NAME_POSIX_ACL_ACCESS) ||
435              has_prefix(name, XATTR_NAME_POSIX_ACL_DEFAULT))) {
436                 struct thandle *handle;
437                 int rc2;
438
439                 LASSERT(mdo2fid(mdd_obj) != NULL);
440
441                 handle = mdd_trans_create(env, mdd);
442                 if (IS_ERR(handle))
443                         RETURN(PTR_ERR(handle));
444
445                 rc2 = mdd_declare_changelog_store(env, mdd, CL_GETXATTR, NULL,
446                                                   NULL, handle);
447                 if (rc2)
448                         GOTO(stop, rc2);
449
450                 rc2 = mdd_trans_start(env, mdd, handle);
451                 if (rc2)
452                         GOTO(stop, rc2);
453
454                 rc2 = mdd_changelog_data_store_by_fid(env, mdd, CL_GETXATTR, 0,
455                                                       mdo2fid(mdd_obj), name,
456                                                       handle);
457
458 stop:
459                 rc2 = mdd_trans_stop(env, mdd, rc2, handle);
460                 if (rc2)
461                         rc = rc2;
462         }
463
464         RETURN(rc);
465 }
466
467 /*
468  * Permission check is done when open,
469  * no need check again.
470  */
471 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
472                  struct lu_buf *buf)
473 {
474         struct mdd_object *mdd_obj = md2mdd_obj(obj);
475         struct dt_object  *next;
476         loff_t             pos = 0;
477         int                rc;
478         ENTRY;
479
480         if (mdd_object_exists(mdd_obj) == 0) {
481                 CERROR("%s: object "DFID" not found: rc = -2\n",
482                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
483                 return -ENOENT;
484         }
485
486         next = mdd_object_child(mdd_obj);
487         LASSERT(next != NULL);
488         LASSERT(next->do_body_ops != NULL);
489         LASSERT(next->do_body_ops->dbo_read != NULL);
490         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
491         rc = dt_read(env, next, buf, &pos);
492         mdd_read_unlock(env, mdd_obj);
493         RETURN(rc);
494 }
495
496 /*
497  * No permission check is needed.
498  */
499 static int mdd_xattr_list(const struct lu_env *env, struct md_object *obj,
500                           struct lu_buf *buf)
501 {
502         struct mdd_object *mdd_obj = md2mdd_obj(obj);
503         int rc;
504
505         ENTRY;
506
507         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
508         rc = mdo_xattr_list(env, mdd_obj, buf);
509         mdd_read_unlock(env, mdd_obj);
510
511         /* If the buffer is NULL then we are only here to get the
512          * length of the xattr name list. */
513         if (rc < 0 || buf->lb_buf == NULL)
514                 RETURN(rc);
515
516         /*
517          * Filter out XATTR_NAME_LINK if this is an orphan object.  See
518          * mdd_xattr_get().
519          */
520         if (unlikely(mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ))) {
521                 char   *end = (char *)buf->lb_buf + rc;
522                 char   *p = buf->lb_buf;
523
524                 while (p < end) {
525                         char   *next = p + strlen(p) + 1;
526
527                         if (strcmp(p, XATTR_NAME_LINK) == 0) {
528                                 if (end - next > 0)
529                                         memmove(p, next, end - next);
530                                 rc -= next - p;
531                                 CDEBUG(D_INFO, "Filtered out "XATTR_NAME_LINK
532                                        " of orphan "DFID"\n",
533                                        PFID(mdd_object_fid(mdd_obj)));
534                                 break;
535                         }
536
537                         p = next;
538                 }
539         }
540
541         RETURN(rc);
542 }
543
544 int mdd_invalidate(const struct lu_env *env, struct md_object *obj)
545 {
546         return mdo_invalidate(env, md2mdd_obj(obj));
547 }
548
549 int mdd_declare_create_object_internal(const struct lu_env *env,
550                                        struct mdd_object *p,
551                                        struct mdd_object *c,
552                                        struct lu_attr *attr,
553                                        struct thandle *handle,
554                                        const struct md_op_spec *spec,
555                                        struct dt_allocation_hint *hint)
556 {
557         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
558         const struct dt_index_features *feat = spec->sp_feat;
559         int rc;
560         ENTRY;
561
562         if (feat != &dt_directory_features && feat != NULL) {
563                 dof->dof_type = DFT_INDEX;
564                 dof->u.dof_idx.di_feat = feat;
565         } else {
566                 dof->dof_type = dt_mode_to_dft(attr->la_mode);
567                 if (dof->dof_type == DFT_REGULAR) {
568                         dof->u.dof_reg.striped =
569                                 md_should_create(spec->sp_cr_flags);
570                         if (spec->sp_cr_flags & MDS_OPEN_HAS_EA)
571                                 dof->u.dof_reg.striped = 0;
572                         /* is this replay? */
573                         if (spec->no_create)
574                                 dof->u.dof_reg.striped = 0;
575                 }
576         }
577
578         rc = mdo_declare_create_object(env, c, attr, hint, dof, handle);
579
580         RETURN(rc);
581 }
582
583 int mdd_create_object_internal(const struct lu_env *env, struct mdd_object *p,
584                                struct mdd_object *c, struct lu_attr *attr,
585                                struct thandle *handle,
586                                const struct md_op_spec *spec,
587                                struct dt_allocation_hint *hint)
588 {
589         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
590         int rc;
591         ENTRY;
592
593         LASSERT(!mdd_object_exists(c));
594
595         rc = mdo_create_object(env, c, attr, hint, dof, handle);
596
597         RETURN(rc);
598 }
599
600 int mdd_attr_set_internal(const struct lu_env *env, struct mdd_object *obj,
601                           const struct lu_attr *attr, struct thandle *handle,
602                           int needacl)
603 {
604         int rc;
605         ENTRY;
606
607         rc = mdo_attr_set(env, obj, attr, handle);
608 #ifdef CONFIG_FS_POSIX_ACL
609         if (!rc && (attr->la_valid & LA_MODE) && needacl)
610                 rc = mdd_acl_chmod(env, obj, attr->la_mode, handle);
611 #endif
612         RETURN(rc);
613 }
614
615 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
616                     const struct lu_attr *oattr, struct lu_attr *attr,
617                     struct thandle *handle)
618 {
619         int rc = 0;
620         ENTRY;
621
622         LASSERT(attr->la_valid & LA_CTIME);
623         LASSERT(oattr != NULL);
624
625         /* Make sure the ctime is increased only, however, it's not strictly
626          * reliable at here because there is not guarantee to hold lock on
627          * object, so we just bypass some unnecessary cmtime setting first
628          * and OSD has to check it again. */
629         if (attr->la_ctime < oattr->la_ctime)
630                 attr->la_valid &= ~(LA_MTIME | LA_CTIME);
631         else if (attr->la_valid == LA_CTIME &&
632                  attr->la_ctime == oattr->la_ctime)
633                 attr->la_valid &= ~LA_CTIME;
634
635         if (attr->la_valid != 0)
636                 rc = mdd_attr_set_internal(env, obj, attr, handle, 0);
637         RETURN(rc);
638 }
639
640 /*
641  * This gives the same functionality as the code between
642  * sys_chmod and inode_setattr
643  * chown_common and inode_setattr
644  * utimes and inode_setattr
645  * This API is ported from mds_fix_attr but remove some unnecesssary stuff.
646  */
647 static int mdd_fix_attr(const struct lu_env *env, struct mdd_object *obj,
648                         const struct lu_attr *oattr, struct lu_attr *la,
649                         const unsigned long flags)
650 {
651         struct lu_ucred  *uc;
652         int               rc = 0;
653         ENTRY;
654
655         if (!la->la_valid)
656                 RETURN(0);
657
658         /* Do not permit change file type */
659         if (la->la_valid & LA_TYPE)
660                 RETURN(-EPERM);
661
662         /* They should not be processed by setattr */
663         if (la->la_valid & (LA_NLINK | LA_RDEV | LA_BLKSIZE))
664                 RETURN(-EPERM);
665
666         LASSERT(oattr != NULL);
667
668         uc = lu_ucred_check(env);
669         if (uc == NULL)
670                 RETURN(0);
671
672         if (la->la_valid == LA_CTIME) {
673                 if (!(flags & MDS_PERM_BYPASS))
674                         /* This is only for set ctime when rename's source is
675                          * on remote MDS. */
676                         rc = mdd_may_delete(env, NULL, NULL, obj, oattr, NULL,
677                                             1, 0);
678                 if (rc == 0 && la->la_ctime <= oattr->la_ctime)
679                         la->la_valid &= ~LA_CTIME;
680                 RETURN(rc);
681         }
682
683         if (la->la_valid == LA_ATIME) {
684                 /* This is an atime-only attribute update for close RPCs. */
685                 if (la->la_atime < (oattr->la_atime +
686                                 mdd_obj2mdd_dev(obj)->mdd_atime_diff))
687                         la->la_valid &= ~LA_ATIME;
688                 RETURN(0);
689         }
690
691         /* Check if flags change. */
692         if (la->la_valid & LA_FLAGS) {
693                 unsigned int oldflags = oattr->la_flags &
694                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
695                 unsigned int newflags = la->la_flags &
696                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
697
698                 if ((uc->uc_fsuid != oattr->la_uid) &&
699                     !md_capable(uc, CFS_CAP_FOWNER))
700                         RETURN(-EPERM);
701
702                 /* The IMMUTABLE and APPEND_ONLY flags can
703                  * only be changed by the relevant capability. */
704                 if ((oldflags ^ newflags) &&
705                     !md_capable(uc, CFS_CAP_LINUX_IMMUTABLE))
706                         RETURN(-EPERM);
707
708                 if (!S_ISDIR(oattr->la_mode))
709                         la->la_flags &= ~(LUSTRE_DIRSYNC_FL | LUSTRE_TOPDIR_FL);
710         }
711
712         if (oattr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL) &&
713             (la->la_valid & ~LA_FLAGS) &&
714             !(flags & MDS_PERM_BYPASS))
715                 RETURN(-EPERM);
716
717         /* Check for setting the obj time. */
718         if ((la->la_valid & (LA_MTIME | LA_ATIME | LA_CTIME)) &&
719             !(la->la_valid & ~(LA_MTIME | LA_ATIME | LA_CTIME))) {
720                 if ((uc->uc_fsuid != oattr->la_uid) &&
721                     !md_capable(uc, CFS_CAP_FOWNER)) {
722                         rc = mdd_permission_internal(env, obj, oattr,
723                                                      MAY_WRITE);
724                         if (rc)
725                                 RETURN(rc);
726                 }
727         }
728
729         if (la->la_valid & LA_KILL_SUID) {
730                 la->la_valid &= ~LA_KILL_SUID;
731                 if ((oattr->la_mode & S_ISUID) &&
732                     !(la->la_valid & LA_MODE)) {
733                         la->la_mode = oattr->la_mode;
734                         la->la_valid |= LA_MODE;
735                 }
736                 la->la_mode &= ~S_ISUID;
737         }
738
739         if (la->la_valid & LA_KILL_SGID) {
740                 la->la_valid &= ~LA_KILL_SGID;
741                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
742                         (S_ISGID | S_IXGRP)) &&
743                     !(la->la_valid & LA_MODE)) {
744                         la->la_mode = oattr->la_mode;
745                         la->la_valid |= LA_MODE;
746                 }
747                 la->la_mode &= ~S_ISGID;
748         }
749
750         /* Make sure a caller can chmod. */
751         if (la->la_valid & LA_MODE) {
752                 if (!(flags & MDS_PERM_BYPASS) &&
753                     (uc->uc_fsuid != oattr->la_uid) &&
754                     !md_capable(uc, CFS_CAP_FOWNER))
755                         RETURN(-EPERM);
756
757                 if (la->la_mode == (umode_t) -1)
758                         la->la_mode = oattr->la_mode;
759                 else
760                         la->la_mode = (la->la_mode & S_IALLUGO) |
761                                         (oattr->la_mode & ~S_IALLUGO);
762
763                 /* Also check the setgid bit! */
764                 if (!lustre_in_group_p(uc, (la->la_valid & LA_GID) ?
765                                        la->la_gid : oattr->la_gid) &&
766                     !md_capable(uc, CFS_CAP_FSETID))
767                         la->la_mode &= ~S_ISGID;
768         } else {
769                la->la_mode = oattr->la_mode;
770         }
771
772         /* Make sure a caller can chown. */
773         if (la->la_valid & LA_UID) {
774                 if (la->la_uid == (uid_t) -1)
775                         la->la_uid = oattr->la_uid;
776                 if (((uc->uc_fsuid != oattr->la_uid) ||
777                      (la->la_uid != oattr->la_uid)) &&
778                     !md_capable(uc, CFS_CAP_CHOWN))
779                         RETURN(-EPERM);
780
781                 /* If the user or group of a non-directory has been
782                  * changed by a non-root user, remove the setuid bit.
783                  * 19981026 David C Niemi <niemi@tux.org>
784                  *
785                  * Changed this to apply to all users, including root,
786                  * to avoid some races. This is the behavior we had in
787                  * 2.0. The check for non-root was definitely wrong
788                  * for 2.2 anyway, as it should have been using
789                  * CAP_FSETID rather than fsuid -- 19990830 SD. */
790                 if (((oattr->la_mode & S_ISUID) == S_ISUID) &&
791                 !S_ISDIR(oattr->la_mode)) {
792                         la->la_mode &= ~S_ISUID;
793                         la->la_valid |= LA_MODE;
794                 }
795         }
796
797         /* Make sure caller can chgrp. */
798         if (la->la_valid & LA_GID) {
799                 if (la->la_gid == (gid_t) -1)
800                         la->la_gid = oattr->la_gid;
801                 if (((uc->uc_fsuid != oattr->la_uid) ||
802                      ((la->la_gid != oattr->la_gid) &&
803                       !lustre_in_group_p(uc, la->la_gid))) &&
804                     !md_capable(uc, CFS_CAP_CHOWN))
805                         RETURN(-EPERM);
806
807                 /* Likewise, if the user or group of a non-directory
808                  * has been changed by a non-root user, remove the
809                  * setgid bit UNLESS there is no group execute bit
810                  * (this would be a file marked for mandatory
811                  * locking).  19981026 David C Niemi <niemi@tux.org>
812                  *
813                  * Removed the fsuid check (see the comment above) --
814                  * 19990830 SD. */
815                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
816                     (S_ISGID | S_IXGRP)) && !S_ISDIR(oattr->la_mode)) {
817                         la->la_mode &= ~S_ISGID;
818                         la->la_valid |= LA_MODE;
819                 }
820         }
821
822         if (la->la_valid & (LA_SIZE | LA_BLOCKS)) {
823                 if (!((flags & MDS_OWNEROVERRIDE) &&
824                       (uc->uc_fsuid == oattr->la_uid)) &&
825                     !(flags & MDS_PERM_BYPASS)) {
826                         rc = mdd_permission_internal(env, obj, oattr,
827                                                      MAY_WRITE);
828                         if (rc != 0)
829                                 RETURN(rc);
830                 }
831         }
832
833         if (la->la_valid & LA_CTIME) {
834                 /* The pure setattr, it has the priority over what is
835                  * already set, do not drop it if ctime is equal. */
836                 if (la->la_ctime < oattr->la_ctime)
837                         la->la_valid &= ~(LA_ATIME | LA_MTIME | LA_CTIME);
838         }
839
840         RETURN(0);
841 }
842
843 static int mdd_changelog_data_store_by_fid(const struct lu_env *env,
844                                            struct mdd_device *mdd,
845                                            enum changelog_rec_type type,
846                                            int flags, const struct lu_fid *fid,
847                                            const char *xattr_name,
848                                            struct thandle *handle)
849 {
850         const struct lu_ucred *uc = lu_ucred(env);
851         struct llog_changelog_rec *rec;
852         struct lu_buf *buf;
853         int reclen;
854         int xflags = CLFE_INVALID;
855         int rc;
856
857         flags = (flags & CLF_FLAGMASK) | CLF_VERSION | CLF_EXTRA_FLAGS;
858
859         if (uc) {
860                 if (uc->uc_jobid[0] != '\0')
861                         flags |= CLF_JOBID;
862                 xflags |= CLFE_UIDGID;
863                 xflags |= CLFE_NID;
864         }
865         if (type == CL_OPEN || type == CL_DN_OPEN)
866                 xflags |= CLFE_OPEN;
867         if (type == CL_SETXATTR || type == CL_GETXATTR)
868                 xflags |= CLFE_XATTR;
869
870         reclen = llog_data_len(LLOG_CHANGELOG_HDR_SZ +
871                                changelog_rec_offset(flags & CLF_SUPPORTED,
872                                                     xflags & CLFE_SUPPORTED));
873         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
874         if (buf->lb_buf == NULL)
875                 RETURN(-ENOMEM);
876         rec = buf->lb_buf;
877
878         rec->cr_hdr.lrh_len = reclen;
879         rec->cr.cr_flags = flags;
880         rec->cr.cr_type = (__u32)type;
881         rec->cr.cr_tfid = *fid;
882         rec->cr.cr_namelen = 0;
883
884         if (flags & CLF_JOBID)
885                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
886
887         if (flags & CLF_EXTRA_FLAGS) {
888                 mdd_changelog_rec_ext_extra_flags(&rec->cr, xflags);
889                 if (xflags & CLFE_UIDGID)
890                         mdd_changelog_rec_extra_uidgid(&rec->cr,
891                                                        uc->uc_uid, uc->uc_gid);
892                 if (xflags & CLFE_NID)
893                         mdd_changelog_rec_extra_nid(&rec->cr, uc->uc_nid);
894                 if (xflags & CLFE_OPEN)
895                         mdd_changelog_rec_extra_omode(&rec->cr, flags);
896                 if (xflags & CLFE_XATTR) {
897                         if (xattr_name == NULL)
898                                 RETURN(-EINVAL);
899                         mdd_changelog_rec_extra_xattr(&rec->cr, xattr_name);
900                 }
901         }
902
903         rc = mdd_changelog_store(env, mdd, rec, handle);
904         RETURN(rc);
905 }
906
907
908 /** Store a data change changelog record
909  * If this fails, we must fail the whole transaction; we don't
910  * want the change to commit without the log entry.
911  * \param mdd_obj - mdd_object of change
912  * \param handle - transaction handle
913  */
914 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
915                              enum changelog_rec_type type, int flags,
916                              struct mdd_object *mdd_obj, struct thandle *handle)
917 {
918         int                              rc;
919
920         LASSERT(mdd_obj != NULL);
921         LASSERT(handle != NULL);
922
923         if (!mdd_changelog_enabled(env, mdd, type))
924                 RETURN(0);
925
926         if (mdd_is_volatile_obj(mdd_obj))
927                 RETURN(0);
928
929         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
930             ktime_before(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
931                 /* Don't need multiple updates in this log */
932                 /* Don't check under lock - no big deal if we get an extra
933                    entry */
934                 RETURN(0);
935         }
936
937         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
938                                              mdo2fid(mdd_obj), NULL, handle);
939         if (rc == 0)
940                 mdd_obj->mod_cltime = ktime_get();
941
942         RETURN(rc);
943 }
944
945 static int mdd_changelog_data_store_xattr(const struct lu_env *env,
946                                           struct mdd_device *mdd,
947                                           enum changelog_rec_type type,
948                                           int flags, struct mdd_object *mdd_obj,
949                                           const char *xattr_name,
950                                           struct thandle *handle)
951 {
952         int                              rc;
953
954         LASSERT(mdd_obj != NULL);
955         LASSERT(handle != NULL);
956
957         if (!mdd_changelog_enabled(env, mdd, type))
958                 RETURN(0);
959
960         if (mdd_is_volatile_obj(mdd_obj))
961                 RETURN(0);
962
963         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
964             ktime_before(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
965                 /* Don't need multiple updates in this log */
966                 /* Don't check under lock - no big deal if we get an extra
967                  * entry
968                  */
969                 RETURN(0);
970         }
971
972         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
973                                              mdo2fid(mdd_obj), xattr_name,
974                                              handle);
975         if (rc == 0)
976                 mdd_obj->mod_cltime = ktime_get();
977
978         RETURN(rc);
979 }
980
981 static int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
982                   int flags, struct md_device *m, const struct lu_fid *fid)
983 {
984         struct thandle *handle;
985         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
986         int rc;
987         ENTRY;
988
989         LASSERT(fid != NULL);
990
991         /* We'll check this again below, but we check now before we
992          * start a transaction. */
993         if (!mdd_changelog_enabled(env, mdd, type))
994                 RETURN(0);
995
996         handle = mdd_trans_create(env, mdd);
997         if (IS_ERR(handle))
998                 RETURN(PTR_ERR(handle));
999
1000         rc = mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1001         if (rc)
1002                 GOTO(stop, rc);
1003
1004         rc = mdd_trans_start(env, mdd, handle);
1005         if (rc)
1006                 GOTO(stop, rc);
1007
1008         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
1009                                              fid, NULL, handle);
1010
1011 stop:
1012         rc = mdd_trans_stop(env, mdd, rc, handle);
1013
1014         RETURN(rc);
1015 }
1016
1017 /**
1018  * Save LMA extended attributes with data from \a ma.
1019  *
1020  * HSM and Size-On-MDS data will be extracted from \ma if they are valid, if
1021  * not, LMA EA will be first read from disk, modified and write back.
1022  *
1023  */
1024 /* Precedence for choosing record type when multiple
1025  * attributes change: setattr > mtime > ctime > atime
1026  * (ctime changes when mtime does, plus chmod/chown.
1027  * atime and ctime are independent.) */
1028 static int mdd_attr_set_changelog(const struct lu_env *env,
1029                                   struct md_object *obj, struct thandle *handle,
1030                                   __u64 valid)
1031 {
1032         struct mdd_device *mdd = mdo2mdd(obj);
1033         int bits, type = 0;
1034
1035         bits =  (valid & LA_SIZE)  ? 1 << CL_TRUNC : 0;
1036         bits |= (valid & ~(LA_CTIME|LA_MTIME|LA_ATIME)) ? 1 << CL_SETATTR : 0;
1037         bits |= (valid & LA_MTIME) ? 1 << CL_MTIME : 0;
1038         bits |= (valid & LA_CTIME) ? 1 << CL_CTIME : 0;
1039         bits |= (valid & LA_ATIME) ? 1 << CL_ATIME : 0;
1040         bits = bits & mdd->mdd_cl.mc_mask;
1041         /* This is an implementation limit rather than a protocol limit */
1042         CLASSERT(CL_LAST <= sizeof(int) * 8);
1043         if (bits == 0)
1044                 return 0;
1045
1046         /* The record type is the lowest non-masked set bit */
1047         type = __ffs(bits);
1048
1049         /* FYI we only store the first CLF_FLAGMASK bits of la_valid */
1050         return mdd_changelog_data_store(env, mdd, type, (int)valid,
1051                                         md2mdd_obj(obj), handle);
1052 }
1053
1054 static int mdd_declare_attr_set(const struct lu_env *env,
1055                                 struct mdd_device *mdd,
1056                                 struct mdd_object *obj,
1057                                 const struct lu_attr *attr,
1058                                 struct thandle *handle)
1059 {
1060         int rc;
1061
1062         rc = mdo_declare_attr_set(env, obj, attr, handle);
1063         if (rc)
1064                 return rc;
1065
1066 #ifdef CONFIG_FS_POSIX_ACL
1067         if (attr->la_valid & LA_MODE) {
1068                 mdd_read_lock(env, obj, MOR_TGT_CHILD);
1069                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL,
1070                                    XATTR_NAME_ACL_ACCESS);
1071                 mdd_read_unlock(env, obj);
1072                 if (rc == -EOPNOTSUPP || rc == -ENODATA)
1073                         rc = 0;
1074                 else if (rc < 0)
1075                         return rc;
1076
1077                 if (rc != 0) {
1078                         struct lu_buf *buf = mdd_buf_get(env, NULL, rc);
1079                         rc = mdo_declare_xattr_set(env, obj, buf,
1080                                                    XATTR_NAME_ACL_ACCESS, 0,
1081                                                    handle);
1082                         if (rc)
1083                                 return rc;
1084                 }
1085         }
1086 #endif
1087
1088         rc = mdd_declare_changelog_store(env, mdd, CL_SETXATTR, NULL, NULL,
1089                                          handle);
1090         return rc;
1091 }
1092
1093 /*
1094  * LU-3671
1095  *
1096  * permission changes may require sync operation, to mitigate performance
1097  * impact, only do this for dir and when permission is reduced.
1098  *
1099  * For regular files, version is updated with permission change (see VBR), async
1100  * permission won't cause any issue, while missing permission change on
1101  * directory may affect accessibility of other objects after recovery.
1102  */
1103 static inline bool permission_needs_sync(const struct lu_attr *old,
1104                                          const struct lu_attr *new)
1105 {
1106         if (!S_ISDIR(old->la_mode))
1107                 return false;
1108
1109         if (new->la_valid & (LA_UID | LA_GID))
1110                 return true;
1111
1112         if (new->la_valid & LA_MODE &&
1113             new->la_mode & (S_ISUID | S_ISGID | S_ISVTX))
1114                 return true;
1115
1116         if ((new->la_valid & LA_MODE) &&
1117             ((new->la_mode & old->la_mode) & S_IRWXUGO) !=
1118              (old->la_mode & S_IRWXUGO))
1119                 return true;
1120
1121         return false;
1122 }
1123
1124 static inline __u64 mdd_lmm_dom_size(void *buf)
1125 {
1126         struct lov_mds_md *lmm = buf;
1127         struct lov_comp_md_v1 *comp_v1;
1128         struct lov_mds_md *v1;
1129         __u32 off;
1130
1131         if (lmm == NULL)
1132                 return 0;
1133
1134         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1135                 return 0;
1136
1137         comp_v1 = (struct lov_comp_md_v1 *)lmm;
1138         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
1139         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
1140
1141         /* DoM entry is the first entry always */
1142         if (lov_pattern(le32_to_cpu(v1->lmm_pattern)) == LOV_PATTERN_MDT)
1143                 return le64_to_cpu(comp_v1->lcm_entries[0].lcme_extent.e_end);
1144
1145         return 0;
1146 }
1147
1148 /* set attr and LOV EA at once, return updated attr */
1149 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
1150                  const struct md_attr *ma)
1151 {
1152         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1153         struct mdd_device *mdd = mdo2mdd(obj);
1154         struct thandle *handle = NULL;
1155         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
1156         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1157         const struct lu_attr *la = &ma->ma_attr;
1158         struct lu_ucred  *uc;
1159         int rc;
1160         ENTRY;
1161
1162         /* we do not use ->attr_set() for LOV/HSM EA any more */
1163         LASSERT((ma->ma_valid & MA_LOV) == 0);
1164         LASSERT((ma->ma_valid & MA_HSM) == 0);
1165
1166         rc = mdd_la_get(env, mdd_obj, attr);
1167         if (rc)
1168                 RETURN(rc);
1169
1170         *la_copy = ma->ma_attr;
1171         rc = mdd_fix_attr(env, mdd_obj, attr, la_copy, ma->ma_attr_flags);
1172         if (rc)
1173                 RETURN(rc);
1174
1175         /* no need to setattr anymore */
1176         if (la_copy->la_valid == 0) {
1177                 CDEBUG(D_INODE, "%s: no valid attribute on "DFID", previous"
1178                        "valid is %#llx\n", mdd2obd_dev(mdd)->obd_name,
1179                        PFID(mdo2fid(mdd_obj)), la->la_valid);
1180
1181                 RETURN(0);
1182         }
1183
1184         /* If an unprivileged user changes group of some file,
1185          * the setattr operation will be processed synchronously to
1186          * honor the quota limit of the corresponding group. see LU-5152 */
1187         uc = lu_ucred_check(env);
1188         if (S_ISREG(attr->la_mode) && la->la_valid & LA_GID &&
1189             la->la_gid != attr->la_gid && uc != NULL && uc->uc_fsuid != 0) {
1190                 la_copy->la_valid |= LA_FLAGS;
1191                 la_copy->la_flags |= LUSTRE_SET_SYNC_FL;
1192
1193                 /* Flush the possible existing sync requests to OSTs to
1194                  * keep the order of sync for the current setattr operation
1195                  * will be sent directly to OSTs. see LU-5152 */
1196                 rc = dt_sync(env, mdd->mdd_child);
1197                 if (rc)
1198                         GOTO(out, rc);
1199         }
1200
1201         handle = mdd_trans_create(env, mdd);
1202         if (IS_ERR(handle)) {
1203                 rc = PTR_ERR(handle);
1204                 handle = NULL;
1205
1206                 GOTO(out, rc);
1207         }
1208
1209         rc = mdd_declare_attr_set(env, mdd, mdd_obj, la_copy, handle);
1210         if (rc)
1211                 GOTO(out, rc);
1212
1213         rc = mdd_trans_start(env, mdd, handle);
1214         if (rc)
1215                 GOTO(out, rc);
1216
1217         if (mdd->mdd_sync_permission && permission_needs_sync(attr, la))
1218                 handle->th_sync = 1;
1219
1220         if (la->la_valid & (LA_MTIME | LA_CTIME))
1221                 CDEBUG(D_INODE, "setting mtime %llu, ctime %llu\n",
1222                        la->la_mtime, la->la_ctime);
1223
1224         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1225
1226         /* LU-10509: setattr of LA_SIZE should be skipped case of DOM,
1227          * otherwise following truncate will do nothing and truncated
1228          * data may be read again. This is a quick fix until LU-11033
1229          * will be resolved.
1230          */
1231         if (la_copy->la_valid & LA_SIZE) {
1232                 struct lu_buf *lov_buf = mdd_buf_get(env, NULL, 0);
1233
1234                 rc = mdd_stripe_get(env, mdd_obj, lov_buf, XATTR_NAME_LOV);
1235                 if (rc) {
1236                         rc = 0;
1237                 } else {
1238                         if (mdd_lmm_dom_size(lov_buf->lb_buf) > 0)
1239                                 la_copy->la_valid &= ~LA_SIZE;
1240                         lu_buf_free(lov_buf);
1241                 }
1242         }
1243
1244         if (la_copy->la_valid) {
1245                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
1246
1247                 if (rc == -EDQUOT && la_copy->la_flags & LUSTRE_SET_SYNC_FL) {
1248                         /* rollback to the original gid */
1249                         la_copy->la_flags &= ~LUSTRE_SET_SYNC_FL;
1250                         la_copy->la_gid = attr->la_gid;
1251                         mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
1252                 }
1253         }
1254         mdd_write_unlock(env, mdd_obj);
1255
1256 out:
1257         if (rc == 0)
1258                 rc = mdd_attr_set_changelog(env, obj, handle,
1259                                             la_copy->la_valid);
1260
1261         if (handle != NULL)
1262                 rc = mdd_trans_stop(env, mdd, rc, handle);
1263
1264         return rc;
1265 }
1266
1267 static int mdd_xattr_sanity_check(const struct lu_env *env,
1268                                   struct mdd_object *obj,
1269                                   const struct lu_attr *attr,
1270                                   const char *name)
1271 {
1272         struct lu_ucred *uc     = lu_ucred_assert(env);
1273         ENTRY;
1274
1275         if (attr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
1276                 RETURN(-EPERM);
1277
1278         if (strncmp(XATTR_USER_PREFIX, name,
1279                     sizeof(XATTR_USER_PREFIX) - 1) == 0) {
1280                 /* For sticky directories, only the owner and privileged user
1281                  * can write attributes. */
1282                 if (S_ISDIR(attr->la_mode) && (attr->la_mode & S_ISVTX) &&
1283                     (uc->uc_fsuid != attr->la_uid) &&
1284                     !md_capable(uc, CFS_CAP_FOWNER))
1285                         RETURN(-EPERM);
1286         } else if (strcmp(name, XATTR_NAME_SOM) != 0 &&
1287                    (uc->uc_fsuid != attr->la_uid) &&
1288                    !md_capable(uc, CFS_CAP_FOWNER)) {
1289                 RETURN(-EPERM);
1290         }
1291
1292         RETURN(0);
1293 }
1294
1295 /**
1296  * Check if a string begins with a given prefix.
1297  *
1298  * \param str     String to check
1299  * \param prefix  Substring to check at the beginning of \a str
1300  * \return true/false whether the condition is verified.
1301  */
1302 static inline bool has_prefix(const char *str, const char *prefix)
1303 {
1304         return strncmp(prefix, str, strlen(prefix)) == 0;
1305 }
1306
1307 /**
1308  * Indicate the kind of changelog to store (if any) for a xattr set/del.
1309  *
1310  * \param[in]  xattr_name  Full extended attribute name.
1311  *
1312  * \return The type of changelog to use, or -1 if no changelog is to be emitted.
1313  */
1314 static enum changelog_rec_type
1315 mdd_xattr_changelog_type(const struct lu_env *env, struct mdd_device *mdd,
1316                          const char *xattr_name)
1317 {
1318         /* Layout changes systematically recorded */
1319         if (strcmp(XATTR_NAME_LOV, xattr_name) == 0 ||
1320             strncmp(XATTR_LUSTRE_LOV, xattr_name,
1321                     strlen(XATTR_LUSTRE_LOV)) == 0)
1322                 return CL_LAYOUT;
1323
1324         /* HSM information changes systematically recorded */
1325         if (strcmp(XATTR_NAME_HSM, xattr_name) == 0)
1326                 return CL_HSM;
1327
1328         if (has_prefix(xattr_name, XATTR_USER_PREFIX) ||
1329             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_ACCESS) ||
1330             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_DEFAULT) ||
1331             has_prefix(xattr_name, XATTR_TRUSTED_PREFIX) ||
1332             has_prefix(xattr_name, XATTR_SECURITY_PREFIX))
1333                 return CL_SETXATTR;
1334
1335         return -1;
1336 }
1337
1338 static int mdd_declare_xattr_set(const struct lu_env *env,
1339                                  struct mdd_device *mdd,
1340                                  struct mdd_object *obj,
1341                                  const struct lu_buf *buf,
1342                                  const char *name,
1343                                  int fl, struct thandle *handle)
1344 {
1345         enum changelog_rec_type type;
1346         int rc;
1347
1348         rc = mdo_declare_xattr_set(env, obj, buf, name, fl, handle);
1349         if (rc)
1350                 return rc;
1351
1352         type = mdd_xattr_changelog_type(env, mdd, name);
1353         if (type < 0)
1354                 return 0; /* no changelog to store */
1355
1356         return mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1357 }
1358
1359 /*
1360  * Compare current and future data of HSM EA and add a changelog if needed.
1361  *
1362  * Caller should have write-locked \param obj.
1363  *
1364  * \param buf - Future HSM EA content.
1365  * \retval 0 if no changelog is needed or changelog was added properly.
1366  * \retval -ve errno if there was a problem
1367  */
1368 static int mdd_hsm_update_locked(const struct lu_env *env,
1369                                  struct md_object *obj,
1370                                  const struct lu_buf *buf,
1371                                  struct thandle *handle, int *cl_flags)
1372 {
1373         struct mdd_thread_info *info = mdd_env_info(env);
1374         struct mdd_object      *mdd_obj = md2mdd_obj(obj);
1375         struct lu_buf          *current_buf;
1376         struct md_hsm          *current_mh;
1377         struct md_hsm          *new_mh;
1378         int                     rc;
1379         ENTRY;
1380
1381         OBD_ALLOC_PTR(current_mh);
1382         if (current_mh == NULL)
1383                 RETURN(-ENOMEM);
1384
1385         /* Read HSM attrs from disk */
1386         current_buf = lu_buf_check_and_alloc(&info->mti_xattr_buf,
1387                                 mdo2mdd(obj)->mdd_dt_conf.ddp_max_ea_size);
1388         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
1389         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
1390         if (rc < 0 && rc != -ENODATA)
1391                 GOTO(free, rc);
1392         else if (rc == -ENODATA)
1393                 current_mh->mh_flags = 0;
1394
1395         /* Map future HSM xattr */
1396         OBD_ALLOC_PTR(new_mh);
1397         if (new_mh == NULL)
1398                 GOTO(free, rc = -ENOMEM);
1399         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
1400
1401         rc = 0;
1402
1403         /* Flags differ, set flags for the changelog that will be added */
1404         if (current_mh->mh_flags != new_mh->mh_flags) {
1405                 hsm_set_cl_event(cl_flags, HE_STATE);
1406                 if (new_mh->mh_flags & HS_DIRTY)
1407                         hsm_set_cl_flags(cl_flags, CLF_HSM_DIRTY);
1408         }
1409
1410         OBD_FREE_PTR(new_mh);
1411         EXIT;
1412 free:
1413         OBD_FREE_PTR(current_mh);
1414         return rc;
1415 }
1416
1417 static int mdd_object_pfid_replace(const struct lu_env *env,
1418                                    struct mdd_object *o)
1419 {
1420         struct mdd_device *mdd = mdo2mdd(&o->mod_obj);
1421         struct thandle *handle;
1422         int rc;
1423
1424         handle = mdd_trans_create(env, mdd);
1425         if (IS_ERR(handle))
1426                 RETURN(PTR_ERR(handle));
1427
1428         handle->th_complex = 1;
1429
1430         /* it doesn't need to track the PFID update via llog, because LFSCK
1431          * will repair it even it goes wrong */
1432         rc = mdd_declare_xattr_set(env, mdd, o, NULL, XATTR_NAME_FID,
1433                                    0, handle);
1434         if (rc)
1435                 GOTO(out, rc);
1436
1437         rc = mdd_trans_start(env, mdd, handle);
1438         if (rc != 0)
1439                 GOTO(out, rc);
1440
1441         rc = mdo_xattr_set(env, o, NULL, XATTR_NAME_FID, 0, handle);
1442         if (rc)
1443                 GOTO(out, rc);
1444
1445 out:
1446         mdd_trans_stop(env, mdd, rc, handle);
1447         return rc;
1448 }
1449
1450
1451 static int mdd_declare_xattr_del(const struct lu_env *env,
1452                                  struct mdd_device *mdd,
1453                                  struct mdd_object *obj,
1454                                  const char *name,
1455                                  struct thandle *handle);
1456
1457 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1458                          const char *name);
1459
1460 static int mdd_xattr_merge(const struct lu_env *env, struct md_object *md_obj,
1461                            struct md_object *md_vic)
1462 {
1463         struct mdd_device *mdd = mdo2mdd(md_obj);
1464         struct mdd_object *obj = md2mdd_obj(md_obj);
1465         struct mdd_object *vic = md2mdd_obj(md_vic);
1466         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1467         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[1];
1468         struct lov_mds_md *lmm;
1469         struct thandle *handle;
1470         int rc;
1471         ENTRY;
1472
1473         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1474         if (rc == 0) /* same fid */
1475                 RETURN(-EPERM);
1476
1477         handle = mdd_trans_create(env, mdd);
1478         if (IS_ERR(handle))
1479                 RETURN(PTR_ERR(handle));
1480
1481         if (rc > 0) {
1482                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1483                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1484         } else {
1485                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1486                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1487         }
1488
1489         /* get EA of victim file */
1490         memset(buf_vic, 0, sizeof(*buf_vic));
1491         rc = mdd_stripe_get(env, vic, buf_vic, XATTR_NAME_LOV);
1492         if (rc < 0) {
1493                 if (rc == -ENODATA)
1494                         rc = 0;
1495                 GOTO(out, rc);
1496         }
1497
1498         /* parse the layout of victim file */
1499         lmm = buf_vic->lb_buf;
1500         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1501                 GOTO(out, rc = -EINVAL);
1502
1503         /* save EA of target file for restore */
1504         memset(buf, 0, sizeof(*buf));
1505         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
1506         if (rc < 0)
1507                 GOTO(out, rc);
1508
1509         /* Get rid of the layout from victim object */
1510         rc = mdd_declare_xattr_del(env, mdd, vic, XATTR_NAME_LOV, handle);
1511         if (rc)
1512                 GOTO(out, rc);
1513
1514         rc = mdd_declare_xattr_set(env, mdd, obj, buf_vic, XATTR_LUSTRE_LOV,
1515                                    LU_XATTR_MERGE, handle);
1516         if (rc)
1517                 GOTO(out, rc);
1518
1519         rc = mdd_trans_start(env, mdd, handle);
1520         if (rc != 0)
1521                 GOTO(out, rc);
1522
1523         rc = mdo_xattr_set(env, obj, buf_vic, XATTR_LUSTRE_LOV, LU_XATTR_MERGE,
1524                            handle);
1525         if (rc)
1526                 GOTO(out, rc);
1527
1528         rc = mdo_xattr_del(env, vic, XATTR_NAME_LOV, handle);
1529         if (rc) /* wtf? */
1530                 GOTO(out_restore, rc);
1531
1532         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1533         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1534         EXIT;
1535
1536 out_restore:
1537         if (rc) {
1538                 int rc2 = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV,
1539                                         LU_XATTR_REPLACE, handle);
1540                 if (rc2)
1541                         CERROR("%s: failed to rollback of layout of: "DFID
1542                                ": %d, file state unknown\n",
1543                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1544         }
1545
1546 out:
1547         mdd_trans_stop(env, mdd, rc, handle);
1548         mdd_write_unlock(env, obj);
1549         mdd_write_unlock(env, vic);
1550         lu_buf_free(buf);
1551         lu_buf_free(buf_vic);
1552
1553         if (!rc)
1554                 (void) mdd_object_pfid_replace(env, obj);
1555
1556         return rc;
1557 }
1558
1559 /**
1560  * Extract the mirror with specified mirror id, and store the splitted
1561  * mirror layout to @buf.
1562  *
1563  * \param[in] comp_v1   mirrored layout
1564  * \param[in] mirror_id the mirror with mirror_id to be extracted
1565  * \param[out] buf      store the layout excluding the extracted mirror,
1566  *                      caller free the buffer we allocated in this function
1567  * \param[out] buf_vic  store the extracted layout, caller free the buffer
1568  *                      we allocated in this function
1569  *
1570  * \retval      0 on success; < 0 if error happens
1571  */
1572 static int mdd_split_ea(struct lov_comp_md_v1 *comp_v1, __u16 mirror_id,
1573                         struct lu_buf *buf, struct lu_buf *buf_vic)
1574 {
1575         struct lov_comp_md_v1 *comp_rem;
1576         struct lov_comp_md_v1 *comp_vic;
1577         struct lov_comp_md_entry_v1 *entry;
1578         struct lov_comp_md_entry_v1 *entry_rem;
1579         struct lov_comp_md_entry_v1 *entry_vic;
1580         __u16 mirror_cnt;
1581         __u16 comp_cnt, count = 0;
1582         int lmm_size, lmm_size_vic = 0;
1583         int i, j, k;
1584         int offset, offset_rem, offset_vic;
1585
1586         mirror_cnt = le16_to_cpu(comp_v1->lcm_mirror_count) + 1;
1587         /* comp_v1 should contains more than 1 mirror */
1588         if (mirror_cnt <= 1)
1589                 return -EINVAL;
1590         comp_cnt = le16_to_cpu(comp_v1->lcm_entry_count);
1591         lmm_size = le32_to_cpu(comp_v1->lcm_size);
1592
1593         for (i = 0; i < comp_cnt; i++) {
1594                 entry = &comp_v1->lcm_entries[i];
1595                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id) {
1596                         count++;
1597                         lmm_size_vic += sizeof(*entry);
1598                         lmm_size_vic += le32_to_cpu(entry->lcme_size);
1599                 } else if (count > 0) {
1600                         /* find the specified mirror */
1601                         break;
1602                 }
1603         }
1604
1605         if (count == 0)
1606                 return -EINVAL;
1607
1608         lu_buf_alloc(buf, lmm_size - lmm_size_vic);
1609         if (!buf->lb_buf)
1610                 return -ENOMEM;
1611
1612         lu_buf_alloc(buf_vic, sizeof(*comp_vic) + lmm_size_vic);
1613         if (!buf_vic->lb_buf) {
1614                 lu_buf_free(buf);
1615                 return -ENOMEM;
1616         }
1617
1618         comp_rem = (struct lov_comp_md_v1 *)buf->lb_buf;
1619         comp_vic = (struct lov_comp_md_v1 *)buf_vic->lb_buf;
1620
1621         memcpy(comp_rem, comp_v1, sizeof(*comp_v1));
1622         comp_rem->lcm_mirror_count = cpu_to_le16(mirror_cnt - 2);
1623         comp_rem->lcm_entry_count = cpu_to_le32(comp_cnt - count);
1624         comp_rem->lcm_size = cpu_to_le32(lmm_size - lmm_size_vic);
1625         if (!comp_rem->lcm_mirror_count)
1626                 comp_rem->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1627
1628         memset(comp_vic, 0, sizeof(*comp_v1));
1629         comp_vic->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
1630         comp_vic->lcm_mirror_count = 0;
1631         comp_vic->lcm_entry_count = cpu_to_le32(count);
1632         comp_vic->lcm_size = cpu_to_le32(lmm_size_vic + sizeof(*comp_vic));
1633         comp_vic->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1634         comp_vic->lcm_layout_gen = 0;
1635
1636         offset = sizeof(*comp_v1) + sizeof(*entry) * comp_cnt;
1637         offset_rem = sizeof(*comp_rem) +
1638                      sizeof(*entry_rem) * (comp_cnt - count);
1639         offset_vic = sizeof(*comp_vic) + sizeof(*entry_vic) * count;
1640         for (i = j = k = 0; i < comp_cnt; i++) {
1641                 struct lov_mds_md *lmm, *lmm_dst;
1642                 bool vic = false;
1643
1644                 entry = &comp_v1->lcm_entries[i];
1645                 entry_vic = &comp_vic->lcm_entries[j];
1646                 entry_rem = &comp_rem->lcm_entries[k];
1647
1648                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id)
1649                         vic = true;
1650
1651                 /* copy component entry */
1652                 if (vic) {
1653                         memcpy(entry_vic, entry, sizeof(*entry));
1654                         entry_vic->lcme_flags &= cpu_to_le32(LCME_FL_INIT);
1655                         entry_vic->lcme_offset = cpu_to_le32(offset_vic);
1656                         j++;
1657                 } else {
1658                         memcpy(entry_rem, entry, sizeof(*entry));
1659                         entry_rem->lcme_offset = cpu_to_le32(offset_rem);
1660                         k++;
1661                 }
1662
1663                 lmm = (struct lov_mds_md *)((char *)comp_v1 + offset);
1664                 if (vic)
1665                         lmm_dst = (struct lov_mds_md *)
1666                                         ((char *)comp_vic + offset_vic);
1667                 else
1668                         lmm_dst = (struct lov_mds_md *)
1669                                         ((char *)comp_rem + offset_rem);
1670
1671                 /* copy component entry blob */
1672                 memcpy(lmm_dst, lmm, le32_to_cpu(entry->lcme_size));
1673
1674                 /* blob offset advance */
1675                 offset += le32_to_cpu(entry->lcme_size);
1676                 if (vic)
1677                         offset_vic += le32_to_cpu(entry->lcme_size);
1678                 else
1679                         offset_rem += le32_to_cpu(entry->lcme_size);
1680         }
1681
1682         return 0;
1683 }
1684
1685 static int mdd_xattr_split(const struct lu_env *env, struct md_object *md_obj,
1686                            struct md_rejig_data *mrd)
1687 {
1688         struct mdd_device *mdd = mdo2mdd(md_obj);
1689         struct mdd_object *obj = md2mdd_obj(md_obj);
1690         struct mdd_object *vic = md2mdd_obj(mrd->mrd_obj);
1691         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1692         struct lu_buf *buf_save = &mdd_env_info(env)->mti_buf[1];
1693         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[2];
1694         struct lov_comp_md_v1 *lcm;
1695         struct thandle *handle;
1696         int rc;
1697         ENTRY;
1698
1699         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1700         if (rc == 0) /* same fid */
1701                 RETURN(-EPERM);
1702
1703         handle = mdd_trans_create(env, mdd);
1704         if (IS_ERR(handle))
1705                 RETURN(PTR_ERR(handle));
1706
1707         if (rc > 0) {
1708                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1709                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1710         } else {
1711                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1712                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1713         }
1714
1715         /* get EA of mirrored file */
1716         memset(buf_save, 0, sizeof(*buf));
1717         rc = mdd_stripe_get(env, obj, buf_save, XATTR_NAME_LOV);
1718         if (rc < 0)
1719                 GOTO(out, rc);
1720
1721         lcm = buf_save->lb_buf;
1722         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
1723                 GOTO(out, rc = -EINVAL);
1724
1725         /**
1726          * Extract the mirror with specified mirror id, and store the splitted
1727          * mirror layout to the victim file.
1728          */
1729         memset(buf, 0, sizeof(*buf));
1730         memset(buf_vic, 0, sizeof(*buf_vic));
1731         rc = mdd_split_ea(lcm, mrd->mrd_mirror_id, buf, buf_vic);
1732         if (rc < 0)
1733                 GOTO(out, rc);
1734
1735         rc = mdd_declare_xattr_set(env, mdd, obj, buf, XATTR_NAME_LOV,
1736                                    LU_XATTR_SPLIT, handle);
1737         if (rc)
1738                 GOTO(out, rc);
1739         rc = mdd_declare_xattr_set(env, mdd, vic, buf_vic, XATTR_NAME_LOV,
1740                                    LU_XATTR_SPLIT, handle);
1741         if (rc)
1742                 GOTO(out, rc);
1743
1744         rc = mdd_trans_start(env, mdd, handle);
1745         if (rc)
1746                 GOTO(out, rc);
1747
1748         rc = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV, LU_XATTR_REPLACE,
1749                            handle);
1750         if (rc)
1751                 GOTO(out, rc);
1752
1753         rc = mdo_xattr_set(env, vic, buf_vic, XATTR_NAME_LOV, LU_XATTR_CREATE,
1754                            handle);
1755         if (rc)
1756                 GOTO(out_restore, rc);
1757
1758         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1759         if (rc)
1760                 GOTO(out, rc);
1761
1762         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1763         if (rc)
1764                 GOTO(out, rc);
1765         EXIT;
1766
1767 out_restore:
1768         if (rc) {
1769                 /* restore obj's layout */
1770                 int rc2 = mdo_xattr_set(env, obj, buf_save, XATTR_NAME_LOV,
1771                                         LU_XATTR_REPLACE, handle);
1772                 if (rc2)
1773                         CERROR("%s: failed to rollback of layout of: "DFID
1774                                ": %d, file state unkonwn.\n",
1775                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1776         }
1777 out:
1778         mdd_trans_stop(env, mdd, rc, handle);
1779         mdd_write_unlock(env, obj);
1780         mdd_write_unlock(env, vic);
1781         lu_buf_free(buf_save);
1782         lu_buf_free(buf);
1783         lu_buf_free(buf_vic);
1784
1785         if (!rc)
1786                 (void) mdd_object_pfid_replace(env, obj);
1787
1788         return rc;
1789 }
1790
1791 static int mdd_layout_merge_allowed(const struct lu_env *env,
1792                                     struct md_object *target,
1793                                     struct md_object *victim)
1794 {
1795         struct mdd_object *o1 = md2mdd_obj(target);
1796
1797         /* cannot extend directory's LOVEA */
1798         if (S_ISDIR(mdd_object_type(o1))) {
1799                 CERROR("%s: Don't extend directory's LOVEA, just set it.\n",
1800                        mdd_obj_dev_name(o1));
1801                 RETURN(-EISDIR);
1802         }
1803
1804         RETURN(0);
1805 }
1806
1807 /**
1808  * The caller should guarantee to update the object ctime
1809  * after xattr_set if needed.
1810  */
1811 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1812                          const struct lu_buf *buf, const char *name,
1813                          int fl)
1814 {
1815         struct mdd_object       *mdd_obj = md2mdd_obj(obj);
1816         struct lu_attr          *attr = MDD_ENV_VAR(env, cattr);
1817         struct mdd_device       *mdd = mdo2mdd(obj);
1818         struct thandle          *handle;
1819         enum changelog_rec_type  cl_type;
1820         int                      cl_flags = 0;
1821         int                      rc;
1822         ENTRY;
1823
1824         rc = mdd_la_get(env, mdd_obj, attr);
1825         if (rc)
1826                 RETURN(rc);
1827
1828         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1829         if (rc)
1830                 RETURN(rc);
1831
1832         if (strcmp(name, XATTR_LUSTRE_LOV) == 0 &&
1833             (fl == LU_XATTR_MERGE || fl == LU_XATTR_SPLIT)) {
1834                 struct md_rejig_data *mrd = buf->lb_buf;
1835                 struct md_object *victim = mrd->mrd_obj;
1836
1837                 if (buf->lb_len != sizeof(*mrd))
1838                         RETURN(-EINVAL);
1839
1840                 rc = mdd_layout_merge_allowed(env, obj, victim);
1841                 if (rc)
1842                         RETURN(rc);
1843
1844                 if (fl == LU_XATTR_MERGE)
1845                         /* merge layout of victim as a mirror of obj's. */
1846                         rc = mdd_xattr_merge(env, obj, victim);
1847                 else
1848                         rc = mdd_xattr_split(env, obj, mrd);
1849                 RETURN(rc);
1850         }
1851
1852         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1853             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1854                 struct posix_acl *acl;
1855
1856                 /* user may set empty ACL, which should be treated as removing
1857                  * ACL. */
1858                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1859                                            buf->lb_len);
1860                 if (IS_ERR(acl))
1861                         RETURN(PTR_ERR(acl));
1862                 if (acl == NULL) {
1863                         rc = mdd_xattr_del(env, obj, name);
1864                         RETURN(rc);
1865                 }
1866                 posix_acl_release(acl);
1867         }
1868
1869         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1870                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1871                 RETURN(rc);
1872         }
1873
1874         handle = mdd_trans_create(env, mdd);
1875         if (IS_ERR(handle))
1876                 RETURN(PTR_ERR(handle));
1877
1878         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1879         if (rc)
1880                 GOTO(stop, rc);
1881
1882         rc = mdd_trans_start(env, mdd, handle);
1883         if (rc)
1884                 GOTO(stop, rc);
1885
1886         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1887
1888         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1889                 rc = mdd_hsm_update_locked(env, obj, buf, handle, &cl_flags);
1890                 if (rc) {
1891                         mdd_write_unlock(env, mdd_obj);
1892                         GOTO(stop, rc);
1893                 }
1894         }
1895
1896         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1897         mdd_write_unlock(env, mdd_obj);
1898         if (rc)
1899                 GOTO(stop, rc);
1900
1901         cl_type = mdd_xattr_changelog_type(env, mdd, name);
1902         if (cl_type < 0)
1903                 GOTO(stop, rc = 0);
1904
1905         rc = mdd_changelog_data_store_xattr(env, mdd, cl_type, cl_flags,
1906                                             mdd_obj, name, handle);
1907
1908         EXIT;
1909 stop:
1910         return mdd_trans_stop(env, mdd, rc, handle);
1911 }
1912
1913 static int mdd_declare_xattr_del(const struct lu_env *env,
1914                                  struct mdd_device *mdd,
1915                                  struct mdd_object *obj,
1916                                  const char *name,
1917                                  struct thandle *handle)
1918 {
1919         enum changelog_rec_type type;
1920         int rc;
1921
1922         rc = mdo_declare_xattr_del(env, obj, name, handle);
1923         if (rc)
1924                 return rc;
1925
1926         type = mdd_xattr_changelog_type(env, mdd, name);
1927         if (type < 0)
1928                 return 0; /* no changelog to store */
1929
1930         return mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
1931 }
1932
1933 /**
1934  * The caller should guarantee to update the object ctime
1935  * after xattr_set if needed.
1936  */
1937 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1938                          const char *name)
1939 {
1940         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1941         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1942         struct mdd_device *mdd = mdo2mdd(obj);
1943         struct thandle *handle;
1944         int rc;
1945         ENTRY;
1946
1947         rc = mdd_la_get(env, mdd_obj, attr);
1948         if (rc)
1949                 RETURN(rc);
1950
1951         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1952         if (rc)
1953                 RETURN(rc);
1954
1955         handle = mdd_trans_create(env, mdd);
1956         if (IS_ERR(handle))
1957                 RETURN(PTR_ERR(handle));
1958
1959         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1960         if (rc)
1961                 GOTO(stop, rc);
1962
1963         rc = mdd_trans_start(env, mdd, handle);
1964         if (rc)
1965                 GOTO(stop, rc);
1966
1967         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1968         rc = mdo_xattr_del(env, mdd_obj, name, handle);
1969         mdd_write_unlock(env, mdd_obj);
1970         if (rc)
1971                 GOTO(stop, rc);
1972
1973         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1974                 GOTO(stop, rc = 0);
1975
1976         rc = mdd_changelog_data_store_xattr(env, mdd, CL_SETXATTR, 0, mdd_obj,
1977                                             name, handle);
1978
1979         EXIT;
1980 stop:
1981         return mdd_trans_stop(env, mdd, rc, handle);
1982 }
1983
1984 /*
1985  * read lov/lmv EA of an object
1986  * return the lov/lmv EA in an allocated lu_buf
1987  */
1988 int mdd_stripe_get(const struct lu_env *env, struct mdd_object *obj,
1989                    struct lu_buf *lmm_buf, const char *name)
1990 {
1991         struct lu_buf *buf = &mdd_env_info(env)->mti_big_buf;
1992         int rc;
1993
1994         ENTRY;
1995
1996         if (buf->lb_buf == NULL) {
1997                 buf = lu_buf_check_and_alloc(buf, 4096);
1998                 if (buf->lb_buf == NULL)
1999                         RETURN(-ENOMEM);
2000         }
2001
2002 repeat:
2003         rc = mdo_xattr_get(env, obj, buf, name);
2004         if (rc == -ERANGE) {
2005                 /* mti_big_buf is allocated but is too small
2006                  * we need to increase it */
2007                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
2008                                              buf->lb_len * 2);
2009                 if (buf->lb_buf == NULL)
2010                         RETURN(-ENOMEM);
2011                 goto repeat;
2012         } else if (rc < 0) {
2013                 RETURN(rc);
2014         } else if (rc == 0) {
2015                 RETURN(-ENODATA);
2016         }
2017
2018         lu_buf_alloc(lmm_buf, rc);
2019         if (lmm_buf->lb_buf == NULL)
2020                 RETURN(-ENOMEM);
2021
2022         /*
2023          * we don't use lmm_buf directly, because we don't know xattr size, so
2024          * by using mti_big_buf we can avoid calling mdo_xattr_get() twice.
2025          */
2026         memcpy(lmm_buf->lb_buf, buf->lb_buf, rc);
2027
2028         RETURN(0);
2029 }
2030
2031 static int mdd_xattr_hsm_replace(const struct lu_env *env,
2032                                  struct mdd_object *o, struct lu_buf *buf,
2033                                  struct thandle *handle)
2034 {
2035         struct hsm_attrs *attrs;
2036         __u32 hsm_flags;
2037         int flags = 0;
2038         int rc;
2039         ENTRY;
2040
2041         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
2042                            handle);
2043         if (rc != 0)
2044                 RETURN(rc);
2045
2046         attrs = buf->lb_buf;
2047         hsm_flags = le32_to_cpu(attrs->hsm_flags);
2048         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
2049                 RETURN(0);
2050
2051         /* Add a changelog record for release. */
2052         hsm_set_cl_event(&flags, HE_RELEASE);
2053         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
2054                                       flags, o, handle);
2055         RETURN(rc);
2056 }
2057
2058 /*
2059  *  check if layout swapping between 2 objects is allowed
2060  *  the rules are:
2061  *  - only normal FIDs or non-system IGIFs
2062  *  - same type of objects
2063  *  - same owner/group (so quotas are still valid) unless this is from HSM
2064  *    release.
2065  */
2066 static int mdd_layout_swap_allowed(const struct lu_env *env,
2067                                    struct mdd_object *o1,
2068                                    const struct lu_attr *attr1,
2069                                    struct mdd_object *o2,
2070                                    const struct lu_attr *attr2,
2071                                    __u64 flags)
2072 {
2073         const struct lu_fid     *fid1, *fid2;
2074         ENTRY;
2075
2076         fid1 = mdo2fid(o1);
2077         fid2 = mdo2fid(o2);
2078
2079         if (!fid_is_norm(fid1) &&
2080             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
2081                 RETURN(-EBADF);
2082
2083         if (!fid_is_norm(fid2) &&
2084             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
2085                 RETURN(-EBADF);
2086
2087         if (mdd_object_type(o1) != mdd_object_type(o2)) {
2088                 if (S_ISDIR(mdd_object_type(o1)))
2089                         RETURN(-ENOTDIR);
2090                 if (S_ISREG(mdd_object_type(o1)))
2091                         RETURN(-EISDIR);
2092                 RETURN(-EBADF);
2093         }
2094
2095         if (flags & SWAP_LAYOUTS_MDS_HSM)
2096                 RETURN(0);
2097
2098         if ((attr1->la_uid != attr2->la_uid) ||
2099             (attr1->la_gid != attr2->la_gid))
2100                 RETURN(-EPERM);
2101
2102         RETURN(0);
2103 }
2104
2105 /* XXX To set the proper lmm_oi & lmm_layout_gen when swap layouts, we have to
2106  *     look into the layout in MDD layer. */
2107 static int mdd_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi, bool get)
2108 {
2109         struct lov_comp_md_v1   *comp_v1;
2110         struct lov_mds_md       *v1;
2111         int                      i, ent_count;
2112         __u32                    off;
2113
2114         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2115                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2116                 ent_count = le16_to_cpu(comp_v1->lcm_entry_count);
2117
2118                 if (ent_count == 0)
2119                         return -EINVAL;
2120
2121                 if (get) {
2122                         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
2123                         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
2124                         *oi = v1->lmm_oi;
2125                 } else {
2126                         for (i = 0; i < le32_to_cpu(ent_count); i++) {
2127                                 off = le32_to_cpu(comp_v1->lcm_entries[i].
2128                                                 lcme_offset);
2129                                 v1 = (struct lov_mds_md *)((char *)comp_v1 +
2130                                                 off);
2131                                 v1->lmm_oi = *oi;
2132                         }
2133                 }
2134         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2135                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2136                 if (get)
2137                         *oi = lmm->lmm_oi;
2138                 else
2139                         lmm->lmm_oi = *oi;
2140         } else {
2141                 return -EINVAL;
2142         }
2143         return 0;
2144 }
2145
2146 static inline int mdd_get_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2147 {
2148         return mdd_lmm_oi(lmm, oi, true);
2149 }
2150
2151 static inline int mdd_set_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2152 {
2153         return mdd_lmm_oi(lmm, oi, false);
2154 }
2155
2156 static int mdd_lmm_gen(struct lov_mds_md *lmm, __u32 *gen, bool get)
2157 {
2158         struct lov_comp_md_v1 *comp_v1;
2159
2160         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2161                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2162                 if (get)
2163                         *gen = le32_to_cpu(comp_v1->lcm_layout_gen);
2164                 else
2165                         comp_v1->lcm_layout_gen = cpu_to_le32(*gen);
2166         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2167                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2168                 __u16 tmp_gen = *gen;
2169                 if (get)
2170                         *gen = le16_to_cpu(lmm->lmm_layout_gen);
2171                 else
2172                         lmm->lmm_layout_gen = cpu_to_le16(tmp_gen);
2173         } else {
2174                 return -EINVAL;
2175         }
2176         return 0;
2177 }
2178
2179 static inline int mdd_get_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2180 {
2181         return mdd_lmm_gen(lmm, gen, true);
2182 }
2183
2184 static inline int mdd_set_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2185 {
2186         return mdd_lmm_gen(lmm, gen, false);
2187 }
2188
2189 /**
2190  * swap layouts between 2 lustre objects
2191  */
2192 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
2193                             struct md_object *obj2, __u64 flags)
2194 {
2195         struct mdd_thread_info  *info = mdd_env_info(env);
2196         struct mdd_object       *fst_o = md2mdd_obj(obj1);
2197         struct mdd_object       *snd_o = md2mdd_obj(obj2);
2198         struct lu_attr          *fst_la = MDD_ENV_VAR(env, cattr);
2199         struct lu_attr          *snd_la = MDD_ENV_VAR(env, tattr);
2200         struct mdd_device       *mdd = mdo2mdd(obj1);
2201         struct lov_mds_md       *fst_lmm, *snd_lmm;
2202         struct lu_buf           *fst_buf = &info->mti_buf[0];
2203         struct lu_buf           *snd_buf = &info->mti_buf[1];
2204         struct lu_buf           *fst_hsm_buf = &info->mti_buf[2];
2205         struct lu_buf           *snd_hsm_buf = &info->mti_buf[3];
2206         struct ost_id           *saved_oi = NULL;
2207         struct thandle          *handle;
2208         __u32                    fst_gen, snd_gen, saved_gen;
2209         int                      fst_fl;
2210         int                      rc;
2211         int                      rc2;
2212         ENTRY;
2213
2214         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
2215         memset(info->mti_buf, 0, sizeof(info->mti_buf));
2216
2217         /* we have to sort the 2 obj, so locking will always
2218          * be in the same order, even in case of 2 concurrent swaps */
2219         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
2220         if (rc == 0) /* same fid ? */
2221                 RETURN(-EPERM);
2222
2223         if (rc < 0)
2224                 swap(fst_o, snd_o);
2225
2226         rc = mdd_la_get(env, fst_o, fst_la);
2227         if (rc != 0)
2228                 RETURN(rc);
2229
2230         rc = mdd_la_get(env, snd_o, snd_la);
2231         if (rc != 0)
2232                 RETURN(rc);
2233
2234         /* check if layout swapping is allowed */
2235         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la, flags);
2236         if (rc != 0)
2237                 RETURN(rc);
2238
2239         handle = mdd_trans_create(env, mdd);
2240         if (IS_ERR(handle))
2241                 RETURN(PTR_ERR(handle));
2242
2243         /* objects are already sorted */
2244         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
2245         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
2246
2247         rc = mdd_stripe_get(env, fst_o, fst_buf, XATTR_NAME_LOV);
2248         if (rc < 0 && rc != -ENODATA)
2249                 GOTO(stop, rc);
2250
2251         rc = mdd_stripe_get(env, snd_o, snd_buf, XATTR_NAME_LOV);
2252         if (rc < 0 && rc != -ENODATA)
2253                 GOTO(stop, rc);
2254
2255         /* check if file is DoM, it can be migrated only to another DoM layout
2256          * with the same DoM component size
2257          */
2258         if (mdd_lmm_dom_size(fst_buf->lb_buf) !=
2259             mdd_lmm_dom_size(snd_buf->lb_buf)) {
2260                 rc = -EOPNOTSUPP;
2261                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": new layout "
2262                        "must have the same DoM component: rc = %d\n",
2263                        PFID(mdo2fid(fst_o)), rc);
2264                 GOTO(stop, rc);
2265         }
2266
2267         /* swapping 2 non existant layouts is a success */
2268         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
2269                 GOTO(stop, rc = 0);
2270
2271         /* to help inode migration between MDT, it is better to
2272          * start by the no layout file (if one), so we order the swap */
2273         if (snd_buf->lb_buf == NULL) {
2274                 swap(fst_o, snd_o);
2275                 swap(fst_buf, snd_buf);
2276         }
2277
2278         fst_gen = snd_gen = 0;
2279         /* lmm and generation layout initialization */
2280         if (fst_buf->lb_buf != NULL) {
2281                 fst_lmm = fst_buf->lb_buf;
2282                 mdd_get_lmm_gen(fst_lmm, &fst_gen);
2283                 fst_fl  = LU_XATTR_REPLACE;
2284         } else {
2285                 fst_lmm = NULL;
2286                 fst_gen = 0;
2287                 fst_fl  = LU_XATTR_CREATE;
2288         }
2289
2290         snd_lmm = snd_buf->lb_buf;
2291         mdd_get_lmm_gen(snd_lmm, &snd_gen);
2292
2293         saved_gen = fst_gen;
2294         /* increase the generation layout numbers */
2295         snd_gen++;
2296         fst_gen++;
2297
2298         /*
2299          * XXX The layout generation is used to generate component IDs for
2300          *     the composite file, we have to do some special tweaks to make
2301          *     sure the layout generation is always adequate for that job.
2302          */
2303
2304         /* Skip invalid generation number for composite layout */
2305         if ((snd_gen & LCME_ID_MASK) == 0)
2306                 snd_gen++;
2307         if ((fst_gen & LCME_ID_MASK) == 0)
2308                 fst_gen++;
2309         /* Make sure the generation is greater than all the component IDs */
2310         if (fst_gen < snd_gen)
2311                 fst_gen = snd_gen;
2312         else if (fst_gen > snd_gen)
2313                 snd_gen = fst_gen;
2314
2315         /* set the file specific informations in lmm */
2316         if (fst_lmm != NULL) {
2317                 saved_oi = &info->mti_oa.o_oi;
2318                 mdd_get_lmm_oi(fst_lmm, saved_oi);
2319                 mdd_set_lmm_gen(fst_lmm, &snd_gen);
2320                 mdd_set_lmm_oi(fst_lmm, &snd_lmm->lmm_oi);
2321                 mdd_set_lmm_oi(snd_lmm, saved_oi);
2322         } else {
2323                 if ((snd_lmm->lmm_magic & cpu_to_le32(LOV_MAGIC_MASK)) ==
2324                     cpu_to_le32(LOV_MAGIC_MAGIC))
2325                         snd_lmm->lmm_magic |= cpu_to_le32(LOV_MAGIC_DEFINED);
2326                 else
2327                         GOTO(stop, rc = -EPROTO);
2328         }
2329         mdd_set_lmm_gen(snd_lmm, &fst_gen);
2330
2331         /* Prepare HSM attribute if it's required */
2332         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2333                 const int buflen = sizeof(struct hsm_attrs);
2334
2335                 lu_buf_alloc(fst_hsm_buf, buflen);
2336                 lu_buf_alloc(snd_hsm_buf, buflen);
2337                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
2338                         GOTO(stop, rc = -ENOMEM);
2339
2340                 /* Read HSM attribute */
2341                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
2342                 if (rc < 0)
2343                         GOTO(stop, rc);
2344
2345                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
2346                 if (rc < 0)
2347                         GOTO(stop, rc);
2348
2349                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
2350                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2351                                            handle);
2352                 if (rc < 0)
2353                         GOTO(stop, rc);
2354
2355                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
2356                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2357                                            handle);
2358                 if (rc < 0)
2359                         GOTO(stop, rc);
2360         }
2361
2362         /* prepare transaction */
2363         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
2364                                    fst_fl, handle);
2365         if (rc != 0)
2366                 GOTO(stop, rc);
2367
2368         if (fst_buf->lb_buf != NULL)
2369                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
2370                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
2371                                            handle);
2372         else
2373                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
2374                                            handle);
2375         if (rc != 0)
2376                 GOTO(stop, rc);
2377
2378         rc = mdd_trans_start(env, mdd, handle);
2379         if (rc != 0)
2380                 GOTO(stop, rc);
2381
2382         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2383                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
2384                 if (rc < 0)
2385                         GOTO(stop, rc);
2386
2387                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
2388                 if (rc < 0) {
2389                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
2390                                                     handle);
2391                         if (rc2 < 0)
2392                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
2393                                        mdd_obj_dev_name(fst_o),
2394                                        PFID(mdo2fid(fst_o)), rc, rc2);
2395                         GOTO(stop, rc);
2396                 }
2397         }
2398
2399         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
2400         if (rc != 0)
2401                 GOTO(stop, rc);
2402
2403         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
2404                 rc = -EOPNOTSUPP;
2405         } else {
2406                 if (fst_buf->lb_buf != NULL)
2407                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
2408                                            LU_XATTR_REPLACE, handle);
2409                 else
2410                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
2411         }
2412         if (rc != 0)
2413                 GOTO(out_restore, rc);
2414
2415         /* Issue one changelog record per file */
2416         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
2417         if (rc)
2418                 GOTO(stop, rc);
2419
2420         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
2421         if (rc)
2422                 GOTO(stop, rc);
2423         EXIT;
2424
2425 out_restore:
2426         if (rc != 0) {
2427                 int steps = 0;
2428
2429                 /* failure on second file, but first was done, so we have
2430                  * to roll back first. */
2431                 if (fst_buf->lb_buf != NULL) {
2432                         mdd_set_lmm_oi(fst_lmm, saved_oi);
2433                         mdd_set_lmm_gen(fst_lmm, &saved_gen);
2434                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
2435                                             LU_XATTR_REPLACE, handle);
2436                 } else {
2437                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
2438                 }
2439                 if (rc2 < 0)
2440                         goto do_lbug;
2441
2442                 ++steps;
2443                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
2444                 if (rc2 < 0)
2445                         goto do_lbug;
2446
2447                 ++steps;
2448                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
2449
2450         do_lbug:
2451                 if (rc2 < 0) {
2452                         /* very bad day */
2453                         CERROR("%s: unable to roll back layout swap. FIDs: "
2454                                DFID" and "DFID "error: %d/%d, steps: %d\n",
2455                                mdd_obj_dev_name(fst_o),
2456                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
2457                                rc, rc2, steps);
2458                         /* a solution to avoid journal commit is to panic,
2459                          * but it has strong consequences so we use LBUG to
2460                          * allow sysdamin to choose to panic or not
2461                          */
2462                         LBUG();
2463                 }
2464         }
2465
2466 stop:
2467         rc = mdd_trans_stop(env, mdd, rc, handle);
2468
2469         mdd_write_unlock(env, snd_o);
2470         mdd_write_unlock(env, fst_o);
2471
2472         lu_buf_free(fst_buf);
2473         lu_buf_free(snd_buf);
2474         lu_buf_free(fst_hsm_buf);
2475         lu_buf_free(snd_hsm_buf);
2476
2477         if (!rc) {
2478                 (void) mdd_object_pfid_replace(env, fst_o);
2479                 (void) mdd_object_pfid_replace(env, snd_o);
2480         }
2481         return rc;
2482 }
2483
2484 static int mdd_declare_layout_change(const struct lu_env *env,
2485                                      struct mdd_device *mdd,
2486                                      struct mdd_object *obj,
2487                                      struct md_layout_change *mlc,
2488                                      struct thandle *handle)
2489 {
2490         int rc;
2491
2492         rc = mdo_declare_layout_change(env, obj, mlc, handle);
2493         if (rc)
2494                 return rc;
2495
2496         return mdd_declare_changelog_store(env, mdd, CL_LAYOUT, NULL, NULL,
2497                                            handle);
2498 }
2499
2500 /* For PFL, this is used to instantiate necessary component objects. */
2501 static int
2502 mdd_layout_instantiate_component(const struct lu_env *env,
2503                 struct mdd_object *obj, struct md_layout_change *mlc,
2504                 struct thandle *handle)
2505 {
2506         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2507         int rc;
2508         ENTRY;
2509
2510         if (mlc->mlc_opc != MD_LAYOUT_WRITE)
2511                 RETURN(-ENOTSUPP);
2512
2513         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2514         /**
2515          * It's possible that another layout write intent has already
2516          * instantiated our objects, so a -EALREADY returned, and we need to
2517          * do nothing.
2518          */
2519         if (rc)
2520                 RETURN(rc == -EALREADY ? 0 : rc);
2521
2522         rc = mdd_trans_start(env, mdd, handle);
2523         if (rc)
2524                 RETURN(rc);
2525
2526         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2527         rc = mdo_layout_change(env, obj, mlc, handle);
2528         mdd_write_unlock(env, obj);
2529         if (rc)
2530                 RETURN(rc);
2531
2532         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
2533         RETURN(rc);
2534 }
2535
2536 /**
2537  * Change the FLR layout from RDONLY to WRITE_PENDING.
2538  *
2539  * It picks the primary mirror, and bumps the layout version, and set
2540  * layout version xattr to OST objects in a sync tx. In order to facilitate
2541  * the handling of phantom writers from evicted clients, the clients carry
2542  * layout version of the file with write RPC, so that the OSTs can verify
2543  * if the write RPCs are legitimate, meaning not from evicted clients.
2544  */
2545 static int
2546 mdd_layout_update_rdonly(const struct lu_env *env, struct mdd_object *obj,
2547                          struct md_layout_change *mlc, struct thandle *handle)
2548 {
2549         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2550         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2551         struct lustre_som_attrs *som = &mlc->mlc_som;
2552         int fl = 0;
2553         int rc;
2554         ENTRY;
2555
2556         /* Verify acceptable operations */
2557         switch (mlc->mlc_opc) {
2558         case MD_LAYOUT_WRITE:
2559         case MD_LAYOUT_RESYNC:
2560                 /* these are legal operations - this represents the case that
2561                  * a few mirrors were missed in the last resync. */
2562                 break;
2563         case MD_LAYOUT_RESYNC_DONE:
2564         default:
2565                 RETURN(0);
2566         }
2567
2568         som_buf->lb_buf = som;
2569         som_buf->lb_len = sizeof(*som);
2570         rc = mdo_xattr_get(env, obj, som_buf, XATTR_NAME_SOM);
2571         if (rc < 0 && rc != -ENODATA)
2572                 RETURN(rc);
2573
2574         if (rc > 0) {
2575                 lustre_som_swab(som);
2576                 if (som->lsa_valid & SOM_FL_STRICT)
2577                         fl = LU_XATTR_REPLACE;
2578         }
2579
2580         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2581         if (rc)
2582                 GOTO(out, rc);
2583
2584         if (fl) {
2585                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2586                                            XATTR_NAME_SOM, fl, handle);
2587                 if (rc)
2588                         GOTO(out, rc);
2589         }
2590
2591         /* record a changelog for data mover to consume */
2592         rc = mdd_declare_changelog_store(env, mdd, CL_FLRW, NULL, NULL, handle);
2593         if (rc)
2594                 GOTO(out, rc);
2595
2596         rc = mdd_trans_start(env, mdd, handle);
2597         if (rc)
2598                 GOTO(out, rc);
2599
2600         /* it needs a sync tx to make FLR to work properly */
2601         handle->th_sync = 1;
2602
2603         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2604         rc = mdo_layout_change(env, obj, mlc, handle);
2605         if (!rc && fl) {
2606                 /* SOM state transition from STRICT to STALE */
2607                 som->lsa_valid = SOM_FL_STALE;
2608                 lustre_som_swab(som);
2609                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2610                                    fl, handle);
2611         }
2612         mdd_write_unlock(env, obj);
2613         if (rc)
2614                 GOTO(out, rc);
2615
2616         rc = mdd_changelog_data_store(env, mdd, CL_FLRW, 0, obj, handle);
2617         if (rc)
2618                 GOTO(out, rc);
2619
2620         EXIT;
2621
2622 out:
2623         return rc;
2624 }
2625
2626 /**
2627  * Handle mirrored file state transition when it's in WRITE_PENDING.
2628  *
2629  * Only MD_LAYOUT_RESYNC, which represents start of resync, is allowed when
2630  * the file is in WRITE_PENDING state. If everything goes fine, the file's
2631  * layout version will be increased, and the file's state will be changed to
2632  * SYNC_PENDING.
2633  */
2634 static int
2635 mdd_layout_update_write_pending(const struct lu_env *env,
2636                 struct mdd_object *obj, struct md_layout_change *mlc,
2637                 struct thandle *handle)
2638 {
2639         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2640         int rc;
2641         ENTRY;
2642
2643         switch (mlc->mlc_opc) {
2644         case MD_LAYOUT_RESYNC:
2645                 /* Upon receiving the resync request, it should
2646                  * instantiate all stale components right away to get ready
2647                  * for mirror copy. In order to avoid layout version change,
2648                  * client should avoid sending LAYOUT_WRITE request at the
2649                  * resync state. */
2650                 break;
2651         case MD_LAYOUT_WRITE:
2652                 /* legal race for concurrent write, the file state has been
2653                  * changed by another client. */
2654                 break;
2655         default:
2656                 RETURN(-EBUSY);
2657         }
2658
2659         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2660         if (rc)
2661                 GOTO(out, rc);
2662
2663         rc = mdd_trans_start(env, mdd, handle);
2664         if (rc)
2665                 GOTO(out, rc);
2666
2667         /* it needs a sync tx to make FLR to work properly */
2668         handle->th_sync = 1;
2669
2670         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2671         rc = mdo_layout_change(env, obj, mlc, handle);
2672         mdd_write_unlock(env, obj);
2673         if (rc)
2674                 GOTO(out, rc);
2675
2676         EXIT;
2677
2678 out:
2679         return rc;
2680 }
2681
2682 /**
2683  * Handle the requests when a FLR file's state is in SYNC_PENDING.
2684  *
2685  * Only concurrent write and sync complete requests are possible when the
2686  * file is in SYNC_PENDING. For the latter request, it will pass in the
2687  * mirrors that have been synchronized, then the stale bit will be cleared
2688  * to make the file's state turn into RDONLY.
2689  * For concurrent write reqeust, it just needs to change the file's state
2690  * to WRITE_PENDING in a sync tx. It doesn't have to change the layout
2691  * version because the version will be increased in the transition to
2692  * SYNC_PENDING later so that it can deny the write request from potential
2693  * evicted SYNC clients. */
2694 static int
2695 mdd_object_update_sync_pending(const struct lu_env *env, struct mdd_object *obj,
2696                 struct md_layout_change *mlc, struct thandle *handle)
2697 {
2698         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2699         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2700         int fl = 0;
2701         int rc;
2702         ENTRY;
2703
2704         /* operation validation */
2705         switch (mlc->mlc_opc) {
2706         case MD_LAYOUT_RESYNC_DONE:
2707                 /* resync complete. */
2708         case MD_LAYOUT_WRITE:
2709                 /* concurrent write. */
2710                 break;
2711         case MD_LAYOUT_RESYNC:
2712                 /* resync again, most likely the previous run failed.
2713                  * no-op if it's already in SYNC_PENDING state */
2714                 RETURN(0);
2715         default:
2716                 RETURN(-EBUSY);
2717         }
2718
2719         if (mlc->mlc_som.lsa_valid & SOM_FL_STRICT) {
2720                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_SOM);
2721                 if (rc < 0 && rc != -ENODATA)
2722                         RETURN(rc);
2723
2724                 fl = rc == -ENODATA ? LU_XATTR_CREATE : LU_XATTR_REPLACE;
2725                 lustre_som_swab(&mlc->mlc_som);
2726                 som_buf->lb_buf = &mlc->mlc_som;
2727                 som_buf->lb_len = sizeof(mlc->mlc_som);
2728         }
2729
2730         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2731         if (rc)
2732                 GOTO(out, rc);
2733
2734         /* record a changelog for the completion of resync */
2735         rc = mdd_declare_changelog_store(env, mdd, CL_RESYNC, NULL, NULL,
2736                                          handle);
2737         if (rc)
2738                 GOTO(out, rc);
2739
2740         /* RESYNC_DONE has piggybacked size and blocks */
2741         if (fl) {
2742                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2743                                            XATTR_NAME_SOM, fl, handle);
2744                 if (rc)
2745                         GOTO(out, rc);
2746         }
2747
2748         rc = mdd_trans_start(env, mdd, handle);
2749         if (rc)
2750                 GOTO(out, rc);
2751
2752         /* it needs a sync tx to make FLR to work properly */
2753         handle->th_sync = 1;
2754
2755         rc = mdo_layout_change(env, obj, mlc, handle);
2756         if (rc)
2757                 GOTO(out, rc);
2758
2759         if (fl) {
2760                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2761                                    fl, handle);
2762                 if (rc)
2763                         GOTO(out, rc);
2764         }
2765
2766         rc = mdd_changelog_data_store(env, mdd, CL_RESYNC, 0, obj, handle);
2767         if (rc)
2768                 GOTO(out, rc);
2769         EXIT;
2770 out:
2771         return rc;
2772 }
2773
2774 /**
2775  * Layout change callback for object.
2776  *
2777  * This is only used by FLR for now. In the future, it can be exteneded to
2778  * handle all layout change.
2779  */
2780 static int
2781 mdd_layout_change(const struct lu_env *env, struct md_object *o,
2782                   struct md_layout_change *mlc)
2783 {
2784         struct mdd_object       *obj = md2mdd_obj(o);
2785         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
2786         struct lu_buf           *buf = mdd_buf_get(env, NULL, 0);
2787         struct lov_comp_md_v1   *lcm;
2788         struct thandle          *handle;
2789         int flr_state;
2790         int rc;
2791         ENTRY;
2792
2793         /* Verify acceptable operations */
2794         switch (mlc->mlc_opc) {
2795         case MD_LAYOUT_WRITE:
2796         case MD_LAYOUT_RESYNC:
2797         case MD_LAYOUT_RESYNC_DONE:
2798                 break;
2799         default:
2800                 RETURN(-ENOTSUPP);
2801         }
2802
2803         handle = mdd_trans_create(env, mdd);
2804         if (IS_ERR(handle))
2805                 RETURN(PTR_ERR(handle));
2806
2807         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
2808         if (rc < 0) {
2809                 if (rc == -ENODATA)
2810                         rc = -EINVAL;
2811                 GOTO(out, rc);
2812         }
2813
2814         /* analyze the layout to make sure it's a FLR file */
2815         lcm = buf->lb_buf;
2816         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2817                 GOTO(out, rc = -EINVAL);
2818
2819         flr_state = le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK;
2820
2821         /* please refer to HLD of FLR for state transition */
2822         switch (flr_state) {
2823         case LCM_FL_NONE:
2824                 rc = mdd_layout_instantiate_component(env, obj, mlc, handle);
2825                 break;
2826         case LCM_FL_WRITE_PENDING:
2827                 rc = mdd_layout_update_write_pending(env, obj, mlc, handle);
2828                 break;
2829         case LCM_FL_RDONLY:
2830                 rc = mdd_layout_update_rdonly(env, obj, mlc, handle);
2831                 break;
2832         case LCM_FL_SYNC_PENDING:
2833                 rc = mdd_object_update_sync_pending(env, obj, mlc, handle);
2834                 break;
2835         default:
2836                 rc = 0;
2837                 break;
2838         }
2839         EXIT;
2840
2841 out:
2842         mdd_trans_stop(env, mdd, rc, handle);
2843         lu_buf_free(buf);
2844         return rc;
2845 }
2846
2847 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
2848                           struct mdd_object *child, const struct lu_attr *attr,
2849                           const struct md_op_spec *spec,
2850                           struct dt_allocation_hint *hint)
2851 {
2852         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
2853         struct dt_object *nc = mdd_object_child(child);
2854
2855         memset(hint, 0, sizeof(*hint));
2856
2857         /* For striped directory, give striping EA to lod_ah_init, which will
2858          * decide the stripe_offset and stripe count by it. */
2859         if (S_ISDIR(attr->la_mode) &&
2860             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
2861                 hint->dah_eadata = spec->u.sp_ea.eadata;
2862                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
2863         } else {
2864                 hint->dah_eadata = NULL;
2865                 hint->dah_eadata_len = 0;
2866         }
2867
2868         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
2869                hint->dah_eadata, hint->dah_eadata_len);
2870         /* @hint will be initialized by underlying device. */
2871         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
2872 }
2873
2874 /*
2875  * do NOT or the MAY_*'s, you'll get the weakest
2876  */
2877 int accmode(const struct lu_env *env, const struct lu_attr *la, int flags)
2878 {
2879         int res = 0;
2880
2881         /* Sadly, NFSD reopens a file repeatedly during operation, so the
2882          * "acc_mode = 0" allowance for newly-created files isn't honoured.
2883          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
2884          * owner can write to a file even if it is marked readonly to hide
2885          * its brokenness. (bug 5781) */
2886         if (flags & MDS_OPEN_OWNEROVERRIDE) {
2887                 struct lu_ucred *uc = lu_ucred_check(env);
2888
2889                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
2890                         return 0;
2891         }
2892
2893         if (flags & MDS_FMODE_READ)
2894                 res |= MAY_READ;
2895         if (flags & (MDS_FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
2896                 res |= MAY_WRITE;
2897         if (flags & MDS_FMODE_EXEC)
2898                 res = MAY_EXEC;
2899         return res;
2900 }
2901
2902 static int mdd_open_sanity_check(const struct lu_env *env,
2903                                 struct mdd_object *obj,
2904                                 const struct lu_attr *attr, int flag)
2905 {
2906         int mode, rc;
2907         ENTRY;
2908
2909         /* EEXIST check */
2910         if (mdd_is_dead_obj(obj))
2911                 RETURN(-ENOENT);
2912
2913         if (S_ISLNK(attr->la_mode))
2914                 RETURN(-ELOOP);
2915
2916         mode = accmode(env, attr, flag);
2917
2918         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
2919                 RETURN(-EISDIR);
2920
2921         if (!(flag & MDS_OPEN_CREATED)) {
2922                 rc = mdd_permission_internal(env, obj, attr, mode);
2923                 if (rc)
2924                         RETURN(rc);
2925         }
2926
2927         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
2928             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
2929                 flag &= ~MDS_OPEN_TRUNC;
2930
2931         /* For writing append-only file must open it with append mode. */
2932         if (attr->la_flags & LUSTRE_APPEND_FL) {
2933                 if ((flag & MDS_FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
2934                         RETURN(-EPERM);
2935                 if (flag & MDS_OPEN_TRUNC)
2936                         RETURN(-EPERM);
2937         }
2938
2939         RETURN(0);
2940 }
2941
2942 static int mdd_open(const struct lu_env *env, struct md_object *obj,
2943                     int flags)
2944 {
2945         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2946         struct md_device *md_dev = lu2md_dev(mdd2lu_dev(mdo2mdd(obj)));
2947         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
2948         struct mdd_object_user *mou = NULL;
2949         const struct lu_ucred *uc = lu_ucred(env);
2950         struct mdd_device *mdd = mdo2mdd(obj);
2951         enum changelog_rec_type type = CL_OPEN;
2952         int rc = 0;
2953
2954         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2955
2956         rc = mdd_la_get(env, mdd_obj, attr);
2957         if (rc != 0)
2958                 GOTO(out, rc);
2959
2960         rc = mdd_open_sanity_check(env, mdd_obj, attr, flags);
2961         if ((rc == -EACCES) && (mdd->mdd_cl.mc_mask & (1 << CL_DN_OPEN)))
2962                 type = CL_DN_OPEN;
2963         else if (rc != 0)
2964                 GOTO(out, rc);
2965         else
2966                 mdd_obj->mod_count++;
2967
2968         if (!mdd_changelog_enabled(env, mdd, type))
2969                 GOTO(out, rc);
2970
2971 find:
2972         /* look for existing opener in list under mdd_write_lock */
2973         mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid, flags);
2974
2975         if (!mou) {
2976                 int rc2;
2977
2978                 /* add user to list */
2979                 mou = mdd_obj_user_alloc(flags, uc->uc_uid, uc->uc_gid);
2980                 if (IS_ERR(mou)) {
2981                         if (rc == 0)
2982                                 rc = PTR_ERR(mou);
2983                         GOTO(out, rc);
2984                 }
2985                 rc2 = mdd_obj_user_add(mdd_obj, mou, type == CL_DN_OPEN);
2986                 if (rc2 != 0) {
2987                         mdd_obj_user_free(mou);
2988                         if (rc2 == -EEXIST)
2989                                 GOTO(find, rc2);
2990                 }
2991         } else {
2992                 if (type == CL_DN_OPEN) {
2993                         if (ktime_before(ktime_get(), mou->mou_deniednext))
2994                                 /* same user denied again same access within
2995                                  * time interval: do not record
2996                                  */
2997                                 GOTO(out, rc);
2998
2999                         /* this user already denied, but some time ago:
3000                          * update denied time
3001                          */
3002                         mou->mou_deniednext =
3003                                 ktime_add(ktime_get(),
3004                                           ktime_set(mdd->mdd_cl.mc_deniednext,
3005                                                     0));
3006                 } else {
3007                         mou->mou_opencount++;
3008                         /* same user opening file again with same flags:
3009                          * don't record
3010                          */
3011                         GOTO(out, rc);
3012                 }
3013         }
3014
3015         mdd_changelog(env, type, flags, md_dev, mdo2fid(mdd_obj));
3016
3017         EXIT;
3018 out:
3019         mdd_write_unlock(env, mdd_obj);
3020         return rc;
3021 }
3022
3023 static int mdd_declare_close(const struct lu_env *env, struct mdd_object *obj,
3024                              struct md_attr *ma, struct thandle *handle)
3025 {
3026         int rc;
3027
3028         rc = mdd_orphan_declare_delete(env, obj, handle);
3029         if (rc)
3030                 return rc;
3031
3032         return mdo_declare_destroy(env, obj, handle);
3033 }
3034
3035 /*
3036  * No permission check is needed.
3037  */
3038 static int mdd_close(const struct lu_env *env, struct md_object *obj,
3039                      struct md_attr *ma, int mode)
3040 {
3041         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3042         struct mdd_device *mdd = mdo2mdd(obj);
3043         struct thandle *handle = NULL;
3044         int is_orphan = 0;
3045         int rc;
3046         bool blocked = false;
3047         int last_close_by_uid = 0;
3048         const struct lu_ucred *uc = lu_ucred(env);
3049         ENTRY;
3050
3051         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
3052                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3053                 mdd_obj->mod_count--;
3054                 mdd_write_unlock(env, mdd_obj);
3055
3056                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
3057                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
3058                                 "list\n", PFID(mdd_object_fid(mdd_obj)));
3059                 RETURN(0);
3060         }
3061
3062         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
3063          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
3064         /* check without any lock */
3065         is_orphan = mdd_obj->mod_count == 1 &&
3066                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
3067
3068 again:
3069         if (is_orphan) {
3070                 /* mdd_trans_create() maybe failed because of barrier_entry(),
3071                  * under such case, the orphan MDT-object will be left in the
3072                  * orphan list, and when the MDT remount next time, the unused
3073                  * orphans will be destroyed automatically.
3074                  *
3075                  * One exception: the former mdd_finish_unlink may failed to
3076                  * add the orphan MDT-object to the orphan list, then if the
3077                  * mdd_trans_create() failed because of barrier_entry(), the
3078                  * MDT-object will become real orphan that is neither in the
3079                  * namespace nor in the orphan list. Such bad case should be
3080                  * very rare and will be handled by e2fsck/lfsck. */
3081                 handle = mdd_trans_create(env, mdo2mdd(obj));
3082                 if (IS_ERR(handle)) {
3083                         rc = PTR_ERR(handle);
3084                         if (rc != -EINPROGRESS)
3085                                 GOTO(stop, rc);
3086
3087                         handle = NULL;
3088                         blocked = true;
3089                         goto cont;
3090                 }
3091
3092                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
3093                 if (rc)
3094                         GOTO(stop, rc);
3095
3096                 rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE, NULL, NULL,
3097                                                  handle);
3098                 if (rc)
3099                         GOTO(stop, rc);
3100
3101                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3102                 if (rc)
3103                         GOTO(stop, rc);
3104         }
3105
3106 cont:
3107         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
3108         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
3109         if (rc != 0) {
3110                 CERROR("%s: failed to get lu_attr of "DFID": rc = %d\n",
3111                        lu_dev_name(mdd2lu_dev(mdd)),
3112                        PFID(mdd_object_fid(mdd_obj)), rc);
3113                 GOTO(out, rc);
3114         }
3115
3116         /* check again with lock */
3117         is_orphan = (mdd_obj->mod_count == 1) &&
3118                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
3119                      ma->ma_attr.la_nlink == 0);
3120
3121         if (is_orphan && !handle && !blocked) {
3122                 mdd_write_unlock(env, mdd_obj);
3123                 goto again;
3124         }
3125
3126         mdd_obj->mod_count--; /*release open count */
3127
3128         /* under mdd write lock */
3129         /* If recording, see if we need to remove UID from list */
3130         if (mdd_changelog_enabled(env, mdd, CL_OPEN)) {
3131                 struct mdd_object_user *mou;
3132
3133                 /* look for UID in list */
3134                 /* If mou is NULL, it probably means logging was enabled after
3135                  * the user had the file open. So the corresponding close
3136                  * will not be logged.
3137                  */
3138                 mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid, mode);
3139                 if (mou) {
3140                         mou->mou_opencount--;
3141                         if (mou->mou_opencount == 0) {
3142                                 mdd_obj_user_remove(mdd_obj, mou);
3143                                 last_close_by_uid = 1;
3144                         }
3145                 }
3146         }
3147
3148         if (!is_orphan || blocked)
3149                 GOTO(out, rc = 0);
3150
3151         /* Orphan object */
3152         /* NB: Object maybe not in orphan list originally, it is rare case for
3153          * mdd_finish_unlink() failure, in that case, the object doesn't have
3154          * ORPHAN_OBJ flag */
3155         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
3156                 /* remove link to object from orphan index */
3157                 LASSERT(handle != NULL);
3158                 rc = mdd_orphan_delete(env, mdd_obj, handle);
3159                 if (rc != 0) {
3160                         CERROR("%s: unable to delete "DFID" from orphan list: "
3161                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3162                                PFID(mdd_object_fid(mdd_obj)), rc);
3163                         /* If object was not deleted from orphan list, do not
3164                          * destroy OSS objects, which will be done when next
3165                          * recovery. */
3166                         GOTO(out, rc);
3167                 }
3168
3169                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
3170                        "list, OSS objects to be destroyed.\n",
3171                        PFID(mdd_object_fid(mdd_obj)));
3172         }
3173
3174         rc = mdo_destroy(env, mdd_obj, handle);
3175
3176         if (rc != 0) {
3177                 CERROR("%s: unable to delete "DFID" from orphan list: "
3178                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3179                        PFID(mdd_object_fid(mdd_obj)), rc);
3180         }
3181         EXIT;
3182
3183 out:
3184         mdd_write_unlock(env, mdd_obj);
3185
3186         if (rc != 0 || blocked ||
3187             !mdd_changelog_enabled(env, mdd, CL_CLOSE))
3188                 GOTO(stop, rc);
3189
3190         /* Record CL_CLOSE in changelog only if file was opened in write mode,
3191          * or if CL_OPEN was recorded and it's last close by user.
3192          * Changelogs mask may change between open and close operations, but
3193          * this is not a big deal if we have a CL_CLOSE entry with no matching
3194          * CL_OPEN. Plus Changelogs mask may not change often.
3195          */
3196         if (((!(mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) &&
3197               (mode & (MDS_FMODE_WRITE | MDS_OPEN_APPEND | MDS_OPEN_TRUNC))) ||
3198              ((mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) && last_close_by_uid)) &&
3199             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
3200                 if (handle == NULL) {
3201                         handle = mdd_trans_create(env, mdo2mdd(obj));
3202                         if (IS_ERR(handle))
3203                                 GOTO(stop, rc = PTR_ERR(handle));
3204
3205                         rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE,
3206                                                          NULL, NULL, handle);
3207                         if (rc)
3208                                 GOTO(stop, rc);
3209
3210                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3211                         if (rc)
3212                                 GOTO(stop, rc);
3213                 }
3214
3215                 mdd_changelog_data_store(env, mdd, CL_CLOSE, mode,
3216                                          mdd_obj, handle);
3217         }
3218
3219 stop:
3220         if (handle != NULL && !IS_ERR(handle))
3221                 rc = mdd_trans_stop(env, mdd, rc, handle);
3222
3223         return rc;
3224 }
3225
3226 /*
3227  * Permission check is done when open,
3228  * no need check again.
3229  */
3230 static int mdd_readpage_sanity_check(const struct lu_env *env,
3231                                      struct mdd_object *obj)
3232 {
3233         struct dt_object *next = mdd_object_child(obj);
3234         int rc;
3235         ENTRY;
3236
3237         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
3238                 rc = 0;
3239         else
3240                 rc = -ENOTDIR;
3241
3242         RETURN(rc);
3243 }
3244
3245 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
3246                               size_t nob, const struct dt_it_ops *iops,
3247                               struct dt_it *it, __u32 attr, void *arg)
3248 {
3249         struct lu_dirpage       *dp = &lp->lp_dir;
3250         void                    *area = dp;
3251         int                      result;
3252         __u64                    hash = 0;
3253         struct lu_dirent        *ent;
3254         struct lu_dirent        *last = NULL;
3255         struct lu_fid            fid;
3256         int                      first = 1;
3257
3258         if (nob < sizeof(*dp))
3259                 return -EINVAL;
3260
3261         memset(area, 0, sizeof (*dp));
3262         area += sizeof (*dp);
3263         nob  -= sizeof (*dp);
3264
3265         ent  = area;
3266         do {
3267                 int    len;
3268                 size_t recsize;
3269
3270                 len = iops->key_size(env, it);
3271
3272                 /* IAM iterator can return record with zero len. */
3273                 if (len == 0)
3274                         goto next;
3275
3276                 hash = iops->store(env, it);
3277                 if (unlikely(first)) {
3278                         first = 0;
3279                         dp->ldp_hash_start = cpu_to_le64(hash);
3280                 }
3281
3282                 /* calculate max space required for lu_dirent */
3283                 recsize = lu_dirent_calc_size(len, attr);
3284
3285                 if (nob >= recsize) {
3286                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
3287                         if (result == -ESTALE)
3288                                 goto next;
3289                         if (result != 0)
3290                                 goto out;
3291
3292                         /* osd might not able to pack all attributes,
3293                          * so recheck rec length */
3294                         recsize = le16_to_cpu(ent->lde_reclen);
3295
3296                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
3297                                 fid_le_to_cpu(&fid, &ent->lde_fid);
3298                                 if (fid_is_dot_lustre(&fid))
3299                                         goto next;
3300                         }
3301                 } else {
3302                         result = (last != NULL) ? 0 :-EINVAL;
3303                         goto out;
3304                 }
3305                 last = ent;
3306                 ent = (void *)ent + recsize;
3307                 nob -= recsize;
3308
3309 next:
3310                 result = iops->next(env, it);
3311                 if (result == -ESTALE)
3312                         goto next;
3313         } while (result == 0);
3314
3315 out:
3316         dp->ldp_hash_end = cpu_to_le64(hash);
3317         if (last != NULL) {
3318                 if (last->lde_hash == dp->ldp_hash_end)
3319                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
3320                 last->lde_reclen = 0; /* end mark */
3321         }
3322         if (result > 0)
3323                 /* end of directory */
3324                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3325         else if (result < 0)
3326                 CWARN("build page failed: %d!\n", result);
3327         return result;
3328 }
3329
3330 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
3331                  const struct lu_rdpg *rdpg)
3332 {
3333         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3334         int rc;
3335         ENTRY;
3336
3337         if (mdd_object_exists(mdd_obj) == 0) {
3338                 CERROR("%s: object "DFID" not found: rc = -2\n",
3339                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
3340                 return -ENOENT;
3341         }
3342
3343         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
3344         rc = mdd_readpage_sanity_check(env, mdd_obj);
3345         if (rc)
3346                 GOTO(out_unlock, rc);
3347
3348         if (mdd_is_dead_obj(mdd_obj)) {
3349                 struct page *pg;
3350                 struct lu_dirpage *dp;
3351
3352                 /*
3353                  * According to POSIX, please do not return any entry to client:
3354                  * even dot and dotdot should not be returned.
3355                  */
3356                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
3357                        PFID(mdd_object_fid(mdd_obj)));
3358
3359                 if (rdpg->rp_count <= 0)
3360                         GOTO(out_unlock, rc = -EFAULT);
3361                 LASSERT(rdpg->rp_pages != NULL);
3362
3363                 pg = rdpg->rp_pages[0];
3364                 dp = (struct lu_dirpage *)kmap(pg);
3365                 memset(dp, 0 , sizeof(struct lu_dirpage));
3366                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3367                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
3368                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3369                 kunmap(pg);
3370                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
3371         }
3372
3373         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
3374                            mdd_dir_page_build, NULL);
3375         if (rc >= 0) {
3376                 struct lu_dirpage       *dp;
3377
3378                 dp = kmap(rdpg->rp_pages[0]);
3379                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3380                 if (rc == 0) {
3381                         /*
3382                          * No pages were processed, mark this for first page
3383                          * and send back.
3384                          */
3385                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3386                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3387                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
3388                 }
3389                 kunmap(rdpg->rp_pages[0]);
3390         }
3391
3392         GOTO(out_unlock, rc);
3393 out_unlock:
3394         mdd_read_unlock(env, mdd_obj);
3395         return rc;
3396 }
3397
3398 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
3399 {
3400         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3401
3402         if (mdd_object_exists(mdd_obj) == 0) {
3403                 int rc = -ENOENT;
3404
3405                 CERROR("%s: object "DFID" not found: rc = %d\n",
3406                        mdd_obj_dev_name(mdd_obj),
3407                        PFID(mdd_object_fid(mdd_obj)), rc);
3408                 return rc;
3409         }
3410         return dt_object_sync(env, mdd_object_child(mdd_obj),
3411                               0, OBD_OBJECT_EOF);
3412 }
3413
3414 static int mdd_object_lock(const struct lu_env *env,
3415                            struct md_object *obj,
3416                            struct lustre_handle *lh,
3417                            struct ldlm_enqueue_info *einfo,
3418                            union ldlm_policy_data *policy)
3419 {
3420         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3421         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
3422                               einfo, policy);
3423 }
3424
3425 static int mdd_object_unlock(const struct lu_env *env,
3426                              struct md_object *obj,
3427                              struct ldlm_enqueue_info *einfo,
3428                              union ldlm_policy_data *policy)
3429 {
3430         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3431         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
3432 }
3433
3434 const struct md_object_operations mdd_obj_ops = {
3435         .moo_permission         = mdd_permission,
3436         .moo_attr_get           = mdd_attr_get,
3437         .moo_attr_set           = mdd_attr_set,
3438         .moo_xattr_get          = mdd_xattr_get,
3439         .moo_xattr_set          = mdd_xattr_set,
3440         .moo_xattr_list         = mdd_xattr_list,
3441         .moo_invalidate         = mdd_invalidate,
3442         .moo_xattr_del          = mdd_xattr_del,
3443         .moo_swap_layouts       = mdd_swap_layouts,
3444         .moo_open               = mdd_open,
3445         .moo_close              = mdd_close,
3446         .moo_readpage           = mdd_readpage,
3447         .moo_readlink           = mdd_readlink,
3448         .moo_changelog          = mdd_changelog,
3449         .moo_object_sync        = mdd_object_sync,
3450         .moo_object_lock        = mdd_object_lock,
3451         .moo_object_unlock      = mdd_object_unlock,
3452         .moo_layout_change      = mdd_layout_change,
3453 };