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