Whamcloud - gitweb
LU-10454 mdd: check return value of lu_ucred()
[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         }
656
657         reclen = llog_data_len(LLOG_CHANGELOG_HDR_SZ +
658                                changelog_rec_offset(flags & CLF_SUPPORTED,
659                                                     xflags & CLFE_SUPPORTED));
660         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
661         if (buf->lb_buf == NULL)
662                 RETURN(-ENOMEM);
663         rec = buf->lb_buf;
664
665         rec->cr_hdr.lrh_len = reclen;
666         rec->cr.cr_flags = flags;
667         rec->cr.cr_type = (__u32)type;
668         rec->cr.cr_tfid = *fid;
669         rec->cr.cr_namelen = 0;
670
671         if (flags & CLF_JOBID)
672                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
673
674         if (flags & CLF_EXTRA_FLAGS) {
675                 mdd_changelog_rec_ext_extra_flags(&rec->cr, xflags);
676                 if (xflags & CLFE_UIDGID)
677                         mdd_changelog_rec_extra_uidgid(&rec->cr,
678                                                        uc->uc_uid, uc->uc_gid);
679         }
680
681         rc = mdd_changelog_store(env, mdd, rec, handle);
682
683         RETURN(rc);
684 }
685
686
687 /** Store a data change changelog record
688  * If this fails, we must fail the whole transaction; we don't
689  * want the change to commit without the log entry.
690  * \param mdd_obj - mdd_object of change
691  * \param handle - transaction handle
692  */
693 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
694                              enum changelog_rec_type type, int flags,
695                              struct mdd_object *mdd_obj, struct thandle *handle)
696 {
697         int                              rc;
698
699         LASSERT(mdd_obj != NULL);
700         LASSERT(handle != NULL);
701
702         /* Not recording */
703         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
704                 RETURN(0);
705         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
706                 RETURN(0);
707
708         if (mdd_is_volatile_obj(mdd_obj))
709                 RETURN(0);
710
711         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
712             ktime_before(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
713                 /* Don't need multiple updates in this log */
714                 /* Don't check under lock - no big deal if we get an extra
715                    entry */
716                 RETURN(0);
717         }
718
719         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
720                                              mdo2fid(mdd_obj), handle);
721         if (rc == 0)
722                 mdd_obj->mod_cltime = ktime_get();
723
724         RETURN(rc);
725 }
726
727 static int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
728                   int flags, struct md_device *m, const struct lu_fid *fid)
729 {
730         struct thandle *handle;
731         struct mdd_device *mdd = lu2mdd_dev(&m->md_lu_dev);
732         int rc;
733         ENTRY;
734
735         /* Not recording */
736         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
737                 RETURN(0);
738         if (!(mdd->mdd_cl.mc_mask & (1 << type)))
739                 RETURN(0);
740
741         LASSERT(fid != NULL);
742
743         handle = mdd_trans_create(env, mdd);
744         if (IS_ERR(handle))
745                 RETURN(PTR_ERR(handle));
746
747         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
748         if (rc)
749                 GOTO(stop, rc);
750
751         rc = mdd_trans_start(env, mdd, handle);
752         if (rc)
753                 GOTO(stop, rc);
754
755         rc = mdd_changelog_data_store_by_fid(env, mdd, type, flags,
756                                                      fid, handle);
757
758 stop:
759         rc = mdd_trans_stop(env, mdd, rc, handle);
760
761         RETURN(rc);
762 }
763
764 /**
765  * Save LMA extended attributes with data from \a ma.
766  *
767  * HSM and Size-On-MDS data will be extracted from \ma if they are valid, if
768  * not, LMA EA will be first read from disk, modified and write back.
769  *
770  */
771 /* Precedence for choosing record type when multiple
772  * attributes change: setattr > mtime > ctime > atime
773  * (ctime changes when mtime does, plus chmod/chown.
774  * atime and ctime are independent.) */
775 static int mdd_attr_set_changelog(const struct lu_env *env,
776                                   struct md_object *obj, struct thandle *handle,
777                                   __u64 valid)
778 {
779         struct mdd_device *mdd = mdo2mdd(obj);
780         int bits, type = 0;
781
782         bits =  (valid & LA_SIZE)  ? 1 << CL_TRUNC : 0;
783         bits |= (valid & ~(LA_CTIME|LA_MTIME|LA_ATIME)) ? 1 << CL_SETATTR : 0;
784         bits |= (valid & LA_MTIME) ? 1 << CL_MTIME : 0;
785         bits |= (valid & LA_CTIME) ? 1 << CL_CTIME : 0;
786         bits |= (valid & LA_ATIME) ? 1 << CL_ATIME : 0;
787         bits = bits & mdd->mdd_cl.mc_mask;
788         /* This is an implementation limit rather than a protocol limit */
789         CLASSERT(CL_LAST <= sizeof(int) * 8);
790         if (bits == 0)
791                 return 0;
792
793         /* The record type is the lowest non-masked set bit */
794         type = __ffs(bits);
795
796         /* FYI we only store the first CLF_FLAGMASK bits of la_valid */
797         return mdd_changelog_data_store(env, mdd, type, (int)valid,
798                                         md2mdd_obj(obj), handle);
799 }
800
801 static int mdd_declare_attr_set(const struct lu_env *env,
802                                 struct mdd_device *mdd,
803                                 struct mdd_object *obj,
804                                 const struct lu_attr *attr,
805                                 struct thandle *handle)
806 {
807         int rc;
808
809         rc = mdo_declare_attr_set(env, obj, attr, handle);
810         if (rc)
811                 return rc;
812
813 #ifdef CONFIG_FS_POSIX_ACL
814         if (attr->la_valid & LA_MODE) {
815                 mdd_read_lock(env, obj, MOR_TGT_CHILD);
816                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL,
817                                    XATTR_NAME_ACL_ACCESS);
818                 mdd_read_unlock(env, obj);
819                 if (rc == -EOPNOTSUPP || rc == -ENODATA)
820                         rc = 0;
821                 else if (rc < 0)
822                         return rc;
823
824                 if (rc != 0) {
825                         struct lu_buf *buf = mdd_buf_get(env, NULL, rc);
826                         rc = mdo_declare_xattr_set(env, obj, buf,
827                                                    XATTR_NAME_ACL_ACCESS, 0,
828                                                    handle);
829                         if (rc)
830                                 return rc;
831                 }
832         }
833 #endif
834
835         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
836         return rc;
837 }
838
839 /*
840  * LU-3671
841  *
842  * permission changes may require sync operation, to mitigate performance
843  * impact, only do this for dir and when permission is reduced.
844  *
845  * For regular files, version is updated with permission change (see VBR), async
846  * permission won't cause any issue, while missing permission change on
847  * directory may affect accessibility of other objects after recovery.
848  */
849 static inline bool permission_needs_sync(const struct lu_attr *old,
850                                          const struct lu_attr *new)
851 {
852         if (!S_ISDIR(old->la_mode))
853                 return false;
854
855         if (new->la_valid & (LA_UID | LA_GID))
856                 return true;
857
858         if (new->la_valid & LA_MODE &&
859             new->la_mode & (S_ISUID | S_ISGID | S_ISVTX))
860                 return true;
861
862         if ((new->la_valid & LA_MODE) &&
863             ((new->la_mode & old->la_mode) & S_IRWXUGO) !=
864              (old->la_mode & S_IRWXUGO))
865                 return true;
866
867         return false;
868 }
869
870 /* set attr and LOV EA at once, return updated attr */
871 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
872                  const struct md_attr *ma)
873 {
874         struct mdd_object *mdd_obj = md2mdd_obj(obj);
875         struct mdd_device *mdd = mdo2mdd(obj);
876         struct thandle *handle;
877         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
878         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
879         const struct lu_attr *la = &ma->ma_attr;
880         int rc;
881         ENTRY;
882
883         /* we do not use ->attr_set() for LOV/HSM EA any more */
884         LASSERT((ma->ma_valid & MA_LOV) == 0);
885         LASSERT((ma->ma_valid & MA_HSM) == 0);
886
887         rc = mdd_la_get(env, mdd_obj, attr);
888         if (rc)
889                 RETURN(rc);
890
891         *la_copy = ma->ma_attr;
892         rc = mdd_fix_attr(env, mdd_obj, attr, la_copy, ma->ma_attr_flags);
893         if (rc)
894                 RETURN(rc);
895
896         /* no need to setattr anymore */
897         if (la_copy->la_valid == 0) {
898                 CDEBUG(D_INODE, "%s: no valid attribute on "DFID", previous"
899                        "valid is %#llx\n", mdd2obd_dev(mdd)->obd_name,
900                        PFID(mdo2fid(mdd_obj)), la->la_valid);
901
902                 RETURN(0);
903         }
904
905         handle = mdd_trans_create(env, mdd);
906         if (IS_ERR(handle))
907                 RETURN(PTR_ERR(handle));
908
909         rc = mdd_declare_attr_set(env, mdd, mdd_obj, la_copy, handle);
910         if (rc)
911                 GOTO(stop, rc);
912
913         rc = mdd_trans_start(env, mdd, handle);
914         if (rc)
915                 GOTO(stop, rc);
916
917         if (mdd->mdd_sync_permission && permission_needs_sync(attr, la))
918                 handle->th_sync = 1;
919
920         if (la->la_valid & (LA_MTIME | LA_CTIME))
921                 CDEBUG(D_INODE, "setting mtime %llu, ctime %llu\n",
922                        la->la_mtime, la->la_ctime);
923
924         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
925         if (la_copy->la_valid & LA_FLAGS)
926                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
927         else if (la_copy->la_valid) /* setattr */
928                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
929         mdd_write_unlock(env, mdd_obj);
930
931         if (rc == 0)
932                 rc = mdd_attr_set_changelog(env, obj, handle,
933                                             la_copy->la_valid);
934
935         GOTO(stop, rc);
936
937 stop:
938         rc = mdd_trans_stop(env, mdd, rc, handle);
939
940         return rc;
941 }
942
943 static int mdd_xattr_sanity_check(const struct lu_env *env,
944                                   struct mdd_object *obj,
945                                   const struct lu_attr *attr,
946                                   const char *name)
947 {
948         struct lu_ucred *uc     = lu_ucred_assert(env);
949         ENTRY;
950
951         if (attr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
952                 RETURN(-EPERM);
953
954         if (strncmp(XATTR_USER_PREFIX, name,
955                     sizeof(XATTR_USER_PREFIX) - 1) == 0) {
956                 /* For sticky directories, only the owner and privileged user
957                  * can write attributes. */
958                 if (S_ISDIR(attr->la_mode) && (attr->la_mode & S_ISVTX) &&
959                     (uc->uc_fsuid != attr->la_uid) &&
960                     !md_capable(uc, CFS_CAP_FOWNER))
961                         RETURN(-EPERM);
962         } else {
963                 if ((uc->uc_fsuid != attr->la_uid) &&
964                     !md_capable(uc, CFS_CAP_FOWNER))
965                         RETURN(-EPERM);
966         }
967
968         RETURN(0);
969 }
970
971 /**
972  * Check if a string begins with a given prefix.
973  *
974  * \param str     String to check
975  * \param prefix  Substring to check at the beginning of \a str
976  * \return true/false whether the condition is verified.
977  */
978 static inline bool has_prefix(const char *str, const char *prefix)
979 {
980         return strncmp(prefix, str, strlen(prefix)) == 0;
981 }
982
983 /**
984  * Indicate the kind of changelog to store (if any) for a xattr set/del.
985  *
986  * \param[in]  xattr_name  Full extended attribute name.
987  *
988  * \return The type of changelog to use, or -1 if no changelog is to be emitted.
989  */
990 static enum changelog_rec_type
991 mdd_xattr_changelog_type(const struct lu_env *env, struct mdd_device *mdd,
992                          const char *xattr_name)
993 {
994         /* Layout changes systematically recorded */
995         if (strcmp(XATTR_NAME_LOV, xattr_name) == 0 ||
996             strncmp(XATTR_LUSTRE_LOV, xattr_name,
997                     strlen(XATTR_LUSTRE_LOV)) == 0)
998                 return CL_LAYOUT;
999
1000         /* HSM information changes systematically recorded */
1001         if (strcmp(XATTR_NAME_HSM, xattr_name) == 0)
1002                 return CL_HSM;
1003
1004         if (has_prefix(xattr_name, XATTR_USER_PREFIX) ||
1005             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_ACCESS) ||
1006             has_prefix(xattr_name, XATTR_NAME_POSIX_ACL_DEFAULT))
1007                 return CL_XATTR;
1008
1009         return -1;
1010 }
1011
1012 static int mdd_declare_xattr_set(const struct lu_env *env,
1013                                  struct mdd_device *mdd,
1014                                  struct mdd_object *obj,
1015                                  const struct lu_buf *buf,
1016                                  const char *name,
1017                                  int fl, struct thandle *handle)
1018 {
1019         int     rc;
1020
1021         rc = mdo_declare_xattr_set(env, obj, buf, name, fl, handle);
1022         if (rc)
1023                 return rc;
1024
1025         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1026                 return 0; /* no changelog to store */
1027
1028         return mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1029 }
1030
1031 /*
1032  * Compare current and future data of HSM EA and add a changelog if needed.
1033  *
1034  * Caller should have write-locked \param obj.
1035  *
1036  * \param buf - Future HSM EA content.
1037  * \retval 0 if no changelog is needed or changelog was added properly.
1038  * \retval -ve errno if there was a problem
1039  */
1040 static int mdd_hsm_update_locked(const struct lu_env *env,
1041                                  struct md_object *obj,
1042                                  const struct lu_buf *buf,
1043                                  struct thandle *handle, int *cl_flags)
1044 {
1045         struct mdd_thread_info *info = mdd_env_info(env);
1046         struct mdd_object      *mdd_obj = md2mdd_obj(obj);
1047         struct lu_buf          *current_buf;
1048         struct md_hsm          *current_mh;
1049         struct md_hsm          *new_mh;
1050         int                     rc;
1051         ENTRY;
1052
1053         OBD_ALLOC_PTR(current_mh);
1054         if (current_mh == NULL)
1055                 RETURN(-ENOMEM);
1056
1057         /* Read HSM attrs from disk */
1058         current_buf = lu_buf_check_and_alloc(&info->mti_xattr_buf,
1059                                 mdo2mdd(obj)->mdd_dt_conf.ddp_max_ea_size);
1060         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
1061         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
1062         if (rc < 0 && rc != -ENODATA)
1063                 GOTO(free, rc);
1064         else if (rc == -ENODATA)
1065                 current_mh->mh_flags = 0;
1066
1067         /* Map future HSM xattr */
1068         OBD_ALLOC_PTR(new_mh);
1069         if (new_mh == NULL)
1070                 GOTO(free, rc = -ENOMEM);
1071         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
1072
1073         rc = 0;
1074
1075         /* Flags differ, set flags for the changelog that will be added */
1076         if (current_mh->mh_flags != new_mh->mh_flags) {
1077                 hsm_set_cl_event(cl_flags, HE_STATE);
1078                 if (new_mh->mh_flags & HS_DIRTY)
1079                         hsm_set_cl_flags(cl_flags, CLF_HSM_DIRTY);
1080         }
1081
1082         OBD_FREE_PTR(new_mh);
1083         EXIT;
1084 free:
1085         OBD_FREE_PTR(current_mh);
1086         return rc;
1087 }
1088
1089 static int mdd_object_pfid_replace(const struct lu_env *env,
1090                                    struct mdd_object *o)
1091 {
1092         struct mdd_device *mdd = mdo2mdd(&o->mod_obj);
1093         struct thandle *handle;
1094         int rc;
1095
1096         handle = mdd_trans_create(env, mdd);
1097         if (IS_ERR(handle))
1098                 RETURN(PTR_ERR(handle));
1099
1100         handle->th_complex = 1;
1101
1102         /* it doesn't need to track the PFID update via llog, because LFSCK
1103          * will repair it even it goes wrong */
1104         rc = mdd_declare_xattr_set(env, mdd, o, NULL, XATTR_NAME_FID,
1105                                    0, handle);
1106         if (rc)
1107                 GOTO(out, rc);
1108
1109         rc = mdd_trans_start(env, mdd, handle);
1110         if (rc != 0)
1111                 GOTO(out, rc);
1112
1113         rc = mdo_xattr_set(env, o, NULL, XATTR_NAME_FID, 0, handle);
1114         if (rc)
1115                 GOTO(out, rc);
1116
1117 out:
1118         mdd_trans_stop(env, mdd, rc, handle);
1119         return rc;
1120 }
1121
1122
1123 static int mdd_declare_xattr_del(const struct lu_env *env,
1124                                  struct mdd_device *mdd,
1125                                  struct mdd_object *obj,
1126                                  const char *name,
1127                                  struct thandle *handle);
1128
1129 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1130                          const char *name);
1131
1132 static int mdd_xattr_merge(const struct lu_env *env, struct md_object *md_obj,
1133                            struct md_object *md_vic)
1134 {
1135         struct mdd_device *mdd = mdo2mdd(md_obj);
1136         struct mdd_object *obj = md2mdd_obj(md_obj);
1137         struct mdd_object *vic = md2mdd_obj(md_vic);
1138         struct lu_buf *buf = &mdd_env_info(env)->mti_buf[0];
1139         struct lu_buf *buf_vic = &mdd_env_info(env)->mti_buf[1];
1140         struct lov_mds_md *lmm;
1141         struct thandle *handle;
1142         int rc;
1143         ENTRY;
1144
1145         rc = lu_fid_cmp(mdo2fid(obj), mdo2fid(vic));
1146         if (rc == 0) /* same fid */
1147                 RETURN(-EPERM);
1148
1149         handle = mdd_trans_create(env, mdd);
1150         if (IS_ERR(handle))
1151                 RETURN(PTR_ERR(handle));
1152
1153         if (rc > 0) {
1154                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1155                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1156         } else {
1157                 mdd_write_lock(env, vic, MOR_TGT_CHILD);
1158                 mdd_write_lock(env, obj, MOR_TGT_CHILD);
1159         }
1160
1161         /* get EA of victim file */
1162         memset(buf_vic, 0, sizeof(*buf_vic));
1163         rc = mdd_get_lov_ea(env, vic, buf_vic);
1164         if (rc < 0) {
1165                 if (rc == -ENODATA)
1166                         rc = 0;
1167                 GOTO(out, rc);
1168         }
1169
1170         /* parse the layout of victim file */
1171         lmm = buf_vic->lb_buf;
1172         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
1173                 GOTO(out, rc = -EINVAL);
1174
1175         /* save EA of target file for restore */
1176         memset(buf, 0, sizeof(*buf));
1177         rc = mdd_get_lov_ea(env, obj, buf);
1178         if (rc < 0)
1179                 GOTO(out, rc);
1180
1181         /* Get rid of the layout from victim object */
1182         rc = mdd_declare_xattr_del(env, mdd, vic, XATTR_NAME_LOV, handle);
1183         if (rc)
1184                 GOTO(out, rc);
1185
1186         rc = mdd_declare_xattr_set(env, mdd, obj, buf_vic, XATTR_LUSTRE_LOV,
1187                                    LU_XATTR_MERGE, handle);
1188         if (rc)
1189                 GOTO(out, rc);
1190
1191         rc = mdd_trans_start(env, mdd, handle);
1192         if (rc != 0)
1193                 GOTO(out, rc);
1194
1195         rc = mdo_xattr_set(env, obj, buf_vic, XATTR_LUSTRE_LOV, LU_XATTR_MERGE,
1196                            handle);
1197         if (rc)
1198                 GOTO(out, rc);
1199
1200         rc = mdo_xattr_del(env, vic, XATTR_NAME_LOV, handle);
1201         if (rc) /* wtf? */
1202                 GOTO(out_restore, rc);
1203
1204         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1205         (void)mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, vic, handle);
1206         EXIT;
1207
1208 out_restore:
1209         if (rc) {
1210                 int rc2 = mdo_xattr_set(env, obj, buf, XATTR_NAME_LOV,
1211                                         LU_XATTR_REPLACE, handle);
1212                 if (rc2)
1213                         CERROR("%s: failed to rollback of layout of: "DFID
1214                                ": %d, file state unknown\n",
1215                                mdd_obj_dev_name(obj), PFID(mdo2fid(obj)), rc2);
1216         }
1217
1218 out:
1219         mdd_trans_stop(env, mdd, rc, handle);
1220         mdd_write_unlock(env, obj);
1221         mdd_write_unlock(env, vic);
1222         lu_buf_free(buf);
1223         lu_buf_free(buf_vic);
1224
1225         if (!rc)
1226                 (void) mdd_object_pfid_replace(env, obj);
1227
1228         return rc;
1229 }
1230
1231 static int mdd_layout_merge_allowed(const struct lu_env *env,
1232                                     struct md_object *target,
1233                                     struct md_object *victim)
1234 {
1235         struct mdd_object *o1 = md2mdd_obj(target);
1236
1237         /* cannot extend directory's LOVEA */
1238         if (S_ISDIR(mdd_object_type(o1))) {
1239                 CERROR("%s: Don't extend directory's LOVEA, just set it.\n",
1240                        mdd_obj_dev_name(o1));
1241                 RETURN(-EISDIR);
1242         }
1243
1244         RETURN(0);
1245 }
1246
1247 /**
1248  * The caller should guarantee to update the object ctime
1249  * after xattr_set if needed.
1250  */
1251 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1252                          const struct lu_buf *buf, const char *name,
1253                          int fl)
1254 {
1255         struct mdd_object       *mdd_obj = md2mdd_obj(obj);
1256         struct lu_attr          *attr = MDD_ENV_VAR(env, cattr);
1257         struct mdd_device       *mdd = mdo2mdd(obj);
1258         struct thandle          *handle;
1259         enum changelog_rec_type  cl_type;
1260         int                      cl_flags = 0;
1261         int                      rc;
1262         ENTRY;
1263
1264         rc = mdd_la_get(env, mdd_obj, attr);
1265         if (rc)
1266                 RETURN(rc);
1267
1268         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1269         if (rc)
1270                 RETURN(rc);
1271
1272         if (strcmp(name, XATTR_LUSTRE_LOV) == 0 && fl == LU_XATTR_MERGE) {
1273                 struct md_object *victim = buf->lb_buf;
1274
1275                 if (buf->lb_len != sizeof(victim))
1276                         RETURN(-EINVAL);
1277
1278                 rc = mdd_layout_merge_allowed(env, obj, victim);
1279                 if (rc)
1280                         RETURN(rc);
1281
1282                 /* merge layout of victim as a mirror of obj's. */
1283                 rc = mdd_xattr_merge(env, obj, victim);
1284                 RETURN(rc);
1285         }
1286
1287         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1288             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1289                 struct posix_acl *acl;
1290
1291                 /* user may set empty ACL, which should be treated as removing
1292                  * ACL. */
1293                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1294                                            buf->lb_len);
1295                 if (IS_ERR(acl))
1296                         RETURN(PTR_ERR(acl));
1297                 if (acl == NULL) {
1298                         rc = mdd_xattr_del(env, obj, name);
1299                         RETURN(rc);
1300                 }
1301                 posix_acl_release(acl);
1302         }
1303
1304         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1305                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1306                 RETURN(rc);
1307         }
1308
1309         handle = mdd_trans_create(env, mdd);
1310         if (IS_ERR(handle))
1311                 RETURN(PTR_ERR(handle));
1312
1313         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1314         if (rc)
1315                 GOTO(stop, rc);
1316
1317         rc = mdd_trans_start(env, mdd, handle);
1318         if (rc)
1319                 GOTO(stop, rc);
1320
1321         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1322
1323         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1324                 rc = mdd_hsm_update_locked(env, obj, buf, handle, &cl_flags);
1325                 if (rc) {
1326                         mdd_write_unlock(env, mdd_obj);
1327                         GOTO(stop, rc);
1328                 }
1329         }
1330
1331         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1332         mdd_write_unlock(env, mdd_obj);
1333         if (rc)
1334                 GOTO(stop, rc);
1335
1336         cl_type = mdd_xattr_changelog_type(env, mdd, name);
1337         if (cl_type < 0)
1338                 GOTO(stop, rc = 0);
1339
1340         rc = mdd_changelog_data_store(env, mdd, cl_type, cl_flags, mdd_obj,
1341                                       handle);
1342
1343         EXIT;
1344 stop:
1345         return mdd_trans_stop(env, mdd, rc, handle);
1346 }
1347
1348 static int mdd_declare_xattr_del(const struct lu_env *env,
1349                                  struct mdd_device *mdd,
1350                                  struct mdd_object *obj,
1351                                  const char *name,
1352                                  struct thandle *handle)
1353 {
1354         int rc;
1355
1356         rc = mdo_declare_xattr_del(env, obj, name, handle);
1357         if (rc)
1358                 return rc;
1359
1360         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1361                 return 0; /* no changelog to store */
1362
1363         return mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1364 }
1365
1366 /**
1367  * The caller should guarantee to update the object ctime
1368  * after xattr_set if needed.
1369  */
1370 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1371                          const char *name)
1372 {
1373         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1374         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1375         struct mdd_device *mdd = mdo2mdd(obj);
1376         struct thandle *handle;
1377         int rc;
1378         ENTRY;
1379
1380         rc = mdd_la_get(env, mdd_obj, attr);
1381         if (rc)
1382                 RETURN(rc);
1383
1384         rc = mdd_xattr_sanity_check(env, mdd_obj, attr, name);
1385         if (rc)
1386                 RETURN(rc);
1387
1388         handle = mdd_trans_create(env, mdd);
1389         if (IS_ERR(handle))
1390                 RETURN(PTR_ERR(handle));
1391
1392         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1393         if (rc)
1394                 GOTO(stop, rc);
1395
1396         rc = mdd_trans_start(env, mdd, handle);
1397         if (rc)
1398                 GOTO(stop, rc);
1399
1400         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1401         rc = mdo_xattr_del(env, mdd_obj, name, handle);
1402         mdd_write_unlock(env, mdd_obj);
1403         if (rc)
1404                 GOTO(stop, rc);
1405
1406         if (mdd_xattr_changelog_type(env, mdd, name) < 0)
1407                 GOTO(stop, rc = 0);
1408
1409         rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj, handle);
1410
1411         EXIT;
1412 stop:
1413         return mdd_trans_stop(env, mdd, rc, handle);
1414 }
1415
1416 /*
1417  * read lov EA of an object
1418  * return the lov EA in an allocated lu_buf
1419  */
1420 int mdd_get_lov_ea(const struct lu_env *env, struct mdd_object *obj,
1421                    struct lu_buf *lmm_buf)
1422 {
1423         struct lu_buf   *buf = &mdd_env_info(env)->mti_big_buf;
1424         int              rc, bufsize;
1425         ENTRY;
1426
1427 repeat:
1428         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_LOV);
1429
1430         if (rc == -ERANGE) {
1431                 /* mti_big_buf is allocated but is too small
1432                  * we need to increase it */
1433                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1434                                              buf->lb_len * 2);
1435                 if (buf->lb_buf == NULL)
1436                         GOTO(out, rc = -ENOMEM);
1437                 goto repeat;
1438         }
1439
1440         if (rc < 0)
1441                 RETURN(rc);
1442
1443         if (rc == 0)
1444                 RETURN(-ENODATA);
1445
1446         bufsize = rc;
1447         if (memcmp(buf, &LU_BUF_NULL, sizeof(*buf)) == 0) {
1448                 /* mti_big_buf was not allocated, so we have to
1449                  * allocate it based on the ea size */
1450                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1451                                              bufsize);
1452                 if (buf->lb_buf == NULL)
1453                         GOTO(out, rc = -ENOMEM);
1454                 goto repeat;
1455         }
1456
1457         lu_buf_alloc(lmm_buf, bufsize);
1458         if (lmm_buf->lb_buf == NULL)
1459                 GOTO(out, rc = -ENOMEM);
1460
1461         memcpy(lmm_buf->lb_buf, buf->lb_buf, bufsize);
1462         rc = 0;
1463         EXIT;
1464
1465 out:
1466         if (rc < 0)
1467                 lu_buf_free(lmm_buf);
1468         return rc;
1469 }
1470
1471 static int mdd_xattr_hsm_replace(const struct lu_env *env,
1472                                  struct mdd_object *o, struct lu_buf *buf,
1473                                  struct thandle *handle)
1474 {
1475         struct hsm_attrs *attrs;
1476         __u32 hsm_flags;
1477         int flags = 0;
1478         int rc;
1479         ENTRY;
1480
1481         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
1482                            handle);
1483         if (rc != 0)
1484                 RETURN(rc);
1485
1486         attrs = buf->lb_buf;
1487         hsm_flags = le32_to_cpu(attrs->hsm_flags);
1488         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
1489                 RETURN(0);
1490
1491         /* Add a changelog record for release. */
1492         hsm_set_cl_event(&flags, HE_RELEASE);
1493         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
1494                                       flags, o, handle);
1495         RETURN(rc);
1496 }
1497
1498 /*
1499  *  check if layout swapping between 2 objects is allowed
1500  *  the rules are:
1501  *  - only normal FIDs or non-system IGIFs
1502  *  - same type of objects
1503  *  - same owner/group (so quotas are still valid) unless this is from HSM
1504  *    release.
1505  */
1506 static int mdd_layout_swap_allowed(const struct lu_env *env,
1507                                    struct mdd_object *o1,
1508                                    const struct lu_attr *attr1,
1509                                    struct mdd_object *o2,
1510                                    const struct lu_attr *attr2,
1511                                    __u64 flags)
1512 {
1513         const struct lu_fid     *fid1, *fid2;
1514         ENTRY;
1515
1516         fid1 = mdo2fid(o1);
1517         fid2 = mdo2fid(o2);
1518
1519         if (!fid_is_norm(fid1) &&
1520             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
1521                 RETURN(-EBADF);
1522
1523         if (!fid_is_norm(fid2) &&
1524             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
1525                 RETURN(-EBADF);
1526
1527         if (mdd_object_type(o1) != mdd_object_type(o2)) {
1528                 if (S_ISDIR(mdd_object_type(o1)))
1529                         RETURN(-ENOTDIR);
1530                 if (S_ISREG(mdd_object_type(o1)))
1531                         RETURN(-EISDIR);
1532                 RETURN(-EBADF);
1533         }
1534
1535         if (flags & SWAP_LAYOUTS_MDS_HSM)
1536                 RETURN(0);
1537
1538         if ((attr1->la_uid != attr2->la_uid) ||
1539             (attr1->la_gid != attr2->la_gid))
1540                 RETURN(-EPERM);
1541
1542         RETURN(0);
1543 }
1544
1545 /* XXX To set the proper lmm_oi & lmm_layout_gen when swap layouts, we have to
1546  *     look into the layout in MDD layer. */
1547 static int mdd_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi, bool get)
1548 {
1549         struct lov_comp_md_v1   *comp_v1;
1550         struct lov_mds_md       *v1;
1551         int                      i, ent_count;
1552         __u32                    off;
1553
1554         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
1555                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
1556                 ent_count = le16_to_cpu(comp_v1->lcm_entry_count);
1557
1558                 if (ent_count == 0)
1559                         return -EINVAL;
1560
1561                 if (get) {
1562                         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
1563                         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
1564                         *oi = v1->lmm_oi;
1565                 } else {
1566                         for (i = 0; i < le32_to_cpu(ent_count); i++) {
1567                                 off = le32_to_cpu(comp_v1->lcm_entries[i].
1568                                                 lcme_offset);
1569                                 v1 = (struct lov_mds_md *)((char *)comp_v1 +
1570                                                 off);
1571                                 v1->lmm_oi = *oi;
1572                         }
1573                 }
1574         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
1575                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
1576                 if (get)
1577                         *oi = lmm->lmm_oi;
1578                 else
1579                         lmm->lmm_oi = *oi;
1580         } else {
1581                 return -EINVAL;
1582         }
1583         return 0;
1584 }
1585
1586 static inline int mdd_get_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
1587 {
1588         return mdd_lmm_oi(lmm, oi, true);
1589 }
1590
1591 static inline int mdd_set_lmm_oi(struct lov_mds_md *lmm, struct ost_id *oi)
1592 {
1593         return mdd_lmm_oi(lmm, oi, false);
1594 }
1595
1596 static int mdd_lmm_gen(struct lov_mds_md *lmm, __u32 *gen, bool get)
1597 {
1598         struct lov_comp_md_v1 *comp_v1;
1599
1600         if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_COMP_V1) {
1601                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
1602                 if (get)
1603                         *gen = le32_to_cpu(comp_v1->lcm_layout_gen);
1604                 else
1605                         comp_v1->lcm_layout_gen = cpu_to_le32(*gen);
1606         } else if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1 ||
1607                    le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V3) {
1608                 __u16 tmp_gen = *gen;
1609                 if (get)
1610                         *gen = le16_to_cpu(lmm->lmm_layout_gen);
1611                 else
1612                         lmm->lmm_layout_gen = cpu_to_le16(tmp_gen);
1613         } else {
1614                 return -EINVAL;
1615         }
1616         return 0;
1617 }
1618
1619 static inline int mdd_get_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
1620 {
1621         return mdd_lmm_gen(lmm, gen, true);
1622 }
1623
1624 static inline int mdd_set_lmm_gen(struct lov_mds_md *lmm, __u32 *gen)
1625 {
1626         return mdd_lmm_gen(lmm, gen, false);
1627 }
1628
1629 /**
1630  * swap layouts between 2 lustre objects
1631  */
1632 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
1633                             struct md_object *obj2, __u64 flags)
1634 {
1635         struct mdd_thread_info  *info = mdd_env_info(env);
1636         struct mdd_object       *fst_o = md2mdd_obj(obj1);
1637         struct mdd_object       *snd_o = md2mdd_obj(obj2);
1638         struct lu_attr          *fst_la = MDD_ENV_VAR(env, cattr);
1639         struct lu_attr          *snd_la = MDD_ENV_VAR(env, tattr);
1640         struct mdd_device       *mdd = mdo2mdd(obj1);
1641         struct lov_mds_md       *fst_lmm, *snd_lmm;
1642         struct lu_buf           *fst_buf = &info->mti_buf[0];
1643         struct lu_buf           *snd_buf = &info->mti_buf[1];
1644         struct lu_buf           *fst_hsm_buf = &info->mti_buf[2];
1645         struct lu_buf           *snd_hsm_buf = &info->mti_buf[3];
1646         struct ost_id           *saved_oi = NULL;
1647         struct thandle          *handle;
1648         __u32                    fst_gen, snd_gen, saved_gen;
1649         int                      fst_fl;
1650         int                      rc;
1651         int                      rc2;
1652         ENTRY;
1653
1654         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
1655         memset(info->mti_buf, 0, sizeof(info->mti_buf));
1656
1657         /* we have to sort the 2 obj, so locking will always
1658          * be in the same order, even in case of 2 concurrent swaps */
1659         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
1660         if (rc == 0) /* same fid ? */
1661                 RETURN(-EPERM);
1662
1663         if (rc < 0)
1664                 swap(fst_o, snd_o);
1665
1666         rc = mdd_la_get(env, fst_o, fst_la);
1667         if (rc != 0)
1668                 RETURN(rc);
1669
1670         rc = mdd_la_get(env, snd_o, snd_la);
1671         if (rc != 0)
1672                 RETURN(rc);
1673
1674         /* check if layout swapping is allowed */
1675         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la, flags);
1676         if (rc != 0)
1677                 RETURN(rc);
1678
1679         handle = mdd_trans_create(env, mdd);
1680         if (IS_ERR(handle))
1681                 RETURN(PTR_ERR(handle));
1682
1683         /* objects are already sorted */
1684         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
1685         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
1686
1687         rc = mdd_get_lov_ea(env, fst_o, fst_buf);
1688         if (rc < 0 && rc != -ENODATA)
1689                 GOTO(stop, rc);
1690
1691         rc = mdd_get_lov_ea(env, snd_o, snd_buf);
1692         if (rc < 0 && rc != -ENODATA)
1693                 GOTO(stop, rc);
1694
1695         /* swapping 2 non existant layouts is a success */
1696         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
1697                 GOTO(stop, rc = 0);
1698
1699         /* to help inode migration between MDT, it is better to
1700          * start by the no layout file (if one), so we order the swap */
1701         if (snd_buf->lb_buf == NULL) {
1702                 swap(fst_o, snd_o);
1703                 swap(fst_buf, snd_buf);
1704         }
1705
1706         fst_gen = snd_gen = 0;
1707         /* lmm and generation layout initialization */
1708         if (fst_buf->lb_buf != NULL) {
1709                 fst_lmm = fst_buf->lb_buf;
1710                 mdd_get_lmm_gen(fst_lmm, &fst_gen);
1711                 fst_fl  = LU_XATTR_REPLACE;
1712         } else {
1713                 fst_lmm = NULL;
1714                 fst_gen = 0;
1715                 fst_fl  = LU_XATTR_CREATE;
1716         }
1717
1718         snd_lmm = snd_buf->lb_buf;
1719         mdd_get_lmm_gen(snd_lmm, &snd_gen);
1720
1721         saved_gen = fst_gen;
1722         /* increase the generation layout numbers */
1723         snd_gen++;
1724         fst_gen++;
1725
1726         /*
1727          * XXX The layout generation is used to generate component IDs for
1728          *     the composite file, we have to do some special tweaks to make
1729          *     sure the layout generation is always adequate for that job.
1730          */
1731
1732         /* Skip invalid generation number for composite layout */
1733         if ((snd_gen & LCME_ID_MASK) == 0)
1734                 snd_gen++;
1735         if ((fst_gen & LCME_ID_MASK) == 0)
1736                 fst_gen++;
1737         /* Make sure the generation is greater than all the component IDs */
1738         if (fst_gen < snd_gen)
1739                 fst_gen = snd_gen;
1740         else if (fst_gen > snd_gen)
1741                 snd_gen = fst_gen;
1742
1743         /* set the file specific informations in lmm */
1744         if (fst_lmm != NULL) {
1745                 saved_oi = &info->mti_oa.o_oi;
1746                 mdd_get_lmm_oi(fst_lmm, saved_oi);
1747                 mdd_set_lmm_gen(fst_lmm, &snd_gen);
1748                 mdd_set_lmm_oi(fst_lmm, &snd_lmm->lmm_oi);
1749                 mdd_set_lmm_oi(snd_lmm, saved_oi);
1750         } else {
1751                 if ((snd_lmm->lmm_magic & cpu_to_le32(LOV_MAGIC_MASK)) ==
1752                     cpu_to_le32(LOV_MAGIC_MAGIC))
1753                         snd_lmm->lmm_magic |= cpu_to_le32(LOV_MAGIC_DEFINED);
1754                 else
1755                         GOTO(stop, rc = -EPROTO);
1756         }
1757         mdd_set_lmm_gen(snd_lmm, &fst_gen);
1758
1759         /* Prepare HSM attribute if it's required */
1760         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1761                 const int buflen = sizeof(struct hsm_attrs);
1762
1763                 lu_buf_alloc(fst_hsm_buf, buflen);
1764                 lu_buf_alloc(snd_hsm_buf, buflen);
1765                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
1766                         GOTO(stop, rc = -ENOMEM);
1767
1768                 /* Read HSM attribute */
1769                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
1770                 if (rc < 0)
1771                         GOTO(stop, rc);
1772
1773                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
1774                 if (rc < 0)
1775                         GOTO(stop, rc);
1776
1777                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
1778                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1779                                            handle);
1780                 if (rc < 0)
1781                         GOTO(stop, rc);
1782
1783                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
1784                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1785                                            handle);
1786                 if (rc < 0)
1787                         GOTO(stop, rc);
1788         }
1789
1790         /* prepare transaction */
1791         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
1792                                    fst_fl, handle);
1793         if (rc != 0)
1794                 GOTO(stop, rc);
1795
1796         if (fst_buf->lb_buf != NULL)
1797                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
1798                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
1799                                            handle);
1800         else
1801                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
1802                                            handle);
1803         if (rc != 0)
1804                 GOTO(stop, rc);
1805
1806         rc = mdd_trans_start(env, mdd, handle);
1807         if (rc != 0)
1808                 GOTO(stop, rc);
1809
1810         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1811                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
1812                 if (rc < 0)
1813                         GOTO(stop, rc);
1814
1815                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
1816                 if (rc < 0) {
1817                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
1818                                                     handle);
1819                         if (rc2 < 0)
1820                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
1821                                        mdd_obj_dev_name(fst_o),
1822                                        PFID(mdo2fid(fst_o)), rc, rc2);
1823                         GOTO(stop, rc);
1824                 }
1825         }
1826
1827         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
1828         if (rc != 0)
1829                 GOTO(stop, rc);
1830
1831         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
1832                 rc = -EOPNOTSUPP;
1833         } else {
1834                 if (fst_buf->lb_buf != NULL)
1835                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
1836                                            LU_XATTR_REPLACE, handle);
1837                 else
1838                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
1839         }
1840         if (rc != 0)
1841                 GOTO(out_restore, rc);
1842
1843         /* Issue one changelog record per file */
1844         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
1845         if (rc)
1846                 GOTO(stop, rc);
1847
1848         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
1849         if (rc)
1850                 GOTO(stop, rc);
1851         EXIT;
1852
1853 out_restore:
1854         if (rc != 0) {
1855                 int steps = 0;
1856
1857                 /* failure on second file, but first was done, so we have
1858                  * to roll back first. */
1859                 if (fst_buf->lb_buf != NULL) {
1860                         mdd_set_lmm_oi(fst_lmm, saved_oi);
1861                         mdd_set_lmm_gen(fst_lmm, &saved_gen);
1862                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
1863                                             LU_XATTR_REPLACE, handle);
1864                 } else {
1865                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
1866                 }
1867                 if (rc2 < 0)
1868                         goto do_lbug;
1869
1870                 ++steps;
1871                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
1872                 if (rc2 < 0)
1873                         goto do_lbug;
1874
1875                 ++steps;
1876                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
1877
1878         do_lbug:
1879                 if (rc2 < 0) {
1880                         /* very bad day */
1881                         CERROR("%s: unable to roll back layout swap. FIDs: "
1882                                DFID" and "DFID "error: %d/%d, steps: %d\n",
1883                                mdd_obj_dev_name(fst_o),
1884                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
1885                                rc, rc2, steps);
1886                         /* a solution to avoid journal commit is to panic,
1887                          * but it has strong consequences so we use LBUG to
1888                          * allow sysdamin to choose to panic or not
1889                          */
1890                         LBUG();
1891                 }
1892         }
1893
1894 stop:
1895         rc = mdd_trans_stop(env, mdd, rc, handle);
1896
1897         mdd_write_unlock(env, snd_o);
1898         mdd_write_unlock(env, fst_o);
1899
1900         lu_buf_free(fst_buf);
1901         lu_buf_free(snd_buf);
1902         lu_buf_free(fst_hsm_buf);
1903         lu_buf_free(snd_hsm_buf);
1904
1905         if (!rc) {
1906                 (void) mdd_object_pfid_replace(env, fst_o);
1907                 (void) mdd_object_pfid_replace(env, snd_o);
1908         }
1909         return rc;
1910 }
1911
1912 static int mdd_declare_layout_change(const struct lu_env *env,
1913                                      struct mdd_device *mdd,
1914                                      struct mdd_object *obj,
1915                                      struct md_layout_change *mlc,
1916                                      struct thandle *handle)
1917 {
1918         int rc;
1919
1920         rc = mdo_declare_layout_change(env, obj, mlc, handle);
1921         if (rc)
1922                 return rc;
1923
1924         return mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1925 }
1926
1927 /* For PFL, this is used to instantiate necessary component objects. */
1928 static int
1929 mdd_layout_instantiate_component(const struct lu_env *env,
1930                 struct mdd_object *obj, struct md_layout_change *mlc,
1931                 struct thandle *handle)
1932 {
1933         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
1934         int rc;
1935         ENTRY;
1936
1937         if (mlc->mlc_opc != MD_LAYOUT_WRITE)
1938                 RETURN(-ENOTSUPP);
1939
1940         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
1941         /**
1942          * It's possible that another layout write intent has already
1943          * instantiated our objects, so a -EALREADY returned, and we need to
1944          * do nothing.
1945          */
1946         if (rc)
1947                 RETURN(rc == -EALREADY ? 0 : rc);
1948
1949         rc = mdd_trans_start(env, mdd, handle);
1950         if (rc)
1951                 RETURN(rc);
1952
1953         mdd_write_lock(env, obj, MOR_TGT_CHILD);
1954         rc = mdo_layout_change(env, obj, mlc, handle);
1955         mdd_write_unlock(env, obj);
1956         if (rc)
1957                 RETURN(rc);
1958
1959         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, obj, handle);
1960         RETURN(rc);
1961 }
1962
1963 /**
1964  * Change the FLR layout from RDONLY to WRITE_PENDING.
1965  *
1966  * It picks the primary mirror, and bumps the layout version, and set
1967  * layout version xattr to OST objects in a sync tx. In order to facilitate
1968  * the handling of phantom writers from evicted clients, the clients carry
1969  * layout version of the file with write RPC, so that the OSTs can verify
1970  * if the write RPCs are legitimate, meaning not from evicted clients.
1971  */
1972 static int
1973 mdd_layout_update_rdonly(const struct lu_env *env, struct mdd_object *obj,
1974                          struct md_layout_change *mlc, struct thandle *handle)
1975 {
1976         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
1977         int rc;
1978         ENTRY;
1979
1980         /* Verify acceptable operations */
1981         switch (mlc->mlc_opc) {
1982         case MD_LAYOUT_WRITE:
1983                 break;
1984         case MD_LAYOUT_RESYNC:
1985                 /* these are legal operations - this represents the case that
1986                  * a few mirrors were missed in the last resync.
1987                  * XXX: it will be supported later */
1988         case MD_LAYOUT_RESYNC_DONE:
1989         default:
1990                 RETURN(0);
1991         }
1992
1993         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
1994         if (rc)
1995                 GOTO(out, rc);
1996
1997         rc = mdd_declare_xattr_del(env, mdd, obj, XATTR_NAME_SOM, handle);
1998         if (rc)
1999                 GOTO(out, rc);
2000
2001         /* record a changelog for data mover to consume */
2002         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
2003         if (rc)
2004                 GOTO(out, rc);
2005
2006         rc = mdd_trans_start(env, mdd, handle);
2007         if (rc)
2008                 GOTO(out, rc);
2009
2010         /* it needs a sync tx to make FLR to work properly */
2011         handle->th_sync = 1;
2012
2013         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2014         rc = mdo_layout_change(env, obj, mlc, handle);
2015         if (!rc) {
2016                 rc = mdo_xattr_del(env, obj, XATTR_NAME_SOM, handle);
2017                 if (rc == -ENODATA)
2018                         rc = 0;
2019         }
2020         mdd_write_unlock(env, obj);
2021         if (rc)
2022                 GOTO(out, rc);
2023
2024         rc = mdd_changelog_data_store(env, mdd, CL_FLRW, 0, obj, handle);
2025         if (rc)
2026                 GOTO(out, rc);
2027
2028         EXIT;
2029
2030 out:
2031         return rc;
2032 }
2033
2034 /**
2035  * Handle mirrored file state transition when it's in WRITE_PENDING.
2036  *
2037  * Only MD_LAYOUT_RESYNC, which represents start of resync, is allowed when
2038  * the file is in WRITE_PENDING state. If everything goes fine, the file's
2039  * layout version will be increased, and the file's state will be changed to
2040  * SYNC_PENDING.
2041  */
2042 static int
2043 mdd_layout_update_write_pending(const struct lu_env *env,
2044                 struct mdd_object *obj, struct md_layout_change *mlc,
2045                 struct thandle *handle)
2046 {
2047         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2048         int rc;
2049         ENTRY;
2050
2051         switch (mlc->mlc_opc) {
2052         case MD_LAYOUT_RESYNC:
2053                 /* Upon receiving the resync request, it should
2054                  * instantiate all stale components right away to get ready
2055                  * for mirror copy. In order to avoid layout version change,
2056                  * client should avoid sending LAYOUT_WRITE request at the
2057                  * resync state. */
2058                 break;
2059         case MD_LAYOUT_WRITE:
2060                 /* legal race for concurrent write, the file state has been
2061                  * changed by another client. */
2062                 break;
2063         default:
2064                 RETURN(-EBUSY);
2065         }
2066
2067         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2068         if (rc)
2069                 GOTO(out, rc);
2070
2071         rc = mdd_trans_start(env, mdd, handle);
2072         if (rc)
2073                 GOTO(out, rc);
2074
2075         /* it needs a sync tx to make FLR to work properly */
2076         handle->th_sync = 1;
2077
2078         mdd_write_lock(env, obj, MOR_TGT_CHILD);
2079         rc = mdo_layout_change(env, obj, mlc, handle);
2080         mdd_write_unlock(env, obj);
2081         if (rc)
2082                 GOTO(out, rc);
2083
2084         EXIT;
2085
2086 out:
2087         return rc;
2088 }
2089
2090 /**
2091  * Handle the requests when a FLR file's state is in SYNC_PENDING.
2092  *
2093  * Only concurrent write and sync complete requests are possible when the
2094  * file is in SYNC_PENDING. For the latter request, it will pass in the
2095  * mirrors that have been synchronized, then the stale bit will be cleared
2096  * to make the file's state turn into RDONLY.
2097  * For concurrent write reqeust, it just needs to change the file's state
2098  * to WRITE_PENDING in a sync tx. It doesn't have to change the layout
2099  * version because the version will be increased in the transition to
2100  * SYNC_PENDING later so that it can deny the write request from potential
2101  * evicted SYNC clients. */
2102 static int
2103 mdd_object_update_sync_pending(const struct lu_env *env, struct mdd_object *obj,
2104                 struct md_layout_change *mlc, struct thandle *handle)
2105 {
2106         struct mdd_device *mdd = mdd_obj2mdd_dev(obj);
2107         struct lu_buf *som_buf = &mdd_env_info(env)->mti_buf[1];
2108         int fl = 0;
2109         int rc;
2110         ENTRY;
2111
2112         /* operation validation */
2113         switch (mlc->mlc_opc) {
2114         case MD_LAYOUT_RESYNC_DONE:
2115                 /* resync complete. */
2116         case MD_LAYOUT_WRITE:
2117                 /* concurrent write. */
2118                 break;
2119         case MD_LAYOUT_RESYNC:
2120                 /* resync again, most likely the previous run failed.
2121                  * no-op if it's already in SYNC_PENDING state */
2122                 RETURN(0);
2123         default:
2124                 RETURN(-EBUSY);
2125         }
2126
2127         if (mlc->mlc_som.lsa_valid & LSOM_FL_VALID) {
2128                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_SOM);
2129                 if (rc && rc != -ENODATA)
2130                         RETURN(rc);
2131
2132                 fl = rc == -ENODATA ? LU_XATTR_CREATE : LU_XATTR_REPLACE;
2133                 som_buf->lb_buf = &mlc->mlc_som;
2134                 som_buf->lb_len = sizeof(mlc->mlc_som);
2135         }
2136
2137         rc = mdd_declare_layout_change(env, mdd, obj, mlc, handle);
2138         if (rc)
2139                 GOTO(out, rc);
2140
2141         /* record a changelog for the completion of resync */
2142         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
2143         if (rc)
2144                 GOTO(out, rc);
2145
2146         /* RESYNC_DONE has piggybacked size and blocks */
2147         if (fl) {
2148                 rc = mdd_declare_xattr_set(env, mdd, obj, som_buf,
2149                                            XATTR_NAME_SOM, fl, handle);
2150                 if (rc)
2151                         GOTO(out, rc);
2152         }
2153
2154         rc = mdd_trans_start(env, mdd, handle);
2155         if (rc)
2156                 GOTO(out, rc);
2157
2158         /* it needs a sync tx to make FLR to work properly */
2159         handle->th_sync = 1;
2160
2161         rc = mdo_layout_change(env, obj, mlc, handle);
2162         if (rc)
2163                 GOTO(out, rc);
2164
2165         if (fl) {
2166                 rc = mdo_xattr_set(env, obj, som_buf, XATTR_NAME_SOM,
2167                                    fl, handle);
2168                 if (rc)
2169                         GOTO(out, rc);
2170         }
2171
2172         rc = mdd_changelog_data_store(env, mdd, CL_RESYNC, 0, obj, handle);
2173         if (rc)
2174                 GOTO(out, rc);
2175         EXIT;
2176 out:
2177         return rc;
2178 }
2179
2180 /**
2181  * Layout change callback for object.
2182  *
2183  * This is only used by FLR for now. In the future, it can be exteneded to
2184  * handle all layout change.
2185  */
2186 static int
2187 mdd_layout_change(const struct lu_env *env, struct md_object *o,
2188                   struct md_layout_change *mlc)
2189 {
2190         struct mdd_object       *obj = md2mdd_obj(o);
2191         struct mdd_device       *mdd = mdd_obj2mdd_dev(obj);
2192         struct lu_buf           *buf = mdd_buf_get(env, NULL, 0);
2193         struct lov_comp_md_v1   *lcm;
2194         struct thandle          *handle;
2195         int flr_state;
2196         int rc;
2197         ENTRY;
2198
2199         /* Verify acceptable operations */
2200         switch (mlc->mlc_opc) {
2201         case MD_LAYOUT_WRITE:
2202         case MD_LAYOUT_RESYNC:
2203         case MD_LAYOUT_RESYNC_DONE:
2204                 break;
2205         default:
2206                 RETURN(-ENOTSUPP);
2207         }
2208
2209         handle = mdd_trans_create(env, mdd);
2210         if (IS_ERR(handle))
2211                 RETURN(PTR_ERR(handle));
2212
2213         rc = mdd_get_lov_ea(env, obj, buf);
2214         if (rc < 0) {
2215                 if (rc == -ENODATA)
2216                         rc = -EINVAL;
2217                 GOTO(out, rc);
2218         }
2219
2220         /* analyze the layout to make sure it's a FLR file */
2221         lcm = buf->lb_buf;
2222         if (le32_to_cpu(lcm->lcm_magic) != LOV_MAGIC_COMP_V1)
2223                 GOTO(out, rc = -EINVAL);
2224
2225         flr_state = le16_to_cpu(lcm->lcm_flags) & LCM_FL_FLR_MASK;
2226
2227         /* please refer to HLD of FLR for state transition */
2228         switch (flr_state) {
2229         case LCM_FL_NOT_FLR:
2230                 rc = mdd_layout_instantiate_component(env, obj, mlc, handle);
2231                 break;
2232         case LCM_FL_WRITE_PENDING:
2233                 rc = mdd_layout_update_write_pending(env, obj, mlc, handle);
2234                 break;
2235         case LCM_FL_RDONLY:
2236                 rc = mdd_layout_update_rdonly(env, obj, mlc, handle);
2237                 break;
2238         case LCM_FL_SYNC_PENDING:
2239                 rc = mdd_object_update_sync_pending(env, obj, mlc, handle);
2240                 break;
2241         default:
2242                 rc = 0;
2243                 break;
2244         }
2245         EXIT;
2246
2247 out:
2248         mdd_trans_stop(env, mdd, rc, handle);
2249         lu_buf_free(buf);
2250         return rc;
2251 }
2252
2253 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
2254                           struct mdd_object *child, const struct lu_attr *attr,
2255                           const struct md_op_spec *spec,
2256                           struct dt_allocation_hint *hint)
2257 {
2258         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
2259         struct dt_object *nc = mdd_object_child(child);
2260
2261         memset(hint, 0, sizeof(*hint));
2262
2263         /* For striped directory, give striping EA to lod_ah_init, which will
2264          * decide the stripe_offset and stripe count by it. */
2265         if (S_ISDIR(attr->la_mode) &&
2266             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
2267                 hint->dah_eadata = spec->u.sp_ea.eadata;
2268                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
2269         } else {
2270                 hint->dah_eadata = NULL;
2271                 hint->dah_eadata_len = 0;
2272         }
2273
2274         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
2275                hint->dah_eadata, hint->dah_eadata_len);
2276         /* @hint will be initialized by underlying device. */
2277         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
2278 }
2279
2280 /*
2281  * do NOT or the MAY_*'s, you'll get the weakest
2282  */
2283 int accmode(const struct lu_env *env, const struct lu_attr *la, int flags)
2284 {
2285         int res = 0;
2286
2287         /* Sadly, NFSD reopens a file repeatedly during operation, so the
2288          * "acc_mode = 0" allowance for newly-created files isn't honoured.
2289          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
2290          * owner can write to a file even if it is marked readonly to hide
2291          * its brokenness. (bug 5781) */
2292         if (flags & MDS_OPEN_OWNEROVERRIDE) {
2293                 struct lu_ucred *uc = lu_ucred_check(env);
2294
2295                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
2296                         return 0;
2297         }
2298
2299         if (flags & FMODE_READ)
2300                 res |= MAY_READ;
2301         if (flags & (FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
2302                 res |= MAY_WRITE;
2303         if (flags & MDS_FMODE_EXEC)
2304                 res = MAY_EXEC;
2305         return res;
2306 }
2307
2308 static int mdd_open_sanity_check(const struct lu_env *env,
2309                                 struct mdd_object *obj,
2310                                 const struct lu_attr *attr, int flag)
2311 {
2312         int mode, rc;
2313         ENTRY;
2314
2315         /* EEXIST check */
2316         if (mdd_is_dead_obj(obj))
2317                 RETURN(-ENOENT);
2318
2319         if (S_ISLNK(attr->la_mode))
2320                 RETURN(-ELOOP);
2321
2322         mode = accmode(env, attr, flag);
2323
2324         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
2325                 RETURN(-EISDIR);
2326
2327         if (!(flag & MDS_OPEN_CREATED)) {
2328                 rc = mdd_permission_internal(env, obj, attr, mode);
2329                 if (rc)
2330                         RETURN(rc);
2331         }
2332
2333         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
2334             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
2335                 flag &= ~MDS_OPEN_TRUNC;
2336
2337         /* For writing append-only file must open it with append mode. */
2338         if (attr->la_flags & LUSTRE_APPEND_FL) {
2339                 if ((flag & FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
2340                         RETURN(-EPERM);
2341                 if (flag & MDS_OPEN_TRUNC)
2342                         RETURN(-EPERM);
2343         }
2344
2345         RETURN(0);
2346 }
2347
2348 static int mdd_open(const struct lu_env *env, struct md_object *obj,
2349                     int flags)
2350 {
2351         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2352         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
2353         int rc = 0;
2354
2355         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2356
2357         rc = mdd_la_get(env, mdd_obj, attr);
2358         if (rc != 0)
2359                 GOTO(out, rc);
2360
2361         rc = mdd_open_sanity_check(env, mdd_obj, attr, flags);
2362         if (rc != 0)
2363                 GOTO(out, rc);
2364
2365         mdd_obj->mod_count++;
2366         EXIT;
2367 out:
2368         mdd_write_unlock(env, mdd_obj);
2369         return rc;
2370 }
2371
2372 static int mdd_declare_close(const struct lu_env *env,
2373                              struct mdd_object *obj,
2374                              struct md_attr *ma,
2375                              struct thandle *handle)
2376 {
2377         int rc;
2378
2379         rc = orph_declare_index_delete(env, obj, handle);
2380         if (rc)
2381                 return rc;
2382
2383         return mdo_declare_destroy(env, obj, handle);
2384 }
2385
2386 /*
2387  * No permission check is needed.
2388  */
2389 static int mdd_close(const struct lu_env *env, struct md_object *obj,
2390                      struct md_attr *ma, int mode)
2391 {
2392         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2393         struct mdd_device *mdd = mdo2mdd(obj);
2394         struct thandle *handle = NULL;
2395         int is_orphan = 0;
2396         int rc;
2397         bool blocked = false;
2398         ENTRY;
2399
2400         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
2401                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2402                 mdd_obj->mod_count--;
2403                 mdd_write_unlock(env, mdd_obj);
2404
2405                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
2406                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
2407                                 "list\n", PFID(mdd_object_fid(mdd_obj)));
2408                 RETURN(0);
2409         }
2410
2411         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
2412          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
2413         /* check without any lock */
2414         is_orphan = mdd_obj->mod_count == 1 &&
2415                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
2416
2417 again:
2418         if (is_orphan) {
2419                 /* mdd_trans_create() maybe failed because of barrier_entry(),
2420                  * under such case, the orphan MDT-object will be left in the
2421                  * orphan list, and when the MDT remount next time, the unused
2422                  * orphans will be destroyed automatically.
2423                  *
2424                  * One exception: the former mdd_finish_unlink may failed to
2425                  * add the orphan MDT-object to the orphan list, then if the
2426                  * mdd_trans_create() failed because of barrier_entry(), the
2427                  * MDT-object will become real orphan that is neither in the
2428                  * namespace nor in the orphan list. Such bad case should be
2429                  * very rare and will be handled by e2fsck/lfsck. */
2430                 handle = mdd_trans_create(env, mdo2mdd(obj));
2431                 if (IS_ERR(handle)) {
2432                         rc = PTR_ERR(handle);
2433                         if (rc != -EINPROGRESS)
2434                                 GOTO(stop, rc);
2435
2436                         handle = NULL;
2437                         blocked = true;
2438                         goto cont;
2439                 }
2440
2441                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
2442                 if (rc)
2443                         GOTO(stop, rc);
2444
2445                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
2446                 if (rc)
2447                         GOTO(stop, rc);
2448
2449                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
2450                 if (rc)
2451                         GOTO(stop, rc);
2452         }
2453
2454 cont:
2455         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
2456         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
2457         if (rc != 0) {
2458                 CERROR("Failed to get lu_attr of "DFID": %d\n",
2459                        PFID(mdd_object_fid(mdd_obj)), rc);
2460                 GOTO(out, rc);
2461         }
2462
2463         /* check again with lock */
2464         is_orphan = (mdd_obj->mod_count == 1) &&
2465                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
2466                      ma->ma_attr.la_nlink == 0);
2467
2468         if (is_orphan && !handle && !blocked) {
2469                 mdd_write_unlock(env, mdd_obj);
2470                 goto again;
2471         }
2472
2473         mdd_obj->mod_count--; /*release open count */
2474
2475         if (!is_orphan || blocked)
2476                 GOTO(out, rc = 0);
2477
2478         /* Orphan object */
2479         /* NB: Object maybe not in orphan list originally, it is rare case for
2480          * mdd_finish_unlink() failure, in that case, the object doesn't have
2481          * ORPHAN_OBJ flag */
2482         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
2483                 /* remove link to object from orphan index */
2484                 LASSERT(handle != NULL);
2485                 rc = __mdd_orphan_del(env, mdd_obj, handle);
2486                 if (rc != 0) {
2487                         CERROR("%s: unable to delete "DFID" from orphan list: "
2488                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
2489                                PFID(mdd_object_fid(mdd_obj)), rc);
2490                         /* If object was not deleted from orphan list, do not
2491                          * destroy OSS objects, which will be done when next
2492                          * recovery. */
2493                         GOTO(out, rc);
2494                 }
2495
2496                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
2497                        "list, OSS objects to be destroyed.\n",
2498                        PFID(mdd_object_fid(mdd_obj)));
2499         }
2500
2501         rc = mdo_destroy(env, mdd_obj, handle);
2502
2503         if (rc != 0) {
2504                 CERROR("%s: unable to delete "DFID" from orphan list: "
2505                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
2506                        PFID(mdd_object_fid(mdd_obj)), rc);
2507         }
2508         EXIT;
2509
2510 out:
2511         mdd_write_unlock(env, mdd_obj);
2512
2513         if (!rc && !blocked &&
2514             (mode & (FMODE_WRITE | MDS_OPEN_APPEND | MDS_OPEN_TRUNC)) &&
2515             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
2516                 if (handle == NULL) {
2517                         handle = mdd_trans_create(env, mdo2mdd(obj));
2518                         if (IS_ERR(handle))
2519                                 GOTO(stop, rc = PTR_ERR(handle));
2520
2521                         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL,
2522                                                          handle);
2523                         if (rc)
2524                                 GOTO(stop, rc);
2525
2526                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
2527                         if (rc)
2528                                 GOTO(stop, rc);
2529                 }
2530
2531                 mdd_changelog_data_store(env, mdd, CL_CLOSE, mode,
2532                                          mdd_obj, handle);
2533         }
2534
2535 stop:
2536         if (handle != NULL && !IS_ERR(handle))
2537                 rc = mdd_trans_stop(env, mdd, rc, handle);
2538
2539         return rc;
2540 }
2541
2542 /*
2543  * Permission check is done when open,
2544  * no need check again.
2545  */
2546 static int mdd_readpage_sanity_check(const struct lu_env *env,
2547                                      struct mdd_object *obj)
2548 {
2549         struct dt_object *next = mdd_object_child(obj);
2550         int rc;
2551         ENTRY;
2552
2553         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
2554                 rc = 0;
2555         else
2556                 rc = -ENOTDIR;
2557
2558         RETURN(rc);
2559 }
2560
2561 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
2562                               size_t nob, const struct dt_it_ops *iops,
2563                               struct dt_it *it, __u32 attr, void *arg)
2564 {
2565         struct lu_dirpage       *dp = &lp->lp_dir;
2566         void                    *area = dp;
2567         int                      result;
2568         __u64                    hash = 0;
2569         struct lu_dirent        *ent;
2570         struct lu_dirent        *last = NULL;
2571         struct lu_fid            fid;
2572         int                      first = 1;
2573
2574         if (nob < sizeof(*dp))
2575                 return -EINVAL;
2576
2577         memset(area, 0, sizeof (*dp));
2578         area += sizeof (*dp);
2579         nob  -= sizeof (*dp);
2580
2581         ent  = area;
2582         do {
2583                 int    len;
2584                 size_t recsize;
2585
2586                 len = iops->key_size(env, it);
2587
2588                 /* IAM iterator can return record with zero len. */
2589                 if (len == 0)
2590                         goto next;
2591
2592                 hash = iops->store(env, it);
2593                 if (unlikely(first)) {
2594                         first = 0;
2595                         dp->ldp_hash_start = cpu_to_le64(hash);
2596                 }
2597
2598                 /* calculate max space required for lu_dirent */
2599                 recsize = lu_dirent_calc_size(len, attr);
2600
2601                 if (nob >= recsize) {
2602                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
2603                         if (result == -ESTALE)
2604                                 goto next;
2605                         if (result != 0)
2606                                 goto out;
2607
2608                         /* osd might not able to pack all attributes,
2609                          * so recheck rec length */
2610                         recsize = le16_to_cpu(ent->lde_reclen);
2611
2612                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
2613                                 fid_le_to_cpu(&fid, &ent->lde_fid);
2614                                 if (fid_is_dot_lustre(&fid))
2615                                         goto next;
2616                         }
2617                 } else {
2618                         result = (last != NULL) ? 0 :-EINVAL;
2619                         goto out;
2620                 }
2621                 last = ent;
2622                 ent = (void *)ent + recsize;
2623                 nob -= recsize;
2624
2625 next:
2626                 result = iops->next(env, it);
2627                 if (result == -ESTALE)
2628                         goto next;
2629         } while (result == 0);
2630
2631 out:
2632         dp->ldp_hash_end = cpu_to_le64(hash);
2633         if (last != NULL) {
2634                 if (last->lde_hash == dp->ldp_hash_end)
2635                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
2636                 last->lde_reclen = 0; /* end mark */
2637         }
2638         if (result > 0)
2639                 /* end of directory */
2640                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
2641         else if (result < 0)
2642                 CWARN("build page failed: %d!\n", result);
2643         return result;
2644 }
2645
2646 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
2647                  const struct lu_rdpg *rdpg)
2648 {
2649         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2650         int rc;
2651         ENTRY;
2652
2653         if (mdd_object_exists(mdd_obj) == 0) {
2654                 CERROR("%s: object "DFID" not found: rc = -2\n",
2655                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
2656                 return -ENOENT;
2657         }
2658
2659         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
2660         rc = mdd_readpage_sanity_check(env, mdd_obj);
2661         if (rc)
2662                 GOTO(out_unlock, rc);
2663
2664         if (mdd_is_dead_obj(mdd_obj)) {
2665                 struct page *pg;
2666                 struct lu_dirpage *dp;
2667
2668                 /*
2669                  * According to POSIX, please do not return any entry to client:
2670                  * even dot and dotdot should not be returned.
2671                  */
2672                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
2673                        PFID(mdd_object_fid(mdd_obj)));
2674
2675                 if (rdpg->rp_count <= 0)
2676                         GOTO(out_unlock, rc = -EFAULT);
2677                 LASSERT(rdpg->rp_pages != NULL);
2678
2679                 pg = rdpg->rp_pages[0];
2680                 dp = (struct lu_dirpage *)kmap(pg);
2681                 memset(dp, 0 , sizeof(struct lu_dirpage));
2682                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
2683                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
2684                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
2685                 kunmap(pg);
2686                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
2687         }
2688
2689         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
2690                            mdd_dir_page_build, NULL);
2691         if (rc >= 0) {
2692                 struct lu_dirpage       *dp;
2693
2694                 dp = kmap(rdpg->rp_pages[0]);
2695                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
2696                 if (rc == 0) {
2697                         /*
2698                          * No pages were processed, mark this for first page
2699                          * and send back.
2700                          */
2701                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
2702                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
2703                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
2704                 }
2705                 kunmap(rdpg->rp_pages[0]);
2706         }
2707
2708         GOTO(out_unlock, rc);
2709 out_unlock:
2710         mdd_read_unlock(env, mdd_obj);
2711         return rc;
2712 }
2713
2714 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
2715 {
2716         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2717
2718         if (mdd_object_exists(mdd_obj) == 0) {
2719                 int rc = -ENOENT;
2720
2721                 CERROR("%s: object "DFID" not found: rc = %d\n",
2722                        mdd_obj_dev_name(mdd_obj),
2723                        PFID(mdd_object_fid(mdd_obj)), rc);
2724                 return rc;
2725         }
2726         return dt_object_sync(env, mdd_object_child(mdd_obj),
2727                               0, OBD_OBJECT_EOF);
2728 }
2729
2730 static int mdd_object_lock(const struct lu_env *env,
2731                            struct md_object *obj,
2732                            struct lustre_handle *lh,
2733                            struct ldlm_enqueue_info *einfo,
2734                            union ldlm_policy_data *policy)
2735 {
2736         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2737         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
2738                               einfo, policy);
2739 }
2740
2741 static int mdd_object_unlock(const struct lu_env *env,
2742                              struct md_object *obj,
2743                              struct ldlm_enqueue_info *einfo,
2744                              union ldlm_policy_data *policy)
2745 {
2746         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2747         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
2748 }
2749
2750 const struct md_object_operations mdd_obj_ops = {
2751         .moo_permission         = mdd_permission,
2752         .moo_attr_get           = mdd_attr_get,
2753         .moo_attr_set           = mdd_attr_set,
2754         .moo_xattr_get          = mdd_xattr_get,
2755         .moo_xattr_set          = mdd_xattr_set,
2756         .moo_xattr_list         = mdd_xattr_list,
2757         .moo_invalidate         = mdd_invalidate,
2758         .moo_xattr_del          = mdd_xattr_del,
2759         .moo_swap_layouts       = mdd_swap_layouts,
2760         .moo_open               = mdd_open,
2761         .moo_close              = mdd_close,
2762         .moo_readpage           = mdd_readpage,
2763         .moo_readlink           = mdd_readlink,
2764         .moo_changelog          = mdd_changelog,
2765         .moo_object_sync        = mdd_object_sync,
2766         .moo_object_lock        = mdd_object_lock,
2767         .moo_object_unlock      = mdd_object_unlock,
2768         .moo_layout_change      = mdd_layout_change,
2769 };