Whamcloud - gitweb
39d3814ab6609642f50a91f248aa316d35c8fb1b
[fs/lustre-release.git] / lustre / mdd / mdd_object.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 #ifndef EXPORT_SYMTAB
44 # define EXPORT_SYMTAB
45 #endif
46 #define DEBUG_SUBSYSTEM S_MDS
47
48 #include <linux/module.h>
49 #include <linux/jbd.h>
50 #include <obd.h>
51 #include <obd_class.h>
52 #include <obd_support.h>
53 #include <lprocfs_status.h>
54 /* fid_be_cpu(), fid_cpu_to_be(). */
55 #include <lustre_fid.h>
56
57 #include <linux/ldiskfs_fs.h>
58 #include <lustre_mds.h>
59 #include <lustre/lustre_idl.h>
60
61 #include "mdd_internal.h"
62
63 static struct lu_object_operations mdd_lu_obj_ops;
64
65 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
66                struct lu_attr *la, struct lustre_capa *capa)
67 {
68         LASSERTF(mdd_object_exists(obj), "FID is "DFID"\n",
69                  PFID(mdd_object_fid(obj)));
70         return mdo_attr_get(env, obj, la, capa);
71 }
72
73 static void mdd_flags_xlate(struct mdd_object *obj, __u32 flags)
74 {
75         obj->mod_flags &= ~(APPEND_OBJ|IMMUTE_OBJ);
76
77         if (flags & LUSTRE_APPEND_FL)
78                 obj->mod_flags |= APPEND_OBJ;
79
80         if (flags & LUSTRE_IMMUTABLE_FL)
81                 obj->mod_flags |= IMMUTE_OBJ;
82 }
83
84 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len)
85 {
86         struct lu_buf *buf;
87
88         buf = &mdd_env_info(env)->mti_buf;
89         buf->lb_buf = area;
90         buf->lb_len = len;
91         return buf;
92 }
93
94 struct llog_cookie *mdd_max_cookie_get(const struct lu_env *env,
95                                        struct mdd_device *mdd)
96 {
97         struct mdd_thread_info *mti = mdd_env_info(env);
98         int                     max_cookie_size;
99
100         max_cookie_size = mdd_lov_cookiesize(env, mdd);
101         if (unlikely(mti->mti_max_cookie_size < max_cookie_size)) {
102                 if (mti->mti_max_cookie)
103                         OBD_FREE(mti->mti_max_cookie, mti->mti_max_cookie_size);
104                 mti->mti_max_cookie = NULL;
105                 mti->mti_max_cookie_size = 0;
106         }
107         if (unlikely(mti->mti_max_cookie == NULL)) {
108                 OBD_ALLOC(mti->mti_max_cookie, max_cookie_size);
109                 if (unlikely(mti->mti_max_cookie != NULL))
110                         mti->mti_max_cookie_size = max_cookie_size;
111         }
112         return mti->mti_max_cookie;
113 }
114
115 struct lov_mds_md *mdd_max_lmm_get(const struct lu_env *env,
116                                    struct mdd_device *mdd)
117 {
118         struct mdd_thread_info *mti = mdd_env_info(env);
119         int                     max_lmm_size;
120
121         max_lmm_size = mdd_lov_mdsize(env, mdd);
122         if (unlikely(mti->mti_max_lmm_size < max_lmm_size)) {
123                 if (mti->mti_max_lmm)
124                         OBD_FREE(mti->mti_max_lmm, mti->mti_max_lmm_size);
125                 mti->mti_max_lmm = NULL;
126                 mti->mti_max_lmm_size = 0;
127         }
128         if (unlikely(mti->mti_max_lmm == NULL)) {
129                 OBD_ALLOC(mti->mti_max_lmm, max_lmm_size);
130                 if (unlikely(mti->mti_max_lmm != NULL))
131                         mti->mti_max_lmm_size = max_lmm_size;
132         }
133         return mti->mti_max_lmm;
134 }
135
136 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
137                                        const void *area, ssize_t len)
138 {
139         struct lu_buf *buf;
140
141         buf = &mdd_env_info(env)->mti_buf;
142         buf->lb_buf = (void *)area;
143         buf->lb_len = len;
144         return buf;
145 }
146
147 struct mdd_thread_info *mdd_env_info(const struct lu_env *env)
148 {
149         struct mdd_thread_info *info;
150
151         info = lu_context_key_get(&env->le_ctx, &mdd_thread_key);
152         LASSERT(info != NULL);
153         return info;
154 }
155
156 struct lu_object *mdd_object_alloc(const struct lu_env *env,
157                                    const struct lu_object_header *hdr,
158                                    struct lu_device *d)
159 {
160         struct mdd_object *mdd_obj;
161
162         OBD_ALLOC_PTR(mdd_obj);
163         if (mdd_obj != NULL) {
164                 struct lu_object *o;
165
166                 o = mdd2lu_obj(mdd_obj);
167                 lu_object_init(o, NULL, d);
168                 mdd_obj->mod_obj.mo_ops = &mdd_obj_ops;
169                 mdd_obj->mod_obj.mo_dir_ops = &mdd_dir_ops;
170                 mdd_obj->mod_count = 0;
171                 o->lo_ops = &mdd_lu_obj_ops;
172                 return o;
173         } else {
174                 return NULL;
175         }
176 }
177
178 static int mdd_object_init(const struct lu_env *env, struct lu_object *o)
179 {
180         struct mdd_device *d = lu2mdd_dev(o->lo_dev);
181         struct lu_object  *below;
182         struct lu_device  *under;
183         ENTRY;
184
185         under = &d->mdd_child->dd_lu_dev;
186         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
187         mdd_pdlock_init(lu2mdd_obj(o));
188         if (below == NULL)
189                 RETURN(-ENOMEM);
190
191         lu_object_add(o, below);
192         RETURN(0);
193 }
194
195 static int mdd_object_start(const struct lu_env *env, struct lu_object *o)
196 {
197         if (lu_object_exists(o))
198                 return mdd_get_flags(env, lu2mdd_obj(o));
199         else
200                 return 0;
201 }
202
203 static void mdd_object_free(const struct lu_env *env, struct lu_object *o)
204 {
205         struct mdd_object *mdd = lu2mdd_obj(o);
206         
207         lu_object_fini(o);
208         OBD_FREE_PTR(mdd);
209 }
210
211 static int mdd_object_print(const struct lu_env *env, void *cookie,
212                             lu_printer_t p, const struct lu_object *o)
213 {
214         return (*p)(env, cookie, LUSTRE_MDD_NAME"-object@%p", o);
215 }
216
217 /* orphan handling is here */
218 static void mdd_object_delete(const struct lu_env *env,
219                                struct lu_object *o)
220 {
221         struct mdd_object *mdd_obj = lu2mdd_obj(o);
222         struct thandle *handle = NULL;
223         ENTRY;
224
225         if (lu2mdd_dev(o->lo_dev)->mdd_orphans == NULL)
226                 return;
227
228         if (mdd_obj->mod_flags & ORPHAN_OBJ) {
229                 mdd_txn_param_build(env, lu2mdd_dev(o->lo_dev),
230                                     MDD_TXN_INDEX_DELETE_OP);
231                 handle = mdd_trans_start(env, lu2mdd_dev(o->lo_dev));
232                 if (IS_ERR(handle))
233                         CERROR("Cannot get thandle\n");
234                 else {
235                         mdd_write_lock(env, mdd_obj);
236                         /* let's remove obj from the orphan list */
237                         __mdd_orphan_del(env, mdd_obj, handle);
238                         mdd_write_unlock(env, mdd_obj);
239                         mdd_trans_stop(env, lu2mdd_dev(o->lo_dev),
240                                        0, handle);
241                 }
242         }
243 }
244
245 static struct lu_object_operations mdd_lu_obj_ops = {
246         .loo_object_init    = mdd_object_init,
247         .loo_object_start   = mdd_object_start,
248         .loo_object_free    = mdd_object_free,
249         .loo_object_print   = mdd_object_print,
250         .loo_object_delete  = mdd_object_delete
251 };
252
253 struct mdd_object *mdd_object_find(const struct lu_env *env,
254                                    struct mdd_device *d,
255                                    const struct lu_fid *f)
256 {
257         struct lu_object *o, *lo;
258         struct mdd_object *m;
259         ENTRY;
260
261         o = lu_object_find(env, mdd2lu_dev(d)->ld_site, f);
262         if (IS_ERR(o))
263                 m = (struct mdd_object *)o;
264         else {
265                 lo = lu_object_locate(o->lo_header, mdd2lu_dev(d)->ld_type);
266                 /* remote object can't be located and should be put then */
267                 if (lo == NULL)
268                         lu_object_put(env, o);
269                 m = lu2mdd_obj(lo);
270         }
271         RETURN(m);
272 }
273
274 int mdd_get_flags(const struct lu_env *env, struct mdd_object *obj)
275 {
276         struct lu_attr *la = &mdd_env_info(env)->mti_la;
277         int rc;
278
279         ENTRY;
280         rc = mdd_la_get(env, obj, la, BYPASS_CAPA);
281         if (rc == 0) {
282                 mdd_flags_xlate(obj, la->la_flags);
283                 if (S_ISDIR(la->la_mode) && la->la_nlink == 1)
284                         obj->mod_flags |= MNLINK_OBJ;
285         }
286         RETURN(rc);
287 }
288
289 /* get only inode attributes */
290 int mdd_iattr_get(const struct lu_env *env, struct mdd_object *mdd_obj,
291                   struct md_attr *ma)
292 {
293         int rc = 0;
294         ENTRY;
295
296         if (ma->ma_valid & MA_INODE)
297                 RETURN(0);
298
299         rc = mdd_la_get(env, mdd_obj, &ma->ma_attr,
300                           mdd_object_capa(env, mdd_obj));
301         if (rc == 0)
302                 ma->ma_valid |= MA_INODE;
303         RETURN(rc);
304 }
305
306 static int mdd_get_default_md(struct mdd_object *mdd_obj,
307                 struct lov_mds_md *lmm, int *size)
308 {
309         struct lov_desc *ldesc;
310         struct mdd_device *mdd = mdo2mdd(&mdd_obj->mod_obj);
311         ENTRY;
312
313         ldesc = &mdd->mdd_obd_dev->u.mds.mds_lov_desc;
314         LASSERT(ldesc != NULL);
315
316         if (!lmm)
317                 RETURN(0);
318
319         lmm->lmm_magic = LOV_MAGIC_V1;
320         lmm->lmm_object_gr = LOV_OBJECT_GROUP_DEFAULT;
321         lmm->lmm_pattern = ldesc->ld_pattern;
322         lmm->lmm_stripe_size = ldesc->ld_default_stripe_size;
323         lmm->lmm_stripe_count = ldesc->ld_default_stripe_count;
324         *size = sizeof(struct lov_mds_md);
325
326         RETURN(sizeof(struct lov_mds_md));
327 }
328
329 /* get lov EA only */
330 static int __mdd_lmm_get(const struct lu_env *env,
331                          struct mdd_object *mdd_obj, struct md_attr *ma)
332 {
333         int rc;
334         ENTRY;
335
336         if (ma->ma_valid & MA_LOV)
337                 RETURN(0);
338
339         rc = mdd_get_md(env, mdd_obj, ma->ma_lmm, &ma->ma_lmm_size,
340                         MDS_LOV_MD_NAME);
341
342         if (rc == 0 && (ma->ma_need & MA_LOV_DEF)) {
343                 rc = mdd_get_default_md(mdd_obj, ma->ma_lmm,
344                                 &ma->ma_lmm_size);
345         }
346
347         if (rc > 0) {
348                 ma->ma_valid |= MA_LOV;
349                 rc = 0;
350         }
351         RETURN(rc);
352 }
353
354 int mdd_lmm_get_locked(const struct lu_env *env, struct mdd_object *mdd_obj,
355                        struct md_attr *ma)
356 {
357         int rc;
358         ENTRY;
359
360         mdd_read_lock(env, mdd_obj);
361         rc = __mdd_lmm_get(env, mdd_obj, ma);
362         mdd_read_unlock(env, mdd_obj);
363         RETURN(rc);
364 }
365
366 /* get lmv EA only*/
367 static int __mdd_lmv_get(const struct lu_env *env,
368                          struct mdd_object *mdd_obj, struct md_attr *ma)
369 {
370         int rc;
371         ENTRY;
372
373         if (ma->ma_valid & MA_LMV)
374                 RETURN(0);
375
376         rc = mdd_get_md(env, mdd_obj, ma->ma_lmv, &ma->ma_lmv_size,
377                         MDS_LMV_MD_NAME);
378         if (rc > 0) {
379                 ma->ma_valid |= MA_LMV;
380                 rc = 0;
381         }
382         RETURN(rc);
383 }
384
385 static int mdd_attr_get_internal(const struct lu_env *env,
386                                  struct mdd_object *mdd_obj,
387                                  struct md_attr *ma)
388 {
389         int rc = 0;
390         ENTRY;
391
392         if (ma->ma_need & MA_INODE)
393                 rc = mdd_iattr_get(env, mdd_obj, ma);
394
395         if (rc == 0 && ma->ma_need & MA_LOV) {
396                 if (S_ISREG(mdd_object_type(mdd_obj)) ||
397                     S_ISDIR(mdd_object_type(mdd_obj)))
398                         rc = __mdd_lmm_get(env, mdd_obj, ma);
399         }
400         if (rc == 0 && ma->ma_need & MA_LMV) {
401                 if (S_ISDIR(mdd_object_type(mdd_obj)))
402                         rc = __mdd_lmv_get(env, mdd_obj, ma);
403         }
404 #ifdef CONFIG_FS_POSIX_ACL
405         if (rc == 0 && ma->ma_need & MA_ACL_DEF) {
406                 if (S_ISDIR(mdd_object_type(mdd_obj)))
407                         rc = mdd_def_acl_get(env, mdd_obj, ma);
408         }
409 #endif
410         CDEBUG(D_INODE, "after getattr rc = %d, ma_valid = "LPX64"\n",
411                rc, ma->ma_valid);
412         RETURN(rc);
413 }
414
415 int mdd_attr_get_internal_locked(const struct lu_env *env,
416                                  struct mdd_object *mdd_obj, struct md_attr *ma)
417 {
418         int rc;
419         int needlock = ma->ma_need & (MA_LOV | MA_LMV | MA_ACL_DEF);
420
421         if (needlock)
422                 mdd_read_lock(env, mdd_obj);
423         rc = mdd_attr_get_internal(env, mdd_obj, ma);
424         if (needlock)
425                 mdd_read_unlock(env, mdd_obj);
426         return rc;
427 }
428
429 /*
430  * No permission check is needed.
431  */
432 static int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
433                         struct md_attr *ma)
434 {
435         struct mdd_object *mdd_obj = md2mdd_obj(obj);
436         int                rc;
437
438         ENTRY;
439         rc = mdd_attr_get_internal_locked(env, mdd_obj, ma);
440         RETURN(rc);
441 }
442
443 /*
444  * No permission check is needed.
445  */
446 static int mdd_xattr_get(const struct lu_env *env,
447                          struct md_object *obj, struct lu_buf *buf,
448                          const char *name)
449 {
450         struct mdd_object *mdd_obj = md2mdd_obj(obj);
451         int rc;
452
453         ENTRY;
454
455         LASSERT(mdd_object_exists(mdd_obj));
456
457         mdd_read_lock(env, mdd_obj);
458         rc = mdo_xattr_get(env, mdd_obj, buf, name,
459                            mdd_object_capa(env, mdd_obj));
460         mdd_read_unlock(env, mdd_obj);
461
462         RETURN(rc);
463 }
464
465 /*
466  * Permission check is done when open,
467  * no need check again.
468  */
469 static int mdd_readlink(const struct lu_env *env, struct md_object *obj,
470                         struct lu_buf *buf)
471 {
472         struct mdd_object *mdd_obj = md2mdd_obj(obj);
473         struct dt_object  *next;
474         loff_t             pos = 0;
475         int                rc;
476         ENTRY;
477
478         LASSERT(mdd_object_exists(mdd_obj));
479
480         next = mdd_object_child(mdd_obj);
481         mdd_read_lock(env, mdd_obj);
482         rc = next->do_body_ops->dbo_read(env, next, buf, &pos,
483                                          mdd_object_capa(env, mdd_obj));
484         mdd_read_unlock(env, mdd_obj);
485         RETURN(rc);
486 }
487
488 /*
489  * No permission check is needed.
490  */
491 static int mdd_xattr_list(const struct lu_env *env, struct md_object *obj,
492                           struct lu_buf *buf)
493 {
494         struct mdd_object *mdd_obj = md2mdd_obj(obj);
495         int rc;
496
497         ENTRY;
498
499         mdd_read_lock(env, mdd_obj);
500         rc = mdo_xattr_list(env, mdd_obj, buf, mdd_object_capa(env, mdd_obj));
501         mdd_read_unlock(env, mdd_obj);
502
503         RETURN(rc);
504 }
505
506 int mdd_object_create_internal(const struct lu_env *env, struct mdd_object *p,
507                                struct mdd_object *c, struct md_attr *ma,
508                                struct thandle *handle)
509 {
510         struct lu_attr *attr = &ma->ma_attr;
511         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
512         int rc;
513         ENTRY;
514
515         if (!mdd_object_exists(c)) {
516                 struct dt_object *next = mdd_object_child(c);
517                 LASSERT(next);
518
519                 /* @hint will be initialized by underlying device. */
520                 next->do_ops->do_ah_init(env, hint,
521                                          p ? mdd_object_child(p) : NULL,
522                                          attr->la_mode & S_IFMT);
523                 rc = mdo_create_obj(env, c, attr, hint, handle);
524                 LASSERT(ergo(rc == 0, mdd_object_exists(c)));
525         } else
526                 rc = -EEXIST;
527
528         RETURN(rc);
529 }
530
531 /**
532  * Make sure the ctime is increased only.
533  */
534 static inline int mdd_attr_check(const struct lu_env *env,
535                                  struct mdd_object *obj,
536                                  struct lu_attr *attr)
537 {
538         struct lu_attr *tmp_la = &mdd_env_info(env)->mti_la;
539         int rc;
540         ENTRY;
541
542         if (attr->la_valid & LA_CTIME) {
543                 rc = mdd_la_get(env, obj, tmp_la, BYPASS_CAPA);
544                 if (rc)
545                         RETURN(rc);
546
547                 if (attr->la_ctime < tmp_la->la_ctime)
548                         attr->la_valid &= ~(LA_MTIME | LA_CTIME);
549                 else if (attr->la_valid == LA_CTIME &&
550                          attr->la_ctime == tmp_la->la_ctime)
551                         attr->la_valid &= ~LA_CTIME;
552         }
553         RETURN(0);
554 }
555
556 int mdd_attr_set_internal(const struct lu_env *env,
557                           struct mdd_object *obj,
558                           struct lu_attr *attr,
559                           struct thandle *handle,
560                           int needacl)
561 {
562         int rc;
563         ENTRY;
564
565         rc = mdo_attr_set(env, obj, attr, handle, mdd_object_capa(env, obj));
566 #ifdef CONFIG_FS_POSIX_ACL
567         if (!rc && (attr->la_valid & LA_MODE) && needacl)
568                 rc = mdd_acl_chmod(env, obj, attr->la_mode, handle);
569 #endif
570         RETURN(rc);
571 }
572
573 int mdd_attr_check_set_internal(const struct lu_env *env,
574                                 struct mdd_object *obj,
575                                 struct lu_attr *attr,
576                                 struct thandle *handle,
577                                 int needacl)
578 {
579         int rc;
580         ENTRY;
581
582         rc = mdd_attr_check(env, obj, attr);
583         if (rc)
584                 RETURN(rc);
585
586         if (attr->la_valid)
587                 rc = mdd_attr_set_internal(env, obj, attr, handle, needacl);
588         RETURN(rc);
589 }
590
591 static int mdd_attr_set_internal_locked(const struct lu_env *env,
592                                         struct mdd_object *obj,
593                                         struct lu_attr *attr,
594                                         struct thandle *handle,
595                                         int needacl)
596 {
597         int rc;
598         ENTRY;
599
600         needacl = needacl && (attr->la_valid & LA_MODE);
601         if (needacl)
602                 mdd_write_lock(env, obj);
603         rc = mdd_attr_set_internal(env, obj, attr, handle, needacl);
604         if (needacl)
605                 mdd_write_unlock(env, obj);
606         RETURN(rc);
607 }
608
609 int mdd_attr_check_set_internal_locked(const struct lu_env *env,
610                                        struct mdd_object *obj,
611                                        struct lu_attr *attr,
612                                        struct thandle *handle,
613                                        int needacl)
614 {
615         int rc;
616         ENTRY;
617
618         needacl = needacl && (attr->la_valid & LA_MODE);
619         if (needacl)
620                 mdd_write_lock(env, obj);
621         rc = mdd_attr_check_set_internal(env, obj, attr, handle, needacl);
622         if (needacl)
623                 mdd_write_unlock(env, obj);
624         RETURN(rc);
625 }
626
627 static int __mdd_xattr_set(const struct lu_env *env, struct mdd_object *obj,
628                            const struct lu_buf *buf, const char *name,
629                            int fl, struct thandle *handle)
630 {
631         struct lustre_capa *capa = mdd_object_capa(env, obj);
632         int rc = -EINVAL;
633         ENTRY;
634
635         if (buf->lb_buf && buf->lb_len > 0)
636                 rc = mdo_xattr_set(env, obj, buf, name, 0, handle, capa);
637         else if (buf->lb_buf == NULL && buf->lb_len == 0)
638                 rc = mdo_xattr_del(env, obj, name, handle, capa);
639
640         RETURN(rc);
641 }
642
643 /*
644  * This gives the same functionality as the code between
645  * sys_chmod and inode_setattr
646  * chown_common and inode_setattr
647  * utimes and inode_setattr
648  * This API is ported from mds_fix_attr but remove some unnecesssary stuff.
649  */
650 static int mdd_fix_attr(const struct lu_env *env, struct mdd_object *obj,
651                         struct lu_attr *la, const struct md_attr *ma)
652 {
653         struct lu_attr   *tmp_la     = &mdd_env_info(env)->mti_la;
654         struct md_ucred  *uc         = md_ucred(env);
655         int               rc;
656         ENTRY;
657
658         if (!la->la_valid)
659                 RETURN(0);
660
661         /* Do not permit change file type */
662         if (la->la_valid & LA_TYPE)
663                 RETURN(-EPERM);
664
665         /* They should not be processed by setattr */
666         if (la->la_valid & (LA_NLINK | LA_RDEV | LA_BLKSIZE))
667                 RETURN(-EPERM);
668
669         rc = mdd_la_get(env, obj, tmp_la, BYPASS_CAPA);
670         if (rc)
671                 RETURN(rc);
672
673         if (la->la_valid == LA_CTIME) {
674                 if (!(ma->ma_attr_flags & MDS_PERM_BYPASS))
675                         /* This is only for set ctime when rename's source is
676                          * on remote MDS. */
677                         rc = mdd_may_delete(env, NULL, obj,
678                                             (struct md_attr *)ma, 1, 0);
679                 if (rc == 0 && la->la_ctime <= tmp_la->la_ctime)
680                         la->la_valid &= ~LA_CTIME;
681                 RETURN(rc);
682         }
683
684         if (la->la_valid == LA_ATIME) {
685                 /* This is atime only set for read atime update on close. */
686                 if (la->la_atime <= tmp_la->la_atime +
687                                     mdd_obj2mdd_dev(obj)->mdd_atime_diff)
688                         la->la_valid &= ~LA_ATIME;
689                 RETURN(0);
690         }
691  
692         /* Check if flags change. */
693         if (la->la_valid & LA_FLAGS) {
694                 unsigned int oldflags = 0;
695                 unsigned int newflags = la->la_flags &
696                                 (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL);
697
698                 if ((uc->mu_fsuid != tmp_la->la_uid) &&
699                     !mdd_capable(uc, CAP_FOWNER))
700                         RETURN(-EPERM);
701
702                 /* XXX: the IMMUTABLE and APPEND_ONLY flags can
703                  * only be changed by the relevant capability. */
704                 if (mdd_is_immutable(obj))
705                         oldflags |= LUSTRE_IMMUTABLE_FL;
706                 if (mdd_is_append(obj))
707                         oldflags |= LUSTRE_APPEND_FL; 
708                 if ((oldflags ^ newflags) &&
709                     !mdd_capable(uc, CAP_LINUX_IMMUTABLE))
710                         RETURN(-EPERM);
711
712                 if (!S_ISDIR(tmp_la->la_mode))
713                         la->la_flags &= ~LUSTRE_DIRSYNC_FL;
714         }
715
716         if ((mdd_is_immutable(obj) || mdd_is_append(obj)) &&
717             (la->la_valid & ~LA_FLAGS) &&
718             !(ma->ma_attr_flags & MDS_PERM_BYPASS))
719                 RETURN(-EPERM);
720
721         /* Check for setting the obj time. */
722         if ((la->la_valid & (LA_MTIME | LA_ATIME | LA_CTIME)) &&
723             !(la->la_valid & ~(LA_MTIME | LA_ATIME | LA_CTIME))) {
724                 if ((uc->mu_fsuid != tmp_la->la_uid) &&
725                     !mdd_capable(uc, CAP_FOWNER)) {
726                         rc = mdd_permission_internal_locked(env, obj, tmp_la,
727                                                             MAY_WRITE);
728                         if (rc)
729                                 RETURN(rc);
730                 }
731         }
732
733         /* Make sure a caller can chmod. */
734         if (la->la_valid & LA_MODE) {
735                 /* Bypass la_vaild == LA_MODE,
736                  * this is for changing file with SUID or SGID. */
737                 if ((la->la_valid & ~LA_MODE) &&
738                     !(ma->ma_attr_flags & MDS_PERM_BYPASS) &&
739                     (uc->mu_fsuid != tmp_la->la_uid) &&
740                     !mdd_capable(uc, CAP_FOWNER))
741                         RETURN(-EPERM);
742
743                 if (la->la_mode == (umode_t) -1)
744                         la->la_mode = tmp_la->la_mode;
745                 else
746                         la->la_mode = (la->la_mode & S_IALLUGO) |
747                                       (tmp_la->la_mode & ~S_IALLUGO);
748
749                 /* Also check the setgid bit! */
750                 if (!lustre_in_group_p(uc, (la->la_valid & LA_GID) ? la->la_gid :
751                                 tmp_la->la_gid) && !mdd_capable(uc, CAP_FSETID))
752                         la->la_mode &= ~S_ISGID;
753         } else {
754                la->la_mode = tmp_la->la_mode;
755         }
756
757         /* Make sure a caller can chown. */
758         if (la->la_valid & LA_UID) {
759                 if (la->la_uid == (uid_t) -1)
760                         la->la_uid = tmp_la->la_uid;
761                 if (((uc->mu_fsuid != tmp_la->la_uid) ||
762                     (la->la_uid != tmp_la->la_uid)) &&
763                     !mdd_capable(uc, CAP_CHOWN))
764                         RETURN(-EPERM);
765
766                 /* If the user or group of a non-directory has been
767                  * changed by a non-root user, remove the setuid bit.
768                  * 19981026 David C Niemi <niemi@tux.org>
769                  *
770                  * Changed this to apply to all users, including root,
771                  * to avoid some races. This is the behavior we had in
772                  * 2.0. The check for non-root was definitely wrong
773                  * for 2.2 anyway, as it should have been using
774                  * CAP_FSETID rather than fsuid -- 19990830 SD. */
775                 if (((tmp_la->la_mode & S_ISUID) == S_ISUID) &&
776                     !S_ISDIR(tmp_la->la_mode)) {
777                         la->la_mode &= ~S_ISUID;
778                         la->la_valid |= LA_MODE;
779                 }
780         }
781
782         /* Make sure caller can chgrp. */
783         if (la->la_valid & LA_GID) {
784                 if (la->la_gid == (gid_t) -1)
785                         la->la_gid = tmp_la->la_gid;
786                 if (((uc->mu_fsuid != tmp_la->la_uid) ||
787                     ((la->la_gid != tmp_la->la_gid) &&
788                     !lustre_in_group_p(uc, la->la_gid))) &&
789                     !mdd_capable(uc, CAP_CHOWN))
790                         RETURN(-EPERM);
791
792                 /* Likewise, if the user or group of a non-directory
793                  * has been changed by a non-root user, remove the
794                  * setgid bit UNLESS there is no group execute bit
795                  * (this would be a file marked for mandatory
796                  * locking).  19981026 David C Niemi <niemi@tux.org>
797                  *
798                  * Removed the fsuid check (see the comment above) --
799                  * 19990830 SD. */
800                 if (((tmp_la->la_mode & (S_ISGID | S_IXGRP)) ==
801                      (S_ISGID | S_IXGRP)) && !S_ISDIR(tmp_la->la_mode)) {
802                         la->la_mode &= ~S_ISGID;
803                         la->la_valid |= LA_MODE;
804                 }
805         }
806
807         /* For both Size-on-MDS case and truncate case,
808          * "la->la_valid & (LA_SIZE | LA_BLOCKS)" are ture.
809          * We distinguish them by "ma->ma_attr_flags & MDS_SOM".
810          * For SOM case, it is true, the MAY_WRITE perm has been checked
811          * when open, no need check again. For truncate case, it is false,
812          * the MAY_WRITE perm should be checked here. */
813         if (ma->ma_attr_flags & MDS_SOM) {
814                 /* For the "Size-on-MDS" setattr update, merge coming
815                  * attributes with the set in the inode. BUG 10641 */
816                 if ((la->la_valid & LA_ATIME) &&
817                     (la->la_atime <= tmp_la->la_atime))
818                         la->la_valid &= ~LA_ATIME;
819
820                 /* OST attributes do not have a priority over MDS attributes,
821                  * so drop times if ctime is equal. */
822                 if ((la->la_valid & LA_CTIME) &&
823                     (la->la_ctime <= tmp_la->la_ctime))
824                         la->la_valid &= ~(LA_MTIME | LA_CTIME);
825         } else {
826                 if (la->la_valid & (LA_SIZE | LA_BLOCKS)) {
827                         if (!((ma->ma_attr_flags & MDS_OPEN_OWNEROVERRIDE) &&
828                               (uc->mu_fsuid == tmp_la->la_uid)) &&
829                             !(ma->ma_attr_flags & MDS_PERM_BYPASS)) {
830                                 rc = mdd_permission_internal_locked(env, obj,
831                                                             tmp_la, MAY_WRITE);
832                                 if (rc)
833                                         RETURN(rc);
834                         }
835                 }
836                 if (la->la_valid & LA_CTIME) {
837                         /* The pure setattr, it has the priority over what is
838                          * already set, do not drop it if ctime is equal. */
839                         if (la->la_ctime < tmp_la->la_ctime)
840                                 la->la_valid &= ~(LA_ATIME | LA_MTIME |
841                                                   LA_CTIME);
842                 }
843         }
844
845         RETURN(0);
846 }
847
848 /* set attr and LOV EA at once, return updated attr */
849 static int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
850                         const struct md_attr *ma)
851 {
852         struct mdd_object *mdd_obj = md2mdd_obj(obj);
853         struct mdd_device *mdd = mdo2mdd(obj);
854         struct thandle *handle;
855         struct lov_mds_md *lmm = NULL;
856         struct llog_cookie *logcookies = NULL;
857         int  rc, lmm_size = 0, cookie_size = 0;
858         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
859         ENTRY;
860
861         mdd_txn_param_build(env, mdd, MDD_TXN_ATTR_SET_OP);
862         handle = mdd_trans_start(env, mdd);
863         if (IS_ERR(handle))
864                 RETURN(PTR_ERR(handle));
865         /*TODO: add lock here*/
866         /* start a log jounal handle if needed */
867         if (S_ISREG(mdd_object_type(mdd_obj)) &&
868             ma->ma_attr.la_valid & (LA_UID | LA_GID)) {
869                 lmm_size = mdd_lov_mdsize(env, mdd);
870                 lmm = mdd_max_lmm_get(env, mdd);
871                 if (lmm == NULL)
872                         GOTO(cleanup, rc = -ENOMEM);
873
874                 rc = mdd_get_md_locked(env, mdd_obj, lmm, &lmm_size,
875                                 MDS_LOV_MD_NAME);
876
877                 if (rc < 0)
878                         GOTO(cleanup, rc);
879         }
880
881         if (ma->ma_attr.la_valid & (ATTR_MTIME | ATTR_CTIME))
882                 CDEBUG(D_INODE, "setting mtime "LPU64", ctime "LPU64"\n",
883                        ma->ma_attr.la_mtime, ma->ma_attr.la_ctime);
884
885         *la_copy = ma->ma_attr;
886         rc = mdd_fix_attr(env, mdd_obj, la_copy, ma);
887         if (rc)
888                 GOTO(cleanup, rc);
889
890         if (la_copy->la_valid & LA_FLAGS) {
891                 rc = mdd_attr_set_internal_locked(env, mdd_obj, la_copy,
892                                                   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_locked(env, mdd_obj, la_copy,
897                                                   handle, 1);
898                 /* journal chown/chgrp in llog, just like unlink */
899                 if (rc == 0 && lmm_size){
900                         cookie_size = mdd_lov_cookiesize(env, mdd);
901                         logcookies = mdd_max_cookie_get(env, mdd);
902                         if (logcookies == NULL)
903                                 GOTO(cleanup, rc = -ENOMEM);
904
905                         if (mdd_setattr_log(env, mdd, ma, lmm, lmm_size,
906                                             logcookies, cookie_size) <= 0)
907                                 logcookies = NULL;
908                 }
909         }
910
911         if (rc == 0 && ma->ma_valid & MA_LOV) {
912                 umode_t mode;
913
914                 mode = mdd_object_type(mdd_obj);
915                 if (S_ISREG(mode) || S_ISDIR(mode)) {
916                         rc = mdd_lsm_sanity_check(env, mdd_obj);
917                         if (rc)
918                                 GOTO(cleanup, rc);
919
920                         rc = mdd_lov_set_md(env, NULL, mdd_obj, ma->ma_lmm,
921                                             ma->ma_lmm_size, handle, 1);
922                 }
923
924         }
925 cleanup:
926         mdd_trans_stop(env, mdd, rc, handle);
927         if (rc == 0 && (lmm != NULL && lmm_size > 0 )) {
928                 /*set obd attr, if needed*/
929                 rc = mdd_lov_setattr_async(env, mdd_obj, lmm, lmm_size,
930                                            logcookies);
931         }
932         RETURN(rc);
933 }
934
935 int mdd_xattr_set_txn(const struct lu_env *env, struct mdd_object *obj,
936                       const struct lu_buf *buf, const char *name, int fl,
937                       struct thandle *handle)
938 {
939         int  rc;
940         ENTRY;
941
942         mdd_write_lock(env, obj);
943         rc = __mdd_xattr_set(env, obj, buf, name, fl, handle);
944         mdd_write_unlock(env, obj);
945
946         RETURN(rc);
947 }
948
949 static int mdd_xattr_sanity_check(const struct lu_env *env,
950                                   struct mdd_object *obj)
951 {
952         struct lu_attr  *tmp_la = &mdd_env_info(env)->mti_la;
953         struct md_ucred *uc     = md_ucred(env);
954         int rc;
955         ENTRY;
956
957         if (mdd_is_immutable(obj) || mdd_is_append(obj))
958                 RETURN(-EPERM);
959
960         rc = mdd_la_get(env, obj, tmp_la, BYPASS_CAPA);
961         if (rc)
962                 RETURN(rc);
963
964         if ((uc->mu_fsuid != tmp_la->la_uid) && !mdd_capable(uc, CAP_FOWNER))
965                 RETURN(-EPERM);
966
967         RETURN(rc);
968 }
969
970 /**
971  * The caller should guarantee to update the object ctime
972  * after xattr_set if needed.
973  */
974 static int mdd_xattr_set(const struct lu_env *env, struct md_object *obj,
975                          const struct lu_buf *buf, const char *name,
976                          int fl)
977 {
978         struct mdd_object *mdd_obj = md2mdd_obj(obj);
979         struct mdd_device *mdd = mdo2mdd(obj);
980         struct thandle *handle;
981         int  rc;
982         ENTRY;
983
984         rc = mdd_xattr_sanity_check(env, mdd_obj);
985         if (rc)
986                 RETURN(rc);
987
988         mdd_txn_param_build(env, mdd, MDD_TXN_XATTR_SET_OP);
989         handle = mdd_trans_start(env, mdd);
990         if (IS_ERR(handle))
991                 RETURN(PTR_ERR(handle));
992
993         rc = mdd_xattr_set_txn(env, mdd_obj, buf, name, fl, handle);
994         mdd_trans_stop(env, mdd, rc, handle);
995
996         RETURN(rc);
997 }
998
999 /**
1000  * The caller should guarantee to update the object ctime
1001  * after xattr_set if needed.
1002  */
1003 int mdd_xattr_del(const struct lu_env *env, struct md_object *obj,
1004                   const char *name)
1005 {
1006         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1007         struct mdd_device *mdd = mdo2mdd(obj);
1008         struct thandle *handle;
1009         int  rc;
1010         ENTRY;
1011
1012         rc = mdd_xattr_sanity_check(env, mdd_obj);
1013         if (rc)
1014                 RETURN(rc);
1015
1016         mdd_txn_param_build(env, mdd, MDD_TXN_XATTR_SET_OP);
1017         handle = mdd_trans_start(env, mdd);
1018         if (IS_ERR(handle))
1019                 RETURN(PTR_ERR(handle));
1020
1021         mdd_write_lock(env, mdd_obj);
1022         rc = mdo_xattr_del(env, mdd_obj, name, handle,
1023                            mdd_object_capa(env, mdd_obj));
1024         mdd_write_unlock(env, mdd_obj);
1025         mdd_trans_stop(env, mdd, rc, handle);
1026
1027         RETURN(rc);
1028 }
1029
1030 /* partial unlink */
1031 static int mdd_ref_del(const struct lu_env *env, struct md_object *obj,
1032                        struct md_attr *ma)
1033 {
1034         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
1035         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1036         struct mdd_device *mdd = mdo2mdd(obj);
1037         struct thandle *handle;
1038         int rc;
1039         ENTRY;
1040
1041         /*
1042          * Check -ENOENT early here because we need to get object type
1043          * to calculate credits before transaction start
1044          */
1045         if (!mdd_object_exists(mdd_obj))
1046                 RETURN(-ENOENT);
1047
1048         LASSERT(mdd_object_exists(mdd_obj) > 0);
1049
1050         rc = mdd_log_txn_param_build(env, obj, ma, MDD_TXN_UNLINK_OP);
1051         if (rc)
1052                 RETURN(rc);
1053
1054         handle = mdd_trans_start(env, mdd);
1055         if (IS_ERR(handle))
1056                 RETURN(-ENOMEM);
1057
1058         mdd_write_lock(env, mdd_obj);
1059
1060         rc = mdd_unlink_sanity_check(env, NULL, mdd_obj, ma);
1061         if (rc)
1062                 GOTO(cleanup, rc);
1063
1064         __mdd_ref_del(env, mdd_obj, handle, 0);
1065
1066         if (S_ISDIR(lu_object_attr(&obj->mo_lu))) {
1067                 /* unlink dot */
1068                 __mdd_ref_del(env, mdd_obj, handle, 1);
1069         }
1070
1071         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1072         la_copy->la_ctime = ma->ma_attr.la_ctime;
1073
1074         la_copy->la_valid = LA_CTIME;
1075         rc = mdd_attr_check_set_internal(env, mdd_obj, la_copy, handle, 0);
1076         if (rc)
1077                 GOTO(cleanup, rc);
1078
1079         rc = mdd_finish_unlink(env, mdd_obj, ma, handle);
1080
1081         EXIT;
1082 cleanup:
1083         mdd_write_unlock(env, mdd_obj);
1084         mdd_trans_stop(env, mdd, rc, handle);
1085         return rc;
1086 }
1087
1088 /* partial operation */
1089 static int mdd_oc_sanity_check(const struct lu_env *env,
1090                                struct mdd_object *obj,
1091                                struct md_attr *ma)
1092 {
1093         int rc;
1094         ENTRY;
1095
1096         switch (ma->ma_attr.la_mode & S_IFMT) {
1097         case S_IFREG:
1098         case S_IFDIR:
1099         case S_IFLNK:
1100         case S_IFCHR:
1101         case S_IFBLK:
1102         case S_IFIFO:
1103         case S_IFSOCK:
1104                 rc = 0;
1105                 break;
1106         default:
1107                 rc = -EINVAL;
1108                 break;
1109         }
1110         RETURN(rc);
1111 }
1112
1113 static int mdd_object_create(const struct lu_env *env,
1114                              struct md_object *obj,
1115                              const struct md_op_spec *spec,
1116                              struct md_attr *ma)
1117 {
1118
1119         struct mdd_device *mdd = mdo2mdd(obj);
1120         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1121         const struct lu_fid *pfid = spec->u.sp_pfid;
1122         struct thandle *handle;
1123         int rc;
1124         ENTRY;
1125
1126         mdd_txn_param_build(env, mdd, MDD_TXN_OBJECT_CREATE_OP);
1127         handle = mdd_trans_start(env, mdd);
1128         if (IS_ERR(handle))
1129                 RETURN(PTR_ERR(handle));
1130
1131         mdd_write_lock(env, mdd_obj);
1132         rc = mdd_oc_sanity_check(env, mdd_obj, ma);
1133         if (rc)
1134                 GOTO(unlock, rc);
1135
1136         rc = mdd_object_create_internal(env, NULL, mdd_obj, ma, handle);
1137         if (rc)
1138                 GOTO(unlock, rc);
1139
1140         if (spec->sp_cr_flags & MDS_CREATE_SLAVE_OBJ) {
1141                 /* If creating the slave object, set slave EA here. */
1142                 int lmv_size = spec->u.sp_ea.eadatalen;
1143                 struct lmv_stripe_md *lmv;
1144
1145                 lmv = (struct lmv_stripe_md *)spec->u.sp_ea.eadata;
1146                 LASSERT(lmv != NULL && lmv_size > 0);
1147
1148                 rc = __mdd_xattr_set(env, mdd_obj,
1149                                      mdd_buf_get_const(env, lmv, lmv_size),
1150                                      MDS_LMV_MD_NAME, 0, handle);
1151                 if (rc)
1152                         GOTO(unlock, rc);
1153
1154                 rc = mdd_attr_set_internal(env, mdd_obj, &ma->ma_attr,
1155                                            handle, 0);
1156         } else {
1157 #ifdef CONFIG_FS_POSIX_ACL
1158                 if (spec->sp_cr_flags & MDS_CREATE_RMT_ACL) {
1159                         struct lu_buf *buf = &mdd_env_info(env)->mti_buf;
1160
1161                         buf->lb_buf = (void *)spec->u.sp_ea.eadata;
1162                         buf->lb_len = spec->u.sp_ea.eadatalen;
1163                         if ((buf->lb_len > 0) && (buf->lb_buf != NULL)) {
1164                                 rc = __mdd_acl_init(env, mdd_obj, buf,
1165                                                     &ma->ma_attr.la_mode,
1166                                                     handle);
1167                                 if (rc)
1168                                         GOTO(unlock, rc);
1169                                 else
1170                                         ma->ma_attr.la_valid |= LA_MODE;
1171                         }
1172
1173                         pfid = spec->u.sp_ea.fid;
1174                 }
1175 #endif
1176                 rc = mdd_object_initialize(env, pfid, mdd_obj, ma, handle);
1177         }
1178         EXIT;
1179 unlock:
1180         mdd_write_unlock(env, mdd_obj);
1181         if (rc == 0)
1182                 rc = mdd_attr_get_internal_locked(env, mdd_obj, ma);
1183
1184         mdd_trans_stop(env, mdd, rc, handle);
1185         return rc;
1186 }
1187
1188 /* partial link */
1189 static int mdd_ref_add(const struct lu_env *env, struct md_object *obj,
1190                        const struct md_attr *ma)
1191 {
1192         struct lu_attr *la_copy = &mdd_env_info(env)->mti_la_for_fix;
1193         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1194         struct mdd_device *mdd = mdo2mdd(obj);
1195         struct thandle *handle;
1196         int rc;
1197         ENTRY;
1198
1199         mdd_txn_param_build(env, mdd, MDD_TXN_XATTR_SET_OP);
1200         handle = mdd_trans_start(env, mdd);
1201         if (IS_ERR(handle))
1202                 RETURN(-ENOMEM);
1203
1204         mdd_write_lock(env, mdd_obj);
1205         rc = mdd_link_sanity_check(env, NULL, NULL, mdd_obj);
1206         if (rc == 0)
1207                 __mdd_ref_add(env, mdd_obj, handle);
1208         mdd_write_unlock(env, mdd_obj);
1209         if (rc == 0) {
1210                 LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1211                 la_copy->la_ctime = ma->ma_attr.la_ctime;
1212
1213                 la_copy->la_valid = LA_CTIME;
1214                 rc = mdd_attr_check_set_internal_locked(env, mdd_obj, la_copy,
1215                                                         handle, 0);
1216         }
1217         mdd_trans_stop(env, mdd, 0, handle);
1218
1219         RETURN(rc);
1220 }
1221
1222 /*
1223  * do NOT or the MAY_*'s, you'll get the weakest
1224  */
1225 int accmode(const struct lu_env *env, struct lu_attr *la, int flags)
1226 {
1227         int res = 0;
1228
1229         /* Sadly, NFSD reopens a file repeatedly during operation, so the
1230          * "acc_mode = 0" allowance for newly-created files isn't honoured.
1231          * NFSD uses the MDS_OPEN_OWNEROVERRIDE flag to say that a file
1232          * owner can write to a file even if it is marked readonly to hide
1233          * its brokenness. (bug 5781) */
1234         if (flags & MDS_OPEN_OWNEROVERRIDE) {
1235                 struct md_ucred *uc = md_ucred(env);
1236
1237                 if ((uc == NULL) || (uc->mu_valid == UCRED_INIT) ||
1238                     (la->la_uid == uc->mu_fsuid))
1239                         return 0;
1240         }
1241
1242         if (flags & FMODE_READ)
1243                 res |= MAY_READ;
1244         if (flags & (FMODE_WRITE | MDS_OPEN_TRUNC | MDS_OPEN_APPEND))
1245                 res |= MAY_WRITE;
1246         if (flags & MDS_FMODE_EXEC)
1247                 res |= MAY_EXEC;
1248         return res;
1249 }
1250
1251 static int mdd_open_sanity_check(const struct lu_env *env,
1252                                  struct mdd_object *obj, int flag)
1253 {
1254         struct lu_attr *tmp_la = &mdd_env_info(env)->mti_la;
1255         int mode, rc;
1256         ENTRY;
1257
1258         /* EEXIST check */
1259         if (mdd_is_dead_obj(obj))
1260                 RETURN(-ENOENT);
1261
1262         rc = mdd_la_get(env, obj, tmp_la, BYPASS_CAPA);
1263         if (rc)
1264                RETURN(rc);
1265
1266         if (S_ISLNK(tmp_la->la_mode))
1267                 RETURN(-ELOOP);
1268
1269         mode = accmode(env, tmp_la, flag);
1270
1271         if (S_ISDIR(tmp_la->la_mode) && (mode & MAY_WRITE))
1272                 RETURN(-EISDIR);
1273
1274         if (!(flag & MDS_OPEN_CREATED)) {
1275                 rc = mdd_permission_internal(env, obj, tmp_la, mode);
1276                 if (rc)
1277                         RETURN(rc);
1278         }
1279
1280         if (S_ISFIFO(tmp_la->la_mode) || S_ISSOCK(tmp_la->la_mode) ||
1281             S_ISBLK(tmp_la->la_mode) || S_ISCHR(tmp_la->la_mode))
1282                 flag &= ~MDS_OPEN_TRUNC;
1283
1284         /* For writing append-only file must open it with append mode. */
1285         if (mdd_is_append(obj)) {
1286                 if ((flag & FMODE_WRITE) && !(flag & MDS_OPEN_APPEND))
1287                         RETURN(-EPERM);
1288                 if (flag & MDS_OPEN_TRUNC)
1289                         RETURN(-EPERM);
1290         }
1291
1292 #if 0
1293         /*
1294          * Now, flag -- O_NOATIME does not be packed by client.
1295          */
1296         if (flag & O_NOATIME) {
1297                 struct md_ucred *uc = md_ucred(env);
1298
1299                 if (uc && ((uc->mu_valid == UCRED_OLD) ||
1300                     (uc->mu_valid == UCRED_NEW)) &&
1301                     (uc->mu_fsuid != tmp_la->la_uid) &&
1302                     !mdd_capable(uc, CAP_FOWNER))
1303                         RETURN(-EPERM);
1304         }
1305 #endif
1306
1307         RETURN(0);
1308 }
1309
1310 static int mdd_open(const struct lu_env *env, struct md_object *obj,
1311                     int flags)
1312 {
1313         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1314         int rc = 0;
1315
1316         mdd_write_lock(env, mdd_obj);
1317
1318         rc = mdd_open_sanity_check(env, mdd_obj, flags);
1319         if (rc == 0)
1320                 mdd_obj->mod_count++;
1321
1322         mdd_write_unlock(env, mdd_obj);
1323         return rc;
1324 }
1325
1326 /* return md_attr back,
1327  * if it is last unlink then return lov ea + llog cookie*/
1328 int mdd_object_kill(const struct lu_env *env, struct mdd_object *obj,
1329                     struct md_attr *ma)
1330 {
1331         int rc = 0;
1332         ENTRY;
1333
1334         if (S_ISREG(mdd_object_type(obj))) {
1335                 /* Return LOV & COOKIES unconditionally here. We clean evth up.
1336                  * Caller must be ready for that. */
1337                 rc = __mdd_lmm_get(env, obj, ma);
1338                 if ((ma->ma_valid & MA_LOV))
1339                         rc = mdd_unlink_log(env, mdo2mdd(&obj->mod_obj),
1340                                             obj, ma);
1341         }
1342         RETURN(rc);
1343 }
1344
1345 /*
1346  * No permission check is needed.
1347  */
1348 static int mdd_close(const struct lu_env *env, struct md_object *obj,
1349                      struct md_attr *ma)
1350 {
1351         int rc;
1352         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1353         struct thandle    *handle;
1354         ENTRY;
1355
1356         rc = mdd_log_txn_param_build(env, obj, ma, MDD_TXN_UNLINK_OP);
1357         if (rc)
1358                 RETURN(rc);
1359         handle = mdd_trans_start(env, mdo2mdd(obj));
1360         if (IS_ERR(handle))
1361                 RETURN(PTR_ERR(handle));
1362
1363         mdd_write_lock(env, mdd_obj);
1364         /* release open count */
1365         mdd_obj->mod_count --;
1366
1367         rc = mdd_iattr_get(env, mdd_obj, ma);
1368         if (rc == 0 && mdd_obj->mod_count == 0 && ma->ma_attr.la_nlink == 0)
1369                 rc = mdd_object_kill(env, mdd_obj, ma);
1370         else
1371                 ma->ma_valid &= ~(MA_LOV | MA_COOKIE);
1372         
1373         mdd_write_unlock(env, mdd_obj);
1374         mdd_trans_stop(env, mdo2mdd(obj), rc, handle);
1375         RETURN(rc);
1376 }
1377
1378 /*
1379  * Permission check is done when open,
1380  * no need check again.
1381  */
1382 static int mdd_readpage_sanity_check(const struct lu_env *env,
1383                                      struct mdd_object *obj)
1384 {
1385         struct dt_object *next = mdd_object_child(obj);
1386         int rc;
1387         ENTRY;
1388
1389         if (S_ISDIR(mdd_object_type(obj)) && dt_try_as_dir(env, next))
1390                 rc = 0;
1391         else
1392                 rc = -ENOTDIR;
1393
1394         RETURN(rc);
1395 }
1396
1397 static int mdd_dir_page_build(const struct lu_env *env, int first,
1398                               void *area, int nob, struct dt_it_ops *iops,
1399                               struct dt_it *it, __u64 *start, __u64 *end,
1400                               struct lu_dirent **last)
1401 {
1402         struct lu_fid          *fid  = &mdd_env_info(env)->mti_fid2;
1403         struct mdd_thread_info *info = mdd_env_info(env);
1404         struct lu_fid_pack     *pack = &info->mti_pack;
1405         int                     result;
1406         struct lu_dirent       *ent;
1407
1408         if (first) {
1409                 memset(area, 0, sizeof (struct lu_dirpage));
1410                 area += sizeof (struct lu_dirpage);
1411                 nob  -= sizeof (struct lu_dirpage);
1412         }
1413
1414         LASSERT(nob > sizeof *ent);
1415
1416         ent  = area;
1417         result = 0;
1418         do {
1419                 char  *name;
1420                 int    len;
1421                 int    recsize;
1422                 __u64  hash;
1423
1424                 name = (char *)iops->key(env, it);
1425                 len  = iops->key_size(env, it);
1426
1427                 pack = (struct lu_fid_pack *)iops->rec(env, it);
1428                 result = fid_unpack(pack, fid);
1429                 if (result != 0)
1430                         break;
1431
1432                 recsize = (sizeof(*ent) + len + 7) & ~7;
1433                 hash = iops->store(env, it);
1434                 *end = hash;
1435
1436                 CDEBUG(D_INFO, "%p %p %d "DFID": "LPU64" (%d) \"%*.*s\"\n",
1437                        name, ent, nob, PFID(fid), hash, len, len, len, name);
1438
1439                 if (nob >= recsize) {
1440                         ent->lde_fid = *fid;
1441                         fid_cpu_to_le(&ent->lde_fid, &ent->lde_fid);
1442                         ent->lde_hash = hash;
1443                         ent->lde_namelen = cpu_to_le16(len);
1444                         ent->lde_reclen  = cpu_to_le16(recsize);
1445                         memcpy(ent->lde_name, name, len);
1446                         if (first && ent == area)
1447                                 *start = hash;
1448                         *last = ent;
1449                         ent = (void *)ent + recsize;
1450                         nob -= recsize;
1451                         result = iops->next(env, it);
1452                 } else {
1453                         /*
1454                          * record doesn't fit into page, enlarge previous one.
1455                          */
1456                         LASSERT(*last != NULL);
1457                         (*last)->lde_reclen =
1458                                 cpu_to_le16(le16_to_cpu((*last)->lde_reclen) +
1459                                             nob);
1460                         break;
1461                 }
1462         } while (result == 0);
1463
1464         return result;
1465 }
1466
1467 static int __mdd_readpage(const struct lu_env *env, struct mdd_object *obj,
1468                           const struct lu_rdpg *rdpg)
1469 {
1470         struct dt_it      *it;
1471         struct dt_object  *next = mdd_object_child(obj);
1472         struct dt_it_ops  *iops;
1473         struct page       *pg;
1474         struct lu_dirent  *last = NULL;
1475         int i;
1476         int rc;
1477         int nob;
1478         __u64 hash_start;
1479         __u64 hash_end = 0;
1480
1481         LASSERT(rdpg->rp_pages != NULL);
1482         LASSERT(next->do_index_ops != NULL);
1483
1484         if (rdpg->rp_count <= 0)
1485                 return -EFAULT;
1486
1487         /*
1488          * iterate through directory and fill pages from @rdpg
1489          */
1490         iops = &next->do_index_ops->dio_it;
1491         it = iops->init(env, next, 0, mdd_object_capa(env, obj));
1492         if (IS_ERR(it))
1493                 return PTR_ERR(it);
1494
1495         rc = iops->load(env, it, rdpg->rp_hash);
1496
1497         if (rc == 0)
1498                 /*
1499                  * Iterator didn't find record with exactly the key requested.
1500                  *
1501                  * It is currently either
1502                  *
1503                  *     - positioned above record with key less than
1504                  *     requested---skip it.
1505                  *
1506                  *     - or not positioned at all (is in IAM_IT_SKEWED
1507                  *     state)---position it on the next item.
1508                  */
1509                 rc = iops->next(env, it);
1510         else if (rc > 0)
1511                 rc = 0;
1512
1513         /*
1514          * At this point and across for-loop:
1515          *
1516          *  rc == 0 -> ok, proceed.
1517          *  rc >  0 -> end of directory.
1518          *  rc <  0 -> error.
1519          */
1520         for (i = 0, nob = rdpg->rp_count; rc == 0 && nob > 0;
1521              i++, nob -= CFS_PAGE_SIZE) {
1522                 LASSERT(i < rdpg->rp_npages);
1523                 pg = rdpg->rp_pages[i];
1524                 rc = mdd_dir_page_build(env, !i, cfs_kmap(pg),
1525                                         min_t(int, nob, CFS_PAGE_SIZE), iops,
1526                                         it, &hash_start, &hash_end, &last);
1527                 if (rc != 0 || i == rdpg->rp_npages - 1)
1528                         last->lde_reclen = 0;
1529                 cfs_kunmap(pg);
1530         }
1531         if (rc > 0) {
1532                 /*
1533                  * end of directory.
1534                  */
1535                 hash_end = DIR_END_OFF;
1536                 rc = 0;
1537         }
1538         if (rc == 0) {
1539                 struct lu_dirpage *dp;
1540
1541                 dp = cfs_kmap(rdpg->rp_pages[0]);
1542                 dp->ldp_hash_start = rdpg->rp_hash;
1543                 dp->ldp_hash_end   = hash_end;
1544                 if (i == 0)
1545                         /*
1546                          * No pages were processed, mark this.
1547                          */
1548                         dp->ldp_flags |= LDF_EMPTY;
1549                 dp->ldp_flags = cpu_to_le32(dp->ldp_flags);
1550                 cfs_kunmap(rdpg->rp_pages[0]);
1551         }
1552         iops->put(env, it);
1553         iops->fini(env, it);
1554
1555         return rc;
1556 }
1557
1558 static int mdd_readpage(const struct lu_env *env, struct md_object *obj,
1559                         const struct lu_rdpg *rdpg)
1560 {
1561         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1562         int rc;
1563         ENTRY;
1564
1565         LASSERT(mdd_object_exists(mdd_obj));
1566
1567         mdd_read_lock(env, mdd_obj);
1568         rc = mdd_readpage_sanity_check(env, mdd_obj);
1569         if (rc)
1570                 GOTO(out_unlock, rc);
1571
1572         if (mdd_is_dead_obj(mdd_obj)) {
1573                 struct page *pg;
1574                 struct lu_dirpage *dp;
1575
1576                 /*
1577                  * According to POSIX, please do not return any entry to client:
1578                  * even dot and dotdot should not be returned.
1579                  */
1580                 CWARN("readdir from dead object: "DFID"\n",
1581                         PFID(mdd_object_fid(mdd_obj)));
1582
1583                 if (rdpg->rp_count <= 0)
1584                         GOTO(out_unlock, rc = -EFAULT);
1585                 LASSERT(rdpg->rp_pages != NULL);
1586
1587                 pg = rdpg->rp_pages[0];
1588                 dp = (struct lu_dirpage*)cfs_kmap(pg);
1589                 memset(dp, 0 , sizeof(struct lu_dirpage));
1590                 dp->ldp_hash_start = rdpg->rp_hash;
1591                 dp->ldp_hash_end   = DIR_END_OFF;
1592                 dp->ldp_flags |= LDF_EMPTY;
1593                 dp->ldp_flags = cpu_to_le32(dp->ldp_flags);
1594                 cfs_kunmap(pg);
1595                 GOTO(out_unlock, rc = 0);
1596         }
1597
1598         rc = __mdd_readpage(env, mdd_obj, rdpg);
1599
1600         EXIT;
1601 out_unlock:
1602         mdd_read_unlock(env, mdd_obj);
1603         return rc;
1604 }
1605
1606 static int mdd_object_sync(const struct lu_env *env, struct md_object *obj)
1607 {
1608         struct mdd_object *mdd_obj = md2mdd_obj(obj);
1609         struct dt_object *next;
1610
1611         LASSERT(mdd_object_exists(mdd_obj));
1612         next = mdd_object_child(mdd_obj);
1613         return next->do_ops->do_object_sync(env, next);
1614 }
1615
1616 struct md_object_operations mdd_obj_ops = {
1617         .moo_permission    = mdd_permission,
1618         .moo_attr_get      = mdd_attr_get,
1619         .moo_attr_set      = mdd_attr_set,
1620         .moo_xattr_get     = mdd_xattr_get,
1621         .moo_xattr_set     = mdd_xattr_set,
1622         .moo_xattr_list    = mdd_xattr_list,
1623         .moo_xattr_del     = mdd_xattr_del,
1624         .moo_object_create = mdd_object_create,
1625         .moo_ref_add       = mdd_ref_add,
1626         .moo_ref_del       = mdd_ref_del,
1627         .moo_open          = mdd_open,
1628         .moo_close         = mdd_close,
1629         .moo_readpage      = mdd_readpage,
1630         .moo_readlink      = mdd_readlink,
1631         .moo_capa_get      = mdd_capa_get,
1632         .moo_object_sync   = mdd_object_sync,
1633 };