Whamcloud - gitweb
99102ea12904f421df52f94dca4c99c1ea04496a
[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 struct kmem_cache *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[0];
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[0];
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, __GFP_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;
968         struct md_hsm          *current_mh;
969         struct md_hsm          *new_mh;
970         int                     rc;
971         ENTRY;
972
973         OBD_ALLOC_PTR(current_mh);
974         if (current_mh == NULL)
975                 RETURN(-ENOMEM);
976
977         /* Read HSM attrs from disk */
978         CLASSERT(sizeof(struct hsm_attrs) <= sizeof(info->mti_xattr_buf));
979         current_buf = mdd_buf_get(env, info->mti_xattr_buf,
980                                   sizeof(info->mti_xattr_buf));
981         rc = mdo_xattr_get(env, mdd_obj, current_buf, XATTR_NAME_HSM,
982                            mdd_object_capa(env, mdd_obj));
983         rc = lustre_buf2hsm(current_buf->lb_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  * The caller should guarantee to update the object ctime
1015  * after xattr_set if needed.
1016  */
1017 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
1018                          const struct lu_buf *buf, const char *name,
1019                          int fl)
1020 {
1021         struct mdd_object       *mdd_obj = md2mdd_obj(obj);
1022         struct mdd_device       *mdd = mdo2mdd(obj);
1023         struct thandle          *handle;
1024         int                      rc;
1025         ENTRY;
1026
1027         if (!strcmp(name, XATTR_NAME_ACL_ACCESS)) {
1028                 rc = mdd_acl_set(env, mdd_obj, buf, fl);
1029                 RETURN(rc);
1030         }
1031
1032         rc = mdd_xattr_sanity_check(env, mdd_obj);
1033         if (rc)
1034                 RETURN(rc);
1035
1036         handle = mdd_trans_create(env, mdd);
1037         if (IS_ERR(handle))
1038                 RETURN(PTR_ERR(handle));
1039
1040         rc = mdd_declare_xattr_set(env, mdd, mdd_obj, buf, name, fl, handle);
1041         if (rc)
1042                 GOTO(stop, rc);
1043
1044         rc = mdd_trans_start(env, mdd, handle);
1045         if (rc)
1046                 GOTO(stop, rc);
1047
1048         /* security-replated changes may require sync */
1049         if (!strcmp(name, XATTR_NAME_ACL_ACCESS))
1050                 handle->th_sync |= !!mdd->mdd_sync_permission;
1051
1052         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1053
1054         if (strncmp(XATTR_NAME_HSM, name, sizeof(XATTR_NAME_HSM) - 1) == 0) {
1055                 rc = mdd_hsm_update_locked(env, obj, buf, handle);
1056                 if (rc) {
1057                         mdd_write_unlock(env, mdd_obj);
1058                         GOTO(stop, rc);
1059                 }
1060         }
1061
1062         rc = mdo_xattr_set(env, mdd_obj, buf, name, fl, handle,
1063                            mdd_object_capa(env, mdd_obj));
1064         mdd_write_unlock(env, mdd_obj);
1065         if (rc)
1066                 GOTO(stop, rc);
1067
1068         if (strncmp(XATTR_NAME_LOV, name, sizeof(XATTR_NAME_LOV) - 1) == 0)
1069                 rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, mdd_obj,
1070                                               handle);
1071         else if (strncmp(XATTR_USER_PREFIX, name,
1072                         sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1073             strncmp(POSIX_ACL_XATTR_ACCESS, name,
1074                         sizeof(POSIX_ACL_XATTR_ACCESS) - 1) == 0 ||
1075             strncmp(POSIX_ACL_XATTR_DEFAULT, name,
1076                         sizeof(POSIX_ACL_XATTR_DEFAULT) - 1) == 0)
1077                 rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj,
1078                                               handle);
1079
1080 stop:
1081         mdd_trans_stop(env, mdd, rc, handle);
1082
1083         RETURN(rc);
1084 }
1085
1086 static int mdd_declare_xattr_del(const struct lu_env *env,
1087                                  struct mdd_device *mdd,
1088                                  struct mdd_object *obj,
1089                                  const char *name,
1090                                  struct thandle *handle)
1091 {
1092         int rc;
1093
1094         rc = mdo_declare_xattr_del(env, obj, name, handle);
1095         if (rc)
1096                 return rc;
1097
1098         /* Only record user xattr changes */
1099         if ((strncmp("user.", name, 5) == 0))
1100                 rc = mdd_declare_changelog_store(env, mdd, NULL, handle);
1101
1102         return rc;
1103 }
1104
1105 /**
1106  * The caller should guarantee to update the object ctime
1107  * after xattr_set if needed.
1108  */
1109 int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1110                   const char *name)
1111 {
1112         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1113         struct mdd_device *mdd = mdo2mdd(obj);
1114         struct thandle *handle;
1115         int  rc;
1116         ENTRY;
1117
1118         rc = mdd_xattr_sanity_check(env, mdd_obj);
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_object_capa(env, mdd_obj));
1137         mdd_write_unlock(env, mdd_obj);
1138         if (rc)
1139                 GOTO(stop, rc);
1140
1141         /* Only record system & user xattr changes */
1142         if (strncmp(XATTR_USER_PREFIX, name,
1143                                   sizeof(XATTR_USER_PREFIX) - 1) == 0 ||
1144                           strncmp(POSIX_ACL_XATTR_ACCESS, name,
1145                                   sizeof(POSIX_ACL_XATTR_ACCESS) - 1) == 0 ||
1146                           strncmp(POSIX_ACL_XATTR_DEFAULT, name,
1147                                   sizeof(POSIX_ACL_XATTR_DEFAULT) - 1) == 0)
1148                 rc = mdd_changelog_data_store(env, mdd, CL_XATTR, 0, mdd_obj,
1149                                               handle);
1150
1151 stop:
1152         mdd_trans_stop(env, mdd, rc, handle);
1153
1154         RETURN(rc);
1155 }
1156
1157 /*
1158  * read lov EA of an object
1159  * return the lov EA in an allocated lu_buf
1160  */
1161 static int mdd_get_lov_ea(const struct lu_env *env,
1162                           struct mdd_object *obj,
1163                           struct lu_buf *lmm_buf)
1164 {
1165         struct lu_buf   *buf = &mdd_env_info(env)->mti_big_buf;
1166         int              rc, sz;
1167         ENTRY;
1168
1169 repeat:
1170         rc = mdo_xattr_get(env, obj, buf, XATTR_NAME_LOV,
1171                            mdd_object_capa(env, obj));
1172
1173         if (rc == -ERANGE) {
1174                 /* mti_big_buf is allocated but is too small
1175                  * we need to increase it */
1176                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1177                                              buf->lb_len * 2);
1178                 if (buf->lb_buf == NULL)
1179                         GOTO(out, rc = -ENOMEM);
1180                 goto repeat;
1181         }
1182
1183         if (rc < 0)
1184                 GOTO(out, rc);
1185
1186         if (rc == 0)
1187                 GOTO(out, rc = -ENODATA);
1188
1189         sz = rc;
1190         if (memcmp(buf, &LU_BUF_NULL, sizeof(*buf)) == 0) {
1191                 /* mti_big_buf was not allocated, so we have to
1192                  * allocate it based on the ea size */
1193                 buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf,
1194                                              sz);
1195                 if (buf->lb_buf == NULL)
1196                         GOTO(out, rc = -ENOMEM);
1197                 goto repeat;
1198         }
1199
1200         lu_buf_alloc(lmm_buf, sz);
1201         if (lmm_buf->lb_buf == NULL)
1202                 GOTO(out, rc = -ENOMEM);
1203
1204         memcpy(lmm_buf->lb_buf, buf->lb_buf, sz);
1205         rc = 0;
1206         EXIT;
1207
1208 out:
1209         if (rc < 0)
1210                 lu_buf_free(lmm_buf);
1211         return rc;
1212 }
1213
1214 static int mdd_xattr_hsm_replace(const struct lu_env *env,
1215                                  struct mdd_object *o, struct lu_buf *buf,
1216                                  struct thandle *handle)
1217 {
1218         struct hsm_attrs *attrs;
1219         __u32 hsm_flags;
1220         int flags = 0;
1221         int rc;
1222         ENTRY;
1223
1224         rc = mdo_xattr_set(env, o, buf, XATTR_NAME_HSM, LU_XATTR_REPLACE,
1225                            handle, mdd_object_capa(env, o));
1226         if (rc != 0)
1227                 RETURN(rc);
1228
1229         attrs = buf->lb_buf;
1230         hsm_flags = le32_to_cpu(attrs->hsm_flags);
1231         if (!(hsm_flags & HS_RELEASED) || mdd_is_dead_obj(o))
1232                 RETURN(0);
1233
1234         /* Add a changelog record for release. */
1235         hsm_set_cl_event(&flags, HE_RELEASE);
1236         rc = mdd_changelog_data_store(env, mdo2mdd(&o->mod_obj), CL_HSM,
1237                                       flags, o, handle);
1238         RETURN(rc);
1239 }
1240
1241 /*
1242  *  check if layout swapping between 2 objects is allowed
1243  *  the rules are:
1244  *  - same type of objects
1245  *  - same owner/group (so quotas are still valid)
1246  */
1247 static int mdd_layout_swap_allowed(const struct lu_env *env,
1248                                    struct mdd_object *o1,
1249                                    struct mdd_object *o2)
1250 {
1251         const struct lu_fid     *fid1, *fid2;
1252         __u32                    uid, gid;
1253         struct lu_attr          *tmp_la = &mdd_env_info(env)->mti_la;
1254         int                      rc;
1255         ENTRY;
1256
1257         fid1 = mdo2fid(o1);
1258         fid2 = mdo2fid(o2);
1259
1260         if (!fid_is_norm(fid1) || !fid_is_norm(fid2) ||
1261             (mdd_object_type(o1) != mdd_object_type(o2)))
1262                 RETURN(-EPERM);
1263
1264         tmp_la->la_valid = 0;
1265         rc = mdd_la_get(env, o1, tmp_la, BYPASS_CAPA);
1266         if (rc)
1267                 RETURN(rc);
1268         uid = tmp_la->la_uid;
1269         gid = tmp_la->la_gid;
1270
1271         tmp_la->la_valid = 0;
1272         rc = mdd_la_get(env, o2, tmp_la, BYPASS_CAPA);
1273         if (rc)
1274                 RETURN(rc);
1275
1276         if ((uid != tmp_la->la_uid) || (gid != tmp_la->la_gid))
1277                 RETURN(-EPERM);
1278
1279         RETURN(0);
1280 }
1281
1282 /**
1283  * swap layouts between 2 lustre objects
1284  */
1285 static int mdd_swap_layouts(const struct lu_env *env, struct md_object *obj1,
1286                             struct md_object *obj2, __u64 flags)
1287 {
1288         struct mdd_thread_info  *info = mdd_env_info(env);
1289         struct mdd_object       *fst_o = md2mdd_obj(obj1);
1290         struct mdd_object       *snd_o = md2mdd_obj(obj2);
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         /* check if layout swapping is allowed */
1318         rc = mdd_layout_swap_allowed(env, fst_o, snd_o);
1319         if (rc != 0)
1320                 RETURN(rc);
1321
1322         handle = mdd_trans_create(env, mdd);
1323         if (IS_ERR(handle))
1324                 RETURN(PTR_ERR(handle));
1325
1326         /* objects are already sorted */
1327         mdd_write_lock(env, fst_o, MOR_TGT_CHILD);
1328         mdd_write_lock(env, snd_o, MOR_TGT_CHILD);
1329
1330         rc = mdd_get_lov_ea(env, fst_o, fst_buf);
1331         if (rc < 0 && rc != -ENODATA)
1332                 GOTO(stop, rc);
1333
1334         rc = mdd_get_lov_ea(env, snd_o, snd_buf);
1335         if (rc < 0 && rc != -ENODATA)
1336                 GOTO(stop, rc);
1337
1338         /* swapping 2 non existant layouts is a success */
1339         if (fst_buf->lb_buf == NULL && snd_buf->lb_buf == NULL)
1340                 GOTO(stop, rc = 0);
1341
1342         /* to help inode migration between MDT, it is better to
1343          * start by the no layout file (if one), so we order the swap */
1344         if (snd_buf->lb_buf == NULL) {
1345                 swap(fst_o, snd_o);
1346                 swap(fst_buf, snd_buf);
1347         }
1348
1349         /* lmm and generation layout initialization */
1350         if (fst_buf->lb_buf != NULL) {
1351                 fst_lmm = fst_buf->lb_buf;
1352                 fst_gen = le16_to_cpu(fst_lmm->lmm_layout_gen);
1353                 fst_fl  = LU_XATTR_REPLACE;
1354         } else {
1355                 fst_lmm = NULL;
1356                 fst_gen = 0;
1357                 fst_fl  = LU_XATTR_CREATE;
1358         }
1359
1360         LASSERT(snd_buf->lb_buf != NULL);
1361         snd_lmm = snd_buf->lb_buf;
1362         snd_gen = le16_to_cpu(snd_lmm->lmm_layout_gen);
1363
1364         /* increase the generation layout numbers */
1365         snd_gen++;
1366         fst_gen++;
1367
1368         /* set the file specific informations in lmm */
1369         if (fst_lmm != NULL) {
1370                 saved_oi = &info->mti_oa.o_oi;
1371
1372                 *saved_oi = fst_lmm->lmm_oi;
1373                 fst_lmm->lmm_layout_gen = cpu_to_le16(snd_gen);
1374                 fst_lmm->lmm_oi = snd_lmm->lmm_oi;
1375                 snd_lmm->lmm_oi = *saved_oi;
1376         } else {
1377                 if (snd_lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V1))
1378                         snd_lmm->lmm_magic = cpu_to_le32(LOV_MAGIC_V1_DEF);
1379                 else if (snd_lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3))
1380                         snd_lmm->lmm_magic = cpu_to_le32(LOV_MAGIC_V3_DEF);
1381                 else
1382                         GOTO(stop, rc = -EPROTO);
1383         }
1384         snd_lmm->lmm_layout_gen = cpu_to_le16(fst_gen);
1385
1386         /* Prepare HSM attribute if it's required */
1387         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1388                 const int buflen = sizeof(struct hsm_attrs);
1389
1390                 lu_buf_alloc(fst_hsm_buf, buflen);
1391                 lu_buf_alloc(snd_hsm_buf, buflen);
1392                 if (fst_hsm_buf->lb_buf == NULL || snd_hsm_buf->lb_buf == NULL)
1393                         GOTO(stop, rc = -ENOMEM);
1394
1395                 /* Read HSM attribute */
1396                 rc = mdo_xattr_get(env, fst_o, fst_hsm_buf, XATTR_NAME_HSM,
1397                                    BYPASS_CAPA);
1398                 if (rc < 0)
1399                         GOTO(stop, rc);
1400
1401                 rc = mdo_xattr_get(env, snd_o, snd_hsm_buf, XATTR_NAME_HSM,
1402                                    BYPASS_CAPA);
1403                 if (rc < 0)
1404                         GOTO(stop, rc);
1405
1406                 rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_hsm_buf,
1407                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1408                                            handle);
1409                 if (rc < 0)
1410                         GOTO(stop, rc);
1411
1412                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_hsm_buf,
1413                                            XATTR_NAME_HSM, LU_XATTR_REPLACE,
1414                                            handle);
1415                 if (rc < 0)
1416                         GOTO(stop, rc);
1417         }
1418
1419         /* prepare transaction */
1420         rc = mdd_declare_xattr_set(env, mdd, fst_o, snd_buf, XATTR_NAME_LOV,
1421                                    fst_fl, handle);
1422         if (rc != 0)
1423                 GOTO(stop, rc);
1424
1425         if (fst_buf->lb_buf != NULL)
1426                 rc = mdd_declare_xattr_set(env, mdd, snd_o, fst_buf,
1427                                            XATTR_NAME_LOV, LU_XATTR_REPLACE,
1428                                            handle);
1429         else
1430                 rc = mdd_declare_xattr_del(env, mdd, snd_o, XATTR_NAME_LOV,
1431                                            handle);
1432         if (rc != 0)
1433                 GOTO(stop, rc);
1434
1435         rc = mdd_trans_start(env, mdd, handle);
1436         if (rc != 0)
1437                 GOTO(stop, rc);
1438
1439         if (flags & SWAP_LAYOUTS_MDS_HSM) {
1440                 rc = mdd_xattr_hsm_replace(env, fst_o, snd_hsm_buf, handle);
1441                 if (rc < 0)
1442                         GOTO(stop, rc);
1443
1444                 rc = mdd_xattr_hsm_replace(env, snd_o, fst_hsm_buf, handle);
1445                 if (rc < 0) {
1446                         rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf,
1447                                                     handle);
1448                         if (rc2 < 0)
1449                                 CERROR("%s: restore "DFID" HSM error: %d/%d\n",
1450                                        mdd_obj_dev_name(fst_o),
1451                                        PFID(mdo2fid(fst_o)), rc, rc2);
1452                         GOTO(stop, rc);
1453                 }
1454         }
1455
1456         rc = mdo_xattr_set(env, fst_o, snd_buf, XATTR_NAME_LOV, fst_fl, handle,
1457                            mdd_object_capa(env, fst_o));
1458         if (rc != 0)
1459                 GOTO(stop, rc);
1460
1461         if (fst_buf->lb_buf != NULL)
1462                 rc = mdo_xattr_set(env, snd_o, fst_buf, XATTR_NAME_LOV,
1463                                    LU_XATTR_REPLACE, handle,
1464                                    mdd_object_capa(env, snd_o));
1465         else
1466                 rc = mdo_xattr_del(env, snd_o, XATTR_NAME_LOV, handle,
1467                                    mdd_object_capa(env, snd_o));
1468         if (rc != 0) {
1469                 int steps = 0;
1470
1471                 /* failure on second file, but first was done, so we have
1472                  * to roll back first. */
1473                 if (fst_buf->lb_buf != NULL) {
1474                         fst_lmm->lmm_oi = *saved_oi;
1475                         fst_lmm->lmm_layout_gen = cpu_to_le16(fst_gen - 1);
1476                         rc2 = mdo_xattr_set(env, fst_o, fst_buf, XATTR_NAME_LOV,
1477                                             LU_XATTR_REPLACE, handle,
1478                                             mdd_object_capa(env, fst_o));
1479                 } else {
1480                         rc2 = mdo_xattr_del(env, fst_o, XATTR_NAME_LOV, handle,
1481                                             mdd_object_capa(env, fst_o));
1482                 }
1483                 if (rc2 < 0)
1484                         goto do_lbug;
1485
1486                 ++steps;
1487                 rc2 = mdd_xattr_hsm_replace(env, fst_o, fst_hsm_buf, handle);
1488                 if (rc2 < 0)
1489                         goto do_lbug;
1490
1491                 ++steps;
1492                 rc2 = mdd_xattr_hsm_replace(env, snd_o, snd_hsm_buf, handle);
1493
1494         do_lbug:
1495                 if (rc2 < 0) {
1496                         /* very bad day */
1497                         CERROR("%s: unable to roll back layout swap. FIDs: "
1498                                DFID" and "DFID "error: %d/%d, steps: %d\n",
1499                                mdd_obj_dev_name(fst_o),
1500                                PFID(mdo2fid(snd_o)), PFID(mdo2fid(fst_o)),
1501                                rc, rc2, steps);
1502                         /* a solution to avoid journal commit is to panic,
1503                          * but it has strong consequences so we use LBUG to
1504                          * allow sysdamin to choose to panic or not
1505                          */
1506                         LBUG();
1507                 }
1508                 GOTO(stop, rc);
1509         }
1510
1511         /* Issue one changelog record per file */
1512         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, fst_o, handle);
1513         if (rc)
1514                 GOTO(stop, rc);
1515
1516         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, snd_o, handle);
1517         if (rc)
1518                 GOTO(stop, rc);
1519         EXIT;
1520
1521 stop:
1522         mdd_trans_stop(env, mdd, rc, handle);
1523         mdd_write_unlock(env, snd_o);
1524         mdd_write_unlock(env, fst_o);
1525
1526         lu_buf_free(fst_buf);
1527         lu_buf_free(snd_buf);
1528         lu_buf_free(fst_hsm_buf);
1529         lu_buf_free(snd_hsm_buf);
1530         return rc;
1531 }
1532
1533 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
1534                 struct mdd_object *child, struct lu_attr *attr)
1535 {
1536         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
1537         struct dt_object *np = parent ? mdd_object_child(parent) : NULL;
1538         struct dt_object *nc = mdd_object_child(child);
1539
1540         /* @hint will be initialized by underlying device. */
1541         nc->do_ops->do_ah_init(env, hint, np, nc, attr->la_mode & S_IFMT);
1542 }
1543
1544 /*
1545  * do NOT or the MAY_*'s, you'll get the weakest
1546  */
1547 int accmode(const struct lu_env *env, struct lu_attr *la, int flags)
1548 {
1549         int res = 0;
1550
1551         /* Sadly, NFSD reopens a file repeatedly during operation, so the
1552          * "acc_mode = 0" allowance for newly-created files isn't honoured.
1553          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
1554          * owner can write to a file even if it is marked readonly to hide
1555          * its brokenness. (bug 5781) */
1556         if (flags & MDS_OPEN_OWNEROVERRIDE) {
1557                 struct lu_ucred *uc = lu_ucred_check(env);
1558
1559                 if ((uc == NULL) || (la->la_uid == uc->uc_fsuid))
1560                         return 0;
1561         }
1562
1563         if (flags & FMODE_READ)
1564                 res |= MAY_READ;
1565         if (flags & (FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
1566                 res |= MAY_WRITE;
1567         if (flags & MDS_FMODE_EXEC)
1568                 res = MAY_EXEC;
1569         return res;
1570 }
1571
1572 static int mdd_open_sanity_check(const struct lu_env *env,
1573                                  struct mdd_object *obj, int flag)
1574 {
1575         struct lu_attr *tmp_la = &mdd_env_info(env)->mti_la;
1576         int mode, rc;
1577         ENTRY;
1578
1579         /* EEXIST check */
1580         if (mdd_is_dead_obj(obj))
1581                 RETURN(-ENOENT);
1582
1583         rc = mdd_la_get(env, obj, tmp_la, BYPASS_CAPA);
1584         if (rc)
1585                RETURN(rc);
1586
1587         if (S_ISLNK(tmp_la->la_mode))
1588                 RETURN(-ELOOP);
1589
1590         mode = accmode(env, tmp_la, flag);
1591
1592         if (S_ISDIR(tmp_la->la_mode) && (mode & MAY_WRITE))
1593                 RETURN(-EISDIR);
1594
1595         if (!(flag & MDS_OPEN_CREATED)) {
1596                 rc = mdd_permission_internal(env, obj, tmp_la, mode);
1597                 if (rc)
1598                         RETURN(rc);
1599         }
1600
1601         if (S_ISFIFO(tmp_la->la_mode) || S_ISSOCK(tmp_la->la_mode) ||
1602             S_ISBLK(tmp_la->la_mode) || S_ISCHR(tmp_la->la_mode))
1603                 flag &= ~MDS_OPEN_TRUNC;
1604
1605         /* For writing append-only file must open it with append mode. */
1606         if (mdd_is_append(obj)) {
1607                 if ((flag & FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
1608                         RETURN(-EPERM);
1609                 if (flag & MDS_OPEN_TRUNC)
1610                         RETURN(-EPERM);
1611         }
1612
1613 #if 0
1614         /*
1615          * Now, flag -- O_NOATIME does not be packed by client.
1616          */
1617         if (flag & O_NOATIME) {
1618                 struct lu_ucred *uc = lu_ucred(env);
1619
1620                 if (uc && ((uc->uc_valid == UCRED_OLD) ||
1621                            (uc->uc_valid == UCRED_NEW)) &&
1622                     (uc->uc_fsuid != tmp_la->la_uid) &&
1623                     !md_capable(uc, CFS_CAP_FOWNER))
1624                         RETURN(-EPERM);
1625         }
1626 #endif
1627
1628         RETURN(0);
1629 }
1630
1631 static int mdd_open(const struct lu_env *env, struct md_object *obj,
1632                     int flags)
1633 {
1634         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1635         int rc = 0;
1636
1637         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1638
1639         rc = mdd_open_sanity_check(env, mdd_obj, flags);
1640         if (rc == 0)
1641                 mdd_obj->mod_count++;
1642
1643         mdd_write_unlock(env, mdd_obj);
1644         return rc;
1645 }
1646
1647 int mdd_declare_object_kill(const struct lu_env *env, struct mdd_object *obj,
1648                             struct md_attr *ma, struct thandle *handle)
1649 {
1650         return mdo_declare_destroy(env, obj, handle);
1651 }
1652
1653 /* return md_attr back,
1654  * if it is last unlink then return lov ea + llog cookie*/
1655 int mdd_object_kill(const struct lu_env *env, struct mdd_object *obj,
1656                     struct md_attr *ma, struct thandle *handle)
1657 {
1658         int rc;
1659         ENTRY;
1660
1661         rc = mdo_destroy(env, obj, handle);
1662
1663         RETURN(rc);
1664 }
1665
1666 static int mdd_declare_close(const struct lu_env *env,
1667                              struct mdd_object *obj,
1668                              struct md_attr *ma,
1669                              struct thandle *handle)
1670 {
1671         int rc;
1672
1673         rc = orph_declare_index_delete(env, obj, handle);
1674         if (rc)
1675                 return rc;
1676
1677         return mdo_declare_destroy(env, obj, handle);
1678 }
1679
1680 /*
1681  * No permission check is needed.
1682  */
1683 static int mdd_close(const struct lu_env *env, struct md_object *obj,
1684                      struct md_attr *ma, int mode)
1685 {
1686         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1687         struct mdd_device *mdd = mdo2mdd(obj);
1688         struct thandle    *handle = NULL;
1689         int rc, is_orphan = 0;
1690         ENTRY;
1691
1692         if (ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_KEEP_ORPHAN) {
1693                 mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1694                 mdd_obj->mod_count--;
1695                 mdd_write_unlock(env, mdd_obj);
1696
1697                 if (mdd_obj->mod_flags & ORPHAN_OBJ && !mdd_obj->mod_count)
1698                         CDEBUG(D_HA, "Object "DFID" is retained in orphan "
1699                                "list\n", PFID(mdd_object_fid(mdd_obj)));
1700                 RETURN(0);
1701         }
1702
1703         /* mdd_finish_unlink() will always set orphan object as DEAD_OBJ, but
1704          * it might fail to add the object to orphan list (w/o ORPHAN_OBJ). */
1705         /* check without any lock */
1706         is_orphan = mdd_obj->mod_count == 1 &&
1707                     (mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0;
1708
1709 again:
1710         if (is_orphan) {
1711                 handle = mdd_trans_create(env, mdo2mdd(obj));
1712                 if (IS_ERR(handle))
1713                         RETURN(PTR_ERR(handle));
1714
1715                 rc = mdd_declare_close(env, mdd_obj, ma, handle);
1716                 if (rc)
1717                         GOTO(stop, rc);
1718
1719                 rc = mdd_declare_changelog_store(env, mdd, NULL, handle);
1720                 if (rc)
1721                         GOTO(stop, rc);
1722
1723                 rc = mdd_trans_start(env, mdo2mdd(obj), handle);
1724                 if (rc)
1725                         GOTO(stop, rc);
1726         }
1727
1728         mdd_write_lock(env, mdd_obj, MOR_TGT_CHILD);
1729         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr,
1730                         mdd_object_capa(env, mdd_obj));
1731         if (rc != 0) {
1732                 CERROR("Failed to get lu_attr of "DFID": %d\n",
1733                        PFID(mdd_object_fid(mdd_obj)), rc);
1734                 GOTO(out, rc);
1735         }
1736
1737         /* check again with lock */
1738         is_orphan = (mdd_obj->mod_count == 1) &&
1739                     ((mdd_obj->mod_flags & (ORPHAN_OBJ | DEAD_OBJ)) != 0 ||
1740                      ma->ma_attr.la_nlink == 0);
1741
1742         if (is_orphan && handle == NULL) {
1743                 mdd_write_unlock(env, mdd_obj);
1744                 goto again;
1745         }
1746
1747         mdd_obj->mod_count--; /*release open count */
1748
1749         if (!is_orphan)
1750                 GOTO(out, rc = 0);
1751
1752         /* Orphan object */
1753         /* NB: Object maybe not in orphan list originally, it is rare case for
1754          * mdd_finish_unlink() failure, in that case, the object doesn't have
1755          * ORPHAN_OBJ flag */
1756         if ((mdd_obj->mod_flags & ORPHAN_OBJ) != 0) {
1757                 /* remove link to object from orphan index */
1758                 LASSERT(handle != NULL);
1759                 rc = __mdd_orphan_del(env, mdd_obj, handle);
1760                 if (rc != 0) {
1761                         CERROR("%s: unable to delete "DFID" from orphan list: "
1762                                "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
1763                                PFID(mdd_object_fid(mdd_obj)), rc);
1764                         /* If object was not deleted from orphan list, do not
1765                          * destroy OSS objects, which will be done when next
1766                          * recovery. */
1767                         GOTO(out, rc);
1768                 }
1769
1770                 CDEBUG(D_HA, "Object "DFID" is deleted from orphan "
1771                        "list, OSS objects to be destroyed.\n",
1772                        PFID(mdd_object_fid(mdd_obj)));
1773         }
1774
1775         rc = mdo_destroy(env, mdd_obj, handle);
1776
1777         if (rc != 0) {
1778                 CERROR("%s: unable to delete "DFID" from orphan list: "
1779                        "rc = %d\n", lu_dev_name(mdd2lu_dev(mdd)),
1780                        PFID(mdd_object_fid(mdd_obj)), rc);
1781         }
1782         EXIT;
1783
1784 out:
1785         mdd_write_unlock(env, mdd_obj);
1786
1787         if (rc == 0 &&
1788             (mode & (FMODE_WRITE | MDS_OPEN_APPEND | MDS_OPEN_TRUNC)) &&
1789             !(ma->ma_valid & MA_FLAGS && ma->ma_attr_flags & MDS_RECOV_OPEN)) {
1790                 if (handle == NULL) {
1791                         handle = mdd_trans_create(env, mdo2mdd(obj));
1792                         if (IS_ERR(handle))
1793                                 GOTO(stop, rc = PTR_ERR(handle));
1794
1795                         rc = mdd_declare_changelog_store(env, mdd, NULL,
1796                                                          handle);
1797                         if (rc)
1798                                 GOTO(stop, rc);
1799
1800                         rc = mdd_trans_start(env, mdo2mdd(obj), handle);
1801                         if (rc)
1802                                 GOTO(stop, rc);
1803                 }
1804
1805                 mdd_changelog_data_store(env, mdd, CL_CLOSE, mode,
1806                                          mdd_obj, handle);
1807         }
1808
1809 stop:
1810         if (handle != NULL && !IS_ERR(handle))
1811                 mdd_trans_stop(env, mdd, rc, handle);
1812
1813         return rc;
1814 }
1815
1816 /*
1817  * Permission check is done when open,
1818  * no need check again.
1819  */
1820 static int mdd_readpage_sanity_check(const struct lu_env *env,
1821                                      struct mdd_object *obj)
1822 {
1823         struct dt_object *next = mdd_object_child(obj);
1824         int rc;
1825         ENTRY;
1826
1827         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
1828                 rc = 0;
1829         else
1830                 rc = -ENOTDIR;
1831
1832         RETURN(rc);
1833 }
1834
1835 static int mdd_dir_page_build(const struct lu_env *env, union lu_page *lp,
1836                               int nob, const struct dt_it_ops *iops,
1837                               struct dt_it *it, __u32 attr, void *arg)
1838 {
1839         struct lu_dirpage       *dp = &lp->lp_dir;
1840         void                    *area = dp;
1841         int                      result;
1842         __u64                    hash = 0;
1843         struct lu_dirent        *ent;
1844         struct lu_dirent        *last = NULL;
1845         int                      first = 1;
1846
1847         memset(area, 0, sizeof (*dp));
1848         area += sizeof (*dp);
1849         nob  -= sizeof (*dp);
1850
1851         ent  = area;
1852         do {
1853                 int    len;
1854                 int    recsize;
1855
1856                 len = iops->key_size(env, it);
1857
1858                 /* IAM iterator can return record with zero len. */
1859                 if (len == 0)
1860                         goto next;
1861
1862                 hash = iops->store(env, it);
1863                 if (unlikely(first)) {
1864                         first = 0;
1865                         dp->ldp_hash_start = cpu_to_le64(hash);
1866                 }
1867
1868                 /* calculate max space required for lu_dirent */
1869                 recsize = lu_dirent_calc_size(len, attr);
1870
1871                 if (nob >= recsize) {
1872                         result = iops->rec(env, it, (struct dt_rec *)ent, attr);
1873                         if (result == -ESTALE)
1874                                 goto next;
1875                         if (result != 0)
1876                                 goto out;
1877
1878                         /* osd might not able to pack all attributes,
1879                          * so recheck rec length */
1880                         recsize = le16_to_cpu(ent->lde_reclen);
1881                 } else {
1882                         result = (last != NULL) ? 0 :-EINVAL;
1883                         goto out;
1884                 }
1885                 last = ent;
1886                 ent = (void *)ent + recsize;
1887                 nob -= recsize;
1888
1889 next:
1890                 result = iops->next(env, it);
1891                 if (result == -ESTALE)
1892                         goto next;
1893         } while (result == 0);
1894
1895 out:
1896         dp->ldp_hash_end = cpu_to_le64(hash);
1897         if (last != NULL) {
1898                 if (last->lde_hash == dp->ldp_hash_end)
1899                         dp->ldp_flags |= cpu_to_le32(LDF_COLLIDE);
1900                 last->lde_reclen = 0; /* end mark */
1901         }
1902         if (result > 0)
1903                 /* end of directory */
1904                 dp->ldp_hash_end = cpu_to_le64(MDS_DIR_END_OFF);
1905         else if (result < 0)
1906                 CWARN("build page failed: %d!\n", result);
1907         return result;
1908 }
1909
1910 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
1911                  const struct lu_rdpg *rdpg)
1912 {
1913         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1914         int rc;
1915         ENTRY;
1916
1917         if (mdd_object_exists(mdd_obj) == 0) {
1918                 CERROR("%s: object "DFID" not found: rc = -2\n",
1919                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
1920                 return -ENOENT;
1921         }
1922
1923         mdd_read_lock(env, mdd_obj, MOR_TGT_CHILD);
1924         rc = mdd_readpage_sanity_check(env, mdd_obj);
1925         if (rc)
1926                 GOTO(out_unlock, rc);
1927
1928         if (mdd_is_dead_obj(mdd_obj)) {
1929                 struct page *pg;
1930                 struct lu_dirpage *dp;
1931
1932                 /*
1933                  * According to POSIX, please do not return any entry to client:
1934                  * even dot and dotdot should not be returned.
1935                  */
1936                 CDEBUG(D_INODE, "readdir from dead object: "DFID"\n",
1937                        PFID(mdd_object_fid(mdd_obj)));
1938
1939                 if (rdpg->rp_count <= 0)
1940                         GOTO(out_unlock, rc = -EFAULT);
1941                 LASSERT(rdpg->rp_pages != NULL);
1942
1943                 pg = rdpg->rp_pages[0];
1944                 dp = (struct lu_dirpage *)kmap(pg);
1945                 memset(dp, 0 , sizeof(struct lu_dirpage));
1946                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
1947                 dp->ldp_hash_end   = cpu_to_le64(MDS_DIR_END_OFF);
1948                 dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
1949                 kunmap(pg);
1950                 GOTO(out_unlock, rc = LU_PAGE_SIZE);
1951         }
1952
1953         rc = dt_index_walk(env, mdd_object_child(mdd_obj), rdpg,
1954                            mdd_dir_page_build, NULL);
1955         if (rc >= 0) {
1956                 struct lu_dirpage       *dp;
1957
1958                 dp = kmap(rdpg->rp_pages[0]);
1959                 dp->ldp_hash_start = cpu_to_le64(rdpg->rp_hash);
1960                 if (rc == 0) {
1961                         /*
1962                          * No pages were processed, mark this for first page
1963                          * and send back.
1964                          */
1965                         dp->ldp_flags = cpu_to_le32(LDF_EMPTY);
1966                         rc = min_t(unsigned int, LU_PAGE_SIZE, rdpg->rp_count);
1967                 }
1968                 kunmap(rdpg->rp_pages[0]);
1969         }
1970
1971         GOTO(out_unlock, rc);
1972 out_unlock:
1973         mdd_read_unlock(env, mdd_obj);
1974         return rc;
1975 }
1976
1977 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
1978 {
1979         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1980
1981         if (mdd_object_exists(mdd_obj) == 0) {
1982                 CERROR("%s: object "DFID" not found: rc = -2\n",
1983                        mdd_obj_dev_name(mdd_obj),PFID(mdd_object_fid(mdd_obj)));
1984                 return -ENOENT;
1985         }
1986         return dt_object_sync(env, mdd_object_child(mdd_obj));
1987 }
1988
1989 static int mdd_object_lock(const struct lu_env *env,
1990                            struct md_object *obj,
1991                            struct lustre_handle *lh,
1992                            struct ldlm_enqueue_info *einfo,
1993                            void *policy)
1994 {
1995         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1996         LASSERT(mdd_object_exists(mdd_obj));
1997         return dt_object_lock(env, mdd_object_child(mdd_obj), lh,
1998                               einfo, policy);
1999 }
2000
2001 const struct md_object_operations mdd_obj_ops = {
2002         .moo_permission         = mdd_permission,
2003         .moo_attr_get           = mdd_attr_get,
2004         .moo_attr_set           = mdd_attr_set,
2005         .moo_xattr_get          = mdd_xattr_get,
2006         .moo_xattr_set          = mdd_xattr_set,
2007         .moo_xattr_list         = mdd_xattr_list,
2008         .moo_xattr_del          = mdd_xattr_del,
2009         .moo_swap_layouts       = mdd_swap_layouts,
2010         .moo_open               = mdd_open,
2011         .moo_close              = mdd_close,
2012         .moo_readpage           = mdd_readpage,
2013         .moo_readlink           = mdd_readlink,
2014         .moo_changelog          = mdd_changelog,
2015         .moo_capa_get           = mdd_capa_get,
2016         .moo_object_sync        = mdd_object_sync,
2017         .moo_object_lock        = mdd_object_lock,
2018 };