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