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