Whamcloud - gitweb
LU-9679 general: add missing spaces to folded strings.
[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(mdd_obj2mdd_dev(mdd_obj)->mdd_dt_conf.ddp_max_ea_size,
1447                             XATTR_SIZE_MAX));
1448         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
1449         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
1450         if (rc < 0 && rc != -ENODATA)
1451                 GOTO(free, rc);
1452         else if (rc == -ENODATA)
1453                 current_mh->mh_flags = 0;
1454
1455         /* Map future HSM xattr */
1456         OBD_ALLOC_PTR(new_mh);
1457         if (new_mh == NULL)
1458                 GOTO(free, rc = -ENOMEM);
1459         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
1460
1461         rc = 0;
1462
1463         /* Flags differ, set flags for the changelog that will be added */
1464         if (current_mh->mh_flags != new_mh->mh_flags) {
1465                 hsm_set_cl_event(clf_flags, HE_STATE);
1466                 if (new_mh->mh_flags & HS_DIRTY)
1467                         hsm_set_cl_flags(clf_flags, CLF_HSM_DIRTY);
1468         }
1469
1470         OBD_FREE_PTR(new_mh);
1471         EXIT;
1472 free:
1473         OBD_FREE_PTR(current_mh);
1474         return rc;
1475 }
1476
1477 static int mdd_object_pfid_replace(const struct lu_env *env,
1478                                    struct mdd_object *o)
1479 {
1480         struct mdd_device *mdd = mdo2mdd(&o->mod_obj);
1481         struct thandle *handle;
1482         int rc;
1483
1484         handle = mdd_trans_create(env, mdd);
1485         if (IS_ERR(handle))
1486                 RETURN(PTR_ERR(handle));
1487
1488         handle->th_complex = 1;
1489
1490         /* it doesn't need to track the PFID update via llog, because LFSCK
1491          * will repair it even it goes wrong */
1492         rc = mdd_declare_xattr_set(env, mdd, o, NULL, XATTR_NAME_FID,
1493                                    0, handle);
1494         if (rc)
1495                 GOTO(out, rc);
1496
1497         rc = mdd_trans_start(env, mdd, handle);
1498         if (rc != 0)
1499                 GOTO(out, rc);
1500
1501         rc = mdo_xattr_set(env, o, NULL, XATTR_NAME_FID, 0, handle);
1502         if (rc)
1503                 GOTO(out, rc);
1504
1505 out:
1506         mdd_trans_stop(env, mdd, rc, handle);
1507         return rc;
1508 }
1509
1510
1511 static int mdd_declare_xattr_del(const struct lu_env *env,
1512                                  struct mdd_device *mdd,
1513                                  struct mdd_object *obj,
1514                                  const char *name,
1515                                  struct thandle *handle);
1516
1517 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1518                          const char *name);
1519
1520 static int mdd_xattr_merge(const struct lu_env *env, struct md_object *md_obj,
1521                            struct md_object *md_vic)
1522 {
1523         struct mdd_device *mdd = mdo2mdd(md_obj);
1524         struct mdd_object *obj = md2mdd_obj(md_obj);
1525         struct mdd_object *vic = md2mdd_obj(md_vic);
1526         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1527         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[1];
1528         struct lov_mds_md *lmm;
1529         struct thandle *handle;
1530         int rc;
1531         ENTRY;
1532
1533         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1534         if (rc == 0) /* same fid */
1535                 RETURN(-EPERM);
1536
1537         handle = mdd_trans_create(env, mdd);
1538         if (IS_ERR(handle))
1539                 RETURN(PTR_ERR(handle));
1540
1541         if (rc > 0) {
1542                 mdd_write_lock(env, obj, DT_TGT_CHILD);
1543                 mdd_write_lock(env, vic, DT_TGT_CHILD);
1544         } else {
1545                 mdd_write_lock(env, vic, DT_TGT_CHILD);
1546                 mdd_write_lock(env, obj, DT_TGT_CHILD);
1547         }
1548
1549         /* get EA of victim file */
1550         memset(buf_vic, 0, sizeof(*buf_vic));
1551         rc = mdd_stripe_get(env, vic, buf_vic, XATTR_NAME_LOV);
1552         if (rc < 0) {
1553                 if (rc == -ENODATA)
1554                         rc = 0;
1555                 GOTO(out, rc);
1556         }
1557
1558         /* parse the layout of victim file */
1559         lmm = buf_vic->lb_buf;
1560         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1561                 GOTO(out, rc = -EINVAL);
1562
1563         /* save EA of target file for restore */
1564         memset(buf, 0, sizeof(*buf));
1565         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
1566         if (rc < 0)
1567                 GOTO(out, rc);
1568
1569         /* Get rid of the layout from victim object */
1570         rc = mdd_declare_xattr_del(env, mdd, vic, XATTR_NAME_LOV, handle);
1571         if (rc)
1572                 GOTO(out, rc);
1573
1574         rc = mdd_declare_xattr_set(env, mdd, obj, buf_vic, XATTR_LUSTRE_LOV,
1575                                    LU_XATTR_MERGE, handle);
1576         if (rc)
1577                 GOTO(out, rc);
1578
1579         rc = mdd_trans_start(env, mdd, handle);
1580         if (rc != 0)
1581                 GOTO(out, rc);
1582
1583         rc = mdo_xattr_set(env, obj, buf_vic, XATTR_LUSTRE_LOV, LU_XATTR_MERGE,
1584                            handle);
1585         if (rc)
1586                 GOTO(out, rc);
1587
1588         rc = mdo_xattr_del(env, vic, XATTR_NAME_LOV, handle);
1589         if (rc) /* wtf? */
1590                 GOTO(out_restore, rc);
1591
1592         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1593         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1594         EXIT;
1595
1596 out_restore:
1597         if (rc) {
1598                 int rc2 = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV,
1599                                         LU_XATTR_REPLACE, handle);
1600                 if (rc2)
1601                         CERROR("%s: failed to rollback of layout of: "DFID
1602                                ": %d, file state unknown\n",
1603                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1604         }
1605
1606 out:
1607         mdd_trans_stop(env, mdd, rc, handle);
1608         mdd_write_unlock(env, obj);
1609         mdd_write_unlock(env, vic);
1610         lu_buf_free(buf);
1611         lu_buf_free(buf_vic);
1612
1613         if (!rc)
1614                 (void) mdd_object_pfid_replace(env, obj);
1615
1616         return rc;
1617 }
1618
1619 /**
1620  * Extract the mirror with specified mirror id, and store the splitted
1621  * mirror layout to @buf.
1622  *
1623  * \param[in] comp_v1   mirrored layout
1624  * \param[in] mirror_id the mirror with mirror_id to be extracted
1625  * \param[out] buf      store the layout excluding the extracted mirror,
1626  *                      caller free the buffer we allocated in this function
1627  * \param[out] buf_vic  store the extracted layout, caller free the buffer
1628  *                      we allocated in this function
1629  *
1630  * \retval      0 on success; < 0 if error happens
1631  */
1632 static int mdd_split_ea(struct lov_comp_md_v1 *comp_v1, __u16 mirror_id,
1633                         struct lu_buf *buf, struct lu_buf *buf_vic)
1634 {
1635         struct lov_comp_md_v1 *comp_rem;
1636         struct lov_comp_md_v1 *comp_vic;
1637         struct lov_comp_md_entry_v1 *entry;
1638         struct lov_comp_md_entry_v1 *entry_rem;
1639         struct lov_comp_md_entry_v1 *entry_vic;
1640         __u16 mirror_cnt;
1641         __u16 comp_cnt, count = 0;
1642         int lmm_size, lmm_size_vic = 0;
1643         int i, j, k;
1644         int offset, offset_rem, offset_vic;
1645
1646         mirror_cnt = le16_to_cpu(comp_v1->lcm_mirror_count) + 1;
1647         /* comp_v1 should contains more than 1 mirror */
1648         if (mirror_cnt <= 1)
1649                 return -EINVAL;
1650         comp_cnt = le16_to_cpu(comp_v1->lcm_entry_count);
1651         lmm_size = le32_to_cpu(comp_v1->lcm_size);
1652
1653         for (i = 0; i < comp_cnt; i++) {
1654                 entry = &comp_v1->lcm_entries[i];
1655                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id) {
1656                         count++;
1657                         lmm_size_vic += sizeof(*entry);
1658                         lmm_size_vic += le32_to_cpu(entry->lcme_size);
1659                 } else if (count > 0) {
1660                         /* find the specified mirror */
1661                         break;
1662                 }
1663         }
1664
1665         if (count == 0)
1666                 return -EINVAL;
1667
1668         lu_buf_alloc(buf, lmm_size - lmm_size_vic);
1669         if (!buf->lb_buf)
1670                 return -ENOMEM;
1671
1672         lu_buf_alloc(buf_vic, sizeof(*comp_vic) + lmm_size_vic);
1673         if (!buf_vic->lb_buf) {
1674                 lu_buf_free(buf);
1675                 return -ENOMEM;
1676         }
1677
1678         comp_rem = (struct lov_comp_md_v1 *)buf->lb_buf;
1679         comp_vic = (struct lov_comp_md_v1 *)buf_vic->lb_buf;
1680
1681         memcpy(comp_rem, comp_v1, sizeof(*comp_v1));
1682         comp_rem->lcm_mirror_count = cpu_to_le16(mirror_cnt - 2);
1683         comp_rem->lcm_entry_count = cpu_to_le32(comp_cnt - count);
1684         comp_rem->lcm_size = cpu_to_le32(lmm_size - lmm_size_vic);
1685         if (!comp_rem->lcm_mirror_count)
1686                 comp_rem->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1687
1688         memset(comp_vic, 0, sizeof(*comp_v1));
1689         comp_vic->lcm_magic = cpu_to_le32(LOV_MAGIC_COMP_V1);
1690         comp_vic->lcm_mirror_count = 0;
1691         comp_vic->lcm_entry_count = cpu_to_le32(count);
1692         comp_vic->lcm_size = cpu_to_le32(lmm_size_vic + sizeof(*comp_vic));
1693         comp_vic->lcm_flags = cpu_to_le16(LCM_FL_NONE);
1694         comp_vic->lcm_layout_gen = 0;
1695
1696         offset = sizeof(*comp_v1) + sizeof(*entry) * comp_cnt;
1697         offset_rem = sizeof(*comp_rem) +
1698                      sizeof(*entry_rem) * (comp_cnt - count);
1699         offset_vic = sizeof(*comp_vic) + sizeof(*entry_vic) * count;
1700         for (i = j = k = 0; i < comp_cnt; i++) {
1701                 struct lov_mds_md *lmm, *lmm_dst;
1702                 bool vic = false;
1703
1704                 entry = &comp_v1->lcm_entries[i];
1705                 entry_vic = &comp_vic->lcm_entries[j];
1706                 entry_rem = &comp_rem->lcm_entries[k];
1707
1708                 if (mirror_id_of(le32_to_cpu(entry->lcme_id)) == mirror_id)
1709                         vic = true;
1710
1711                 /* copy component entry */
1712                 if (vic) {
1713                         memcpy(entry_vic, entry, sizeof(*entry));
1714                         entry_vic->lcme_flags &= cpu_to_le32(LCME_FL_INIT);
1715                         entry_vic->lcme_offset = cpu_to_le32(offset_vic);
1716                         j++;
1717                 } else {
1718                         memcpy(entry_rem, entry, sizeof(*entry));
1719                         entry_rem->lcme_offset = cpu_to_le32(offset_rem);
1720                         k++;
1721                 }
1722
1723                 lmm = (struct lov_mds_md *)((char *)comp_v1 + offset);
1724                 if (vic)
1725                         lmm_dst = (struct lov_mds_md *)
1726                                         ((char *)comp_vic + offset_vic);
1727                 else
1728                         lmm_dst = (struct lov_mds_md *)
1729                                         ((char *)comp_rem + offset_rem);
1730
1731                 /* copy component entry blob */
1732                 memcpy(lmm_dst, lmm, le32_to_cpu(entry->lcme_size));
1733
1734                 /* blob offset advance */
1735                 offset += le32_to_cpu(entry->lcme_size);
1736                 if (vic)
1737                         offset_vic += le32_to_cpu(entry->lcme_size);
1738                 else
1739                         offset_rem += le32_to_cpu(entry->lcme_size);
1740         }
1741
1742         return 0;
1743 }
1744
1745 static int mdd_dom_data_truncate(const struct lu_env *env,
1746                                  struct mdd_device *mdd, struct mdd_object *mo);
1747
1748 static int mdd_xattr_split(const struct lu_env *env, struct md_object *md_obj,
1749                            struct md_rejig_data *mrd)
1750 {
1751         struct mdd_device *mdd = mdo2mdd(md_obj);
1752         struct mdd_object *obj = md2mdd_obj(md_obj);
1753         struct mdd_object *vic = md2mdd_obj(mrd->mrd_obj);
1754         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1755         struct lu_buf *buf_save = &mdd_env_info(env)->mti_buf[1];
1756         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[2];
1757         struct lov_comp_md_v1 *lcm;
1758         struct thandle *handle;
1759         int rc;
1760         bool dom_stripe = false;
1761
1762         ENTRY;
1763
1764         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1765         if (rc == 0) /* same fid */
1766                 RETURN(-EPERM);
1767
1768         handle = mdd_trans_create(env, mdd);
1769         if (IS_ERR(handle))
1770                 RETURN(PTR_ERR(handle));
1771
1772         if (rc > 0) {
1773                 mdd_write_lock(env, obj, DT_TGT_CHILD);
1774                 mdd_write_lock(env, vic, DT_TGT_CHILD);
1775         } else {
1776                 mdd_write_lock(env, vic, DT_TGT_CHILD);
1777                 mdd_write_lock(env, obj, DT_TGT_CHILD);
1778         }
1779
1780         /* get EA of mirrored file */
1781         memset(buf_save, 0, sizeof(*buf));
1782         rc = mdd_stripe_get(env, obj, buf_save, XATTR_NAME_LOV);
1783         if (rc < 0)
1784                 GOTO(out, rc);
1785
1786         lcm = buf_save->lb_buf;
1787         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
1788                 GOTO(out, rc = -EINVAL);
1789
1790         /**
1791          * Extract the mirror with specified mirror id, and store the splitted
1792          * mirror layout to the victim file.
1793          */
1794         memset(buf, 0, sizeof(*buf));
1795         memset(buf_vic, 0, sizeof(*buf_vic));
1796         rc = mdd_split_ea(lcm, mrd->mrd_mirror_id, buf, buf_vic);
1797         if (rc < 0)
1798                 GOTO(out, rc);
1799
1800         dom_stripe = mdd_lmm_dom_size(buf_vic->lb_buf) > 0;
1801
1802         rc = mdd_declare_xattr_set(env, mdd, obj, buf, XATTR_NAME_LOV,
1803                                    LU_XATTR_SPLIT, handle);
1804         if (rc)
1805                 GOTO(out, rc);
1806         rc = mdd_declare_xattr_set(env, mdd, vic, buf_vic, XATTR_NAME_LOV,
1807                                    LU_XATTR_SPLIT, handle);
1808         if (rc)
1809                 GOTO(out, rc);
1810
1811         rc = mdd_trans_start(env, mdd, handle);
1812         if (rc)
1813                 GOTO(out, rc);
1814
1815         rc = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV, LU_XATTR_REPLACE,
1816                            handle);
1817         if (rc)
1818                 GOTO(out, rc);
1819
1820         rc = mdo_xattr_set(env, vic, buf_vic, XATTR_NAME_LOV, LU_XATTR_CREATE,
1821                            handle);
1822         if (rc)
1823                 GOTO(out_restore, rc);
1824
1825         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1826         if (rc)
1827                 GOTO(out, rc);
1828
1829         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1830         if (rc)
1831                 GOTO(out, rc);
1832         EXIT;
1833
1834 out_restore:
1835         if (rc) {
1836                 /* restore obj's layout */
1837                 int rc2 = mdo_xattr_set(env, obj, buf_save, XATTR_NAME_LOV,
1838                                         LU_XATTR_REPLACE, handle);
1839                 if (rc2)
1840                         CERROR("%s: failed to rollback of layout of: "DFID
1841                                ": %d, file state unkonwn.\n",
1842                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1843         }
1844 out:
1845         rc = mdd_trans_stop(env, mdd, rc, handle);
1846
1847         /* Truncate local DOM data if all went well */
1848         if (!rc && dom_stripe)
1849                 mdd_dom_data_truncate(env, mdd, obj);
1850
1851         mdd_write_unlock(env, obj);
1852         mdd_write_unlock(env, vic);
1853         lu_buf_free(buf_save);
1854         lu_buf_free(buf);
1855         lu_buf_free(buf_vic);
1856
1857         if (!rc)
1858                 (void) mdd_object_pfid_replace(env, obj);
1859
1860         return rc;
1861 }
1862
1863 static int mdd_layout_merge_allowed(const struct lu_env *env,
1864                                     struct md_object *target,
1865                                     struct md_object *victim)
1866 {
1867         struct mdd_object *o1 = md2mdd_obj(target);
1868
1869         /* cannot extend directory's LOVEA */
1870         if (S_ISDIR(mdd_object_type(o1))) {
1871                 CERROR("%s: Don't extend directory's LOVEA, just set it.\n",
1872                        mdd_obj_dev_name(o1));
1873                 RETURN(-EISDIR);
1874         }
1875
1876         RETURN(0);
1877 }
1878
1879 /**
1880  * The caller should guarantee to update the object ctime
1881  * after xattr_set if needed.
1882  */
1883 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1884                          const struct lu_buf *buf, const char *name,
1885                          int fl)
1886 {
1887         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1888         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1889         struct mdd_device *mdd = mdo2mdd(obj);
1890         struct thandle *handle;
1891         enum changelog_rec_type  cl_type;
1892         enum changelog_rec_flags clf_flags = 0;
1893         int rc;
1894         ENTRY;
1895
1896         rc = mdd_la_get(env, mdd_obj, attr);
1897         if (rc)
1898                 RETURN(rc);
1899
1900         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1901         if (rc)
1902                 RETURN(rc);
1903
1904         if (strcmp(name, XATTR_LUSTRE_LOV) == 0 &&
1905             (fl == LU_XATTR_MERGE || fl == LU_XATTR_SPLIT)) {
1906                 struct md_rejig_data *mrd = buf->lb_buf;
1907                 struct md_object *victim = mrd->mrd_obj;
1908
1909                 if (buf->lb_len != sizeof(*mrd))
1910                         RETURN(-EINVAL);
1911
1912                 rc = mdd_layout_merge_allowed(env, obj, victim);
1913                 if (rc)
1914                         RETURN(rc);
1915
1916                 if (fl == LU_XATTR_MERGE)
1917                         /* merge layout of victim as a mirror of obj's. */
1918                         rc = mdd_xattr_merge(env, obj, victim);
1919                 else
1920                         rc = mdd_xattr_split(env, obj, mrd);
1921                 RETURN(rc);
1922         }
1923
1924         if (strcmp(name, XATTR_NAME_LMV) == 0) {
1925                 rc = mdd_dir_layout_shrink(env, obj, buf);
1926                 RETURN(rc);
1927         }
1928
1929         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1930             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1931                 struct posix_acl *acl;
1932
1933                 /* user may set empty ACL, which should be treated as removing
1934                  * ACL. */
1935                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1936                                            buf->lb_len);
1937                 if (IS_ERR(acl))
1938                         RETURN(PTR_ERR(acl));
1939                 if (acl == NULL) {
1940                         rc = mdd_xattr_del(env, obj, name);
1941                         RETURN(rc);
1942                 }
1943                 posix_acl_release(acl);
1944         }
1945
1946         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1947                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1948                 RETURN(rc);
1949         }
1950
1951         handle = mdd_trans_create(env, mdd);
1952         if (IS_ERR(handle))
1953                 RETURN(PTR_ERR(handle));
1954
1955         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1956         if (rc)
1957                 GOTO(stop, rc);
1958
1959         rc = mdd_trans_start(env, mdd, handle);
1960         if (rc)
1961                 GOTO(stop, rc);
1962
1963         mdd_write_lock(env, mdd_obj, DT_TGT_CHILD);
1964
1965         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1966                 rc = mdd_hsm_update_locked(env, obj, buf, handle, &clf_flags);
1967                 if (rc) {
1968                         mdd_write_unlock(env, mdd_obj);
1969                         GOTO(stop, rc);
1970                 }
1971         }
1972
1973         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1974         mdd_write_unlock(env, mdd_obj);
1975         if (rc)
1976                 GOTO(stop, rc);
1977
1978         cl_type = mdd_xattr_changelog_type(env, mdd, name);
1979         if (cl_type < 0)
1980                 GOTO(stop, rc = 0);
1981
1982         rc = mdd_changelog_data_store_xattr(env, mdd, cl_type, clf_flags,
1983                                             mdd_obj, name, handle);
1984
1985         EXIT;
1986 stop:
1987         return mdd_trans_stop(env, mdd, rc, handle);
1988 }
1989
1990 static int mdd_declare_xattr_del(const struct lu_env *env,
1991                                  struct mdd_device *mdd,
1992                                  struct mdd_object *obj,
1993                                  const char *name,
1994                                  struct thandle *handle)
1995 {
1996         enum changelog_rec_type type;
1997         int rc;
1998
1999         rc = mdo_declare_xattr_del(env, obj, name, handle);
2000         if (rc)
2001                 return rc;
2002
2003         type = mdd_xattr_changelog_type(env, mdd, name);
2004         if (type < 0)
2005                 return 0; /* no changelog to store */
2006
2007         return mdd_declare_changelog_store(env, mdd, type, NULL, NULL, handle);
2008 }
2009
2010 /**
2011  * The caller should guarantee to update the object ctime
2012  * after xattr_set if needed.
2013  */
2014 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
2015                          const char *name)
2016 {
2017         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2018         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
2019         struct mdd_device *mdd = mdo2mdd(obj);
2020         struct thandle *handle;
2021         int rc;
2022         ENTRY;
2023
2024         rc = mdd_la_get(env, mdd_obj, attr);
2025         if (rc)
2026                 RETURN(rc);
2027
2028         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
2029         if (rc)
2030                 RETURN(rc);
2031
2032         handle = mdd_trans_create(env, mdd);
2033         if (IS_ERR(handle))
2034                 RETURN(PTR_ERR(handle));
2035
2036         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
2037         if (rc)
2038                 GOTO(stop, rc);
2039
2040         rc = mdd_trans_start(env, mdd, handle);
2041         if (rc)
2042                 GOTO(stop, rc);
2043
2044         mdd_write_lock(env, mdd_obj, DT_TGT_CHILD);
2045         rc = mdo_xattr_del(env, mdd_obj, name, handle);
2046         mdd_write_unlock(env, mdd_obj);
2047         if (rc)
2048                 GOTO(stop, rc);
2049
2050         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
2051                 GOTO(stop, rc = 0);
2052
2053         rc = mdd_changelog_data_store_xattr(env, mdd, CL_SETXATTR, 0, mdd_obj,
2054                                             name, handle);
2055
2056         EXIT;
2057 stop:
2058         return mdd_trans_stop(env, mdd, rc, handle);
2059 }
2060
2061 /*
2062  * read lov/lmv EA of an object
2063  * return the lov/lmv EA in an allocated lu_buf
2064  */
2065 int mdd_stripe_get(const struct lu_env *env, struct mdd_object *obj,
2066                    struct lu_buf *lmm_buf, const char *name)
2067 {
2068         struct lu_buf *buf = &mdd_env_info(env)->mti_big_buf;
2069         int rc;
2070
2071         ENTRY;
2072
2073         if (buf->lb_buf == NULL) {
2074                 buf = lu_buf_check_and_alloc(buf, 4096);
2075                 if (buf->lb_buf == NULL)
2076                         RETURN(-ENOMEM);
2077         }
2078
2079 repeat:
2080         rc = mdo_xattr_get(env, obj, buf, name);
2081         if (rc == -ERANGE) {
2082                 /* mti_big_buf is allocated but is too small
2083                  * we need to increase it */
2084                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
2085                                              buf->lb_len * 2);
2086                 if (buf->lb_buf == NULL)
2087                         RETURN(-ENOMEM);
2088                 goto repeat;
2089         } else if (rc < 0) {
2090                 RETURN(rc);
2091         } else if (rc == 0) {
2092                 RETURN(-ENODATA);
2093         }
2094
2095         lu_buf_alloc(lmm_buf, rc);
2096         if (lmm_buf->lb_buf == NULL)
2097                 RETURN(-ENOMEM);
2098
2099         /*
2100          * we don't use lmm_buf directly, because we don't know xattr size, so
2101          * by using mti_big_buf we can avoid calling mdo_xattr_get() twice.
2102          */
2103         memcpy(lmm_buf->lb_buf, buf->lb_buf, rc);
2104
2105         RETURN(0);
2106 }
2107
2108 static int mdd_xattr_hsm_replace(const struct lu_env *env,
2109                                  struct mdd_object *o, struct lu_buf *buf,
2110                                  struct thandle *handle)
2111 {
2112         struct hsm_attrs *attrs;
2113         enum hsm_states hsm_flags;
2114         enum changelog_rec_flags clf_flags = 0;
2115         int rc;
2116         ENTRY;
2117
2118         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
2119                            handle);
2120         if (rc != 0)
2121                 RETURN(rc);
2122
2123         attrs = buf->lb_buf;
2124         hsm_flags = le32_to_cpu(attrs->hsm_flags);
2125         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
2126                 RETURN(0);
2127
2128         /* Add a changelog record for release. */
2129         hsm_set_cl_event(&clf_flags, HE_RELEASE);
2130         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
2131                                       clf_flags, o, handle);
2132         RETURN(rc);
2133 }
2134
2135 /*
2136  *  check if layout swapping between 2 objects is allowed
2137  *  the rules are:
2138  *  - only normal FIDs or non-system IGIFs
2139  *  - same type of objects
2140  *  - same owner/group (so quotas are still valid) unless this is from HSM
2141  *    release.
2142  */
2143 static int mdd_layout_swap_allowed(const struct lu_env *env,
2144                                    struct mdd_object *o1,
2145                                    const struct lu_attr *attr1,
2146                                    struct mdd_object *o2,
2147                                    const struct lu_attr *attr2,
2148                                    __u64 flags)
2149 {
2150         const struct lu_fid     *fid1, *fid2;
2151         ENTRY;
2152
2153         fid1 = mdo2fid(o1);
2154         fid2 = mdo2fid(o2);
2155
2156         if (!fid_is_norm(fid1) &&
2157             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
2158                 RETURN(-EBADF);
2159
2160         if (!fid_is_norm(fid2) &&
2161             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
2162                 RETURN(-EBADF);
2163
2164         if (mdd_object_type(o1) != mdd_object_type(o2)) {
2165                 if (S_ISDIR(mdd_object_type(o1)))
2166                         RETURN(-ENOTDIR);
2167                 if (S_ISREG(mdd_object_type(o1)))
2168                         RETURN(-EISDIR);
2169                 RETURN(-EBADF);
2170         }
2171
2172         if (flags & SWAP_LAYOUTS_MDS_HSM)
2173                 RETURN(0);
2174
2175         if ((attr1->la_uid != attr2->la_uid) ||
2176             (attr1->la_gid != attr2->la_gid))
2177                 RETURN(-EPERM);
2178
2179         RETURN(0);
2180 }
2181
2182 /* XXX To set the proper lmm_oi & lmm_layout_gen when swap layouts, we have to
2183  *     look into the layout in MDD layer. */
2184 static int mdd_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi, bool get)
2185 {
2186         struct lov_comp_md_v1   *comp_v1;
2187         struct lov_mds_md       *v1;
2188         int                      i, ent_count;
2189         __u32                    off;
2190
2191         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2192                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2193                 ent_count = le16_to_cpu(comp_v1->lcm_entry_count);
2194
2195                 if (ent_count == 0)
2196                         return -EINVAL;
2197
2198                 if (get) {
2199                         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
2200                         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
2201                         *oi = v1->lmm_oi;
2202                 } else {
2203                         for (i = 0; i < le32_to_cpu(ent_count); i++) {
2204                                 off = le32_to_cpu(comp_v1->lcm_entries[i].
2205                                                 lcme_offset);
2206                                 v1 = (struct lov_mds_md *)((char *)comp_v1 +
2207                                                 off);
2208                                 v1->lmm_oi = *oi;
2209                         }
2210                 }
2211         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2212                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2213                 if (get)
2214                         *oi = lmm->lmm_oi;
2215                 else
2216                         lmm->lmm_oi = *oi;
2217         } else {
2218                 return -EINVAL;
2219         }
2220         return 0;
2221 }
2222
2223 static inline int mdd_get_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2224 {
2225         return mdd_lmm_oi(lmm, oi, true);
2226 }
2227
2228 static inline int mdd_set_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
2229 {
2230         return mdd_lmm_oi(lmm, oi, false);
2231 }
2232
2233 static int mdd_lmm_gen(struct lov_mds_md *lmm, __u32 *gen, bool get)
2234 {
2235         struct lov_comp_md_v1 *comp_v1;
2236
2237         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
2238                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2239                 if (get)
2240                         *gen = le32_to_cpu(comp_v1->lcm_layout_gen);
2241                 else
2242                         comp_v1->lcm_layout_gen = cpu_to_le32(*gen);
2243         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
2244                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
2245                 __u16 tmp_gen = *gen;
2246                 if (get)
2247                         *gen = le16_to_cpu(lmm->lmm_layout_gen);
2248                 else
2249                         lmm->lmm_layout_gen = cpu_to_le16(tmp_gen);
2250         } else {
2251                 return -EINVAL;
2252         }
2253         return 0;
2254 }
2255
2256 static inline int mdd_get_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2257 {
2258         return mdd_lmm_gen(lmm, gen, true);
2259 }
2260
2261 static inline int mdd_set_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
2262 {
2263         return mdd_lmm_gen(lmm, gen, false);
2264 }
2265
2266 static int mdd_dom_data_truncate(const struct lu_env *env,
2267                                  struct mdd_device *mdd, struct mdd_object *mo)
2268 {
2269         struct thandle *th;
2270         struct dt_object *dom;
2271         int rc;
2272
2273         dom = dt_object_locate(mdd_object_child(mo), mdd->mdd_bottom);
2274         if (!dom)
2275                 GOTO(out, rc = -ENODATA);
2276
2277         th = dt_trans_create(env, mdd->mdd_bottom);
2278         if (IS_ERR(th))
2279                 GOTO(out, rc = PTR_ERR(th));
2280
2281         rc = dt_declare_punch(env, dom, 0, OBD_OBJECT_EOF, th);
2282         if (rc)
2283                 GOTO(stop, rc);
2284
2285         rc = dt_trans_start_local(env, mdd->mdd_bottom, th);
2286         if (rc != 0)
2287                 GOTO(stop, rc);
2288
2289         rc = dt_punch(env, dom, 0, OBD_OBJECT_EOF, th);
2290 stop:
2291         dt_trans_stop(env, mdd->mdd_bottom, th);
2292 out:
2293         /* Ignore failure but report the error */
2294         if (rc)
2295                 CERROR("%s: "DFID" can't truncate DOM inode data, rc = %d\n",
2296                        mdd_obj_dev_name(mo), PFID(mdo2fid(mo)), rc);
2297         return rc;
2298 }
2299
2300 /**
2301  * swap layouts between 2 lustre objects
2302  */
2303 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
2304                             struct md_object *obj2, __u64 flags)
2305 {
2306         struct mdd_thread_info *info = mdd_env_info(env);
2307         struct mdd_object *fst_o = md2mdd_obj(obj1);
2308         struct mdd_object *snd_o = md2mdd_obj(obj2);
2309         struct lu_attr *fst_la = MDD_ENV_VAR(env, cattr);
2310         struct lu_attr *snd_la = MDD_ENV_VAR(env, tattr);
2311         struct mdd_device *mdd = mdo2mdd(obj1);
2312         struct lov_mds_md *fst_lmm, *snd_lmm;
2313         struct lu_buf *fst_buf = &info->mti_buf[0];
2314         struct lu_buf *snd_buf = &info->mti_buf[1];
2315         struct lu_buf *fst_hsm_buf = &info->mti_buf[2];
2316         struct lu_buf *snd_hsm_buf = &info->mti_buf[3];
2317         struct ost_id *saved_oi = NULL;
2318         struct thandle *handle;
2319         struct mdd_object *dom_o = NULL;
2320         __u64 domsize_dom, domsize_vlt;
2321         __u32 fst_gen, snd_gen, saved_gen;
2322         int fst_fl;
2323         int rc, rc2;
2324
2325         ENTRY;
2326
2327         BUILD_BUG_ON(ARRAY_SIZE(info->mti_buf) < 4);
2328         memset(info->mti_buf, 0, sizeof(info->mti_buf));
2329
2330         /* we have to sort the 2 obj, so locking will always
2331          * be in the same order, even in case of 2 concurrent swaps */
2332         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
2333         if (rc == 0) /* same fid ? */
2334                 RETURN(-EPERM);
2335
2336         if (rc < 0)
2337                 swap(fst_o, snd_o);
2338
2339         rc = mdd_la_get(env, fst_o, fst_la);
2340         if (rc != 0)
2341                 RETURN(rc);
2342
2343         rc = mdd_la_get(env, snd_o, snd_la);
2344         if (rc != 0)
2345                 RETURN(rc);
2346
2347         /* check if layout swapping is allowed */
2348         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la, flags);
2349         if (rc != 0)
2350                 RETURN(rc);
2351
2352         handle = mdd_trans_create(env, mdd);
2353         if (IS_ERR(handle))
2354                 RETURN(PTR_ERR(handle));
2355
2356         /* objects are already sorted */
2357         mdd_write_lock(env, fst_o, DT_TGT_CHILD);
2358         mdd_write_lock(env, snd_o, DT_TGT_CHILD);
2359
2360         rc = mdd_stripe_get(env, fst_o, fst_buf, XATTR_NAME_LOV);
2361         if (rc < 0 && rc != -ENODATA)
2362                 GOTO(stop, rc);
2363
2364         rc = mdd_stripe_get(env, snd_o, snd_buf, XATTR_NAME_LOV);
2365         if (rc < 0 && rc != -ENODATA)
2366                 GOTO(stop, rc);
2367
2368         /* check if file has DoM. DoM file can be migrated only to another
2369          * DoM layout with the same DoM component size or to an non-DOM
2370          * layout. After migration to OSTs layout, local MDT inode data
2371          * should be truncated.
2372          * Objects are sorted by FIDs, considering that original file's FID
2373          * is always smaller the snd_o is always original file we are migrating
2374          * from.
2375          */
2376         domsize_dom = mdd_lmm_dom_size(snd_buf->lb_buf);
2377         domsize_vlt = mdd_lmm_dom_size(fst_buf->lb_buf);
2378
2379         /* Only migration is supported for DoM files, not 'swap_layouts' so
2380          * target file must be volatile and orphan.
2381          */
2382         if (fst_o->mod_flags & (ORPHAN_OBJ | VOLATILE_OBJ)) {
2383                 dom_o = domsize_dom ? snd_o : NULL;
2384         } else if (snd_o->mod_flags & (ORPHAN_OBJ | VOLATILE_OBJ)) {
2385                 swap(domsize_dom, domsize_vlt);
2386                 dom_o = domsize_dom ? fst_o : NULL;
2387         } else if (domsize_dom > 0 || domsize_vlt > 0) {
2388                 /* 'lfs swap_layouts' case, neither file should have DoM */
2389                 rc = -EOPNOTSUPP;
2390                 CDEBUG(D_LAYOUT, "cannot swap layouts with DOM component, "
2391                        "use migration instead: rc = %d\n", rc);
2392                 GOTO(stop, rc);
2393         }
2394
2395         if (domsize_vlt > 0 && domsize_dom == 0) {
2396                 rc = -EOPNOTSUPP;
2397                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": OST to DOM "
2398                        "migration is not supported: rc = %d\n",
2399                        PFID(mdo2fid(snd_o)), rc);
2400                 GOTO(stop, rc);
2401         } else if (domsize_vlt > 0 && domsize_dom != domsize_vlt) {
2402                 rc = -EOPNOTSUPP;
2403                 CDEBUG(D_LAYOUT, "cannot swap layout for "DFID": new layout "
2404                        "must have the same DoM component size: rc = %d\n",
2405                        PFID(mdo2fid(fst_o)), rc);
2406                 GOTO(stop, rc);
2407         } else if (domsize_vlt > 0) {
2408                 /* Migration with the same DOM component size, no need to
2409                  * truncate local data, it is still being used */
2410                 dom_o = NULL;
2411         }
2412
2413         /* swapping 2 non existant layouts is a success */
2414         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
2415                 GOTO(stop, rc = 0);
2416
2417         /* to help inode migration between MDT, it is better to
2418          * start by the no layout file (if one), so we order the swap */
2419         if (snd_buf->lb_buf == NULL) {
2420                 swap(fst_o, snd_o);
2421                 swap(fst_buf, snd_buf);
2422         }
2423
2424         fst_gen = snd_gen = 0;
2425         /* lmm and generation layout initialization */
2426         if (fst_buf->lb_buf != NULL) {
2427                 fst_lmm = fst_buf->lb_buf;
2428                 mdd_get_lmm_gen(fst_lmm, &fst_gen);
2429                 fst_fl  = LU_XATTR_REPLACE;
2430         } else {
2431                 fst_lmm = NULL;
2432                 fst_gen = 0;
2433                 fst_fl  = LU_XATTR_CREATE;
2434         }
2435
2436         snd_lmm = snd_buf->lb_buf;
2437         mdd_get_lmm_gen(snd_lmm, &snd_gen);
2438
2439         saved_gen = fst_gen;
2440         /* increase the generation layout numbers */
2441         snd_gen++;
2442         fst_gen++;
2443
2444         /*
2445          * XXX The layout generation is used to generate component IDs for
2446          *     the composite file, we have to do some special tweaks to make
2447          *     sure the layout generation is always adequate for that job.
2448          */
2449
2450         /* Skip invalid generation number for composite layout */
2451         if ((snd_gen & LCME_ID_MASK) == 0)
2452                 snd_gen++;
2453         if ((fst_gen & LCME_ID_MASK) == 0)
2454                 fst_gen++;
2455         /* Make sure the generation is greater than all the component IDs */
2456         if (fst_gen < snd_gen)
2457                 fst_gen = snd_gen;
2458         else if (fst_gen > snd_gen)
2459                 snd_gen = fst_gen;
2460
2461         /* set the file specific informations in lmm */
2462         if (fst_lmm != NULL) {
2463                 saved_oi = &info->mti_oa.o_oi;
2464                 mdd_get_lmm_oi(fst_lmm, saved_oi);
2465                 mdd_set_lmm_gen(fst_lmm, &snd_gen);
2466                 mdd_set_lmm_oi(fst_lmm, &snd_lmm->lmm_oi);
2467                 mdd_set_lmm_oi(snd_lmm, saved_oi);
2468         } else {
2469                 if ((snd_lmm->lmm_magic & cpu_to_le32(LOV_MAGIC_MASK)) ==
2470                     cpu_to_le32(LOV_MAGIC_MAGIC))
2471                         snd_lmm->lmm_magic |= cpu_to_le32(LOV_MAGIC_DEFINED);
2472                 else
2473                         GOTO(stop, rc = -EPROTO);
2474         }
2475         mdd_set_lmm_gen(snd_lmm, &fst_gen);
2476
2477         /* Prepare HSM attribute if it's required */
2478         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2479                 const int buflen = sizeof(struct hsm_attrs);
2480
2481                 lu_buf_alloc(fst_hsm_buf, buflen);
2482                 lu_buf_alloc(snd_hsm_buf, buflen);
2483                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
2484                         GOTO(stop, rc = -ENOMEM);
2485
2486                 /* Read HSM attribute */
2487                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
2488                 if (rc < 0)
2489                         GOTO(stop, rc);
2490
2491                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
2492                 if (rc < 0)
2493                         GOTO(stop, rc);
2494
2495                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
2496                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2497                                            handle);
2498                 if (rc < 0)
2499                         GOTO(stop, rc);
2500
2501                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
2502                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
2503                                            handle);
2504                 if (rc < 0)
2505                         GOTO(stop, rc);
2506         }
2507
2508         /* prepare transaction */
2509         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
2510                                    fst_fl, handle);
2511         if (rc != 0)
2512                 GOTO(stop, rc);
2513
2514         if (fst_buf->lb_buf != NULL)
2515                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
2516                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
2517                                            handle);
2518         else
2519                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
2520                                            handle);
2521         if (rc != 0)
2522                 GOTO(stop, rc);
2523
2524         rc = mdd_trans_start(env, mdd, handle);
2525         if (rc != 0)
2526                 GOTO(stop, rc);
2527
2528         if (flags & SWAP_LAYOUTS_MDS_HSM) {
2529                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
2530                 if (rc < 0)
2531                         GOTO(stop, rc);
2532
2533                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
2534                 if (rc < 0) {
2535                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
2536                                                     handle);
2537                         if (rc2 < 0)
2538                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
2539                                        mdd_obj_dev_name(fst_o),
2540                                        PFID(mdo2fid(fst_o)), rc, rc2);
2541                         GOTO(stop, rc);
2542                 }
2543         }
2544
2545         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
2546         if (rc != 0)
2547                 GOTO(stop, rc);
2548
2549         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
2550                 rc = -EOPNOTSUPP;
2551         } else {
2552                 if (fst_buf->lb_buf != NULL)
2553                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
2554                                            LU_XATTR_REPLACE, handle);
2555                 else
2556                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
2557         }
2558         if (rc != 0)
2559                 GOTO(out_restore, rc);
2560
2561         /* Issue one changelog record per file */
2562         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
2563         if (rc)
2564                 GOTO(stop, rc);
2565
2566         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
2567         if (rc)
2568                 GOTO(stop, rc);
2569         EXIT;
2570
2571 out_restore:
2572         if (rc != 0) {
2573                 int steps = 0;
2574
2575                 /* failure on second file, but first was done, so we have
2576                  * to roll back first. */
2577                 if (fst_buf->lb_buf != NULL) {
2578                         mdd_set_lmm_oi(fst_lmm, saved_oi);
2579                         mdd_set_lmm_gen(fst_lmm, &saved_gen);
2580                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
2581                                             LU_XATTR_REPLACE, handle);
2582                 } else {
2583                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
2584                 }
2585                 if (rc2 < 0)
2586                         goto do_lbug;
2587
2588                 ++steps;
2589                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
2590                 if (rc2 < 0)
2591                         goto do_lbug;
2592
2593                 ++steps;
2594                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
2595
2596         do_lbug:
2597                 if (rc2 < 0) {
2598                         /* very bad day */
2599                         CERROR("%s: unable to roll back layout swap. FIDs: "
2600                                DFID" and "DFID "error: %d/%d, steps: %d\n",
2601                                mdd_obj_dev_name(fst_o),
2602                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
2603                                rc, rc2, steps);
2604                         /* a solution to avoid journal commit is to panic,
2605                          * but it has strong consequences so we use LBUG to
2606                          * allow sysdamin to choose to panic or not
2607                          */
2608                         LBUG();
2609                 }
2610         }
2611
2612 stop:
2613         rc = mdd_trans_stop(env, mdd, rc, handle);
2614
2615         /* Truncate local DOM data if all went well */
2616         if (!rc && dom_o)
2617                 mdd_dom_data_truncate(env, mdd, dom_o);
2618
2619         mdd_write_unlock(env, snd_o);
2620         mdd_write_unlock(env, fst_o);
2621
2622         lu_buf_free(fst_buf);
2623         lu_buf_free(snd_buf);
2624         lu_buf_free(fst_hsm_buf);
2625         lu_buf_free(snd_hsm_buf);
2626
2627         if (!rc) {
2628                 (void) mdd_object_pfid_replace(env, fst_o);
2629                 (void) mdd_object_pfid_replace(env, snd_o);
2630         }
2631         return rc;
2632 }
2633
2634 static int mdd_declare_layout_change(const struct lu_env *env,
2635                                      struct mdd_device *mdd,
2636                                      struct mdd_object *obj,
2637                                      struct md_layout_change *mlc,
2638                                      struct thandle *handle)
2639 {
2640         int rc;
2641
2642         rc = mdo_declare_layout_change(env, obj, mlc, handle);
2643         if (rc)
2644                 return rc;
2645
2646         return mdd_declare_changelog_store(env, mdd, CL_LAYOUT, NULL, NULL,
2647                                            handle);
2648 }
2649
2650 /* For PFL, this is used to instantiate necessary component objects. */
2651 static int
2652 mdd_layout_instantiate_component(const struct lu_env *env,
2653                 struct mdd_object *obj, struct md_layout_change *mlc,
2654                 struct thandle *handle)
2655 {
2656         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2657         int rc;
2658         ENTRY;
2659
2660         if (mlc->mlc_opc != MD_LAYOUT_WRITE)
2661                 RETURN(-ENOTSUPP);
2662
2663         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2664         /**
2665          * It's possible that another layout write intent has already
2666          * instantiated our objects, so a -EALREADY returned, and we need to
2667          * do nothing.
2668          */
2669         if (rc)
2670                 RETURN(rc == -EALREADY ? 0 : rc);
2671
2672         rc = mdd_trans_start(env, mdd, handle);
2673         if (rc)
2674                 RETURN(rc);
2675
2676         mdd_write_lock(env, obj, DT_TGT_CHILD);
2677         rc = mdo_layout_change(env, obj, mlc, handle);
2678         mdd_write_unlock(env, obj);
2679         if (rc)
2680                 RETURN(rc);
2681
2682         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
2683         RETURN(rc);
2684 }
2685
2686 /**
2687  * Change the FLR layout from RDONLY to WRITE_PENDING.
2688  *
2689  * It picks the primary mirror, and bumps the layout version, and set
2690  * layout version xattr to OST objects in a sync tx. In order to facilitate
2691  * the handling of phantom writers from evicted clients, the clients carry
2692  * layout version of the file with write RPC, so that the OSTs can verify
2693  * if the write RPCs are legitimate, meaning not from evicted clients.
2694  */
2695 static int
2696 mdd_layout_update_rdonly(const struct lu_env *env, struct mdd_object *obj,
2697                          struct md_layout_change *mlc, struct thandle *handle)
2698 {
2699         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2700         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2701         struct lustre_som_attrs *som = &mlc->mlc_som;
2702         int fl = 0;
2703         int rc;
2704         ENTRY;
2705
2706         /* Verify acceptable operations */
2707         switch (mlc->mlc_opc) {
2708         case MD_LAYOUT_WRITE:
2709         case MD_LAYOUT_RESYNC:
2710                 /* these are legal operations - this represents the case that
2711                  * a few mirrors were missed in the last resync. */
2712                 break;
2713         case MD_LAYOUT_RESYNC_DONE:
2714         default:
2715                 RETURN(0);
2716         }
2717
2718         som_buf->lb_buf = som;
2719         som_buf->lb_len = sizeof(*som);
2720         rc = mdo_xattr_get(env, obj, som_buf, XATTR_NAME_SOM);
2721         if (rc < 0 && rc != -ENODATA)
2722                 RETURN(rc);
2723
2724         if (rc > 0) {
2725                 lustre_som_swab(som);
2726                 if (som->lsa_valid & SOM_FL_STRICT)
2727                         fl = LU_XATTR_REPLACE;
2728         }
2729
2730         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2731         if (rc)
2732                 GOTO(out, rc);
2733
2734         if (fl) {
2735                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2736                                            XATTR_NAME_SOM, fl, handle);
2737                 if (rc)
2738                         GOTO(out, rc);
2739         }
2740
2741         /* record a changelog for data mover to consume */
2742         rc = mdd_declare_changelog_store(env, mdd, CL_FLRW, NULL, NULL, handle);
2743         if (rc)
2744                 GOTO(out, rc);
2745
2746         rc = mdd_trans_start(env, mdd, handle);
2747         if (rc)
2748                 GOTO(out, rc);
2749
2750         /* it needs a sync tx to make FLR to work properly */
2751         handle->th_sync = 1;
2752
2753         mdd_write_lock(env, obj, DT_TGT_CHILD);
2754         rc = mdo_layout_change(env, obj, mlc, handle);
2755         if (!rc && fl) {
2756                 /* SOM state transition from STRICT to STALE */
2757                 som->lsa_valid = SOM_FL_STALE;
2758                 lustre_som_swab(som);
2759                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2760                                    fl, handle);
2761         }
2762         mdd_write_unlock(env, obj);
2763         if (rc)
2764                 GOTO(out, rc);
2765
2766         rc = mdd_changelog_data_store(env, mdd, CL_FLRW, 0, obj, handle);
2767         if (rc)
2768                 GOTO(out, rc);
2769
2770         EXIT;
2771
2772 out:
2773         return rc;
2774 }
2775
2776 /**
2777  * Handle mirrored file state transition when it's in WRITE_PENDING.
2778  *
2779  * Only MD_LAYOUT_RESYNC, which represents start of resync, is allowed when
2780  * the file is in WRITE_PENDING state. If everything goes fine, the file's
2781  * layout version will be increased, and the file's state will be changed to
2782  * SYNC_PENDING.
2783  */
2784 static int
2785 mdd_layout_update_write_pending(const struct lu_env *env,
2786                 struct mdd_object *obj, struct md_layout_change *mlc,
2787                 struct thandle *handle)
2788 {
2789         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2790         int rc;
2791         ENTRY;
2792
2793         switch (mlc->mlc_opc) {
2794         case MD_LAYOUT_RESYNC:
2795                 /* Upon receiving the resync request, it should
2796                  * instantiate all stale components right away to get ready
2797                  * for mirror copy. In order to avoid layout version change,
2798                  * client should avoid sending LAYOUT_WRITE request at the
2799                  * resync state. */
2800                 break;
2801         case MD_LAYOUT_WRITE:
2802                 /* legal race for concurrent write, the file state has been
2803                  * changed by another client. */
2804                 break;
2805         default:
2806                 RETURN(-EBUSY);
2807         }
2808
2809         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2810         if (rc)
2811                 GOTO(out, rc);
2812
2813         rc = mdd_trans_start(env, mdd, handle);
2814         if (rc)
2815                 GOTO(out, rc);
2816
2817         /* it needs a sync tx to make FLR to work properly */
2818         handle->th_sync = 1;
2819
2820         mdd_write_lock(env, obj, DT_TGT_CHILD);
2821         rc = mdo_layout_change(env, obj, mlc, handle);
2822         mdd_write_unlock(env, obj);
2823         if (rc)
2824                 GOTO(out, rc);
2825
2826         EXIT;
2827
2828 out:
2829         return rc;
2830 }
2831
2832 /**
2833  * Handle the requests when a FLR file's state is in SYNC_PENDING.
2834  *
2835  * Only concurrent write and sync complete requests are possible when the
2836  * file is in SYNC_PENDING. For the latter request, it will pass in the
2837  * mirrors that have been synchronized, then the stale bit will be cleared
2838  * to make the file's state turn into RDONLY.
2839  * For concurrent write reqeust, it just needs to change the file's state
2840  * to WRITE_PENDING in a sync tx. It doesn't have to change the layout
2841  * version because the version will be increased in the transition to
2842  * SYNC_PENDING later so that it can deny the write request from potential
2843  * evicted SYNC clients. */
2844 static int
2845 mdd_object_update_sync_pending(const struct lu_env *env, struct mdd_object *obj,
2846                 struct md_layout_change *mlc, struct thandle *handle)
2847 {
2848         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2849         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2850         int fl = 0;
2851         int rc;
2852         ENTRY;
2853
2854         /* operation validation */
2855         switch (mlc->mlc_opc) {
2856         case MD_LAYOUT_RESYNC_DONE:
2857                 /* resync complete. */
2858         case MD_LAYOUT_WRITE:
2859                 /* concurrent write. */
2860                 break;
2861         case MD_LAYOUT_RESYNC:
2862                 /* resync again, most likely the previous run failed.
2863                  * no-op if it's already in SYNC_PENDING state */
2864                 RETURN(0);
2865         default:
2866                 RETURN(-EBUSY);
2867         }
2868
2869         if (mlc->mlc_som.lsa_valid & SOM_FL_STRICT) {
2870                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_SOM);
2871                 if (rc < 0 && rc != -ENODATA)
2872                         RETURN(rc);
2873
2874                 fl = rc == -ENODATA ? LU_XATTR_CREATE : LU_XATTR_REPLACE;
2875                 lustre_som_swab(&mlc->mlc_som);
2876                 som_buf->lb_buf = &mlc->mlc_som;
2877                 som_buf->lb_len = sizeof(mlc->mlc_som);
2878         }
2879
2880         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2881         if (rc)
2882                 GOTO(out, rc);
2883
2884         /* record a changelog for the completion of resync */
2885         rc = mdd_declare_changelog_store(env, mdd, CL_RESYNC, NULL, NULL,
2886                                          handle);
2887         if (rc)
2888                 GOTO(out, rc);
2889
2890         /* RESYNC_DONE has piggybacked size and blocks */
2891         if (fl) {
2892                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2893                                            XATTR_NAME_SOM, fl, handle);
2894                 if (rc)
2895                         GOTO(out, rc);
2896         }
2897
2898         rc = mdd_trans_start(env, mdd, handle);
2899         if (rc)
2900                 GOTO(out, rc);
2901
2902         /* it needs a sync tx to make FLR to work properly */
2903         handle->th_sync = 1;
2904
2905         rc = mdo_layout_change(env, obj, mlc, handle);
2906         if (rc)
2907                 GOTO(out, rc);
2908
2909         if (fl) {
2910                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2911                                    fl, handle);
2912                 if (rc)
2913                         GOTO(out, rc);
2914         }
2915
2916         rc = mdd_changelog_data_store(env, mdd, CL_RESYNC, 0, obj, handle);
2917         if (rc)
2918                 GOTO(out, rc);
2919         EXIT;
2920 out:
2921         return rc;
2922 }
2923
2924 /**
2925  * Layout change callback for object.
2926  *
2927  * This is only used by FLR for now. In the future, it can be exteneded to
2928  * handle all layout change.
2929  */
2930 static int
2931 mdd_layout_change(const struct lu_env *env, struct md_object *o,
2932                   struct md_layout_change *mlc)
2933 {
2934         struct mdd_object       *obj = md2mdd_obj(o);
2935         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
2936         struct lu_buf           *buf = mdd_buf_get(env, NULL, 0);
2937         struct lov_comp_md_v1   *lcm;
2938         struct thandle          *handle;
2939         int flr_state;
2940         int rc;
2941         ENTRY;
2942
2943         /* Verify acceptable operations */
2944         switch (mlc->mlc_opc) {
2945         case MD_LAYOUT_WRITE:
2946         case MD_LAYOUT_RESYNC:
2947         case MD_LAYOUT_RESYNC_DONE:
2948                 break;
2949         default:
2950                 RETURN(-ENOTSUPP);
2951         }
2952
2953         handle = mdd_trans_create(env, mdd);
2954         if (IS_ERR(handle))
2955                 RETURN(PTR_ERR(handle));
2956
2957         rc = mdd_stripe_get(env, obj, buf, XATTR_NAME_LOV);
2958         if (rc < 0) {
2959                 if (rc == -ENODATA)
2960                         rc = -EINVAL;
2961                 GOTO(out, rc);
2962         }
2963
2964         /* analyze the layout to make sure it's a FLR file */
2965         lcm = buf->lb_buf;
2966         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2967                 GOTO(out, rc = -EINVAL);
2968
2969         flr_state = le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK;
2970
2971         /* please refer to HLD of FLR for state transition */
2972         switch (flr_state) {
2973         case LCM_FL_NONE:
2974                 rc = mdd_layout_instantiate_component(env, obj, mlc, handle);
2975                 break;
2976         case LCM_FL_WRITE_PENDING:
2977                 rc = mdd_layout_update_write_pending(env, obj, mlc, handle);
2978                 break;
2979         case LCM_FL_RDONLY:
2980                 rc = mdd_layout_update_rdonly(env, obj, mlc, handle);
2981                 break;
2982         case LCM_FL_SYNC_PENDING:
2983                 rc = mdd_object_update_sync_pending(env, obj, mlc, handle);
2984                 break;
2985         default:
2986                 rc = 0;
2987                 break;
2988         }
2989         EXIT;
2990
2991 out:
2992         mdd_trans_stop(env, mdd, rc, handle);
2993         lu_buf_free(buf);
2994         return rc;
2995 }
2996
2997 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
2998                           struct mdd_object *child, const struct lu_attr *attr,
2999                           const struct md_op_spec *spec,
3000                           struct dt_allocation_hint *hint)
3001 {
3002         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
3003         struct mdd_device *mdd = mdd_obj2mdd_dev(child);
3004         struct dt_object *nc = mdd_object_child(child);
3005
3006         memset(hint, 0, sizeof(*hint));
3007
3008         /* For striped directory, give striping EA to lod_ah_init, which will
3009          * decide the stripe_offset and stripe count by it. */
3010         if (S_ISDIR(attr->la_mode) &&
3011             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
3012                 hint->dah_eadata = spec->u.sp_ea.eadata;
3013                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
3014         } else {
3015                 hint->dah_eadata = NULL;
3016                 hint->dah_eadata_len = 0;
3017                 if (spec->sp_cr_flags & MDS_OPEN_APPEND) {
3018                         if (mdd->mdd_append_stripe_count != 0 ||
3019                             mdd->mdd_append_pool[0])
3020                                 CDEBUG(D_INFO,
3021                                        "using O_APPEND file striping\n");
3022                         if (mdd->mdd_append_stripe_count)
3023                                 hint->dah_append_stripes =
3024                                         mdd->mdd_append_stripe_count;
3025                         if (mdd->mdd_append_pool[0])
3026                                 hint->dah_append_pool = mdd->mdd_append_pool;
3027                 } else {
3028                         hint->dah_append_stripes = 0;
3029                 }
3030         }
3031
3032         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
3033                hint->dah_eadata, hint->dah_eadata_len);
3034         /* @hint will be initialized by underlying device. */
3035         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
3036 }
3037
3038 static int accmode(const struct lu_env *env, const struct lu_attr *la,
3039                    u64 open_flags)
3040 {
3041         /* Sadly, NFSD reopens a file repeatedly during operation, so the
3042          * "acc_mode = 0" allowance for newly-created files isn't honoured.
3043          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
3044          * owner can write to a file even if it is marked readonly to hide
3045          * its brokenness. (bug 5781) */
3046         if (open_flags & MDS_OPEN_OWNEROVERRIDE) {
3047                 struct lu_ucred *uc = lu_ucred_check(env);
3048
3049                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
3050                         return 0;
3051         }
3052
3053         return mds_accmode(open_flags);
3054 }
3055
3056 static int mdd_open_sanity_check(const struct lu_env *env,
3057                                  struct mdd_object *obj,
3058                                  const struct lu_attr *attr, u64 open_flags,
3059                                  int is_replay)
3060 {
3061         int mode, rc;
3062         ENTRY;
3063
3064         /* EEXIST check, also opening of *open* orphans is allowed so we can
3065          * open-by-handle unlinked files
3066          */
3067         if (mdd_is_dead_obj(obj) && !is_replay &&
3068             likely(!(mdd_is_orphan_obj(obj) && obj->mod_count > 0)))
3069                 RETURN(-ENOENT);
3070
3071         if (S_ISLNK(attr->la_mode))
3072                 RETURN(-ELOOP);
3073
3074         mode = accmode(env, attr, open_flags);
3075
3076         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
3077                 RETURN(-EISDIR);
3078
3079         if (!(open_flags & MDS_OPEN_CREATED)) {
3080                 rc = mdd_permission_internal(env, obj, attr, mode);
3081                 if (rc)
3082                         RETURN(rc);
3083         }
3084
3085         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
3086             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
3087                 open_flags &= ~MDS_OPEN_TRUNC;
3088
3089         /* For writing append-only file must open it with append mode. */
3090         if (attr->la_flags & LUSTRE_APPEND_FL) {
3091                 if ((open_flags & MDS_FMODE_WRITE) &&
3092                     !(open_flags & MDS_OPEN_APPEND))
3093                         RETURN(-EPERM);
3094                 if (open_flags & MDS_OPEN_TRUNC)
3095                         RETURN(-EPERM);
3096         }
3097
3098         RETURN(0);
3099 }
3100
3101 static int mdd_open(const struct lu_env *env, struct md_object *obj,
3102                     u64 open_flags, struct md_op_spec *spec)
3103 {
3104         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3105         struct md_device *md_dev = lu2md_dev(mdd2lu_dev(mdo2mdd(obj)));
3106         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
3107         struct mdd_object_user *mou = NULL;
3108         const struct lu_ucred *uc = lu_ucred(env);
3109         struct mdd_device *mdd = mdo2mdd(obj);
3110         enum changelog_rec_type type = CL_OPEN;
3111         int rc = 0;
3112         ENTRY;
3113
3114         mdd_write_lock(env, mdd_obj, DT_TGT_CHILD);
3115
3116         rc = mdd_la_get(env, mdd_obj, attr);
3117         if (rc != 0)
3118                 GOTO(out, rc);
3119
3120         rc = mdd_open_sanity_check(env, mdd_obj, attr, open_flags,
3121                                    spec->no_create);
3122         if ((rc == -EACCES) && (mdd->mdd_cl.mc_mask & (1 << CL_DN_OPEN)))
3123                 type = CL_DN_OPEN;
3124         else if (rc != 0)
3125                 GOTO(out, rc);
3126         else
3127                 mdd_obj->mod_count++;
3128
3129         if (!mdd_changelog_enabled(env, mdd, type))
3130                 GOTO(out, rc);
3131
3132 find:
3133         /* look for existing opener in list under mdd_write_lock */
3134         mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid, open_flags);
3135
3136         if (!mou) {
3137                 int rc2;
3138
3139                 /* add user to list */
3140                 mou = mdd_obj_user_alloc(open_flags, uc->uc_uid, uc->uc_gid);
3141                 if (IS_ERR(mou)) {
3142                         if (rc == 0)
3143                                 rc = PTR_ERR(mou);
3144                         GOTO(out, rc);
3145                 }
3146                 rc2 = mdd_obj_user_add(mdd_obj, mou, type == CL_DN_OPEN);
3147                 if (rc2 != 0) {
3148                         mdd_obj_user_free(mou);
3149                         if (rc2 == -EEXIST)
3150                                 GOTO(find, rc2);
3151                 }
3152         } else {
3153                 if (type == CL_DN_OPEN) {
3154                         if (ktime_before(ktime_get(), mou->mou_deniednext))
3155                                 /* same user denied again same access within
3156                                  * time interval: do not record
3157                                  */
3158                                 GOTO(out, rc);
3159
3160                         /* this user already denied, but some time ago:
3161                          * update denied time
3162                          */
3163                         mou->mou_deniednext =
3164                                 ktime_add(ktime_get(),
3165                                           ktime_set(mdd->mdd_cl.mc_deniednext,
3166                                                     0));
3167                 } else {
3168                         mou->mou_opencount++;
3169                         /* same user opening file again with same flags:
3170                          * don't record
3171                          */
3172                         GOTO(out, rc);
3173                 }
3174         }
3175
3176         /* FYI, only the bottom 32 bits of open_flags are recorded */
3177         mdd_changelog(env, type, open_flags, md_dev, mdo2fid(mdd_obj));
3178
3179         EXIT;
3180 out:
3181         mdd_write_unlock(env, mdd_obj);
3182         return rc;
3183 }
3184
3185 static int mdd_declare_close(const struct lu_env *env, struct mdd_object *obj,
3186                              struct md_attr *ma, struct thandle *handle)
3187 {
3188         int rc;
3189
3190         rc = mdd_orphan_declare_delete(env, obj, handle);
3191         if (rc)
3192                 return rc;
3193
3194         return mdo_declare_destroy(env, obj, handle);
3195 }
3196
3197 /*
3198  * No permission check is needed.
3199  */
3200 static int mdd_close(const struct lu_env *env, struct md_object *obj,
3201                      struct md_attr *ma, u64 open_flags)
3202 {
3203         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3204         struct mdd_device *mdd = mdo2mdd(obj);
3205         struct thandle *handle = NULL;
3206         int is_orphan = 0;
3207         int rc;
3208         bool blocked = false;
3209         bool last_close_by_uid = false;
3210         const struct lu_ucred *uc = lu_ucred(env);
3211         ENTRY;
3212
3213         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
3214                 mdd_write_lock(env, mdd_obj, DT_TGT_CHILD);
3215                 mdd_obj->mod_count--;
3216                 mdd_write_unlock(env, mdd_obj);
3217
3218                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
3219                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
3220                                 "list\n", PFID(mdd_object_fid(mdd_obj)));
3221                 RETURN(0);
3222         }
3223
3224         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
3225          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
3226         /* check without any lock */
3227         is_orphan = mdd_obj->mod_count == 1 &&
3228                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
3229
3230 again:
3231         if (is_orphan) {
3232                 /* mdd_trans_create() maybe failed because of barrier_entry(),
3233                  * under such case, the orphan MDT-object will be left in the
3234                  * orphan list, and when the MDT remount next time, the unused
3235                  * orphans will be destroyed automatically.
3236                  *
3237                  * One exception: the former mdd_finish_unlink may failed to
3238                  * add the orphan MDT-object to the orphan list, then if the
3239                  * mdd_trans_create() failed because of barrier_entry(), the
3240                  * MDT-object will become real orphan that is neither in the
3241                  * namespace nor in the orphan list. Such bad case should be
3242                  * very rare and will be handled by e2fsck/lfsck. */
3243                 handle = mdd_trans_create(env, mdo2mdd(obj));
3244                 if (IS_ERR(handle)) {
3245                         rc = PTR_ERR(handle);
3246                         if (rc != -EINPROGRESS)
3247                                 GOTO(stop, rc);
3248
3249                         handle = NULL;
3250                         blocked = true;
3251                         goto cont;
3252                 }
3253
3254                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
3255                 if (rc)
3256                         GOTO(stop, rc);
3257
3258                 rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE, NULL, NULL,
3259                                                  handle);
3260                 if (rc)
3261                         GOTO(stop, rc);
3262
3263                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3264                 if (rc)
3265                         GOTO(stop, rc);
3266         }
3267
3268 cont:
3269         mdd_write_lock(env, mdd_obj, DT_TGT_CHILD);
3270         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
3271         if (rc != 0) {
3272                 CERROR("%s: failed to get lu_attr of "DFID": rc = %d\n",
3273                        lu_dev_name(mdd2lu_dev(mdd)),
3274                        PFID(mdd_object_fid(mdd_obj)), rc);
3275                 GOTO(out, rc);
3276         }
3277
3278         /* check again with lock */
3279         is_orphan = (mdd_obj->mod_count == 1) &&
3280                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
3281                      ma->ma_attr.la_nlink == 0);
3282
3283         if (is_orphan && !handle && !blocked) {
3284                 mdd_write_unlock(env, mdd_obj);
3285                 goto again;
3286         }
3287
3288         mdd_obj->mod_count--; /*release open count */
3289
3290         /* under mdd write lock */
3291         /* If recording, see if we need to remove UID from list. uc is not
3292          * initialized if the client has been evicted. */
3293         if (mdd_changelog_enabled(env, mdd, CL_OPEN) && uc) {
3294                 struct mdd_object_user *mou;
3295
3296                 /* look for UID in list */
3297                 /* If mou is NULL, it probably means logging was enabled after
3298                  * the user had the file open. So the corresponding close
3299                  * will not be logged.
3300                  */
3301                 mou = mdd_obj_user_find(mdd_obj, uc->uc_uid, uc->uc_gid,
3302                                         open_flags);
3303                 if (mou) {
3304                         mou->mou_opencount--;
3305                         if (mou->mou_opencount == 0) {
3306                                 mdd_obj_user_remove(mdd_obj, mou);
3307                                 last_close_by_uid = true;
3308                         }
3309                 }
3310         }
3311
3312         if (!is_orphan || blocked)
3313                 GOTO(out, rc = 0);
3314
3315         /* Orphan object */
3316         /* NB: Object maybe not in orphan list originally, it is rare case for
3317          * mdd_finish_unlink() failure, in that case, the object doesn't have
3318          * ORPHAN_OBJ flag */
3319         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
3320                 /* remove link to object from orphan index */
3321                 LASSERT(handle != NULL);
3322                 rc = mdd_orphan_delete(env, mdd_obj, handle);
3323                 if (rc != 0) {
3324                         CERROR("%s: unable to delete "DFID" from orphan list: "
3325                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3326                                PFID(mdd_object_fid(mdd_obj)), rc);
3327                         /* If object was not deleted from orphan list, do not
3328                          * destroy OSS objects, which will be done when next
3329                          * recovery. */
3330                         GOTO(out, rc);
3331                 }
3332
3333                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
3334                        "list, OSS objects to be destroyed.\n",
3335                        PFID(mdd_object_fid(mdd_obj)));
3336         }
3337
3338         rc = mdo_destroy(env, mdd_obj, handle);
3339
3340         if (rc != 0) {
3341                 CERROR("%s: unable to delete "DFID" from orphan list: "
3342                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
3343                        PFID(mdd_object_fid(mdd_obj)), rc);
3344         }
3345         EXIT;
3346
3347 out:
3348         mdd_write_unlock(env, mdd_obj);
3349
3350         if (rc != 0 || blocked ||
3351             !mdd_changelog_enabled(env, mdd, CL_CLOSE))
3352                 GOTO(stop, rc);
3353
3354         /* Record CL_CLOSE in changelog only if file was opened in write mode,
3355          * or if CL_OPEN was recorded and it's last close by user.
3356          * Changelogs mask may change between open and close operations, but
3357          * this is not a big deal if we have a CL_CLOSE entry with no matching
3358          * CL_OPEN. Plus Changelogs mask may not change often.
3359          */
3360         if (((!(mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) &&
3361               (open_flags & (MDS_FMODE_WRITE | MDS_OPEN_APPEND |
3362                              MDS_OPEN_TRUNC))) ||
3363              ((mdd->mdd_cl.mc_mask & (1 << CL_OPEN)) && last_close_by_uid)) &&
3364             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
3365                 if (handle == NULL) {
3366                         handle = mdd_trans_create(env, mdo2mdd(obj));
3367                         if (IS_ERR(handle))
3368                                 GOTO(stop, rc = PTR_ERR(handle));
3369
3370                         rc = mdd_declare_changelog_store(env, mdd, CL_CLOSE,
3371                                                          NULL, NULL, handle);
3372                         if (rc)
3373                                 GOTO(stop, rc);
3374
3375                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
3376                         if (rc)
3377                                 GOTO(stop, rc);
3378                 }
3379
3380                 /* FYI, only the bottom 32 bits of open_flags are recorded */
3381                 mdd_changelog_data_store(env, mdd, CL_CLOSE, open_flags,
3382                                          mdd_obj, handle);
3383         }
3384
3385 stop:
3386         if (handle != NULL && !IS_ERR(handle))
3387                 rc = mdd_trans_stop(env, mdd, rc, handle);
3388
3389         return rc;
3390 }
3391
3392 /*
3393  * Permission check is done when open,
3394  * no need check again.
3395  */
3396 static int mdd_readpage_sanity_check(const struct lu_env *env,
3397                                      struct mdd_object *obj)
3398 {
3399         struct dt_object *next = mdd_object_child(obj);
3400         int rc;
3401         ENTRY;
3402
3403         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
3404                 rc = 0;
3405         else
3406                 rc = -ENOTDIR;
3407
3408         RETURN(rc);
3409 }
3410
3411 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
3412                               size_t nob, const struct dt_it_ops *iops,
3413                               struct dt_it *it, __u32 attr, void *arg)
3414 {
3415         struct lu_dirpage       *dp = &lp->lp_dir;
3416         void                    *area = dp;
3417         int                      result;
3418         __u64                    hash = 0;
3419         struct lu_dirent        *ent;
3420         struct lu_dirent        *last = NULL;
3421         struct lu_fid            fid;
3422         int                      first = 1;
3423
3424         if (nob < sizeof(*dp))
3425                 return -EINVAL;
3426
3427         memset(area, 0, sizeof (*dp));
3428         area += sizeof (*dp);
3429         nob  -= sizeof (*dp);
3430
3431         ent  = area;
3432         do {
3433                 int    len;
3434                 size_t recsize;
3435
3436                 len = iops->key_size(env, it);
3437
3438                 /* IAM iterator can return record with zero len. */
3439                 if (len == 0)
3440                         goto next;
3441
3442                 hash = iops->store(env, it);
3443                 if (unlikely(first)) {
3444                         first = 0;
3445                         dp->ldp_hash_start = cpu_to_le64(hash);
3446                 }
3447
3448                 /* calculate max space required for lu_dirent */
3449                 recsize = lu_dirent_calc_size(len, attr);
3450
3451                 if (nob >= recsize) {
3452                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
3453                         if (result == -ESTALE)
3454                                 goto next;
3455                         if (result != 0)
3456                                 goto out;
3457
3458                         /* osd might not able to pack all attributes,
3459                          * so recheck rec length */
3460                         recsize = le16_to_cpu(ent->lde_reclen);
3461
3462                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
3463                                 fid_le_to_cpu(&fid, &ent->lde_fid);
3464                                 if (fid_is_dot_lustre(&fid))
3465                                         goto next;
3466                         }
3467                 } else {
3468                         result = (last != NULL) ? 0 :-EINVAL;
3469                         goto out;
3470                 }
3471                 last = ent;
3472                 ent = (void *)ent + recsize;
3473                 nob -= recsize;
3474
3475 next:
3476                 result = iops->next(env, it);
3477                 if (result == -ESTALE)
3478                         goto next;
3479         } while (result == 0);
3480
3481 out:
3482         dp->ldp_hash_end = cpu_to_le64(hash);
3483         if (last != NULL) {
3484                 if (last->lde_hash == dp->ldp_hash_end)
3485                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
3486                 last->lde_reclen = 0; /* end mark */
3487         }
3488         if (result > 0)
3489                 /* end of directory */
3490                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3491         else if (result < 0)
3492                 CWARN("build page failed: %d!\n", result);
3493         return result;
3494 }
3495
3496 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
3497                  const struct lu_rdpg *rdpg)
3498 {
3499         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3500         int rc;
3501         ENTRY;
3502
3503         if (mdd_object_exists(mdd_obj) == 0) {
3504                 CERROR("%s: object "DFID" not found: rc = -2\n",
3505                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
3506                 return -ENOENT;
3507         }
3508
3509         mdd_read_lock(env, mdd_obj, DT_TGT_CHILD);
3510         rc = mdd_readpage_sanity_check(env, mdd_obj);
3511         if (rc)
3512                 GOTO(out_unlock, rc);
3513
3514         if (mdd_is_dead_obj(mdd_obj)) {
3515                 struct page *pg;
3516                 struct lu_dirpage *dp;
3517
3518                 /*
3519                  * According to POSIX, please do not return any entry to client:
3520                  * even dot and dotdot should not be returned.
3521                  */
3522                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
3523                        PFID(mdd_object_fid(mdd_obj)));
3524
3525                 if (rdpg->rp_count <= 0)
3526                         GOTO(out_unlock, rc = -EFAULT);
3527                 LASSERT(rdpg->rp_pages != NULL);
3528
3529                 pg = rdpg->rp_pages[0];
3530                 dp = (struct lu_dirpage *)kmap(pg);
3531                 memset(dp, 0 , sizeof(struct lu_dirpage));
3532                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3533                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
3534                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3535                 kunmap(pg);
3536                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
3537         }
3538
3539         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
3540                            mdd_dir_page_build, NULL);
3541         if (rc >= 0) {
3542                 struct lu_dirpage       *dp;
3543
3544                 dp = kmap(rdpg->rp_pages[0]);
3545                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
3546                 if (rc == 0) {
3547                         /*
3548                          * No pages were processed, mark this for first page
3549                          * and send back.
3550                          */
3551                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
3552                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
3553                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
3554                 }
3555                 kunmap(rdpg->rp_pages[0]);
3556         }
3557
3558         GOTO(out_unlock, rc);
3559 out_unlock:
3560         mdd_read_unlock(env, mdd_obj);
3561         return rc;
3562 }
3563
3564 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
3565 {
3566         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3567
3568         if (mdd_object_exists(mdd_obj) == 0) {
3569                 int rc = -ENOENT;
3570
3571                 CERROR("%s: object "DFID" not found: rc = %d\n",
3572                        mdd_obj_dev_name(mdd_obj),
3573                        PFID(mdd_object_fid(mdd_obj)), rc);
3574                 return rc;
3575         }
3576         return dt_object_sync(env, mdd_object_child(mdd_obj),
3577                               0, OBD_OBJECT_EOF);
3578 }
3579
3580 static int mdd_object_lock(const struct lu_env *env,
3581                            struct md_object *obj,
3582                            struct lustre_handle *lh,
3583                            struct ldlm_enqueue_info *einfo,
3584                            union ldlm_policy_data *policy)
3585 {
3586         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3587         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
3588                               einfo, policy);
3589 }
3590
3591 static int mdd_object_unlock(const struct lu_env *env,
3592                              struct md_object *obj,
3593                              struct ldlm_enqueue_info *einfo,
3594                              union ldlm_policy_data *policy)
3595 {
3596         struct mdd_object *mdd_obj = md2mdd_obj(obj);
3597         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
3598 }
3599
3600 const struct md_object_operations mdd_obj_ops = {
3601         .moo_permission         = mdd_permission,
3602         .moo_attr_get           = mdd_attr_get,
3603         .moo_attr_set           = mdd_attr_set,
3604         .moo_xattr_get          = mdd_xattr_get,
3605         .moo_xattr_set          = mdd_xattr_set,
3606         .moo_xattr_list         = mdd_xattr_list,
3607         .moo_invalidate         = mdd_invalidate,
3608         .moo_xattr_del          = mdd_xattr_del,
3609         .moo_swap_layouts       = mdd_swap_layouts,
3610         .moo_open               = mdd_open,
3611         .moo_close              = mdd_close,
3612         .moo_readpage           = mdd_readpage,
3613         .moo_readlink           = mdd_readlink,
3614         .moo_changelog          = mdd_changelog,
3615         .moo_object_sync        = mdd_object_sync,
3616         .moo_object_lock        = mdd_object_lock,
3617         .moo_object_unlock      = mdd_object_unlock,
3618         .moo_layout_change      = mdd_layout_change,
3619 };