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