Whamcloud - gitweb
LU-7712 mdd: migration is too noisy
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdd/mdd_object.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: Wang Di <wangdi@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <linux/module.h>
46 #include <obd.h>
47 #include <obd_class.h>
48 #include <obd_support.h>
49 #include <lprocfs_status.h>
50 /* fid_be_cpu(), fid_cpu_to_be(). */
51 #include <lustre_fid.h>
52 #include <lustre_idmap.h>
53 #include <lustre_param.h>
54 #include <lustre_mds.h>
55 #include <lustre/lustre_idl.h>
56
57 #include "mdd_internal.h"
58
59 static const struct lu_object_operations mdd_lu_obj_ops;
60
61 static int mdd_xattr_get(const struct lu_env *env,
62                          struct md_object *obj, struct lu_buf *buf,
63                          const char *name);
64
65 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
66                struct lu_attr *la)
67 {
68         int rc;
69
70         if (mdd_object_exists(obj) == 0)
71                 return -ENOENT;
72
73         rc = mdo_attr_get(env, obj, la);
74         if (unlikely(rc != 0)) {
75                 if (rc == -ENOENT)
76                         obj->mod_flags |= DEAD_OBJ;
77                 return rc;
78         }
79
80         if (la->la_valid & LA_FLAGS &&
81             la->la_flags & LUSTRE_ORPHAN_FL)
82                 obj->mod_flags |= ORPHAN_OBJ | DEAD_OBJ;
83
84         return 0;
85 }
86
87 struct mdd_thread_info *mdd_env_info(const struct lu_env *env)
88 {
89         struct mdd_thread_info *info;
90
91         lu_env_refill((struct lu_env *)env);
92         info = lu_context_key_get(&env->le_ctx, &mdd_thread_key);
93         LASSERT(info != NULL);
94         return info;
95 }
96
97 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len)
98 {
99         struct lu_buf *buf;
100
101         buf = &mdd_env_info(env)->mti_buf[0];
102         buf->lb_buf = area;
103         buf->lb_len = len;
104         return buf;
105 }
106
107 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
108                                        const void *area, ssize_t len)
109 {
110         struct lu_buf *buf;
111
112         buf = &mdd_env_info(env)->mti_buf[0];
113         buf->lb_buf = (void *)area;
114         buf->lb_len = len;
115         return buf;
116 }
117
118 struct lu_object *mdd_object_alloc(const struct lu_env *env,
119                                    const struct lu_object_header *hdr,
120                                    struct lu_device *d)
121 {
122         struct mdd_object *mdd_obj;
123
124         OBD_SLAB_ALLOC_PTR_GFP(mdd_obj, mdd_object_kmem, GFP_NOFS);
125         if (mdd_obj != NULL) {
126                 struct lu_object *o;
127
128                 o = mdd2lu_obj(mdd_obj);
129                 lu_object_init(o, NULL, d);
130                 mdd_obj->mod_obj.mo_ops = &mdd_obj_ops;
131                 mdd_obj->mod_obj.mo_dir_ops = &mdd_dir_ops;
132                 mdd_obj->mod_count = 0;
133                 o->lo_ops = &mdd_lu_obj_ops;
134                 return o;
135         } else {
136                 return NULL;
137         }
138 }
139
140 static int mdd_object_init(const struct lu_env *env, struct lu_object *o,
141                            const struct lu_object_conf *unused)
142 {
143         struct mdd_device *d = lu2mdd_dev(o->lo_dev);
144         struct mdd_object *mdd_obj = lu2mdd_obj(o);
145         struct lu_object  *below;
146         struct lu_device  *under;
147         ENTRY;
148
149         mdd_obj->mod_cltime = 0;
150         under = &d->mdd_child->dd_lu_dev;
151         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
152         if (IS_ERR(below))
153                 RETURN(PTR_ERR(below));
154
155         lu_object_add(o, below);
156
157         RETURN(0);
158 }
159
160 static int mdd_object_start(const struct lu_env *env, struct lu_object *o)
161 {
162         int rc = 0;
163
164         if (lu_object_exists(o)) {
165                 struct mdd_object *mdd_obj = lu2mdd_obj(o);
166                 struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
167
168                 rc = mdd_la_get(env, mdd_obj, attr);
169         }
170
171         return rc;
172 }
173
174 static void mdd_object_free(const struct lu_env *env, struct lu_object *o)
175 {
176         struct mdd_object *mdd = lu2mdd_obj(o);
177
178         lu_object_fini(o);
179         OBD_SLAB_FREE_PTR(mdd, mdd_object_kmem);
180 }
181
182 static int mdd_object_print(const struct lu_env *env, void *cookie,
183                             lu_printer_t p, const struct lu_object *o)
184 {
185         struct mdd_object *mdd = lu2mdd_obj((struct lu_object *)o);
186         return (*p)(env, cookie, LUSTRE_MDD_NAME"-object@%p(open_count=%d, "
187                     "valid=%x, cltime="LPU64", flags=%lx)",
188                     mdd, mdd->mod_count, mdd->mod_valid,
189                     mdd->mod_cltime, mdd->mod_flags);
190 }
191
192 static const struct lu_object_operations mdd_lu_obj_ops = {
193         .loo_object_init    = mdd_object_init,
194         .loo_object_start   = mdd_object_start,
195         .loo_object_free    = mdd_object_free,
196         .loo_object_print   = mdd_object_print,
197 };
198
199 struct mdd_object *mdd_object_find(const struct lu_env *env,
200                                    struct mdd_device *d,
201                                    const struct lu_fid *f)
202 {
203         return md2mdd_obj(md_object_find_slice(env, &d->mdd_md_dev, f));
204 }
205
206 /*
207  * No permission check is needed.
208  */
209 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
210                  struct md_attr *ma)
211 {
212         struct mdd_object *mdd_obj = md2mdd_obj(obj);
213         int               rc;
214
215         ENTRY;
216
217         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
218         if ((ma->ma_need & MA_INODE) != 0 && mdd_is_dead_obj(mdd_obj))
219                 ma->ma_attr.la_nlink = 0;
220
221         RETURN(rc);
222 }
223
224 /*
225  * No permission check is needed.
226  */
227 static int mdd_xattr_get(const struct lu_env *env,
228                          struct md_object *obj, struct lu_buf *buf,
229                          const char *name)
230 {
231         struct mdd_object *mdd_obj = md2mdd_obj(obj);
232         int rc;
233
234         ENTRY;
235
236         if (mdd_object_exists(mdd_obj) == 0) {
237                 CERROR("%s: object "DFID" not found: rc = -2\n",
238                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
239                 return -ENOENT;
240         }
241
242         /* If the object has been destroyed, then do not get LMVEA, because
243          * it needs to load stripes from the iteration of the master object,
244          * and it will cause problem if master object has been destroyed, see
245          * LU-6427 */
246         if (unlikely((mdd_obj->mod_flags & DEAD_OBJ) &&
247                      !(mdd_obj->mod_flags & ORPHAN_OBJ) &&
248                       strcmp(name, XATTR_NAME_LMV) == 0))
249                 RETURN(-ENOENT);
250
251         /* If the object has been delete from the namespace, then
252          * get linkEA should return -ENOENT as well */
253         if (unlikely((mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ)) &&
254                       strcmp(name, XATTR_NAME_LINK) == 0))
255                 RETURN(-ENOENT);
256
257         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
258         rc = mdo_xattr_get(env, mdd_obj, buf, name);
259         mdd_read_unlock(env, mdd_obj);
260
261         RETURN(rc);
262 }
263
264 /*
265  * Permission check is done when open,
266  * no need check again.
267  */
268 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
269                  struct lu_buf *buf)
270 {
271         struct mdd_object *mdd_obj = md2mdd_obj(obj);
272         struct dt_object  *next;
273         loff_t             pos = 0;
274         int                rc;
275         ENTRY;
276
277         if (mdd_object_exists(mdd_obj) == 0) {
278                 CERROR("%s: object "DFID" not found: rc = -2\n",
279                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
280                 return -ENOENT;
281         }
282
283         next = mdd_object_child(mdd_obj);
284         LASSERT(next != NULL);
285         LASSERT(next->do_body_ops != NULL);
286         LASSERT(next->do_body_ops->dbo_read != NULL);
287         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
288         rc = dt_read(env, next, buf, &pos);
289         mdd_read_unlock(env, mdd_obj);
290         RETURN(rc);
291 }
292
293 /*
294  * No permission check is needed.
295  */
296 static int mdd_xattr_list(const struct lu_env *env, struct md_object *obj,
297                           struct lu_buf *buf)
298 {
299         struct mdd_object *mdd_obj = md2mdd_obj(obj);
300         int rc;
301
302         ENTRY;
303
304         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
305         rc = mdo_xattr_list(env, mdd_obj, buf);
306         mdd_read_unlock(env, mdd_obj);
307
308         if (rc < 0)
309                 RETURN(rc);
310
311         /*
312          * Filter out XATTR_NAME_LINK if this is an orphan object.  See
313          * mdd_xattr_get().
314          */
315         if (unlikely(mdd_obj->mod_flags & (DEAD_OBJ | ORPHAN_OBJ))) {
316                 char   *end = (char *)buf->lb_buf + rc;
317                 char   *p = buf->lb_buf;
318
319                 while (p < end) {
320                         char   *next = p + strlen(p) + 1;
321
322                         if (strcmp(p, XATTR_NAME_LINK) == 0) {
323                                 if (end - next > 0)
324                                         memmove(p, next, end - next);
325                                 rc -= next - p;
326                                 CDEBUG(D_INFO, "Filtered out "XATTR_NAME_LINK
327                                        " of orphan "DFID"\n",
328                                        PFID(mdd_object_fid(mdd_obj)));
329                                 break;
330                         }
331
332                         p = next;
333                 }
334         }
335
336         RETURN(rc);
337 }
338
339 int mdd_invalidate(const struct lu_env *env, struct md_object *obj)
340 {
341         return mdo_invalidate(env, md2mdd_obj(obj));
342 }
343
344 int mdd_declare_object_create_internal(const struct lu_env *env,
345                                        struct mdd_object *p,
346                                        struct mdd_object *c,
347                                        struct lu_attr *attr,
348                                        struct thandle *handle,
349                                        const struct md_op_spec *spec,
350                                        struct dt_allocation_hint *hint)
351 {
352         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
353         const struct dt_index_features *feat = spec->sp_feat;
354         int rc;
355         ENTRY;
356
357         if (feat != &dt_directory_features && feat != NULL) {
358                 dof->dof_type = DFT_INDEX;
359                 dof->u.dof_idx.di_feat = feat;
360
361         } else {
362                 dof->dof_type = dt_mode_to_dft(attr->la_mode);
363                 if (dof->dof_type == DFT_REGULAR) {
364                         dof->u.dof_reg.striped =
365                                 md_should_create(spec->sp_cr_flags);
366                         if (spec->sp_cr_flags & MDS_OPEN_HAS_EA)
367                                 dof->u.dof_reg.striped = 0;
368                         /* is this replay? */
369                         if (spec->no_create)
370                                 dof->u.dof_reg.striped = 0;
371                 }
372         }
373
374         rc = mdo_declare_create_obj(env, c, attr, hint, dof, handle);
375
376         RETURN(rc);
377 }
378
379 int mdd_object_create_internal(const struct lu_env *env, struct mdd_object *p,
380                                struct mdd_object *c, struct lu_attr *attr,
381                                struct thandle *handle,
382                                const struct md_op_spec *spec,
383                                struct dt_allocation_hint *hint)
384 {
385         struct dt_object_format *dof = &mdd_env_info(env)->mti_dof;
386         int rc;
387         ENTRY;
388
389         LASSERT(!mdd_object_exists(c));
390
391         rc = mdo_create_obj(env, c, attr, hint, dof, handle);
392
393         RETURN(rc);
394 }
395
396 int mdd_attr_set_internal(const struct lu_env *env, struct mdd_object *obj,
397                           const struct lu_attr *attr, struct thandle *handle,
398                           int needacl)
399 {
400         int rc;
401         ENTRY;
402
403         rc = mdo_attr_set(env, obj, attr, handle);
404 #ifdef CONFIG_FS_POSIX_ACL
405         if (!rc && (attr->la_valid & LA_MODE) && needacl)
406                 rc = mdd_acl_chmod(env, obj, attr->la_mode, handle);
407 #endif
408         RETURN(rc);
409 }
410
411 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
412                     const struct lu_attr *oattr, struct lu_attr *attr,
413                     struct thandle *handle)
414 {
415         int rc = 0;
416         ENTRY;
417
418         LASSERT(attr->la_valid & LA_CTIME);
419         LASSERT(oattr != NULL);
420
421         /* Make sure the ctime is increased only, however, it's not strictly
422          * reliable at here because there is not guarantee to hold lock on
423          * object, so we just bypass some unnecessary cmtime setting first
424          * and OSD has to check it again. */
425         if (attr->la_ctime < oattr->la_ctime)
426                 attr->la_valid &= ~(LA_MTIME | LA_CTIME);
427         else if (attr->la_valid == LA_CTIME &&
428                  attr->la_ctime == oattr->la_ctime)
429                 attr->la_valid &= ~LA_CTIME;
430
431         if (attr->la_valid != 0)
432                 rc = mdd_attr_set_internal(env, obj, attr, handle, 0);
433         RETURN(rc);
434 }
435
436 /*
437  * This gives the same functionality as the code between
438  * sys_chmod and inode_setattr
439  * chown_common and inode_setattr
440  * utimes and inode_setattr
441  * This API is ported from mds_fix_attr but remove some unnecesssary stuff.
442  */
443 static int mdd_fix_attr(const struct lu_env *env, struct mdd_object *obj,
444                         const struct lu_attr *oattr, struct lu_attr *la,
445                         const unsigned long flags)
446 {
447         struct lu_ucred  *uc;
448         int               rc = 0;
449         ENTRY;
450
451         if (!la->la_valid)
452                 RETURN(0);
453
454         /* Do not permit change file type */
455         if (la->la_valid & LA_TYPE)
456                 RETURN(-EPERM);
457
458         /* They should not be processed by setattr */
459         if (la->la_valid & (LA_NLINK | LA_RDEV | LA_BLKSIZE))
460                 RETURN(-EPERM);
461
462         LASSERT(oattr != NULL);
463
464         uc = lu_ucred_check(env);
465         if (uc == NULL)
466                 RETURN(0);
467
468         if (la->la_valid == LA_CTIME) {
469                 if (!(flags & MDS_PERM_BYPASS))
470                         /* This is only for set ctime when rename's source is
471                          * on remote MDS. */
472                         rc = mdd_may_delete(env, NULL, NULL, obj, oattr, NULL,
473                                             1, 0);
474                 if (rc == 0 && la->la_ctime <= oattr->la_ctime)
475                         la->la_valid &= ~LA_CTIME;
476                 RETURN(rc);
477         }
478
479         if (la->la_valid == LA_ATIME) {
480                 /* This is an atime-only attribute update for close RPCs. */
481                 if (la->la_atime < (oattr->la_atime +
482                                 mdd_obj2mdd_dev(obj)->mdd_atime_diff))
483                         la->la_valid &= ~LA_ATIME;
484                 RETURN(0);
485         }
486
487         /* Check if flags change. */
488         if (la->la_valid & LA_FLAGS) {
489                 unsigned int oldflags = oattr->la_flags &
490                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
491                 unsigned int newflags = la->la_flags &
492                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
493
494                 if ((uc->uc_fsuid != oattr->la_uid) &&
495                     !md_capable(uc, CFS_CAP_FOWNER))
496                         RETURN(-EPERM);
497
498                 /* The IMMUTABLE and APPEND_ONLY flags can
499                  * only be changed by the relevant capability. */
500                 if ((oldflags ^ newflags) &&
501                     !md_capable(uc, CFS_CAP_LINUX_IMMUTABLE))
502                         RETURN(-EPERM);
503
504                 if (!S_ISDIR(oattr->la_mode))
505                         la->la_flags &= ~(LUSTRE_DIRSYNC_FL | LUSTRE_TOPDIR_FL);
506         }
507
508         if (oattr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL) &&
509             (la->la_valid & ~LA_FLAGS) &&
510             !(flags & MDS_PERM_BYPASS))
511                 RETURN(-EPERM);
512
513         /* Check for setting the obj time. */
514         if ((la->la_valid & (LA_MTIME | LA_ATIME | LA_CTIME)) &&
515             !(la->la_valid & ~(LA_MTIME | LA_ATIME | LA_CTIME))) {
516                 if ((uc->uc_fsuid != oattr->la_uid) &&
517                     !md_capable(uc, CFS_CAP_FOWNER)) {
518                         rc = mdd_permission_internal(env, obj, oattr,
519                                                      MAY_WRITE);
520                         if (rc)
521                                 RETURN(rc);
522                 }
523         }
524
525         if (la->la_valid & LA_KILL_SUID) {
526                 la->la_valid &= ~LA_KILL_SUID;
527                 if ((oattr->la_mode & S_ISUID) &&
528                     !(la->la_valid & LA_MODE)) {
529                         la->la_mode = oattr->la_mode;
530                         la->la_valid |= LA_MODE;
531                 }
532                 la->la_mode &= ~S_ISUID;
533         }
534
535         if (la->la_valid & LA_KILL_SGID) {
536                 la->la_valid &= ~LA_KILL_SGID;
537                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
538                         (S_ISGID | S_IXGRP)) &&
539                     !(la->la_valid & LA_MODE)) {
540                         la->la_mode = oattr->la_mode;
541                         la->la_valid |= LA_MODE;
542                 }
543                 la->la_mode &= ~S_ISGID;
544         }
545
546         /* Make sure a caller can chmod. */
547         if (la->la_valid & LA_MODE) {
548                 if (!(flags & MDS_PERM_BYPASS) &&
549                     (uc->uc_fsuid != oattr->la_uid) &&
550                     !md_capable(uc, CFS_CAP_FOWNER))
551                         RETURN(-EPERM);
552
553                 if (la->la_mode == (umode_t) -1)
554                         la->la_mode = oattr->la_mode;
555                 else
556                         la->la_mode = (la->la_mode & S_IALLUGO) |
557                                         (oattr->la_mode & ~S_IALLUGO);
558
559                 /* Also check the setgid bit! */
560                 if (!lustre_in_group_p(uc, (la->la_valid & LA_GID) ?
561                                        la->la_gid : oattr->la_gid) &&
562                     !md_capable(uc, CFS_CAP_FSETID))
563                         la->la_mode &= ~S_ISGID;
564         } else {
565                la->la_mode = oattr->la_mode;
566         }
567
568         /* Make sure a caller can chown. */
569         if (la->la_valid & LA_UID) {
570                 if (la->la_uid == (uid_t) -1)
571                         la->la_uid = oattr->la_uid;
572                 if (((uc->uc_fsuid != oattr->la_uid) ||
573                      (la->la_uid != oattr->la_uid)) &&
574                     !md_capable(uc, CFS_CAP_CHOWN))
575                         RETURN(-EPERM);
576
577                 /* If the user or group of a non-directory has been
578                  * changed by a non-root user, remove the setuid bit.
579                  * 19981026 David C Niemi <niemi@tux.org>
580                  *
581                  * Changed this to apply to all users, including root,
582                  * to avoid some races. This is the behavior we had in
583                  * 2.0. The check for non-root was definitely wrong
584                  * for 2.2 anyway, as it should have been using
585                  * CAP_FSETID rather than fsuid -- 19990830 SD. */
586                 if (((oattr->la_mode & S_ISUID) == S_ISUID) &&
587                 !S_ISDIR(oattr->la_mode)) {
588                         la->la_mode &= ~S_ISUID;
589                         la->la_valid |= LA_MODE;
590                 }
591         }
592
593         /* Make sure caller can chgrp. */
594         if (la->la_valid & LA_GID) {
595                 if (la->la_gid == (gid_t) -1)
596                         la->la_gid = oattr->la_gid;
597                 if (((uc->uc_fsuid != oattr->la_uid) ||
598                      ((la->la_gid != oattr->la_gid) &&
599                       !lustre_in_group_p(uc, la->la_gid))) &&
600                     !md_capable(uc, CFS_CAP_CHOWN))
601                         RETURN(-EPERM);
602
603                 /* Likewise, if the user or group of a non-directory
604                  * has been changed by a non-root user, remove the
605                  * setgid bit UNLESS there is no group execute bit
606                  * (this would be a file marked for mandatory
607                  * locking).  19981026 David C Niemi <niemi@tux.org>
608                  *
609                  * Removed the fsuid check (see the comment above) --
610                  * 19990830 SD. */
611                 if (((oattr->la_mode & (S_ISGID | S_IXGRP)) ==
612                     (S_ISGID | S_IXGRP)) && !S_ISDIR(oattr->la_mode)) {
613                         la->la_mode &= ~S_ISGID;
614                         la->la_valid |= LA_MODE;
615                 }
616         }
617
618         if (la->la_valid & (LA_SIZE | LA_BLOCKS)) {
619                 if (!((flags & MDS_OWNEROVERRIDE) &&
620                       (uc->uc_fsuid == oattr->la_uid)) &&
621                     !(flags & MDS_PERM_BYPASS)) {
622                         rc = mdd_permission_internal(env, obj, oattr,
623                                                      MAY_WRITE);
624                         if (rc != 0)
625                                 RETURN(rc);
626                 }
627         }
628
629         if (la->la_valid & LA_CTIME) {
630                 /* The pure setattr, it has the priority over what is
631                  * already set, do not drop it if ctime is equal. */
632                 if (la->la_ctime < oattr->la_ctime)
633                         la->la_valid &= ~(LA_ATIME | LA_MTIME | LA_CTIME);
634         }
635
636         RETURN(0);
637 }
638
639 /** Store a data change changelog record
640  * If this fails, we must fail the whole transaction; we don't
641  * want the change to commit without the log entry.
642  * \param mdd_obj - mdd_object of change
643  * \param handle - transaction handle
644  */
645 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
646                              enum changelog_rec_type type, int flags,
647                              struct mdd_object *mdd_obj, struct thandle *handle)
648 {
649         const struct lu_ucred           *uc = lu_ucred(env);
650         const struct lu_fid             *tfid;
651         struct llog_changelog_rec       *rec;
652         struct lu_buf                   *buf;
653         int                              reclen;
654         int                              rc;
655
656         /* Not recording */
657         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
658                 RETURN(0);
659         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
660                 RETURN(0);
661
662         LASSERT(mdd_obj != NULL);
663         LASSERT(handle != NULL);
664
665         tfid = mdo2fid(mdd_obj);
666
667         if ((type >= CL_MTIME) && (type <= CL_ATIME) &&
668             cfs_time_before_64(mdd->mdd_cl.mc_starttime, mdd_obj->mod_cltime)) {
669                 /* Don't need multiple updates in this log */
670                 /* Don't check under lock - no big deal if we get an extra
671                    entry */
672                 RETURN(0);
673         }
674
675         flags = (flags & CLF_FLAGMASK) | CLF_VERSION;
676         if (uc != NULL && uc->uc_jobid[0] != '\0')
677                 flags |= CLF_JOBID;
678
679         reclen = llog_data_len(changelog_rec_offset(flags & CLF_SUPPORTED));
680         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
681         if (buf->lb_buf == NULL)
682                 RETURN(-ENOMEM);
683         rec = buf->lb_buf;
684
685         rec->cr.cr_flags = flags;
686         rec->cr.cr_type = (__u32)type;
687         rec->cr.cr_tfid = *tfid;
688         rec->cr.cr_namelen = 0;
689         mdd_obj->mod_cltime = cfs_time_current_64();
690
691         if (flags & CLF_JOBID)
692                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
693
694         rc = mdd_changelog_store(env, mdd, rec, handle);
695
696         RETURN(rc);
697 }
698
699 static int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
700                          int flags, struct md_object *obj)
701 {
702         struct thandle *handle;
703         struct mdd_object *mdd_obj = md2mdd_obj(obj);
704         struct mdd_device *mdd = mdo2mdd(obj);
705         int rc;
706         ENTRY;
707
708         handle = mdd_trans_create(env, mdd);
709         if (IS_ERR(handle))
710                 RETURN(PTR_ERR(handle));
711
712         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
713         if (rc)
714                 GOTO(stop, rc);
715
716         rc = mdd_trans_start(env, mdd, handle);
717         if (rc)
718                 GOTO(stop, rc);
719
720         rc = mdd_changelog_data_store(env, mdd, type, flags, mdd_obj,
721                                       handle);
722
723 stop:
724         mdd_trans_stop(env, mdd, rc, handle);
725
726         RETURN(rc);
727 }
728
729 /**
730  * Save LMA extended attributes with data from \a ma.
731  *
732  * HSM and Size-On-MDS data will be extracted from \ma if they are valid, if
733  * not, LMA EA will be first read from disk, modified and write back.
734  *
735  */
736 /* Precedence for choosing record type when multiple
737  * attributes change: setattr > mtime > ctime > atime
738  * (ctime changes when mtime does, plus chmod/chown.
739  * atime and ctime are independent.) */
740 static int mdd_attr_set_changelog(const struct lu_env *env,
741                                   struct md_object *obj, struct thandle *handle,
742                                   __u64 valid)
743 {
744         struct mdd_device *mdd = mdo2mdd(obj);
745         int bits, type = 0;
746
747         bits =  (valid & LA_SIZE)  ? 1 << CL_TRUNC : 0;
748         bits |= (valid & ~(LA_CTIME|LA_MTIME|LA_ATIME)) ? 1 << CL_SETATTR : 0;
749         bits |= (valid & LA_MTIME) ? 1 << CL_MTIME : 0;
750         bits |= (valid & LA_CTIME) ? 1 << CL_CTIME : 0;
751         bits |= (valid & LA_ATIME) ? 1 << CL_ATIME : 0;
752         bits = bits & mdd->mdd_cl.mc_mask;
753         /* This is an implementation limit rather than a protocol limit */
754         CLASSERT(CL_LAST <= sizeof(int) * 8);
755         if (bits == 0)
756                 return 0;
757
758         /* The record type is the lowest non-masked set bit */
759         type = __ffs(bits);
760
761         /* FYI we only store the first CLF_FLAGMASK bits of la_valid */
762         return mdd_changelog_data_store(env, mdd, type, (int)valid,
763                                         md2mdd_obj(obj), handle);
764 }
765
766 static int mdd_declare_attr_set(const struct lu_env *env,
767                                 struct mdd_device *mdd,
768                                 struct mdd_object *obj,
769                                 const struct lu_attr *attr,
770                                 struct thandle *handle)
771 {
772         int rc;
773
774         rc = mdo_declare_attr_set(env, obj, attr, handle);
775         if (rc)
776                 return rc;
777
778 #ifdef CONFIG_FS_POSIX_ACL
779         if (attr->la_valid & LA_MODE) {
780                 mdd_read_lock(env, obj, MOR_TGT_CHILD);
781                 rc = mdo_xattr_get(env, obj, &LU_BUF_NULL,
782                                    XATTR_NAME_ACL_ACCESS);
783                 mdd_read_unlock(env, obj);
784                 if (rc == -EOPNOTSUPP || rc == -ENODATA)
785                         rc = 0;
786                 else if (rc < 0)
787                         return rc;
788
789                 if (rc != 0) {
790                         struct lu_buf *buf = mdd_buf_get(env, NULL, rc);
791                         rc = mdo_declare_xattr_set(env, obj, buf,
792                                                    XATTR_NAME_ACL_ACCESS, 0,
793                                                    handle);
794                         if (rc)
795                                 return rc;
796                 }
797         }
798 #endif
799
800         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
801         return rc;
802 }
803
804 /*
805  * LU-3671
806  *
807  * permission changes may require sync operation, to mitigate performance
808  * impact, only do this for dir and when permission is reduced.
809  *
810  * For regular files, version is updated with permission change (see VBR), async
811  * permission won't cause any issue, while missing permission change on
812  * directory may affect accessibility of other objects after recovery.
813  */
814 static inline bool permission_needs_sync(const struct lu_attr *old,
815                                          const struct lu_attr *new)
816 {
817         if (!S_ISDIR(old->la_mode))
818                 return false;
819
820         if (new->la_valid & (LA_UID | LA_GID))
821                 return true;
822
823         if (new->la_valid & LA_MODE &&
824             new->la_mode & (S_ISUID | S_ISGID | S_ISVTX))
825                 return true;
826
827         if ((new->la_valid & LA_MODE) &&
828             ((new->la_mode & old->la_mode) & S_IRWXUGO) !=
829              (old->la_mode & S_IRWXUGO))
830                 return true;
831
832         return false;
833 }
834
835 /* set attr and LOV EA at once, return updated attr */
836 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
837                  const struct md_attr *ma)
838 {
839         struct mdd_object *mdd_obj = md2mdd_obj(obj);
840         struct mdd_device *mdd = mdo2mdd(obj);
841         struct thandle *handle;
842         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
843         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
844         const struct lu_attr *la = &ma->ma_attr;
845         int rc;
846         ENTRY;
847
848         /* we do not use ->attr_set() for LOV/HSM EA any more */
849         LASSERT((ma->ma_valid & MA_LOV) == 0);
850         LASSERT((ma->ma_valid & MA_HSM) == 0);
851
852         rc = mdd_la_get(env, mdd_obj, attr);
853         if (rc)
854                 RETURN(rc);
855
856         *la_copy = ma->ma_attr;
857         rc = mdd_fix_attr(env, mdd_obj, attr, la_copy, ma->ma_attr_flags);
858         if (rc)
859                 RETURN(rc);
860
861         /* no need to setattr anymore */
862         if (la_copy->la_valid == 0) {
863                 CDEBUG(D_INODE, "%s: no valid attribute on "DFID", previous"
864                        "valid is "LPX64"\n", mdd2obd_dev(mdd)->obd_name,
865                        PFID(mdo2fid(mdd_obj)), la->la_valid);
866
867                 RETURN(0);
868         }
869
870         handle = mdd_trans_create(env, mdd);
871         if (IS_ERR(handle))
872                 RETURN(PTR_ERR(handle));
873
874         rc = mdd_declare_attr_set(env, mdd, mdd_obj, la_copy, handle);
875         if (rc)
876                 GOTO(stop, rc);
877
878         rc = mdd_trans_start(env, mdd, handle);
879         if (rc)
880                 GOTO(stop, rc);
881
882         if (mdd->mdd_sync_permission && permission_needs_sync(attr, la))
883                 handle->th_sync = 1;
884
885         if (la->la_valid & (LA_MTIME | LA_CTIME))
886                 CDEBUG(D_INODE, "setting mtime "LPU64", ctime "LPU64"\n",
887                        la->la_mtime, la->la_ctime);
888
889         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
890         if (la_copy->la_valid & LA_FLAGS)
891                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
892         else if (la_copy->la_valid) /* setattr */
893                 rc = mdd_attr_set_internal(env, mdd_obj, la_copy, handle, 1);
894         mdd_write_unlock(env, mdd_obj);
895
896         if (rc == 0)
897                 rc = mdd_attr_set_changelog(env, obj, handle,
898                                             la_copy->la_valid);
899
900         GOTO(stop, rc);
901
902 stop:
903         mdd_trans_stop(env, mdd, rc, handle);
904         return rc;
905 }
906
907 static int mdd_xattr_sanity_check(const struct lu_env *env,
908                                   struct mdd_object *obj,
909                                   const struct lu_attr *attr)
910 {
911         struct lu_ucred *uc     = lu_ucred_assert(env);
912         ENTRY;
913
914         if (attr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
915                 RETURN(-EPERM);
916
917         if ((uc->uc_fsuid != attr->la_uid) && !md_capable(uc, CFS_CAP_FOWNER))
918                 RETURN(-EPERM);
919
920         RETURN(0);
921 }
922
923 static int mdd_declare_xattr_set(const struct lu_env *env,
924                                  struct mdd_device *mdd,
925                                  struct mdd_object *obj,
926                                  const struct lu_buf *buf,
927                                  const char *name,
928                                  int fl, struct thandle *handle)
929 {
930         int     rc;
931
932         rc = mdo_declare_xattr_set(env, obj, buf, name, fl, handle);
933         if (rc)
934                 return rc;
935
936         /* Only record user and layout xattr changes */
937         if (strncmp(XATTR_USER_PREFIX, name,
938                     sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
939             strcmp(XATTR_NAME_LOV, name) == 0) {
940                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
941                 if (rc)
942                         return rc;
943         }
944
945         /* If HSM data is modified, this could add a changelog */
946         if (strcmp(XATTR_NAME_HSM, name) == 0) {
947                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
948                 if (rc)
949                         return rc;
950         }
951
952         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
953         return rc;
954 }
955
956 /*
957  * Compare current and future data of HSM EA and add a changelog if needed.
958  *
959  * Caller should have write-locked \param obj.
960  *
961  * \param buf - Future HSM EA content.
962  * \retval 0 if no changelog is needed or changelog was added properly.
963  * \retval -ve errno if there was a problem
964  */
965 static int mdd_hsm_update_locked(const struct lu_env *env,
966                                  struct md_object *obj,
967                                  const struct lu_buf *buf,
968                                  struct thandle *handle)
969 {
970         struct mdd_thread_info *info = mdd_env_info(env);
971         struct mdd_device      *mdd = mdo2mdd(obj);
972         struct mdd_object      *mdd_obj = md2mdd_obj(obj);
973         struct lu_buf          *current_buf;
974         struct md_hsm          *current_mh;
975         struct md_hsm          *new_mh;
976         int                     rc;
977         ENTRY;
978
979         OBD_ALLOC_PTR(current_mh);
980         if (current_mh == NULL)
981                 RETURN(-ENOMEM);
982
983         /* Read HSM attrs from disk */
984         CLASSERT(sizeof(struct hsm_attrs) <= sizeof(info->mti_xattr_buf));
985         current_buf = mdd_buf_get(env, info->mti_xattr_buf,
986                                   sizeof(info->mti_xattr_buf));
987         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM);
988         rc = lustre_buf2hsm(current_buf->lb_buf, rc, current_mh);
989         if (rc < 0 && rc != -ENODATA)
990                 GOTO(free, rc);
991         else if (rc == -ENODATA)
992                 current_mh->mh_flags = 0;
993
994         /* Map future HSM xattr */
995         OBD_ALLOC_PTR(new_mh);
996         if (new_mh == NULL)
997                 GOTO(free, rc = -ENOMEM);
998         lustre_buf2hsm(buf->lb_buf, buf->lb_len, new_mh);
999
1000         /* If HSM flags are different, add a changelog */
1001         rc = 0;
1002         if (current_mh->mh_flags != new_mh->mh_flags) {
1003                 int flags = 0;
1004                 hsm_set_cl_event(&flags, HE_STATE);
1005                 if (new_mh->mh_flags & HS_DIRTY)
1006                         hsm_set_cl_flags(&flags, CLF_HSM_DIRTY);
1007
1008                 rc = mdd_changelog_data_store(env, mdd, CL_HSM, flags, mdd_obj,
1009                                               handle);
1010         }
1011
1012         OBD_FREE_PTR(new_mh);
1013 free:
1014         OBD_FREE_PTR(current_mh);
1015         return(rc);
1016 }
1017
1018 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1019                          const char *name);
1020
1021 /**
1022  * The caller should guarantee to update the object ctime
1023  * after xattr_set if needed.
1024  */
1025 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1026                          const struct lu_buf *buf, const char *name,
1027                          int fl)
1028 {
1029         struct mdd_object       *mdd_obj = md2mdd_obj(obj);
1030         struct lu_attr          *attr = MDD_ENV_VAR(env, cattr);
1031         struct mdd_device       *mdd = mdo2mdd(obj);
1032         struct thandle          *handle;
1033         int                      rc;
1034         ENTRY;
1035
1036         rc = mdd_la_get(env, mdd_obj, attr);
1037         if (rc)
1038                 RETURN(rc);
1039
1040         rc = mdd_xattr_sanity_check(env, mdd_obj, attr);
1041         if (rc)
1042                 RETURN(rc);
1043
1044         if (strcmp(name, XATTR_NAME_ACL_ACCESS) == 0 ||
1045             strcmp(name, XATTR_NAME_ACL_DEFAULT) == 0) {
1046                 struct posix_acl *acl;
1047
1048                 /* user may set empty ACL, which should be treated as removing
1049                  * ACL. */
1050                 acl = posix_acl_from_xattr(&init_user_ns, buf->lb_buf,
1051                                            buf->lb_len);
1052                 if (IS_ERR(acl))
1053                         RETURN(PTR_ERR(acl));
1054                 if (acl == NULL) {
1055                         rc = mdd_xattr_del(env, obj, name);
1056                         RETURN(rc);
1057                 }
1058                 posix_acl_release(acl);
1059         }
1060
1061         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1062                 rc = mdd_acl_set(env, mdd_obj, attr, buf, fl);
1063                 RETURN(rc);
1064         }
1065
1066         handle = mdd_trans_create(env, mdd);
1067         if (IS_ERR(handle))
1068                 RETURN(PTR_ERR(handle));
1069
1070         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1071         if (rc)
1072                 GOTO(stop, rc);
1073
1074         rc = mdd_trans_start(env, mdd, handle);
1075         if (rc)
1076                 GOTO(stop, rc);
1077
1078         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1079
1080         if (strcmp(XATTR_NAME_HSM, name) == 0) {
1081                 rc = mdd_hsm_update_locked(env, obj, buf, handle);
1082                 if (rc) {
1083                         mdd_write_unlock(env, mdd_obj);
1084                         GOTO(stop, rc);
1085                 }
1086         }
1087
1088         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle);
1089         mdd_write_unlock(env, mdd_obj);
1090         if (rc)
1091                 GOTO(stop, rc);
1092
1093         if (strcmp(XATTR_NAME_LOV, name) == 0)
1094                 rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, mdd_obj,
1095                                               handle);
1096         else if (strncmp(XATTR_USER_PREFIX, name,
1097                         sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1098             strncmp(XATTR_NAME_POSIX_ACL_ACCESS, name,
1099                     sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1) == 0 ||
1100             strncmp(XATTR_NAME_POSIX_ACL_DEFAULT, name,
1101                     sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1) == 0)
1102                 rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj,
1103                                               handle);
1104
1105 stop:
1106         mdd_trans_stop(env, mdd, rc, handle);
1107
1108         RETURN(rc);
1109 }
1110
1111 static int mdd_declare_xattr_del(const struct lu_env *env,
1112                                  struct mdd_device *mdd,
1113                                  struct mdd_object *obj,
1114                                  const char *name,
1115                                  struct thandle *handle)
1116 {
1117         int rc;
1118
1119         rc = mdo_declare_xattr_del(env, obj, name, handle);
1120         if (rc)
1121                 return rc;
1122
1123         /* Only record system & user xattr changes */
1124         if (strncmp(XATTR_USER_PREFIX, name,
1125                         sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1126                 strncmp(XATTR_NAME_POSIX_ACL_ACCESS, name,
1127                         sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1) == 0 ||
1128                 strncmp(XATTR_NAME_POSIX_ACL_DEFAULT, name,
1129                         sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1) == 0)
1130                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1131
1132         return rc;
1133 }
1134
1135 /**
1136  * The caller should guarantee to update the object ctime
1137  * after xattr_set if needed.
1138  */
1139 static int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1140                          const char *name)
1141 {
1142         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1143         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1144         struct mdd_device *mdd = mdo2mdd(obj);
1145         struct thandle *handle;
1146         int  rc;
1147         ENTRY;
1148
1149         rc = mdd_la_get(env, mdd_obj, attr);
1150         if (rc)
1151                 RETURN(rc);
1152
1153         rc = mdd_xattr_sanity_check(env, mdd_obj, attr);
1154         if (rc)
1155                 RETURN(rc);
1156
1157         handle = mdd_trans_create(env, mdd);
1158         if (IS_ERR(handle))
1159                 RETURN(PTR_ERR(handle));
1160
1161         rc = mdd_declare_xattr_del(env, mdd, mdd_obj, name, handle);
1162         if (rc)
1163                 GOTO(stop, rc);
1164
1165         rc = mdd_trans_start(env, mdd, handle);
1166         if (rc)
1167                 GOTO(stop, rc);
1168
1169         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1170         rc = mdo_xattr_del(env, mdd_obj, name, handle);
1171         mdd_write_unlock(env, mdd_obj);
1172         if (rc)
1173                 GOTO(stop, rc);
1174
1175         /* Only record system & user xattr changes */
1176         if (strncmp(XATTR_USER_PREFIX, name,
1177                                   sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1178                           strncmp(XATTR_NAME_POSIX_ACL_ACCESS, name,
1179                                   sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1) == 0 ||
1180                           strncmp(XATTR_NAME_POSIX_ACL_DEFAULT, name,
1181                                   sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1) == 0)
1182                 rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj,
1183                                               handle);
1184
1185 stop:
1186         mdd_trans_stop(env, mdd, rc, handle);
1187
1188         RETURN(rc);
1189 }
1190
1191 /*
1192  * read lov EA of an object
1193  * return the lov EA in an allocated lu_buf
1194  */
1195 int mdd_get_lov_ea(const struct lu_env *env, struct mdd_object *obj,
1196                    struct lu_buf *lmm_buf)
1197 {
1198         struct lu_buf   *buf = &mdd_env_info(env)->mti_big_buf;
1199         int              rc, bufsize;
1200         ENTRY;
1201
1202 repeat:
1203         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_LOV);
1204
1205         if (rc == -ERANGE) {
1206                 /* mti_big_buf is allocated but is too small
1207                  * we need to increase it */
1208                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1209                                              buf->lb_len * 2);
1210                 if (buf->lb_buf == NULL)
1211                         GOTO(out, rc = -ENOMEM);
1212                 goto repeat;
1213         }
1214
1215         if (rc < 0)
1216                 RETURN(rc);
1217
1218         if (rc == 0)
1219                 RETURN(-ENODATA);
1220
1221         bufsize = rc;
1222         if (memcmp(buf, &LU_BUF_NULL, sizeof(*buf)) == 0) {
1223                 /* mti_big_buf was not allocated, so we have to
1224                  * allocate it based on the ea size */
1225                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1226                                              bufsize);
1227                 if (buf->lb_buf == NULL)
1228                         GOTO(out, rc = -ENOMEM);
1229                 goto repeat;
1230         }
1231
1232         lu_buf_alloc(lmm_buf, bufsize);
1233         if (lmm_buf->lb_buf == NULL)
1234                 GOTO(out, rc = -ENOMEM);
1235
1236         memcpy(lmm_buf->lb_buf, buf->lb_buf, bufsize);
1237         rc = 0;
1238         EXIT;
1239
1240 out:
1241         if (rc < 0)
1242                 lu_buf_free(lmm_buf);
1243         return rc;
1244 }
1245
1246 static int mdd_xattr_hsm_replace(const struct lu_env *env,
1247                                  struct mdd_object *o, struct lu_buf *buf,
1248                                  struct thandle *handle)
1249 {
1250         struct hsm_attrs *attrs;
1251         __u32 hsm_flags;
1252         int flags = 0;
1253         int rc;
1254         ENTRY;
1255
1256         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
1257                            handle);
1258         if (rc != 0)
1259                 RETURN(rc);
1260
1261         attrs = buf->lb_buf;
1262         hsm_flags = le32_to_cpu(attrs->hsm_flags);
1263         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
1264                 RETURN(0);
1265
1266         /* Add a changelog record for release. */
1267         hsm_set_cl_event(&flags, HE_RELEASE);
1268         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
1269                                       flags, o, handle);
1270         RETURN(rc);
1271 }
1272
1273 /*
1274  *  check if layout swapping between 2 objects is allowed
1275  *  the rules are:
1276  *  - only normal FIDs or non-system IGIFs
1277  *  - same type of objects
1278  *  - same owner/group (so quotas are still valid)
1279  */
1280 static int mdd_layout_swap_allowed(const struct lu_env *env,
1281                                    struct mdd_object *o1,
1282                                    const struct lu_attr *attr1,
1283                                    struct mdd_object *o2,
1284                                    const struct lu_attr *attr2)
1285 {
1286         const struct lu_fid     *fid1, *fid2;
1287         ENTRY;
1288
1289         fid1 = mdo2fid(o1);
1290         fid2 = mdo2fid(o2);
1291
1292         if (!fid_is_norm(fid1) &&
1293             (!fid_is_igif(fid1) || IS_ERR(mdd_links_get(env, o1))))
1294                 RETURN(-EBADF);
1295
1296         if (!fid_is_norm(fid2) &&
1297             (!fid_is_igif(fid2) || IS_ERR(mdd_links_get(env, o2))))
1298                 RETURN(-EBADF);
1299
1300         if (mdd_object_type(o1) != mdd_object_type(o2)) {
1301                 if (S_ISDIR(mdd_object_type(o1)))
1302                         RETURN(-ENOTDIR);
1303                 if (S_ISREG(mdd_object_type(o1)))
1304                         RETURN(-EISDIR);
1305                 RETURN(-EBADF);
1306         }
1307
1308         if ((attr1->la_uid != attr2->la_uid) ||
1309             (attr1->la_gid != attr2->la_gid))
1310                 RETURN(-EPERM);
1311
1312         RETURN(0);
1313 }
1314
1315 /**
1316  * swap layouts between 2 lustre objects
1317  */
1318 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
1319                             struct md_object *obj2, __u64 flags)
1320 {
1321         struct mdd_thread_info  *info = mdd_env_info(env);
1322         struct mdd_object       *fst_o = md2mdd_obj(obj1);
1323         struct mdd_object       *snd_o = md2mdd_obj(obj2);
1324         struct lu_attr          *fst_la = MDD_ENV_VAR(env, cattr);
1325         struct lu_attr          *snd_la = MDD_ENV_VAR(env, tattr);
1326         struct mdd_device       *mdd = mdo2mdd(obj1);
1327         struct lov_mds_md       *fst_lmm, *snd_lmm;
1328         struct lu_buf           *fst_buf = &info->mti_buf[0];
1329         struct lu_buf           *snd_buf = &info->mti_buf[1];
1330         struct lu_buf           *fst_hsm_buf = &info->mti_buf[2];
1331         struct lu_buf           *snd_hsm_buf = &info->mti_buf[3];
1332         struct ost_id           *saved_oi = NULL;
1333         struct thandle          *handle;
1334         __u16                    fst_gen, snd_gen;
1335         int                      fst_fl;
1336         int                      rc;
1337         int                      rc2;
1338         ENTRY;
1339
1340         CLASSERT(ARRAY_SIZE(info->mti_buf) >= 4);
1341         memset(info->mti_buf, 0, sizeof(info->mti_buf));
1342
1343         /* we have to sort the 2 obj, so locking will always
1344          * be in the same order, even in case of 2 concurrent swaps */
1345         rc = lu_fid_cmp(mdo2fid(fst_o), mdo2fid(snd_o));
1346         if (rc == 0) /* same fid ? */
1347                 RETURN(-EPERM);
1348
1349         if (rc < 0)
1350                 swap(fst_o, snd_o);
1351
1352         rc = mdd_la_get(env, fst_o, fst_la);
1353         if (rc != 0)
1354                 RETURN(rc);
1355
1356         rc = mdd_la_get(env, snd_o, snd_la);
1357         if (rc != 0)
1358                 RETURN(rc);
1359
1360         /* check if layout swapping is allowed */
1361         rc = mdd_layout_swap_allowed(env, fst_o, fst_la, snd_o, snd_la);
1362         if (rc != 0)
1363                 RETURN(rc);
1364
1365         handle = mdd_trans_create(env, mdd);
1366         if (IS_ERR(handle))
1367                 RETURN(PTR_ERR(handle));
1368
1369         /* objects are already sorted */
1370         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
1371         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
1372
1373         rc = mdd_get_lov_ea(env, fst_o, fst_buf);
1374         if (rc < 0 && rc != -ENODATA)
1375                 GOTO(stop, rc);
1376
1377         rc = mdd_get_lov_ea(env, snd_o, snd_buf);
1378         if (rc < 0 && rc != -ENODATA)
1379                 GOTO(stop, rc);
1380
1381         /* swapping 2 non existant layouts is a success */
1382         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
1383                 GOTO(stop, rc = 0);
1384
1385         /* to help inode migration between MDT, it is better to
1386          * start by the no layout file (if one), so we order the swap */
1387         if (snd_buf->lb_buf == NULL) {
1388                 swap(fst_o, snd_o);
1389                 swap(fst_buf, snd_buf);
1390         }
1391
1392         /* lmm and generation layout initialization */
1393         if (fst_buf->lb_buf != NULL) {
1394                 fst_lmm = fst_buf->lb_buf;
1395                 fst_gen = le16_to_cpu(fst_lmm->lmm_layout_gen);
1396                 fst_fl  = LU_XATTR_REPLACE;
1397         } else {
1398                 fst_lmm = NULL;
1399                 fst_gen = 0;
1400                 fst_fl  = LU_XATTR_CREATE;
1401         }
1402
1403         snd_lmm = snd_buf->lb_buf;
1404         snd_gen = le16_to_cpu(snd_lmm->lmm_layout_gen);
1405
1406         /* increase the generation layout numbers */
1407         snd_gen++;
1408         fst_gen++;
1409
1410         /* set the file specific informations in lmm */
1411         if (fst_lmm != NULL) {
1412                 saved_oi = &info->mti_oa.o_oi;
1413
1414                 *saved_oi = fst_lmm->lmm_oi;
1415                 fst_lmm->lmm_layout_gen = cpu_to_le16(snd_gen);
1416                 fst_lmm->lmm_oi = snd_lmm->lmm_oi;
1417                 snd_lmm->lmm_oi = *saved_oi;
1418         } else {
1419                 if (snd_lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V1))
1420                         snd_lmm->lmm_magic = cpu_to_le32(LOV_MAGIC_V1_DEF);
1421                 else if (snd_lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3))
1422                         snd_lmm->lmm_magic = cpu_to_le32(LOV_MAGIC_V3_DEF);
1423                 else
1424                         GOTO(stop, rc = -EPROTO);
1425         }
1426         snd_lmm->lmm_layout_gen = cpu_to_le16(fst_gen);
1427
1428         /* Prepare HSM attribute if it's required */
1429         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1430                 const int buflen = sizeof(struct hsm_attrs);
1431
1432                 lu_buf_alloc(fst_hsm_buf, buflen);
1433                 lu_buf_alloc(snd_hsm_buf, buflen);
1434                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
1435                         GOTO(stop, rc = -ENOMEM);
1436
1437                 /* Read HSM attribute */
1438                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM);
1439                 if (rc < 0)
1440                         GOTO(stop, rc);
1441
1442                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM);
1443                 if (rc < 0)
1444                         GOTO(stop, rc);
1445
1446                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
1447                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1448                                            handle);
1449                 if (rc < 0)
1450                         GOTO(stop, rc);
1451
1452                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
1453                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1454                                            handle);
1455                 if (rc < 0)
1456                         GOTO(stop, rc);
1457         }
1458
1459         /* prepare transaction */
1460         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
1461                                    fst_fl, handle);
1462         if (rc != 0)
1463                 GOTO(stop, rc);
1464
1465         if (fst_buf->lb_buf != NULL)
1466                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
1467                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
1468                                            handle);
1469         else
1470                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
1471                                            handle);
1472         if (rc != 0)
1473                 GOTO(stop, rc);
1474
1475         rc = mdd_trans_start(env, mdd, handle);
1476         if (rc != 0)
1477                 GOTO(stop, rc);
1478
1479         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1480                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
1481                 if (rc < 0)
1482                         GOTO(stop, rc);
1483
1484                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
1485                 if (rc < 0) {
1486                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
1487                                                     handle);
1488                         if (rc2 < 0)
1489                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
1490                                        mdd_obj_dev_name(fst_o),
1491                                        PFID(mdo2fid(fst_o)), rc, rc2);
1492                         GOTO(stop, rc);
1493                 }
1494         }
1495
1496         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle);
1497         if (rc != 0)
1498                 GOTO(stop, rc);
1499
1500         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_MDS_HSM_SWAP_LAYOUTS))) {
1501                 rc = -EOPNOTSUPP;
1502         } else {
1503                 if (fst_buf->lb_buf != NULL)
1504                         rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
1505                                            LU_XATTR_REPLACE, handle);
1506                 else
1507                         rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle);
1508         }
1509
1510         if (rc != 0) {
1511                 int steps = 0;
1512
1513                 /* failure on second file, but first was done, so we have
1514                  * to roll back first. */
1515                 if (fst_buf->lb_buf != NULL) {
1516                         fst_lmm->lmm_oi = *saved_oi;
1517                         fst_lmm->lmm_layout_gen = cpu_to_le16(fst_gen - 1);
1518                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
1519                                             LU_XATTR_REPLACE, handle);
1520                 } else {
1521                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle);
1522                 }
1523                 if (rc2 < 0)
1524                         goto do_lbug;
1525
1526                 ++steps;
1527                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
1528                 if (rc2 < 0)
1529                         goto do_lbug;
1530
1531                 ++steps;
1532                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
1533
1534         do_lbug:
1535                 if (rc2 < 0) {
1536                         /* very bad day */
1537                         CERROR("%s: unable to roll back layout swap. FIDs: "
1538                                DFID" and "DFID "error: %d/%d, steps: %d\n",
1539                                mdd_obj_dev_name(fst_o),
1540                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
1541                                rc, rc2, steps);
1542                         /* a solution to avoid journal commit is to panic,
1543                          * but it has strong consequences so we use LBUG to
1544                          * allow sysdamin to choose to panic or not
1545                          */
1546                         LBUG();
1547                 }
1548                 GOTO(stop, rc);
1549         }
1550
1551         /* Issue one changelog record per file */
1552         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
1553         if (rc)
1554                 GOTO(stop, rc);
1555
1556         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
1557         if (rc)
1558                 GOTO(stop, rc);
1559         EXIT;
1560
1561 stop:
1562         mdd_trans_stop(env, mdd, rc, handle);
1563         mdd_write_unlock(env, snd_o);
1564         mdd_write_unlock(env, fst_o);
1565
1566         lu_buf_free(fst_buf);
1567         lu_buf_free(snd_buf);
1568         lu_buf_free(fst_hsm_buf);
1569         lu_buf_free(snd_hsm_buf);
1570         return rc;
1571 }
1572
1573 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
1574                           struct mdd_object *child, const struct lu_attr *attr,
1575                           const struct md_op_spec *spec,
1576                           struct dt_allocation_hint *hint)
1577 {
1578         struct dt_object *np = parent ?  mdd_object_child(parent) : NULL;
1579         struct dt_object *nc = mdd_object_child(child);
1580
1581         memset(hint, 0, sizeof(*hint));
1582
1583         /* For striped directory, give striping EA to lod_ah_init, which will
1584          * decide the stripe_offset and stripe count by it. */
1585         if (S_ISDIR(attr->la_mode) &&
1586             unlikely(spec != NULL && spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
1587                 hint->dah_eadata = spec->u.sp_ea.eadata;
1588                 hint->dah_eadata_len = spec->u.sp_ea.eadatalen;
1589         } else {
1590                 hint->dah_eadata = NULL;
1591                 hint->dah_eadata_len = 0;
1592         }
1593
1594         CDEBUG(D_INFO, DFID" eadata %p len %d\n", PFID(mdd_object_fid(child)),
1595                hint->dah_eadata, hint->dah_eadata_len);
1596         /* @hint will be initialized by underlying device. */
1597         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
1598 }
1599
1600 /*
1601  * do NOT or the MAY_*'s, you'll get the weakest
1602  */
1603 int accmode(const struct lu_env *env, const struct lu_attr *la, int flags)
1604 {
1605         int res = 0;
1606
1607         /* Sadly, NFSD reopens a file repeatedly during operation, so the
1608          * "acc_mode = 0" allowance for newly-created files isn't honoured.
1609          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
1610          * owner can write to a file even if it is marked readonly to hide
1611          * its brokenness. (bug 5781) */
1612         if (flags & MDS_OPEN_OWNEROVERRIDE) {
1613                 struct lu_ucred *uc = lu_ucred_check(env);
1614
1615                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
1616                         return 0;
1617         }
1618
1619         if (flags & FMODE_READ)
1620                 res |= MAY_READ;
1621         if (flags & (FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
1622                 res |= MAY_WRITE;
1623         if (flags & MDS_FMODE_EXEC)
1624                 res = MAY_EXEC;
1625         return res;
1626 }
1627
1628 static int mdd_open_sanity_check(const struct lu_env *env,
1629                                 struct mdd_object *obj,
1630                                 const struct lu_attr *attr, int flag)
1631 {
1632         int mode, rc;
1633         ENTRY;
1634
1635         /* EEXIST check */
1636         if (mdd_is_dead_obj(obj))
1637                 RETURN(-ENOENT);
1638
1639         if (S_ISLNK(attr->la_mode))
1640                 RETURN(-ELOOP);
1641
1642         mode = accmode(env, attr, flag);
1643
1644         if (S_ISDIR(attr->la_mode) && (mode & MAY_WRITE))
1645                 RETURN(-EISDIR);
1646
1647         if (!(flag & MDS_OPEN_CREATED)) {
1648                 rc = mdd_permission_internal(env, obj, attr, mode);
1649                 if (rc)
1650                         RETURN(rc);
1651         }
1652
1653         if (S_ISFIFO(attr->la_mode) || S_ISSOCK(attr->la_mode) ||
1654             S_ISBLK(attr->la_mode) || S_ISCHR(attr->la_mode))
1655                 flag &= ~MDS_OPEN_TRUNC;
1656
1657         /* For writing append-only file must open it with append mode. */
1658         if (attr->la_flags & LUSTRE_APPEND_FL) {
1659                 if ((flag & FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
1660                         RETURN(-EPERM);
1661                 if (flag & MDS_OPEN_TRUNC)
1662                         RETURN(-EPERM);
1663         }
1664
1665         RETURN(0);
1666 }
1667
1668 static int mdd_open(const struct lu_env *env, struct md_object *obj,
1669                     int flags)
1670 {
1671         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1672         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
1673         int rc = 0;
1674
1675         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1676
1677         rc = mdd_la_get(env, mdd_obj, attr);
1678         if (rc != 0)
1679                 GOTO(out, rc);
1680
1681         rc = mdd_open_sanity_check(env, mdd_obj, attr, flags);
1682         if (rc != 0)
1683                 GOTO(out, rc);
1684
1685         mdd_obj->mod_count++;
1686         EXIT;
1687 out:
1688         mdd_write_unlock(env, mdd_obj);
1689         return rc;
1690 }
1691
1692 static int mdd_declare_close(const struct lu_env *env,
1693                              struct mdd_object *obj,
1694                              struct md_attr *ma,
1695                              struct thandle *handle)
1696 {
1697         int rc;
1698
1699         rc = orph_declare_index_delete(env, obj, handle);
1700         if (rc)
1701                 return rc;
1702
1703         return mdo_declare_destroy(env, obj, handle);
1704 }
1705
1706 /*
1707  * No permission check is needed.
1708  */
1709 static int mdd_close(const struct lu_env *env, struct md_object *obj,
1710                      struct md_attr *ma, int mode)
1711 {
1712         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1713         struct mdd_device *mdd = mdo2mdd(obj);
1714         struct thandle    *handle = NULL;
1715         int rc, is_orphan = 0;
1716         ENTRY;
1717
1718         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
1719                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1720                 mdd_obj->mod_count--;
1721                 mdd_write_unlock(env, mdd_obj);
1722
1723                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
1724                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
1725                                "list\n", PFID(mdd_object_fid(mdd_obj)));
1726                 RETURN(0);
1727         }
1728
1729         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
1730          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
1731         /* check without any lock */
1732         is_orphan = mdd_obj->mod_count == 1 &&
1733                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
1734
1735 again:
1736         if (is_orphan) {
1737                 handle = mdd_trans_create(env, mdo2mdd(obj));
1738                 if (IS_ERR(handle))
1739                         RETURN(PTR_ERR(handle));
1740
1741                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
1742                 if (rc)
1743                         GOTO(stop, rc);
1744
1745                 rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1746                 if (rc)
1747                         GOTO(stop, rc);
1748
1749                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
1750                 if (rc)
1751                         GOTO(stop, rc);
1752         }
1753
1754         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1755         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr);
1756         if (rc != 0) {
1757                 CERROR("Failed to get lu_attr of "DFID": %d\n",
1758                        PFID(mdd_object_fid(mdd_obj)), rc);
1759                 GOTO(out, rc);
1760         }
1761
1762         /* check again with lock */
1763         is_orphan = (mdd_obj->mod_count == 1) &&
1764                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
1765                      ma->ma_attr.la_nlink == 0);
1766
1767         if (is_orphan && handle == NULL) {
1768                 mdd_write_unlock(env, mdd_obj);
1769                 goto again;
1770         }
1771
1772         mdd_obj->mod_count--; /*release open count */
1773
1774         if (!is_orphan)
1775                 GOTO(out, rc = 0);
1776
1777         /* Orphan object */
1778         /* NB: Object maybe not in orphan list originally, it is rare case for
1779          * mdd_finish_unlink() failure, in that case, the object doesn't have
1780          * ORPHAN_OBJ flag */
1781         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
1782                 /* remove link to object from orphan index */
1783                 LASSERT(handle != NULL);
1784                 rc = __mdd_orphan_del(env, mdd_obj, handle);
1785                 if (rc != 0) {
1786                         CERROR("%s: unable to delete "DFID" from orphan list: "
1787                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
1788                                PFID(mdd_object_fid(mdd_obj)), rc);
1789                         /* If object was not deleted from orphan list, do not
1790                          * destroy OSS objects, which will be done when next
1791                          * recovery. */
1792                         GOTO(out, rc);
1793                 }
1794
1795                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
1796                        "list, OSS objects to be destroyed.\n",
1797                        PFID(mdd_object_fid(mdd_obj)));
1798         }
1799
1800         rc = mdo_destroy(env, mdd_obj, handle);
1801
1802         if (rc != 0) {
1803                 CERROR("%s: unable to delete "DFID" from orphan list: "
1804                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
1805                        PFID(mdd_object_fid(mdd_obj)), rc);
1806         }
1807         EXIT;
1808
1809 out:
1810         mdd_write_unlock(env, mdd_obj);
1811
1812         if (rc == 0 &&
1813             (mode & (FMODE_WRITE | MDS_OPEN_APPEND | MDS_OPEN_TRUNC)) &&
1814             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
1815                 if (handle == NULL) {
1816                         handle = mdd_trans_create(env, mdo2mdd(obj));
1817                         if (IS_ERR(handle))
1818                                 GOTO(stop, rc = PTR_ERR(handle));
1819
1820                         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL,
1821                                                          handle);
1822                         if (rc)
1823                                 GOTO(stop, rc);
1824
1825                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
1826                         if (rc)
1827                                 GOTO(stop, rc);
1828                 }
1829
1830                 mdd_changelog_data_store(env, mdd, CL_CLOSE, mode,
1831                                          mdd_obj, handle);
1832         }
1833
1834 stop:
1835         if (handle != NULL && !IS_ERR(handle))
1836                 mdd_trans_stop(env, mdd, rc, handle);
1837
1838         return rc;
1839 }
1840
1841 /*
1842  * Permission check is done when open,
1843  * no need check again.
1844  */
1845 static int mdd_readpage_sanity_check(const struct lu_env *env,
1846                                      struct mdd_object *obj)
1847 {
1848         struct dt_object *next = mdd_object_child(obj);
1849         int rc;
1850         ENTRY;
1851
1852         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
1853                 rc = 0;
1854         else
1855                 rc = -ENOTDIR;
1856
1857         RETURN(rc);
1858 }
1859
1860 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
1861                               size_t nob, const struct dt_it_ops *iops,
1862                               struct dt_it *it, __u32 attr, void *arg)
1863 {
1864         struct lu_dirpage       *dp = &lp->lp_dir;
1865         void                    *area = dp;
1866         int                      result;
1867         __u64                    hash = 0;
1868         struct lu_dirent        *ent;
1869         struct lu_dirent        *last = NULL;
1870         struct lu_fid            fid;
1871         int                      first = 1;
1872
1873         if (nob < sizeof(*dp))
1874                 return -EINVAL;
1875
1876         memset(area, 0, sizeof (*dp));
1877         area += sizeof (*dp);
1878         nob  -= sizeof (*dp);
1879
1880         ent  = area;
1881         do {
1882                 int    len;
1883                 size_t recsize;
1884
1885                 len = iops->key_size(env, it);
1886
1887                 /* IAM iterator can return record with zero len. */
1888                 if (len == 0)
1889                         goto next;
1890
1891                 hash = iops->store(env, it);
1892                 if (unlikely(first)) {
1893                         first = 0;
1894                         dp->ldp_hash_start = cpu_to_le64(hash);
1895                 }
1896
1897                 /* calculate max space required for lu_dirent */
1898                 recsize = lu_dirent_calc_size(len, attr);
1899
1900                 if (nob >= recsize) {
1901                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
1902                         if (result == -ESTALE)
1903                                 goto next;
1904                         if (result != 0)
1905                                 goto out;
1906
1907                         /* osd might not able to pack all attributes,
1908                          * so recheck rec length */
1909                         recsize = le16_to_cpu(ent->lde_reclen);
1910
1911                         if (le32_to_cpu(ent->lde_attrs) & LUDA_FID) {
1912                                 fid_le_to_cpu(&fid, &ent->lde_fid);
1913                                 if (fid_is_dot_lustre(&fid))
1914                                         goto next;
1915                         }
1916                 } else {
1917                         result = (last != NULL) ? 0 :-EINVAL;
1918                         goto out;
1919                 }
1920                 last = ent;
1921                 ent = (void *)ent + recsize;
1922                 nob -= recsize;
1923
1924 next:
1925                 result = iops->next(env, it);
1926                 if (result == -ESTALE)
1927                         goto next;
1928         } while (result == 0);
1929
1930 out:
1931         dp->ldp_hash_end = cpu_to_le64(hash);
1932         if (last != NULL) {
1933                 if (last->lde_hash == dp->ldp_hash_end)
1934                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
1935                 last->lde_reclen = 0; /* end mark */
1936         }
1937         if (result > 0)
1938                 /* end of directory */
1939                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
1940         else if (result < 0)
1941                 CWARN("build page failed: %d!\n", result);
1942         return result;
1943 }
1944
1945 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
1946                  const struct lu_rdpg *rdpg)
1947 {
1948         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1949         int rc;
1950         ENTRY;
1951
1952         if (mdd_object_exists(mdd_obj) == 0) {
1953                 CERROR("%s: object "DFID" not found: rc = -2\n",
1954                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
1955                 return -ENOENT;
1956         }
1957
1958         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
1959         rc = mdd_readpage_sanity_check(env, mdd_obj);
1960         if (rc)
1961                 GOTO(out_unlock, rc);
1962
1963         if (mdd_is_dead_obj(mdd_obj)) {
1964                 struct page *pg;
1965                 struct lu_dirpage *dp;
1966
1967                 /*
1968                  * According to POSIX, please do not return any entry to client:
1969                  * even dot and dotdot should not be returned.
1970                  */
1971                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
1972                        PFID(mdd_object_fid(mdd_obj)));
1973
1974                 if (rdpg->rp_count <= 0)
1975                         GOTO(out_unlock, rc = -EFAULT);
1976                 LASSERT(rdpg->rp_pages != NULL);
1977
1978                 pg = rdpg->rp_pages[0];
1979                 dp = (struct lu_dirpage *)kmap(pg);
1980                 memset(dp, 0 , sizeof(struct lu_dirpage));
1981                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
1982                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
1983                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
1984                 kunmap(pg);
1985                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
1986         }
1987
1988         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
1989                            mdd_dir_page_build, NULL);
1990         if (rc >= 0) {
1991                 struct lu_dirpage       *dp;
1992
1993                 dp = kmap(rdpg->rp_pages[0]);
1994                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
1995                 if (rc == 0) {
1996                         /*
1997                          * No pages were processed, mark this for first page
1998                          * and send back.
1999                          */
2000                         dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
2001                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
2002                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
2003                 }
2004                 kunmap(rdpg->rp_pages[0]);
2005         }
2006
2007         GOTO(out_unlock, rc);
2008 out_unlock:
2009         mdd_read_unlock(env, mdd_obj);
2010         return rc;
2011 }
2012
2013 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
2014 {
2015         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2016
2017         if (mdd_object_exists(mdd_obj) == 0) {
2018                 int rc = -ENOENT;
2019
2020                 CERROR("%s: object "DFID" not found: rc = %d\n",
2021                        mdd_obj_dev_name(mdd_obj),
2022                        PFID(mdd_object_fid(mdd_obj)), rc);
2023                 return rc;
2024         }
2025         return dt_object_sync(env, mdd_object_child(mdd_obj),
2026                               0, OBD_OBJECT_EOF);
2027 }
2028
2029 static int mdd_object_lock(const struct lu_env *env,
2030                            struct md_object *obj,
2031                            struct lustre_handle *lh,
2032                            struct ldlm_enqueue_info *einfo,
2033                            union ldlm_policy_data *policy)
2034 {
2035         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2036         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
2037                               einfo, policy);
2038 }
2039
2040 static int mdd_object_unlock(const struct lu_env *env,
2041                              struct md_object *obj,
2042                              struct ldlm_enqueue_info *einfo,
2043                              union ldlm_policy_data *policy)
2044 {
2045         struct mdd_object *mdd_obj = md2mdd_obj(obj);
2046         return dt_object_unlock(env, mdd_object_child(mdd_obj), einfo, policy);
2047 }
2048
2049 const struct md_object_operations mdd_obj_ops = {
2050         .moo_permission         = mdd_permission,
2051         .moo_attr_get           = mdd_attr_get,
2052         .moo_attr_set           = mdd_attr_set,
2053         .moo_xattr_get          = mdd_xattr_get,
2054         .moo_xattr_set          = mdd_xattr_set,
2055         .moo_xattr_list         = mdd_xattr_list,
2056         .moo_invalidate         = mdd_invalidate,
2057         .moo_xattr_del          = mdd_xattr_del,
2058         .moo_swap_layouts       = mdd_swap_layouts,
2059         .moo_open               = mdd_open,
2060         .moo_close              = mdd_close,
2061         .moo_readpage           = mdd_readpage,
2062         .moo_readlink           = mdd_readlink,
2063         .moo_changelog          = mdd_changelog,
2064         .moo_object_sync        = mdd_object_sync,
2065         .moo_object_lock        = mdd_object_lock,
2066         .moo_object_unlock      = mdd_object_unlock,
2067 };