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