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