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