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