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