Whamcloud - gitweb
b=1028 drop SOM dependency on quota
[fs/lustre-release.git] / lustre / osd / osd_handler.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/osd/osd_handler.c
37  *
38  * Top-level entry points into osd module
39  *
40  * Author: Nikita Danilov <nikita@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
50 /* LUSTRE_VERSION_CODE */
51 #include <lustre_ver.h>
52 /* prerequisite for linux/xattr.h */
53 #include <linux/types.h>
54 /* prerequisite for linux/xattr.h */
55 #include <linux/fs.h>
56 /* XATTR_{REPLACE,CREATE} */
57 #include <linux/xattr.h>
58 /* simple_mkdir() */
59 #include <lvfs.h>
60
61 /*
62  * struct OBD_{ALLOC,FREE}*()
63  * OBD_FAIL_CHECK
64  */
65 #include <obd_support.h>
66 /* struct ptlrpc_thread */
67 #include <lustre_net.h>
68
69 /* fid_is_local() */
70 #include <lustre_fid.h>
71
72 #include "osd_internal.h"
73 #include "osd_igif.h"
74
75 /* llo_* api support */
76 #include <md_object.h>
77
78 static const char dot[] = ".";
79 static const char dotdot[] = "..";
80 static const char remote_obj_dir[] = "REM_OBJ_DIR";
81
82 struct osd_directory {
83         struct iam_container od_container;
84         struct iam_descr     od_descr;
85 };
86
87 struct osd_object {
88         struct dt_object       oo_dt;
89         /**
90          * Inode for file system object represented by this osd_object. This
91          * inode is pinned for the whole duration of lu_object life.
92          *
93          * Not modified concurrently (either setup early during object
94          * creation, or assigned by osd_object_create() under write lock).
95          */
96         struct inode          *oo_inode;
97         /**
98          * to protect index ops.
99          */
100         cfs_rw_semaphore_t     oo_ext_idx_sem;
101         cfs_rw_semaphore_t     oo_sem;
102         struct osd_directory  *oo_dir;
103         /** protects inode attributes. */
104         cfs_spinlock_t         oo_guard;
105         /**
106          * Following two members are used to indicate the presence of dot and
107          * dotdot in the given directory. This is required for interop mode
108          * (b11826).
109          */
110         int                    oo_compat_dot_created;
111         int                    oo_compat_dotdot_created;
112
113         const struct lu_env   *oo_owner;
114 #ifdef CONFIG_LOCKDEP
115         struct lockdep_map     oo_dep_map;
116 #endif
117 };
118
119 static const struct lu_object_operations      osd_lu_obj_ops;
120 static const struct lu_device_operations      osd_lu_ops;
121 static       struct lu_context_key            osd_key;
122 static const struct dt_object_operations      osd_obj_ops;
123 static const struct dt_object_operations      osd_obj_ea_ops;
124 static const struct dt_body_operations        osd_body_ops;
125 static const struct dt_index_operations       osd_index_iam_ops;
126 static const struct dt_index_operations       osd_index_ea_ops;
127
128 struct osd_thandle {
129         struct thandle          ot_super;
130         handle_t               *ot_handle;
131         struct journal_callback ot_jcb;
132         /* Link to the device, for debugging. */
133         struct lu_ref_link     *ot_dev_link;
134
135 };
136
137 /*
138  * Helpers.
139  */
140 static int lu_device_is_osd(const struct lu_device *d)
141 {
142         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osd_lu_ops);
143 }
144
145 static struct osd_device *osd_dt_dev(const struct dt_device *d)
146 {
147         LASSERT(lu_device_is_osd(&d->dd_lu_dev));
148         return container_of0(d, struct osd_device, od_dt_dev);
149 }
150
151 static struct osd_device *osd_dev(const struct lu_device *d)
152 {
153         LASSERT(lu_device_is_osd(d));
154         return osd_dt_dev(container_of0(d, struct dt_device, dd_lu_dev));
155 }
156
157 static struct osd_device *osd_obj2dev(const struct osd_object *o)
158 {
159         return osd_dev(o->oo_dt.do_lu.lo_dev);
160 }
161
162 static struct super_block *osd_sb(const struct osd_device *dev)
163 {
164         return dev->od_mount->lmi_mnt->mnt_sb;
165 }
166
167 static int osd_object_is_root(const struct osd_object *obj)
168 {
169         return osd_sb(osd_obj2dev(obj))->s_root->d_inode == obj->oo_inode;
170 }
171
172 static struct osd_object *osd_obj(const struct lu_object *o)
173 {
174         LASSERT(lu_device_is_osd(o->lo_dev));
175         return container_of0(o, struct osd_object, oo_dt.do_lu);
176 }
177
178 static struct osd_object *osd_dt_obj(const struct dt_object *d)
179 {
180         return osd_obj(&d->do_lu);
181 }
182
183 static struct lu_device *osd2lu_dev(struct osd_device *osd)
184 {
185         return &osd->od_dt_dev.dd_lu_dev;
186 }
187
188 static journal_t *osd_journal(const struct osd_device *dev)
189 {
190         return LDISKFS_SB(osd_sb(dev))->s_journal;
191 }
192
193 static int osd_has_index(const struct osd_object *obj)
194 {
195         return obj->oo_dt.do_index_ops != NULL;
196 }
197
198 static int osd_object_invariant(const struct lu_object *l)
199 {
200         return osd_invariant(osd_obj(l));
201 }
202
203 #ifdef HAVE_QUOTA_SUPPORT
204 static inline void
205 osd_push_ctxt(const struct lu_env *env, struct osd_ctxt *save)
206 {
207         struct md_ucred    *uc = md_ucred(env);
208
209         LASSERT(uc != NULL);
210
211         save->oc_uid = current->fsuid;
212         save->oc_gid = current->fsgid;
213         save->oc_cap = current->cap_effective;
214         current->fsuid         = uc->mu_fsuid;
215         current->fsgid         = uc->mu_fsgid;
216         current->cap_effective = uc->mu_cap;
217 }
218
219 static inline void
220 osd_pop_ctxt(struct osd_ctxt *save)
221 {
222         current->fsuid         = save->oc_uid;
223         current->fsgid         = save->oc_gid;
224         current->cap_effective = save->oc_cap;
225 }
226 #endif
227
228 static inline struct osd_thread_info *osd_oti_get(const struct lu_env *env)
229 {
230         return lu_context_key_get(&env->le_ctx, &osd_key);
231 }
232
233 /*
234  * Concurrency: doesn't matter
235  */
236 static int osd_read_locked(const struct lu_env *env, struct osd_object *o)
237 {
238         return osd_oti_get(env)->oti_r_locks > 0;
239 }
240
241 /*
242  * Concurrency: doesn't matter
243  */
244 static int osd_write_locked(const struct lu_env *env, struct osd_object *o)
245 {
246         struct osd_thread_info *oti = osd_oti_get(env);
247         return oti->oti_w_locks > 0 && o->oo_owner == env;
248 }
249
250 /*
251  * Concurrency: doesn't access mutable data
252  */
253 static int osd_root_get(const struct lu_env *env,
254                         struct dt_device *dev, struct lu_fid *f)
255 {
256         struct inode *inode;
257
258         inode = osd_sb(osd_dt_dev(dev))->s_root->d_inode;
259         lu_igif_build(f, inode->i_ino, inode->i_generation);
260         return 0;
261 }
262
263 /*
264  * OSD object methods.
265  */
266
267 /*
268  * Concurrency: no concurrent access is possible that early in object
269  * life-cycle.
270  */
271 static struct lu_object *osd_object_alloc(const struct lu_env *env,
272                                           const struct lu_object_header *hdr,
273                                           struct lu_device *d)
274 {
275         struct osd_object *mo;
276
277         OBD_ALLOC_PTR(mo);
278         if (mo != NULL) {
279                 struct lu_object *l;
280
281                 l = &mo->oo_dt.do_lu;
282                 dt_object_init(&mo->oo_dt, NULL, d);
283                 if (osd_dev(d)->od_iop_mode)
284                         mo->oo_dt.do_ops = &osd_obj_ea_ops;
285                 else
286                         mo->oo_dt.do_ops = &osd_obj_ops;
287
288                 l->lo_ops = &osd_lu_obj_ops;
289                 cfs_init_rwsem(&mo->oo_sem);
290                 cfs_init_rwsem(&mo->oo_ext_idx_sem);
291                 cfs_spin_lock_init(&mo->oo_guard);
292                 return l;
293         } else
294                 return NULL;
295 }
296
297 /*
298  * retrieve object from backend ext fs.
299  **/
300 static struct inode *osd_iget(struct osd_thread_info *info,
301                               struct osd_device *dev,
302                               const struct osd_inode_id *id)
303 {
304         struct inode *inode = NULL;
305
306 #ifdef HAVE_EXT4_LDISKFS
307         inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
308         if (IS_ERR(inode))
309         /* Newer kernels return an error instead of a NULL pointer */
310                 inode = NULL;
311 #else
312         inode = iget(osd_sb(dev), id->oii_ino);
313 #endif
314         if (inode == NULL) {
315                 CERROR("no inode\n");
316                 inode = ERR_PTR(-EACCES);
317         } else if (id->oii_gen != OSD_OII_NOGEN &&
318                    inode->i_generation != id->oii_gen) {
319                 iput(inode);
320                 inode = ERR_PTR(-ESTALE);
321         } else if (inode->i_nlink == 0) {
322                 /* due to parallel readdir and unlink,
323                 * we can have dead inode here. */
324                 CWARN("stale inode\n");
325                 make_bad_inode(inode);
326                 iput(inode);
327                 inode = ERR_PTR(-ESTALE);
328         } else if (is_bad_inode(inode)) {
329                 CERROR("bad inode %lx\n",inode->i_ino);
330                 iput(inode);
331                 inode = ERR_PTR(-ENOENT);
332         }
333         return inode;
334 }
335
336 static int osd_fid_lookup(const struct lu_env *env,
337                           struct osd_object *obj, const struct lu_fid *fid)
338 {
339         struct osd_thread_info *info;
340         struct lu_device       *ldev = obj->oo_dt.do_lu.lo_dev;
341         struct osd_device      *dev;
342         struct osd_inode_id    *id;
343         struct osd_oi          *oi;
344         struct inode           *inode;
345         int                     result;
346
347         LINVRNT(osd_invariant(obj));
348         LASSERT(obj->oo_inode == NULL);
349         LASSERT(fid_is_sane(fid));
350         /*
351          * This assertion checks that osd layer sees only local
352          * fids. Unfortunately it is somewhat expensive (does a
353          * cache-lookup). Disabling it for production/acceptance-testing.
354          */
355         LASSERT(1 || fid_is_local(env, ldev->ld_site, fid));
356
357         ENTRY;
358
359         info = osd_oti_get(env);
360         dev  = osd_dev(ldev);
361         id   = &info->oti_id;
362         oi   = &dev->od_oi;
363
364         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT))
365                 RETURN(-ENOENT);
366
367         result = osd_oi_lookup(info, oi, fid, id);
368         if (result == 0) {
369                 inode = osd_iget(info, dev, id);
370                 if (!IS_ERR(inode)) {
371                         obj->oo_inode = inode;
372                         LASSERT(obj->oo_inode->i_sb == osd_sb(dev));
373                         if (dev->od_iop_mode) {
374                                 obj->oo_compat_dot_created = 1;
375                                 obj->oo_compat_dotdot_created = 1;
376                         }
377                         result = 0;
378                 } else
379                         /*
380                          * If fid wasn't found in oi, inode-less object is
381                          * created, for which lu_object_exists() returns
382                          * false. This is used in a (frequent) case when
383                          * objects are created as locking anchors or
384                          * place holders for objects yet to be created.
385                          */
386                         result = PTR_ERR(inode);
387         } else if (result == -ENOENT)
388                 result = 0;
389         LINVRNT(osd_invariant(obj));
390
391         RETURN(result);
392 }
393
394 /*
395  * Concurrency: shouldn't matter.
396  */
397 static void osd_object_init0(struct osd_object *obj)
398 {
399         LASSERT(obj->oo_inode != NULL);
400         obj->oo_dt.do_body_ops = &osd_body_ops;
401         obj->oo_dt.do_lu.lo_header->loh_attr |=
402                 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
403 }
404
405 /*
406  * Concurrency: no concurrent access is possible that early in object
407  * life-cycle.
408  */
409 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
410                            const struct lu_object_conf *unused)
411 {
412         struct osd_object *obj = osd_obj(l);
413         int result;
414
415         LINVRNT(osd_invariant(obj));
416
417         result = osd_fid_lookup(env, obj, lu_object_fid(l));
418         if (result == 0) {
419                 if (obj->oo_inode != NULL)
420                         osd_object_init0(obj);
421         }
422         LINVRNT(osd_invariant(obj));
423         return result;
424 }
425
426 /*
427  * Concurrency: no concurrent access is possible that late in object
428  * life-cycle.
429  */
430 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
431 {
432         struct osd_object *obj = osd_obj(l);
433
434         LINVRNT(osd_invariant(obj));
435
436         dt_object_fini(&obj->oo_dt);
437         OBD_FREE_PTR(obj);
438 }
439
440 /**
441  * IAM Iterator
442  */
443 static struct iam_path_descr *osd_it_ipd_get(const struct lu_env *env,
444                                              const struct iam_container *bag)
445 {
446         return bag->ic_descr->id_ops->id_ipd_alloc(bag,
447                                            osd_oti_get(env)->oti_it_ipd);
448 }
449
450 static struct iam_path_descr *osd_idx_ipd_get(const struct lu_env *env,
451                                               const struct iam_container *bag)
452 {
453         return bag->ic_descr->id_ops->id_ipd_alloc(bag,
454                                            osd_oti_get(env)->oti_idx_ipd);
455 }
456
457 static void osd_ipd_put(const struct lu_env *env,
458                         const struct iam_container *bag,
459                         struct iam_path_descr *ipd)
460 {
461         bag->ic_descr->id_ops->id_ipd_free(ipd);
462 }
463
464 /*
465  * Concurrency: no concurrent access is possible that late in object
466  * life-cycle.
467  */
468 static void osd_index_fini(struct osd_object *o)
469 {
470         struct iam_container *bag;
471
472         if (o->oo_dir != NULL) {
473                 bag = &o->oo_dir->od_container;
474                 if (o->oo_inode != NULL) {
475                         if (bag->ic_object == o->oo_inode)
476                                 iam_container_fini(bag);
477                 }
478                 OBD_FREE_PTR(o->oo_dir);
479                 o->oo_dir = NULL;
480         }
481 }
482
483 /*
484  * Concurrency: no concurrent access is possible that late in object
485  * life-cycle (for all existing callers, that is. New callers have to provide
486  * their own locking.)
487  */
488 static int osd_inode_unlinked(const struct inode *inode)
489 {
490         return inode->i_nlink == 0;
491 }
492
493 enum {
494         OSD_TXN_OI_DELETE_CREDITS    = 20,
495         OSD_TXN_INODE_DELETE_CREDITS = 20
496 };
497
498 /*
499  * Journal
500  */
501
502 /*
503  * Concurrency: doesn't access mutable data.
504  */
505 static int osd_param_is_sane(const struct osd_device *dev,
506                              const struct txn_param *param)
507 {
508         return param->tp_credits <= osd_journal(dev)->j_max_transaction_buffers;
509 }
510
511 /*
512  * Concurrency: shouldn't matter.
513  */
514 static void osd_trans_commit_cb(struct journal_callback *jcb, int error)
515 {
516         struct osd_thandle *oh = container_of0(jcb, struct osd_thandle, ot_jcb);
517         struct thandle     *th  = &oh->ot_super;
518         struct dt_device   *dev = th->th_dev;
519         struct lu_device   *lud = &dev->dd_lu_dev;
520
521         LASSERT(dev != NULL);
522         LASSERT(oh->ot_handle == NULL);
523
524         if (error) {
525                 CERROR("transaction @0x%p commit error: %d\n", th, error);
526         } else {
527                 struct lu_env *env = &osd_dt_dev(dev)->od_env_for_commit;
528                 /*
529                  * This od_env_for_commit is only for commit usage.  see
530                  * "struct dt_device"
531                  */
532                 lu_context_enter(&env->le_ctx);
533                 dt_txn_hook_commit(env, th);
534                 lu_context_exit(&env->le_ctx);
535         }
536
537         lu_ref_del_at(&lud->ld_reference, oh->ot_dev_link, "osd-tx", th);
538         lu_device_put(lud);
539         th->th_dev = NULL;
540
541         lu_context_exit(&th->th_ctx);
542         lu_context_fini(&th->th_ctx);
543         OBD_FREE_PTR(oh);
544 }
545
546 /*
547  * Concurrency: shouldn't matter.
548  */
549 static struct thandle *osd_trans_start(const struct lu_env *env,
550                                        struct dt_device *d,
551                                        struct txn_param *p)
552 {
553         struct osd_device  *dev = osd_dt_dev(d);
554         handle_t           *jh;
555         struct osd_thandle *oh;
556         struct thandle     *th;
557         int hook_res;
558
559         ENTRY;
560
561         hook_res = dt_txn_hook_start(env, d, p);
562         if (hook_res != 0)
563                 RETURN(ERR_PTR(hook_res));
564
565         if (osd_param_is_sane(dev, p)) {
566                 OBD_ALLOC_GFP(oh, sizeof *oh, CFS_ALLOC_IO);
567                 if (oh != NULL) {
568                         struct osd_thread_info *oti = osd_oti_get(env);
569
570                         /*
571                          * XXX temporary stuff. Some abstraction layer should
572                          * be used.
573                          */
574
575                         jh = ldiskfs_journal_start_sb(osd_sb(dev), p->tp_credits);
576                         if (!IS_ERR(jh)) {
577                                 oh->ot_handle = jh;
578                                 th = &oh->ot_super;
579                                 th->th_dev = d;
580                                 th->th_result = 0;
581                                 jh->h_sync = p->tp_sync;
582                                 lu_device_get(&d->dd_lu_dev);
583                                 oh->ot_dev_link = lu_ref_add
584                                         (&d->dd_lu_dev.ld_reference,
585                                          "osd-tx", th);
586                                 /* add commit callback */
587                                 lu_context_init(&th->th_ctx, LCT_TX_HANDLE);
588                                 lu_context_enter(&th->th_ctx);
589                                 osd_journal_callback_set(jh, osd_trans_commit_cb,
590                                                          (struct journal_callback *)&oh->ot_jcb);
591                                         LASSERT(oti->oti_txns == 0);
592                                         LASSERT(oti->oti_r_locks == 0);
593                                         LASSERT(oti->oti_w_locks == 0);
594                                         oti->oti_txns++;
595                         } else {
596                                 OBD_FREE_PTR(oh);
597                                 th = (void *)jh;
598                         }
599                 } else
600                         th = ERR_PTR(-ENOMEM);
601         } else {
602                 CERROR("Invalid transaction parameters\n");
603                 th = ERR_PTR(-EINVAL);
604         }
605
606         RETURN(th);
607 }
608
609 /*
610  * Concurrency: shouldn't matter.
611  */
612 static void osd_trans_stop(const struct lu_env *env, struct thandle *th)
613 {
614         int result;
615         struct osd_thandle *oh;
616         struct osd_thread_info *oti = osd_oti_get(env);
617
618         ENTRY;
619
620         oh = container_of0(th, struct osd_thandle, ot_super);
621         if (oh->ot_handle != NULL) {
622                 handle_t *hdl = oh->ot_handle;
623
624                 LASSERT(oti->oti_txns == 1);
625                 oti->oti_txns--;
626                 LASSERT(oti->oti_r_locks == 0);
627                 LASSERT(oti->oti_w_locks == 0);
628                 result = dt_txn_hook_stop(env, th);
629                 if (result != 0)
630                         CERROR("Failure in transaction hook: %d\n", result);
631                 oh->ot_handle = NULL;
632                 result = ldiskfs_journal_stop(hdl);
633                 if (result != 0)
634                         CERROR("Failure to stop transaction: %d\n", result);
635         }
636         EXIT;
637 }
638
639 /*
640  * Concurrency: no concurrent access is possible that late in object
641  * life-cycle.
642  */
643 static int osd_inode_remove(const struct lu_env *env, struct osd_object *obj)
644 {
645         const struct lu_fid    *fid = lu_object_fid(&obj->oo_dt.do_lu);
646         struct osd_device      *osd = osd_obj2dev(obj);
647         struct osd_thread_info *oti = osd_oti_get(env);
648         struct txn_param       *prm = &oti->oti_txn;
649         struct lu_env          *env_del_obj = &oti->oti_obj_delete_tx_env;
650         struct thandle         *th;
651         int result;
652
653         lu_env_init(env_del_obj, LCT_DT_THREAD);
654         txn_param_init(prm, OSD_TXN_OI_DELETE_CREDITS +
655                             OSD_TXN_INODE_DELETE_CREDITS);
656         th = osd_trans_start(env_del_obj, &osd->od_dt_dev, prm);
657         if (!IS_ERR(th)) {
658                 result = osd_oi_delete(osd_oti_get(env_del_obj),
659                                        &osd->od_oi, fid, th);
660                 osd_trans_stop(env_del_obj, th);
661         } else
662                 result = PTR_ERR(th);
663
664         lu_env_fini(env_del_obj);
665         return result;
666 }
667
668 /*
669  * Called just before object is freed. Releases all resources except for
670  * object itself (that is released by osd_object_free()).
671  *
672  * Concurrency: no concurrent access is possible that late in object
673  * life-cycle.
674  */
675 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
676 {
677         struct osd_object *obj   = osd_obj(l);
678         struct inode      *inode = obj->oo_inode;
679
680         LINVRNT(osd_invariant(obj));
681
682         /*
683          * If object is unlinked remove fid->ino mapping from object index.
684          */
685
686         osd_index_fini(obj);
687         if (inode != NULL) {
688                 int result;
689
690                 if (osd_inode_unlinked(inode)) {
691                         result = osd_inode_remove(env, obj);
692                         if (result != 0)
693                                 LU_OBJECT_DEBUG(D_ERROR, env, l,
694                                                 "Failed to cleanup: %d\n",
695                                                 result);
696                 }
697
698                 iput(inode);
699                 obj->oo_inode = NULL;
700         }
701 }
702
703 /*
704  * Concurrency: ->loo_object_release() is called under site spin-lock.
705  */
706 static void osd_object_release(const struct lu_env *env,
707                                struct lu_object *l)
708 {
709         struct osd_object *o = osd_obj(l);
710
711         LASSERT(!lu_object_is_dying(l->lo_header));
712         if (o->oo_inode != NULL && osd_inode_unlinked(o->oo_inode))
713                 cfs_set_bit(LU_OBJECT_HEARD_BANSHEE, &l->lo_header->loh_flags);
714 }
715
716 /*
717  * Concurrency: shouldn't matter.
718  */
719 static int osd_object_print(const struct lu_env *env, void *cookie,
720                             lu_printer_t p, const struct lu_object *l)
721 {
722         struct osd_object *o = osd_obj(l);
723         struct iam_descr  *d;
724
725         if (o->oo_dir != NULL)
726                 d = o->oo_dir->od_container.ic_descr;
727         else
728                 d = NULL;
729         return (*p)(env, cookie, LUSTRE_OSD_NAME"-object@%p(i:%p:%lu/%u)[%s]",
730                     o, o->oo_inode,
731                     o->oo_inode ? o->oo_inode->i_ino : 0UL,
732                     o->oo_inode ? o->oo_inode->i_generation : 0,
733                     d ? d->id_ops->id_name : "plain");
734 }
735
736 /*
737  * Concurrency: shouldn't matter.
738  */
739 int osd_statfs(const struct lu_env *env, struct dt_device *d,
740                cfs_kstatfs_t *sfs)
741 {
742         struct osd_device *osd = osd_dt_dev(d);
743         struct super_block *sb = osd_sb(osd);
744         int result = 0;
745
746         cfs_spin_lock(&osd->od_osfs_lock);
747         /* cache 1 second */
748         if (cfs_time_before_64(osd->od_osfs_age, cfs_time_shift_64(-1))) {
749                 result = ll_do_statfs(sb, &osd->od_kstatfs);
750                 if (likely(result == 0)) /* N.B. statfs can't really fail */
751                         osd->od_osfs_age = cfs_time_current_64();
752         }
753
754         if (likely(result == 0))
755                 *sfs = osd->od_kstatfs;
756         cfs_spin_unlock(&osd->od_osfs_lock);
757
758         return result;
759 }
760
761 /*
762  * Concurrency: doesn't access mutable data.
763  */
764 static void osd_conf_get(const struct lu_env *env,
765                          const struct dt_device *dev,
766                          struct dt_device_param *param)
767 {
768         /*
769          * XXX should be taken from not-yet-existing fs abstraction layer.
770          */
771         param->ddp_max_name_len  = LDISKFS_NAME_LEN;
772         param->ddp_max_nlink     = LDISKFS_LINK_MAX;
773         param->ddp_block_shift   = osd_sb(osd_dt_dev(dev))->s_blocksize_bits;
774 }
775
776 /**
777  * Helper function to get and fill the buffer with input values.
778  */
779 static struct lu_buf *osd_buf_get(const struct lu_env *env, void *area, ssize_t len)
780 {
781         struct lu_buf *buf;
782
783         buf = &osd_oti_get(env)->oti_buf;
784         buf->lb_buf = area;
785         buf->lb_len = len;
786         return buf;
787 }
788
789 /*
790  * Concurrency: shouldn't matter.
791  */
792 static int osd_sync(const struct lu_env *env, struct dt_device *d)
793 {
794         CDEBUG(D_HA, "syncing OSD %s\n", LUSTRE_OSD_NAME);
795         return ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
796 }
797
798 /**
799  * Start commit for OSD device.
800  *
801  * An implementation of dt_commit_async method for OSD device.
802  * Asychronously starts underlayng fs sync and thereby a transaction
803  * commit.
804  *
805  * \param env environment
806  * \param d dt device
807  *
808  * \see dt_device_operations
809  */
810 static int osd_commit_async(const struct lu_env *env,
811                             struct dt_device *d)
812 {
813         struct super_block *s = osd_sb(osd_dt_dev(d));
814         ENTRY;
815
816         CDEBUG(D_HA, "async commit OSD %s\n", LUSTRE_OSD_NAME);
817         RETURN(s->s_op->sync_fs(s, 0));
818 }
819
820 /*
821  * Concurrency: shouldn't matter.
822  */
823 lvfs_sbdev_type fsfilt_ldiskfs_journal_sbdev(struct super_block *);
824
825 static void osd_ro(const struct lu_env *env, struct dt_device *d)
826 {
827         ENTRY;
828
829         CERROR("*** setting device %s read-only ***\n", LUSTRE_OSD_NAME);
830
831         __lvfs_set_rdonly(lvfs_sbdev(osd_sb(osd_dt_dev(d))),
832                           fsfilt_ldiskfs_journal_sbdev(osd_sb(osd_dt_dev(d))));
833         EXIT;
834 }
835
836
837 /*
838  * Concurrency: serialization provided by callers.
839  */
840 static int osd_init_capa_ctxt(const struct lu_env *env, struct dt_device *d,
841                               int mode, unsigned long timeout, __u32 alg,
842                               struct lustre_capa_key *keys)
843 {
844         struct osd_device *dev = osd_dt_dev(d);
845         ENTRY;
846
847         dev->od_fl_capa = mode;
848         dev->od_capa_timeout = timeout;
849         dev->od_capa_alg = alg;
850         dev->od_capa_keys = keys;
851         RETURN(0);
852 }
853
854 /**
855  * Concurrency: serialization provided by callers.
856  */
857 static void osd_init_quota_ctxt(const struct lu_env *env, struct dt_device *d,
858                                struct dt_quota_ctxt *ctxt, void *data)
859 {
860         struct obd_device *obd = (void *)ctxt;
861         struct vfsmount *mnt = (struct vfsmount *)data;
862         ENTRY;
863
864         obd->u.obt.obt_sb = mnt->mnt_root->d_inode->i_sb;
865         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
866         obd->obd_lvfs_ctxt.pwdmnt = mnt;
867         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
868         obd->obd_lvfs_ctxt.fs = get_ds();
869
870         EXIT;
871 }
872
873 /**
874  * Note: we do not count into QUOTA here.
875  * If we mount with --data_journal we may need more.
876  */
877 static const int osd_dto_credits_noquota[DTO_NR] = {
878         /**
879          * Insert/Delete.
880          * INDEX_EXTRA_TRANS_BLOCKS(8) +
881          * SINGLEDATA_TRANS_BLOCKS(8)
882          * XXX Note: maybe iam need more, since iam have more level than
883          *           EXT3 htree.
884          */
885         [DTO_INDEX_INSERT]  = 16,
886         [DTO_INDEX_DELETE]  = 16,
887         /**
888          * Unused now
889          */
890         [DTO_IDNEX_UPDATE]  = 16,
891         /**
892          * Create a object. The same as create object in EXT3.
893          * DATA_TRANS_BLOCKS(14) +
894          * INDEX_EXTRA_BLOCKS(8) +
895          * 3(inode bits, groups, GDT)
896          */
897         [DTO_OBJECT_CREATE] = 25,
898         /**
899          * Unused now
900          */
901         [DTO_OBJECT_DELETE] = 25,
902         /**
903          * Attr set credits.
904          * 3(inode bits, group, GDT)
905          */
906         [DTO_ATTR_SET_BASE] = 3,
907         /**
908          * Xattr set. The same as xattr of EXT3.
909          * DATA_TRANS_BLOCKS(14)
910          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
911          * are also counted in. Do not know why?
912          */
913         [DTO_XATTR_SET]     = 14,
914         [DTO_LOG_REC]       = 14,
915         /**
916          * creadits for inode change during write.
917          */
918         [DTO_WRITE_BASE]    = 3,
919         /**
920          * credits for single block write.
921          */
922         [DTO_WRITE_BLOCK]   = 14,
923         /**
924          * Attr set credits for chown.
925          * This is extra credits for setattr, and it is null without quota
926          */
927         [DTO_ATTR_SET_CHOWN]= 0
928 };
929
930 /**
931  * Note: we count into QUOTA here.
932  * If we mount with --data_journal we may need more.
933  */
934 static const int osd_dto_credits_quota[DTO_NR] = {
935         /**
936          * INDEX_EXTRA_TRANS_BLOCKS(8) +
937          * SINGLEDATA_TRANS_BLOCKS(8) +
938          * 2 * QUOTA_TRANS_BLOCKS(2)
939          */
940         [DTO_INDEX_INSERT]  = 20,
941         /**
942          * INDEX_EXTRA_TRANS_BLOCKS(8) +
943          * SINGLEDATA_TRANS_BLOCKS(8) +
944          * 2 * QUOTA_TRANS_BLOCKS(2)
945          */
946         [DTO_INDEX_DELETE]  = 20,
947         /**
948          * Unused now.
949          */
950         [DTO_IDNEX_UPDATE]  = 16,
951         /*
952          * Create a object. Same as create object in EXT3 filesystem.
953          * DATA_TRANS_BLOCKS(16) +
954          * INDEX_EXTRA_BLOCKS(8) +
955          * 3(inode bits, groups, GDT) +
956          * 2 * QUOTA_INIT_BLOCKS(25)
957          */
958         [DTO_OBJECT_CREATE] = 77,
959         /*
960          * Unused now.
961          * DATA_TRANS_BLOCKS(16) +
962          * INDEX_EXTRA_BLOCKS(8) +
963          * 3(inode bits, groups, GDT) +
964          * QUOTA(?)
965          */
966         [DTO_OBJECT_DELETE] = 27,
967         /**
968          * Attr set credits.
969          * 3 (inode bit, group, GDT) +
970          */
971         [DTO_ATTR_SET_BASE] = 3,
972         /**
973          * Xattr set. The same as xattr of EXT3.
974          * DATA_TRANS_BLOCKS(16)
975          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS are
976          *           also counted in. Do not know why?
977          */
978         [DTO_XATTR_SET]     = 16,
979         [DTO_LOG_REC]       = 16,
980         /**
981          * creadits for inode change during write.
982          */
983         [DTO_WRITE_BASE]    = 3,
984         /**
985          * credits for single block write.
986          */
987         [DTO_WRITE_BLOCK]   = 16,
988         /**
989          * Attr set credits for chown.
990          * It is added to already set setattr credits
991          * 2 * QUOTA_INIT_BLOCKS(25) +
992          * 2 * QUOTA_DEL_BLOCKS(9)
993          */
994         [DTO_ATTR_SET_CHOWN]= 68,
995 };
996
997 static int osd_credit_get(const struct lu_env *env, struct dt_device *d,
998                           enum dt_txn_op op)
999 {
1000         LASSERT(ARRAY_SIZE(osd_dto_credits_noquota) ==
1001                 ARRAY_SIZE(osd_dto_credits_quota));
1002         LASSERT(0 <= op && op < ARRAY_SIZE(osd_dto_credits_noquota));
1003 #ifdef HAVE_QUOTA_SUPPORT
1004         if (test_opt(osd_sb(osd_dt_dev(d)), QUOTA))
1005                 return osd_dto_credits_quota[op];
1006         else
1007 #endif
1008                 return osd_dto_credits_noquota[op];
1009 }
1010
1011 static const struct dt_device_operations osd_dt_ops = {
1012         .dt_root_get       = osd_root_get,
1013         .dt_statfs         = osd_statfs,
1014         .dt_trans_start    = osd_trans_start,
1015         .dt_trans_stop     = osd_trans_stop,
1016         .dt_conf_get       = osd_conf_get,
1017         .dt_sync           = osd_sync,
1018         .dt_ro             = osd_ro,
1019         .dt_commit_async   = osd_commit_async,
1020         .dt_credit_get     = osd_credit_get,
1021         .dt_init_capa_ctxt = osd_init_capa_ctxt,
1022         .dt_init_quota_ctxt= osd_init_quota_ctxt,
1023 };
1024
1025 static void osd_object_read_lock(const struct lu_env *env,
1026                                  struct dt_object *dt, unsigned role)
1027 {
1028         struct osd_object *obj = osd_dt_obj(dt);
1029         struct osd_thread_info *oti = osd_oti_get(env);
1030
1031         LINVRNT(osd_invariant(obj));
1032
1033         LASSERT(obj->oo_owner != env);
1034         cfs_down_read_nested(&obj->oo_sem, role);
1035
1036         LASSERT(obj->oo_owner == NULL);
1037         oti->oti_r_locks++;
1038 }
1039
1040 static void osd_object_write_lock(const struct lu_env *env,
1041                                   struct dt_object *dt, unsigned role)
1042 {
1043         struct osd_object *obj = osd_dt_obj(dt);
1044         struct osd_thread_info *oti = osd_oti_get(env);
1045
1046         LINVRNT(osd_invariant(obj));
1047
1048         LASSERT(obj->oo_owner != env);
1049         cfs_down_write_nested(&obj->oo_sem, role);
1050
1051         LASSERT(obj->oo_owner == NULL);
1052         obj->oo_owner = env;
1053         oti->oti_w_locks++;
1054 }
1055
1056 static void osd_object_read_unlock(const struct lu_env *env,
1057                                    struct dt_object *dt)
1058 {
1059         struct osd_object *obj = osd_dt_obj(dt);
1060         struct osd_thread_info *oti = osd_oti_get(env);
1061
1062         LINVRNT(osd_invariant(obj));
1063
1064         LASSERT(oti->oti_r_locks > 0);
1065         oti->oti_r_locks--;
1066         cfs_up_read(&obj->oo_sem);
1067 }
1068
1069 static void osd_object_write_unlock(const struct lu_env *env,
1070                                     struct dt_object *dt)
1071 {
1072         struct osd_object *obj = osd_dt_obj(dt);
1073         struct osd_thread_info *oti = osd_oti_get(env);
1074
1075         LINVRNT(osd_invariant(obj));
1076
1077         LASSERT(obj->oo_owner == env);
1078         LASSERT(oti->oti_w_locks > 0);
1079         oti->oti_w_locks--;
1080         obj->oo_owner = NULL;
1081         cfs_up_write(&obj->oo_sem);
1082 }
1083
1084 static int osd_object_write_locked(const struct lu_env *env,
1085                                    struct dt_object *dt)
1086 {
1087         struct osd_object *obj = osd_dt_obj(dt);
1088
1089         LINVRNT(osd_invariant(obj));
1090
1091         return obj->oo_owner == env;
1092 }
1093
1094 static int capa_is_sane(const struct lu_env *env,
1095                         struct osd_device *dev,
1096                         struct lustre_capa *capa,
1097                         struct lustre_capa_key *keys)
1098 {
1099         struct osd_thread_info *oti = osd_oti_get(env);
1100         struct lustre_capa *tcapa = &oti->oti_capa;
1101         struct obd_capa *oc;
1102         int i, rc = 0;
1103         ENTRY;
1104
1105         oc = capa_lookup(dev->od_capa_hash, capa, 0);
1106         if (oc) {
1107                 if (capa_is_expired(oc)) {
1108                         DEBUG_CAPA(D_ERROR, capa, "expired");
1109                         rc = -ESTALE;
1110                 }
1111                 capa_put(oc);
1112                 RETURN(rc);
1113         }
1114
1115         if (capa_is_expired_sec(capa)) {
1116                 DEBUG_CAPA(D_ERROR, capa, "expired");
1117                 RETURN(-ESTALE);
1118         }
1119
1120         cfs_spin_lock(&capa_lock);
1121         for (i = 0; i < 2; i++) {
1122                 if (keys[i].lk_keyid == capa->lc_keyid) {
1123                         oti->oti_capa_key = keys[i];
1124                         break;
1125                 }
1126         }
1127         cfs_spin_unlock(&capa_lock);
1128
1129         if (i == 2) {
1130                 DEBUG_CAPA(D_ERROR, capa, "no matched capa key");
1131                 RETURN(-ESTALE);
1132         }
1133
1134         rc = capa_hmac(tcapa->lc_hmac, capa, oti->oti_capa_key.lk_key);
1135         if (rc)
1136                 RETURN(rc);
1137
1138         if (memcmp(tcapa->lc_hmac, capa->lc_hmac, sizeof(capa->lc_hmac))) {
1139                 DEBUG_CAPA(D_ERROR, capa, "HMAC mismatch");
1140                 RETURN(-EACCES);
1141         }
1142
1143         oc = capa_add(dev->od_capa_hash, capa);
1144         capa_put(oc);
1145
1146         RETURN(0);
1147 }
1148
1149 static int osd_object_auth(const struct lu_env *env, struct dt_object *dt,
1150                            struct lustre_capa *capa, __u64 opc)
1151 {
1152         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
1153         struct osd_device *dev = osd_dev(dt->do_lu.lo_dev);
1154         struct md_capainfo *ci;
1155         int rc;
1156
1157         if (!dev->od_fl_capa)
1158                 return 0;
1159
1160         if (capa == BYPASS_CAPA)
1161                 return 0;
1162
1163         ci = md_capainfo(env);
1164         if (unlikely(!ci))
1165                 return 0;
1166
1167         if (ci->mc_auth == LC_ID_NONE)
1168                 return 0;
1169
1170         if (!capa) {
1171                 CERROR("no capability is provided for fid "DFID"\n", PFID(fid));
1172                 return -EACCES;
1173         }
1174
1175         if (!lu_fid_eq(fid, &capa->lc_fid)) {
1176                 DEBUG_CAPA(D_ERROR, capa, "fid "DFID" mismatch with",
1177                            PFID(fid));
1178                 return -EACCES;
1179         }
1180
1181         if (!capa_opc_supported(capa, opc)) {
1182                 DEBUG_CAPA(D_ERROR, capa, "opc "LPX64" not supported by", opc);
1183                 return -EACCES;
1184         }
1185
1186         if ((rc = capa_is_sane(env, dev, capa, dev->od_capa_keys))) {
1187                 DEBUG_CAPA(D_ERROR, capa, "insane (rc %d)", rc);
1188                 return -EACCES;
1189         }
1190
1191         return 0;
1192 }
1193
1194 static struct timespec *osd_inode_time(const struct lu_env *env,
1195                                        struct inode *inode, __u64 seconds)
1196 {
1197         struct osd_thread_info *oti = osd_oti_get(env);
1198         struct timespec        *t   = &oti->oti_time;
1199
1200         t->tv_sec  = seconds;
1201         t->tv_nsec = 0;
1202         *t = timespec_trunc(*t, get_sb_time_gran(inode->i_sb));
1203         return t;
1204 }
1205
1206
1207 static void osd_inode_getattr(const struct lu_env *env,
1208                               struct inode *inode, struct lu_attr *attr)
1209 {
1210         attr->la_valid      |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
1211                                LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
1212                                LA_FLAGS | LA_NLINK | LA_RDEV | LA_BLKSIZE;
1213
1214         attr->la_atime      = LTIME_S(inode->i_atime);
1215         attr->la_mtime      = LTIME_S(inode->i_mtime);
1216         attr->la_ctime      = LTIME_S(inode->i_ctime);
1217         attr->la_mode       = inode->i_mode;
1218         attr->la_size       = i_size_read(inode);
1219         attr->la_blocks     = inode->i_blocks;
1220         attr->la_uid        = inode->i_uid;
1221         attr->la_gid        = inode->i_gid;
1222         attr->la_flags      = LDISKFS_I(inode)->i_flags;
1223         attr->la_nlink      = inode->i_nlink;
1224         attr->la_rdev       = inode->i_rdev;
1225         attr->la_blksize    = ll_inode_blksize(inode);
1226         attr->la_blkbits    = inode->i_blkbits;
1227 }
1228
1229 static int osd_attr_get(const struct lu_env *env,
1230                         struct dt_object *dt,
1231                         struct lu_attr *attr,
1232                         struct lustre_capa *capa)
1233 {
1234         struct osd_object *obj = osd_dt_obj(dt);
1235
1236         LASSERT(dt_object_exists(dt));
1237         LINVRNT(osd_invariant(obj));
1238
1239         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
1240                 return -EACCES;
1241
1242         cfs_spin_lock(&obj->oo_guard);
1243         osd_inode_getattr(env, obj->oo_inode, attr);
1244         cfs_spin_unlock(&obj->oo_guard);
1245         return 0;
1246 }
1247
1248 static int osd_inode_setattr(const struct lu_env *env,
1249                              struct inode *inode, const struct lu_attr *attr)
1250 {
1251         __u64 bits;
1252
1253         bits = attr->la_valid;
1254
1255         LASSERT(!(bits & LA_TYPE)); /* Huh? You want too much. */
1256
1257 #ifdef HAVE_QUOTA_SUPPORT
1258         if ((bits & LA_UID && attr->la_uid != inode->i_uid) ||
1259             (bits & LA_GID && attr->la_gid != inode->i_gid)) {
1260                 struct osd_ctxt *save = &osd_oti_get(env)->oti_ctxt;
1261                 struct iattr iattr;
1262                 int rc;
1263
1264                 iattr.ia_valid = 0;
1265                 if (bits & LA_UID)
1266                         iattr.ia_valid |= ATTR_UID;
1267                 if (bits & LA_GID)
1268                         iattr.ia_valid |= ATTR_GID;
1269                 iattr.ia_uid = attr->la_uid;
1270                 iattr.ia_gid = attr->la_gid;
1271                 osd_push_ctxt(env, save);
1272                 rc = DQUOT_TRANSFER(inode, &iattr) ? -EDQUOT : 0;
1273                 osd_pop_ctxt(save);
1274                 if (rc != 0)
1275                         return rc;
1276         }
1277 #endif
1278
1279         if (bits & LA_ATIME)
1280                 inode->i_atime  = *osd_inode_time(env, inode, attr->la_atime);
1281         if (bits & LA_CTIME)
1282                 inode->i_ctime  = *osd_inode_time(env, inode, attr->la_ctime);
1283         if (bits & LA_MTIME)
1284                 inode->i_mtime  = *osd_inode_time(env, inode, attr->la_mtime);
1285         if (bits & LA_SIZE) {
1286                 LDISKFS_I(inode)->i_disksize = attr->la_size;
1287                 i_size_write(inode, attr->la_size);
1288         }
1289
1290 #if 0
1291         /* OSD should not change "i_blocks" which is used by quota.
1292          * "i_blocks" should be changed by ldiskfs only. */
1293         if (bits & LA_BLOCKS)
1294                 inode->i_blocks = attr->la_blocks;
1295 #endif
1296         if (bits & LA_MODE)
1297                 inode->i_mode   = (inode->i_mode & S_IFMT) |
1298                         (attr->la_mode & ~S_IFMT);
1299         if (bits & LA_UID)
1300                 inode->i_uid    = attr->la_uid;
1301         if (bits & LA_GID)
1302                 inode->i_gid    = attr->la_gid;
1303         if (bits & LA_NLINK)
1304                 inode->i_nlink  = attr->la_nlink;
1305         if (bits & LA_RDEV)
1306                 inode->i_rdev   = attr->la_rdev;
1307
1308         if (bits & LA_FLAGS) {
1309                 struct ldiskfs_inode_info *li = LDISKFS_I(inode);
1310
1311                 li->i_flags = (li->i_flags & ~LDISKFS_FL_USER_MODIFIABLE) |
1312                         (attr->la_flags & LDISKFS_FL_USER_MODIFIABLE);
1313         }
1314         return 0;
1315 }
1316
1317 static int osd_attr_set(const struct lu_env *env,
1318                         struct dt_object *dt,
1319                         const struct lu_attr *attr,
1320                         struct thandle *handle,
1321                         struct lustre_capa *capa)
1322 {
1323         struct osd_object *obj = osd_dt_obj(dt);
1324         int rc;
1325
1326         LASSERT(handle != NULL);
1327         LASSERT(dt_object_exists(dt));
1328         LASSERT(osd_invariant(obj));
1329
1330         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
1331                 return -EACCES;
1332
1333         cfs_spin_lock(&obj->oo_guard);
1334         rc = osd_inode_setattr(env, obj->oo_inode, attr);
1335         cfs_spin_unlock(&obj->oo_guard);
1336
1337         if (!rc)
1338                 mark_inode_dirty(obj->oo_inode);
1339         return rc;
1340 }
1341
1342 /*
1343  * Object creation.
1344  *
1345  * XXX temporary solution.
1346  */
1347 static int osd_create_pre(struct osd_thread_info *info, struct osd_object *obj,
1348                           struct lu_attr *attr, struct thandle *th)
1349 {
1350         return 0;
1351 }
1352
1353 static int osd_create_post(struct osd_thread_info *info, struct osd_object *obj,
1354                            struct lu_attr *attr, struct thandle *th)
1355 {
1356         osd_object_init0(obj);
1357         return 0;
1358 }
1359
1360 static struct dentry * osd_child_dentry_get(const struct lu_env *env,
1361                                             struct osd_object *obj,
1362                                             const char *name,
1363                                             const int namelen)
1364 {
1365         struct osd_thread_info *info   = osd_oti_get(env);
1366         struct dentry *child_dentry = &info->oti_child_dentry;
1367         struct dentry *obj_dentry = &info->oti_obj_dentry;
1368
1369         obj_dentry->d_inode = obj->oo_inode;
1370         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
1371         obj_dentry->d_name.hash = 0;
1372
1373         child_dentry->d_name.hash = 0;
1374         child_dentry->d_parent = obj_dentry;
1375         child_dentry->d_name.name = name;
1376         child_dentry->d_name.len = namelen;
1377         return child_dentry;
1378 }
1379
1380
1381 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
1382                       cfs_umode_t mode,
1383                       struct dt_allocation_hint *hint,
1384                       struct thandle *th)
1385 {
1386         int result;
1387         struct osd_device  *osd = osd_obj2dev(obj);
1388         struct osd_thandle *oth;
1389         struct dt_object   *parent;
1390         struct inode       *inode;
1391 #ifdef HAVE_QUOTA_SUPPORT
1392         struct osd_ctxt    *save = &info->oti_ctxt;
1393 #endif
1394
1395         LINVRNT(osd_invariant(obj));
1396         LASSERT(obj->oo_inode == NULL);
1397
1398         oth = container_of(th, struct osd_thandle, ot_super);
1399         LASSERT(oth->ot_handle->h_transaction != NULL);
1400
1401         if (hint && hint->dah_parent)
1402                 parent = hint->dah_parent;
1403         else
1404                 parent = osd->od_obj_area;
1405
1406         LASSERT(parent != NULL);
1407         LASSERT(osd_dt_obj(parent)->oo_inode->i_op != NULL);
1408
1409 #ifdef HAVE_QUOTA_SUPPORT
1410         osd_push_ctxt(info->oti_env, save);
1411 #endif
1412         inode = ldiskfs_create_inode(oth->ot_handle,
1413                                      osd_dt_obj(parent)->oo_inode, mode);
1414 #ifdef HAVE_QUOTA_SUPPORT
1415         osd_pop_ctxt(save);
1416 #endif
1417         if (!IS_ERR(inode)) {
1418                 obj->oo_inode = inode;
1419                 result = 0;
1420         } else
1421                 result = PTR_ERR(inode);
1422         LINVRNT(osd_invariant(obj));
1423         return result;
1424 }
1425
1426 enum {
1427         OSD_NAME_LEN = 255
1428 };
1429
1430 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
1431                      struct lu_attr *attr,
1432                      struct dt_allocation_hint *hint,
1433                      struct dt_object_format *dof,
1434                      struct thandle *th)
1435 {
1436         int result;
1437         struct osd_thandle *oth;
1438         struct osd_device *osd = osd_obj2dev(obj);
1439         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX));
1440
1441         LASSERT(S_ISDIR(attr->la_mode));
1442
1443         oth = container_of(th, struct osd_thandle, ot_super);
1444         LASSERT(oth->ot_handle->h_transaction != NULL);
1445         result = osd_mkfile(info, obj, mode, hint, th);
1446         if (result == 0 && osd->od_iop_mode == 0) {
1447                 LASSERT(obj->oo_inode != NULL);
1448                 /*
1449                  * XXX uh-oh... call low-level iam function directly.
1450                  */
1451
1452                 result = iam_lvar_create(obj->oo_inode, OSD_NAME_LEN, 4,
1453                                          sizeof (struct osd_fid_pack),
1454                                          oth->ot_handle);
1455         }
1456         return result;
1457 }
1458
1459 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
1460                         struct lu_attr *attr,
1461                         struct dt_allocation_hint *hint,
1462                         struct dt_object_format *dof,
1463                         struct thandle *th)
1464 {
1465         int result;
1466         struct osd_thandle *oth;
1467         const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
1468
1469         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX));
1470
1471         LASSERT(S_ISREG(attr->la_mode));
1472
1473         oth = container_of(th, struct osd_thandle, ot_super);
1474         LASSERT(oth->ot_handle->h_transaction != NULL);
1475
1476         result = osd_mkfile(info, obj, mode, hint, th);
1477         if (result == 0) {
1478                 LASSERT(obj->oo_inode != NULL);
1479                 if (feat->dif_flags & DT_IND_VARKEY)
1480                         result = iam_lvar_create(obj->oo_inode,
1481                                                  feat->dif_keysize_max,
1482                                                  feat->dif_ptrsize,
1483                                                  feat->dif_recsize_max,
1484                                                  oth->ot_handle);
1485                 else
1486                         result = iam_lfix_create(obj->oo_inode,
1487                                                  feat->dif_keysize_max,
1488                                                  feat->dif_ptrsize,
1489                                                  feat->dif_recsize_max,
1490                                                  oth->ot_handle);
1491
1492         }
1493         return result;
1494 }
1495
1496 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
1497                      struct lu_attr *attr,
1498                      struct dt_allocation_hint *hint,
1499                      struct dt_object_format *dof,
1500                      struct thandle *th)
1501 {
1502         LASSERT(S_ISREG(attr->la_mode));
1503         return osd_mkfile(info, obj, (attr->la_mode &
1504                                (S_IFMT | S_IRWXUGO | S_ISVTX)), hint, th);
1505 }
1506
1507 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
1508                      struct lu_attr *attr,
1509                      struct dt_allocation_hint *hint,
1510                      struct dt_object_format *dof,
1511                      struct thandle *th)
1512 {
1513         LASSERT(S_ISLNK(attr->la_mode));
1514         return osd_mkfile(info, obj, (attr->la_mode &
1515                               (S_IFMT | S_IRWXUGO | S_ISVTX)), hint, th);
1516 }
1517
1518 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
1519                      struct lu_attr *attr,
1520                      struct dt_allocation_hint *hint,
1521                      struct dt_object_format *dof,
1522                      struct thandle *th)
1523 {
1524         cfs_umode_t mode = attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX);
1525         int result;
1526
1527         LINVRNT(osd_invariant(obj));
1528         LASSERT(obj->oo_inode == NULL);
1529         LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
1530                 S_ISFIFO(mode) || S_ISSOCK(mode));
1531
1532         result = osd_mkfile(info, obj, mode, hint, th);
1533         if (result == 0) {
1534                 LASSERT(obj->oo_inode != NULL);
1535                 init_special_inode(obj->oo_inode, mode, attr->la_rdev);
1536         }
1537         LINVRNT(osd_invariant(obj));
1538         return result;
1539 }
1540
1541 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
1542                               struct lu_attr *,
1543                               struct dt_allocation_hint *hint,
1544                               struct dt_object_format *dof,
1545                               struct thandle *);
1546
1547 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
1548 {
1549         osd_obj_type_f result;
1550
1551         switch (type) {
1552         case DFT_DIR:
1553                 result = osd_mkdir;
1554                 break;
1555         case DFT_REGULAR:
1556                 result = osd_mkreg;
1557                 break;
1558         case DFT_SYM:
1559                 result = osd_mksym;
1560                 break;
1561         case DFT_NODE:
1562                 result = osd_mknod;
1563                 break;
1564         case DFT_INDEX:
1565                 result = osd_mk_index;
1566                 break;
1567
1568         default:
1569                 LBUG();
1570                 break;
1571         }
1572         return result;
1573 }
1574
1575
1576 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
1577                         struct dt_object *parent, cfs_umode_t child_mode)
1578 {
1579         LASSERT(ah);
1580
1581         memset(ah, 0, sizeof(*ah));
1582         ah->dah_parent = parent;
1583         ah->dah_mode = child_mode;
1584 }
1585
1586 /**
1587  * Helper function for osd_object_create()
1588  *
1589  * \retval 0, on success
1590  */
1591 static int __osd_object_create(struct osd_thread_info *info,
1592                                struct osd_object *obj, struct lu_attr *attr,
1593                                struct dt_allocation_hint *hint,
1594                                struct dt_object_format *dof,
1595                                struct thandle *th)
1596 {
1597
1598         int result;
1599
1600         result = osd_create_pre(info, obj, attr, th);
1601         if (result == 0) {
1602                 result = osd_create_type_f(dof->dof_type)(info, obj,
1603                                            attr, hint, dof, th);
1604                 if (result == 0)
1605                         result = osd_create_post(info, obj, attr, th);
1606         }
1607         return result;
1608 }
1609
1610 /**
1611  * Helper function for osd_object_create()
1612  *
1613  * \retval 0, on success
1614  */
1615 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
1616                            const struct lu_fid *fid, struct thandle *th)
1617 {
1618         struct osd_thread_info *info = osd_oti_get(env);
1619         struct osd_inode_id    *id   = &info->oti_id;
1620         struct osd_device      *osd  = osd_obj2dev(obj);
1621         struct md_ucred        *uc   = md_ucred(env);
1622
1623         LASSERT(obj->oo_inode != NULL);
1624         LASSERT(uc != NULL);
1625
1626         id->oii_ino = obj->oo_inode->i_ino;
1627         id->oii_gen = obj->oo_inode->i_generation;
1628
1629         return osd_oi_insert(info, &osd->od_oi, fid, id, th,
1630                              uc->mu_cap & CFS_CAP_SYS_RESOURCE_MASK);
1631 }
1632
1633 static int osd_object_create(const struct lu_env *env, struct dt_object *dt,
1634                              struct lu_attr *attr,
1635                              struct dt_allocation_hint *hint,
1636                              struct dt_object_format *dof,
1637                              struct thandle *th)
1638 {
1639         const struct lu_fid    *fid    = lu_object_fid(&dt->do_lu);
1640         struct osd_object      *obj    = osd_dt_obj(dt);
1641         struct osd_thread_info *info   = osd_oti_get(env);
1642         int result;
1643
1644         ENTRY;
1645
1646         LINVRNT(osd_invariant(obj));
1647         LASSERT(!dt_object_exists(dt));
1648         LASSERT(osd_write_locked(env, obj));
1649         LASSERT(th != NULL);
1650
1651         result = __osd_object_create(info, obj, attr, hint, dof, th);
1652         if (result == 0)
1653                 result = __osd_oi_insert(env, obj, fid, th);
1654
1655         LASSERT(ergo(result == 0, dt_object_exists(dt)));
1656         LASSERT(osd_invariant(obj));
1657         RETURN(result);
1658 }
1659
1660 /**
1661  * Helper function for osd_xattr_set()
1662  */
1663 static int __osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
1664                            const struct lu_buf *buf, const char *name, int fl)
1665 {
1666         struct osd_object      *obj      = osd_dt_obj(dt);
1667         struct inode           *inode    = obj->oo_inode;
1668         struct osd_thread_info *info     = osd_oti_get(env);
1669         struct dentry          *dentry   = &info->oti_child_dentry;
1670         struct timespec        *t        = &info->oti_time;
1671         int                     fs_flags = 0;
1672         int  rc;
1673
1674         LASSERT(dt_object_exists(dt));
1675         LASSERT(inode->i_op != NULL && inode->i_op->setxattr != NULL);
1676         LASSERT(osd_write_locked(env, obj));
1677
1678         if (fl & LU_XATTR_REPLACE)
1679                 fs_flags |= XATTR_REPLACE;
1680
1681         if (fl & LU_XATTR_CREATE)
1682                 fs_flags |= XATTR_CREATE;
1683
1684         dentry->d_inode = inode;
1685         *t = inode->i_ctime;
1686         rc = inode->i_op->setxattr(dentry, name, buf->lb_buf,
1687                                    buf->lb_len, fs_flags);
1688         /* ctime should not be updated with server-side time. */
1689         cfs_spin_lock(&obj->oo_guard);
1690         inode->i_ctime = *t;
1691         cfs_spin_unlock(&obj->oo_guard);
1692         mark_inode_dirty(inode);
1693         return rc;
1694 }
1695
1696 /**
1697  * Put the fid into lustre_mdt_attrs, and then place the structure
1698  * inode's ea. This fid should not be altered during the life time
1699  * of the inode.
1700  *
1701  * \retval +ve, on success
1702  * \retval -ve, on error
1703  *
1704  * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
1705  */
1706 static int osd_ea_fid_set(const struct lu_env *env, struct dt_object *dt,
1707                           const struct lu_fid *fid)
1708 {
1709         struct osd_thread_info  *info      = osd_oti_get(env);
1710         struct lustre_mdt_attrs *mdt_attrs = &info->oti_mdt_attrs;
1711
1712         lustre_lma_init(mdt_attrs, fid);
1713         lustre_lma_swab(mdt_attrs);
1714         return __osd_xattr_set(env, dt,
1715                                osd_buf_get(env, mdt_attrs, sizeof *mdt_attrs),
1716                                XATTR_NAME_LMA, LU_XATTR_CREATE);
1717
1718 }
1719
1720 /**
1721  * Helper function to form igif
1722  */
1723 static inline void osd_igif_get(const struct lu_env *env, struct inode  *inode,
1724                                 struct lu_fid *fid)
1725 {
1726         lu_igif_build(fid, inode->i_ino, inode->i_generation);
1727 }
1728
1729 /**
1730  * Helper function to pack the fid
1731  */
1732 void osd_fid_pack(struct osd_fid_pack *pack, const struct dt_rec *fid,
1733                   struct lu_fid *befider)
1734 {
1735         fid_cpu_to_be(befider, (struct lu_fid *)fid);
1736         memcpy(pack->fp_area, befider, sizeof(*befider));
1737         pack->fp_len =  sizeof(*befider) + 1;
1738 }
1739
1740 int osd_fid_unpack(struct lu_fid *fid, const struct osd_fid_pack *pack)
1741 {
1742         int result;
1743
1744         result = 0;
1745         switch (pack->fp_len) {
1746         case sizeof *fid + 1:
1747                 memcpy(fid, pack->fp_area, sizeof *fid);
1748                 fid_be_to_cpu(fid, fid);
1749                 break;
1750         default:
1751                 CERROR("Unexpected packed fid size: %d\n", pack->fp_len);
1752                 result = -EIO;
1753         }
1754         return result;
1755 }
1756
1757 /**
1758  * Try to read the fid from inode ea into dt_rec, if return value
1759  * i.e. rc is +ve, then we got fid, otherwise we will have to form igif
1760  *
1761  * \param fid object fid.
1762  *
1763  * \retval 0 on success
1764  */
1765 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
1766                           __u32 ino, struct lu_fid *fid)
1767 {
1768         struct osd_thread_info  *info      = osd_oti_get(env);
1769         struct lustre_mdt_attrs *mdt_attrs = &info->oti_mdt_attrs;
1770         struct lu_device        *ldev   = obj->oo_dt.do_lu.lo_dev;
1771         struct dentry           *dentry = &info->oti_child_dentry;
1772         struct osd_inode_id     *id     = &info->oti_id;
1773         struct osd_device       *dev;
1774         struct inode            *inode;
1775         int                      rc;
1776
1777         ENTRY;
1778         dev  = osd_dev(ldev);
1779
1780         id->oii_ino = ino;
1781         id->oii_gen = OSD_OII_NOGEN;
1782
1783         inode = osd_iget(info, dev, id);
1784         if (IS_ERR(inode)) {
1785                 rc = PTR_ERR(inode);
1786                 GOTO(out,rc);
1787         }
1788         dentry->d_inode = inode;
1789
1790         LASSERT(inode->i_op != NULL && inode->i_op->getxattr != NULL);
1791         rc = inode->i_op->getxattr(dentry, XATTR_NAME_LMA, (void *)mdt_attrs,
1792                                    sizeof *mdt_attrs);
1793
1794         /* Check LMA compatibility */
1795         if (rc > 0 &&
1796             (mdt_attrs->lma_incompat & ~cpu_to_le32(LMA_INCOMPAT_SUPP))) {
1797                 CWARN("Inode %lx: Unsupported incompat LMA feature(s) %#x\n",
1798                       inode->i_ino, le32_to_cpu(mdt_attrs->lma_incompat) &
1799                       ~LMA_INCOMPAT_SUPP);
1800                 return -ENOSYS;
1801         }
1802
1803         if (rc > 0) {
1804                 lustre_lma_swab(mdt_attrs);
1805                 memcpy(fid, &mdt_attrs->lma_self_fid, sizeof(*fid));
1806                 rc = 0;
1807         } else if (rc == -ENODATA) {
1808                 osd_igif_get(env, inode, fid);
1809                 rc = 0;
1810         }
1811         iput(inode);
1812
1813 out:
1814         RETURN(rc);
1815 }
1816
1817 /**
1818  * OSD layer object create function for interoperability mode (b11826).
1819  * This is mostly similar to osd_object_create(). Only difference being, fid is
1820  * inserted into inode ea here.
1821  *
1822  * \retval   0, on success
1823  * \retval -ve, on error
1824  */
1825 static int osd_object_ea_create(const struct lu_env *env, struct dt_object *dt,
1826                              struct lu_attr *attr,
1827                              struct dt_allocation_hint *hint,
1828                              struct dt_object_format *dof,
1829                              struct thandle *th)
1830 {
1831         const struct lu_fid    *fid    = lu_object_fid(&dt->do_lu);
1832         struct osd_object      *obj    = osd_dt_obj(dt);
1833         struct osd_thread_info *info   = osd_oti_get(env);
1834         int result;
1835         int is_root = 0;
1836
1837         ENTRY;
1838
1839         LASSERT(osd_invariant(obj));
1840         LASSERT(!dt_object_exists(dt));
1841         LASSERT(osd_write_locked(env, obj));
1842         LASSERT(th != NULL);
1843
1844         result = __osd_object_create(info, obj, attr, hint, dof, th);
1845
1846         if (hint && hint->dah_parent)
1847                 is_root = osd_object_is_root(osd_dt_obj(hint->dah_parent));
1848
1849         /* objects under osd root shld have igif fid, so dont add fid EA */
1850         if (result == 0 && is_root == 0)
1851                 result = osd_ea_fid_set(env, dt, fid);
1852
1853         if (result == 0)
1854                 result = __osd_oi_insert(env, obj, fid, th);
1855
1856         LASSERT(ergo(result == 0, dt_object_exists(dt)));
1857         LINVRNT(osd_invariant(obj));
1858         RETURN(result);
1859 }
1860
1861 /*
1862  * Concurrency: @dt is write locked.
1863  */
1864 static void osd_object_ref_add(const struct lu_env *env,
1865                                struct dt_object *dt,
1866                                struct thandle *th)
1867 {
1868         struct osd_object *obj = osd_dt_obj(dt);
1869         struct inode *inode = obj->oo_inode;
1870
1871         LINVRNT(osd_invariant(obj));
1872         LASSERT(dt_object_exists(dt));
1873         LASSERT(osd_write_locked(env, obj));
1874         LASSERT(th != NULL);
1875
1876         cfs_spin_lock(&obj->oo_guard);
1877         LASSERT(inode->i_nlink < LDISKFS_LINK_MAX);
1878         inode->i_nlink++;
1879         cfs_spin_unlock(&obj->oo_guard);
1880         mark_inode_dirty(inode);
1881         LINVRNT(osd_invariant(obj));
1882 }
1883
1884 /*
1885  * Concurrency: @dt is write locked.
1886  */
1887 static void osd_object_ref_del(const struct lu_env *env,
1888                                struct dt_object *dt,
1889                                struct thandle *th)
1890 {
1891         struct osd_object *obj = osd_dt_obj(dt);
1892         struct inode *inode = obj->oo_inode;
1893
1894         LINVRNT(osd_invariant(obj));
1895         LASSERT(dt_object_exists(dt));
1896         LASSERT(osd_write_locked(env, obj));
1897         LASSERT(th != NULL);
1898
1899         cfs_spin_lock(&obj->oo_guard);
1900         LASSERT(inode->i_nlink > 0);
1901         inode->i_nlink--;
1902         cfs_spin_unlock(&obj->oo_guard);
1903         mark_inode_dirty(inode);
1904         LINVRNT(osd_invariant(obj));
1905 }
1906
1907 /*
1908  * Concurrency: @dt is read locked.
1909  */
1910 static int osd_xattr_get(const struct lu_env *env,
1911                          struct dt_object *dt,
1912                          struct lu_buf *buf,
1913                          const char *name,
1914                          struct lustre_capa *capa)
1915 {
1916         struct osd_object      *obj    = osd_dt_obj(dt);
1917         struct inode           *inode  = obj->oo_inode;
1918         struct osd_thread_info *info   = osd_oti_get(env);
1919         struct dentry          *dentry = &info->oti_obj_dentry;
1920
1921         LASSERT(dt_object_exists(dt));
1922         LASSERT(inode->i_op != NULL && inode->i_op->getxattr != NULL);
1923         LASSERT(osd_read_locked(env, obj) || osd_write_locked(env, obj));
1924
1925         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
1926                 return -EACCES;
1927
1928         dentry->d_inode = inode;
1929         return inode->i_op->getxattr(dentry, name, buf->lb_buf, buf->lb_len);
1930 }
1931
1932 /*
1933  * Concurrency: @dt is write locked.
1934  */
1935 static int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
1936                          const struct lu_buf *buf, const char *name, int fl,
1937                          struct thandle *handle, struct lustre_capa *capa)
1938 {
1939         LASSERT(handle != NULL);
1940
1941         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
1942                 return -EACCES;
1943
1944         return __osd_xattr_set(env, dt, buf, name, fl);
1945 }
1946
1947 /*
1948  * Concurrency: @dt is read locked.
1949  */
1950 static int osd_xattr_list(const struct lu_env *env,
1951                           struct dt_object *dt,
1952                           struct lu_buf *buf,
1953                           struct lustre_capa *capa)
1954 {
1955         struct osd_object      *obj    = osd_dt_obj(dt);
1956         struct inode           *inode  = obj->oo_inode;
1957         struct osd_thread_info *info   = osd_oti_get(env);
1958         struct dentry          *dentry = &info->oti_obj_dentry;
1959
1960         LASSERT(dt_object_exists(dt));
1961         LASSERT(inode->i_op != NULL && inode->i_op->listxattr != NULL);
1962         LASSERT(osd_read_locked(env, obj) || osd_write_locked(env, obj));
1963
1964         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
1965                 return -EACCES;
1966
1967         dentry->d_inode = inode;
1968         return inode->i_op->listxattr(dentry, buf->lb_buf, buf->lb_len);
1969 }
1970
1971 /*
1972  * Concurrency: @dt is write locked.
1973  */
1974 static int osd_xattr_del(const struct lu_env *env,
1975                          struct dt_object *dt,
1976                          const char *name,
1977                          struct thandle *handle,
1978                          struct lustre_capa *capa)
1979 {
1980         struct osd_object      *obj    = osd_dt_obj(dt);
1981         struct inode           *inode  = obj->oo_inode;
1982         struct osd_thread_info *info   = osd_oti_get(env);
1983         struct dentry          *dentry = &info->oti_obj_dentry;
1984         struct timespec        *t      = &info->oti_time;
1985         int                     rc;
1986
1987         LASSERT(dt_object_exists(dt));
1988         LASSERT(inode->i_op != NULL && inode->i_op->removexattr != NULL);
1989         LASSERT(osd_write_locked(env, obj));
1990         LASSERT(handle != NULL);
1991
1992         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
1993                 return -EACCES;
1994
1995         dentry->d_inode = inode;
1996         *t = inode->i_ctime;
1997         rc = inode->i_op->removexattr(dentry, name);
1998         /* ctime should not be updated with server-side time. */
1999         cfs_spin_lock(&obj->oo_guard);
2000         inode->i_ctime = *t;
2001         cfs_spin_unlock(&obj->oo_guard);
2002         mark_inode_dirty(inode);
2003         return rc;
2004 }
2005
2006 static struct obd_capa *osd_capa_get(const struct lu_env *env,
2007                                      struct dt_object *dt,
2008                                      struct lustre_capa *old,
2009                                      __u64 opc)
2010 {
2011         struct osd_thread_info *info = osd_oti_get(env);
2012         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2013         struct osd_object *obj = osd_dt_obj(dt);
2014         struct osd_device *dev = osd_obj2dev(obj);
2015         struct lustre_capa_key *key = &info->oti_capa_key;
2016         struct lustre_capa *capa = &info->oti_capa;
2017         struct obd_capa *oc;
2018         struct md_capainfo *ci;
2019         int rc;
2020         ENTRY;
2021
2022         if (!dev->od_fl_capa)
2023                 RETURN(ERR_PTR(-ENOENT));
2024
2025         LASSERT(dt_object_exists(dt));
2026         LINVRNT(osd_invariant(obj));
2027
2028         /* renewal sanity check */
2029         if (old && osd_object_auth(env, dt, old, opc))
2030                 RETURN(ERR_PTR(-EACCES));
2031
2032         ci = md_capainfo(env);
2033         if (unlikely(!ci))
2034                 RETURN(ERR_PTR(-ENOENT));
2035
2036         switch (ci->mc_auth) {
2037         case LC_ID_NONE:
2038                 RETURN(NULL);
2039         case LC_ID_PLAIN:
2040                 capa->lc_uid = obj->oo_inode->i_uid;
2041                 capa->lc_gid = obj->oo_inode->i_gid;
2042                 capa->lc_flags = LC_ID_PLAIN;
2043                 break;
2044         case LC_ID_CONVERT: {
2045                 __u32 d[4], s[4];
2046
2047                 s[0] = obj->oo_inode->i_uid;
2048                 ll_get_random_bytes(&(s[1]), sizeof(__u32));
2049                 s[2] = obj->oo_inode->i_gid;
2050                 ll_get_random_bytes(&(s[3]), sizeof(__u32));
2051                 rc = capa_encrypt_id(d, s, key->lk_key, CAPA_HMAC_KEY_MAX_LEN);
2052                 if (unlikely(rc))
2053                         RETURN(ERR_PTR(rc));
2054
2055                 capa->lc_uid   = ((__u64)d[1] << 32) | d[0];
2056                 capa->lc_gid   = ((__u64)d[3] << 32) | d[2];
2057                 capa->lc_flags = LC_ID_CONVERT;
2058                 break;
2059         }
2060         default:
2061                 RETURN(ERR_PTR(-EINVAL));
2062         }
2063
2064         capa->lc_fid = *fid;
2065         capa->lc_opc = opc;
2066         capa->lc_flags |= dev->od_capa_alg << 24;
2067         capa->lc_timeout = dev->od_capa_timeout;
2068         capa->lc_expiry = 0;
2069
2070         oc = capa_lookup(dev->od_capa_hash, capa, 1);
2071         if (oc) {
2072                 LASSERT(!capa_is_expired(oc));
2073                 RETURN(oc);
2074         }
2075
2076         cfs_spin_lock(&capa_lock);
2077         *key = dev->od_capa_keys[1];
2078         cfs_spin_unlock(&capa_lock);
2079
2080         capa->lc_keyid = key->lk_keyid;
2081         capa->lc_expiry = cfs_time_current_sec() + dev->od_capa_timeout;
2082
2083         rc = capa_hmac(capa->lc_hmac, capa, key->lk_key);
2084         if (rc) {
2085                 DEBUG_CAPA(D_ERROR, capa, "HMAC failed: %d for", rc);
2086                 RETURN(ERR_PTR(rc));
2087         }
2088
2089         oc = capa_add(dev->od_capa_hash, capa);
2090         RETURN(oc);
2091 }
2092
2093 static int osd_object_sync(const struct lu_env *env, struct dt_object *dt)
2094 {
2095         int rc;
2096         struct osd_object      *obj    = osd_dt_obj(dt);
2097         struct inode           *inode  = obj->oo_inode;
2098         struct osd_thread_info *info   = osd_oti_get(env);
2099         struct dentry          *dentry = &info->oti_obj_dentry;
2100         struct file            *file   = &info->oti_file;
2101         ENTRY;
2102
2103         dentry->d_inode = inode;
2104         file->f_dentry = dentry;
2105         file->f_mapping = inode->i_mapping;
2106         file->f_op = inode->i_fop;
2107         LOCK_INODE_MUTEX(inode);
2108         rc = file->f_op->fsync(file, dentry, 0);
2109         UNLOCK_INODE_MUTEX(inode);
2110         RETURN(rc);
2111 }
2112
2113 /*
2114  * Get the 64-bit version for an inode.
2115  */
2116 static dt_obj_version_t osd_object_version_get(const struct lu_env *env,
2117                                                struct dt_object *dt)
2118 {
2119         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2120
2121         CDEBUG(D_INFO, "Get version "LPX64" for inode %lu\n",
2122                LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2123         return LDISKFS_I(inode)->i_fs_version;
2124 }
2125
2126 /*
2127  * Set the 64-bit version and return the old version.
2128  */
2129 static void osd_object_version_set(const struct lu_env *env, struct dt_object *dt,
2130                                    dt_obj_version_t new_version)
2131 {
2132         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2133
2134         CDEBUG(D_INFO, "Set version "LPX64" (old "LPX64") for inode %lu\n",
2135                new_version, LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2136         LDISKFS_I(inode)->i_fs_version = new_version;
2137         /** Version is set after all inode operations are finished,
2138          *  so we should mark it dirty here */
2139         inode->i_sb->s_op->dirty_inode(inode);
2140 }
2141
2142 static int osd_data_get(const struct lu_env *env, struct dt_object *dt,
2143                         void **data)
2144 {
2145         struct osd_object *obj = osd_dt_obj(dt);
2146         ENTRY;
2147
2148         *data = (void *)obj->oo_inode;
2149         RETURN(0);
2150 }
2151
2152 /*
2153  * Index operations.
2154  */
2155
2156 static int osd_iam_index_probe(const struct lu_env *env, struct osd_object *o,
2157                            const struct dt_index_features *feat)
2158 {
2159         struct iam_descr *descr;
2160
2161         if (osd_object_is_root(o))
2162                 return feat == &dt_directory_features;
2163
2164         LASSERT(o->oo_dir != NULL);
2165
2166         descr = o->oo_dir->od_container.ic_descr;
2167         if (feat == &dt_directory_features) {
2168                 if (descr->id_rec_size == sizeof(struct osd_fid_pack))
2169                         return 1;
2170                 else
2171                         return 0;
2172         } else {
2173                 return
2174                         feat->dif_keysize_min <= descr->id_key_size &&
2175                         descr->id_key_size <= feat->dif_keysize_max &&
2176                         feat->dif_recsize_min <= descr->id_rec_size &&
2177                         descr->id_rec_size <= feat->dif_recsize_max &&
2178                         !(feat->dif_flags & (DT_IND_VARKEY |
2179                                              DT_IND_VARREC | DT_IND_NONUNQ)) &&
2180                         ergo(feat->dif_flags & DT_IND_UPDATE,
2181                              1 /* XXX check that object (and file system) is
2182                                 * writable */);
2183         }
2184 }
2185
2186 static int osd_iam_container_init(const struct lu_env *env,
2187                                   struct osd_object *obj,
2188                                   struct osd_directory *dir)
2189 {
2190         int result;
2191         struct iam_container *bag;
2192
2193         bag    = &dir->od_container;
2194         result = iam_container_init(bag, &dir->od_descr, obj->oo_inode);
2195         if (result == 0) {
2196                 result = iam_container_setup(bag);
2197                 if (result == 0)
2198                         obj->oo_dt.do_index_ops = &osd_index_iam_ops;
2199                 else
2200                         iam_container_fini(bag);
2201         }
2202         return result;
2203 }
2204
2205
2206 /*
2207  * Concurrency: no external locking is necessary.
2208  */
2209 static int osd_index_try(const struct lu_env *env, struct dt_object *dt,
2210                          const struct dt_index_features *feat)
2211 {
2212         int result;
2213         int ea_dir = 0;
2214         struct osd_object *obj = osd_dt_obj(dt);
2215         struct osd_device *osd = osd_obj2dev(obj);
2216
2217         LINVRNT(osd_invariant(obj));
2218         LASSERT(dt_object_exists(dt));
2219
2220         if (osd_object_is_root(obj)) {
2221                 dt->do_index_ops = &osd_index_ea_ops;
2222                 result = 0;
2223         } else if (feat == &dt_directory_features && osd->od_iop_mode) {
2224                 dt->do_index_ops = &osd_index_ea_ops;
2225                 if (S_ISDIR(obj->oo_inode->i_mode))
2226                         result = 0;
2227                 else
2228                         result = -ENOTDIR;
2229                 ea_dir = 1;
2230         } else if (!osd_has_index(obj)) {
2231                 struct osd_directory *dir;
2232
2233                 OBD_ALLOC_PTR(dir);
2234                 if (dir != NULL) {
2235
2236                         cfs_spin_lock(&obj->oo_guard);
2237                         if (obj->oo_dir == NULL)
2238                                 obj->oo_dir = dir;
2239                         else
2240                                 /*
2241                                  * Concurrent thread allocated container data.
2242                                  */
2243                                 OBD_FREE_PTR(dir);
2244                         cfs_spin_unlock(&obj->oo_guard);
2245                         /*
2246                          * Now, that we have container data, serialize its
2247                          * initialization.
2248                          */
2249                         cfs_down_write(&obj->oo_ext_idx_sem);
2250                         /*
2251                          * recheck under lock.
2252                          */
2253                         if (!osd_has_index(obj))
2254                                 result = osd_iam_container_init(env, obj, dir);
2255                         else
2256                                 result = 0;
2257                         cfs_up_write(&obj->oo_ext_idx_sem);
2258                 } else
2259                         result = -ENOMEM;
2260         } else
2261                 result = 0;
2262
2263         if (result == 0 && ea_dir == 0) {
2264                 if (!osd_iam_index_probe(env, obj, feat))
2265                         result = -ENOTDIR;
2266         }
2267         LINVRNT(osd_invariant(obj));
2268
2269         return result;
2270 }
2271
2272 static const struct dt_object_operations osd_obj_ops = {
2273         .do_read_lock    = osd_object_read_lock,
2274         .do_write_lock   = osd_object_write_lock,
2275         .do_read_unlock  = osd_object_read_unlock,
2276         .do_write_unlock = osd_object_write_unlock,
2277         .do_write_locked = osd_object_write_locked,
2278         .do_attr_get     = osd_attr_get,
2279         .do_attr_set     = osd_attr_set,
2280         .do_ah_init      = osd_ah_init,
2281         .do_create       = osd_object_create,
2282         .do_index_try    = osd_index_try,
2283         .do_ref_add      = osd_object_ref_add,
2284         .do_ref_del      = osd_object_ref_del,
2285         .do_xattr_get    = osd_xattr_get,
2286         .do_xattr_set    = osd_xattr_set,
2287         .do_xattr_del    = osd_xattr_del,
2288         .do_xattr_list   = osd_xattr_list,
2289         .do_capa_get     = osd_capa_get,
2290         .do_object_sync  = osd_object_sync,
2291         .do_version_get  = osd_object_version_get,
2292         .do_version_set  = osd_object_version_set,
2293         .do_data_get     = osd_data_get,
2294 };
2295
2296 /**
2297  * dt_object_operations for interoperability mode
2298  * (i.e. to run 2.0 mds on 1.8 disk) (b11826)
2299  */
2300 static const struct dt_object_operations osd_obj_ea_ops = {
2301         .do_read_lock    = osd_object_read_lock,
2302         .do_write_lock   = osd_object_write_lock,
2303         .do_read_unlock  = osd_object_read_unlock,
2304         .do_write_unlock = osd_object_write_unlock,
2305         .do_write_locked = osd_object_write_locked,
2306         .do_attr_get     = osd_attr_get,
2307         .do_attr_set     = osd_attr_set,
2308         .do_ah_init      = osd_ah_init,
2309         .do_create       = osd_object_ea_create,
2310         .do_index_try    = osd_index_try,
2311         .do_ref_add      = osd_object_ref_add,
2312         .do_ref_del      = osd_object_ref_del,
2313         .do_xattr_get    = osd_xattr_get,
2314         .do_xattr_set    = osd_xattr_set,
2315         .do_xattr_del    = osd_xattr_del,
2316         .do_xattr_list   = osd_xattr_list,
2317         .do_capa_get     = osd_capa_get,
2318         .do_object_sync  = osd_object_sync,
2319         .do_version_get  = osd_object_version_get,
2320         .do_version_set  = osd_object_version_set,
2321         .do_data_get     = osd_data_get,
2322 };
2323
2324 /*
2325  * Body operations.
2326  */
2327
2328 /*
2329  * XXX: Another layering violation for now.
2330  *
2331  * We don't want to use ->f_op->read methods, because generic file write
2332  *
2333  *         - serializes on ->i_sem, and
2334  *
2335  *         - does a lot of extra work like balance_dirty_pages(),
2336  *
2337  * which doesn't work for globally shared files like /last-received.
2338  */
2339 int fsfilt_ldiskfs_read(struct inode *inode, void *buf, int size, loff_t *offs);
2340 int fsfilt_ldiskfs_write_handle(struct inode *inode, void *buf, int bufsize,
2341                                 loff_t *offs, handle_t *handle);
2342
2343 static ssize_t osd_read(const struct lu_env *env, struct dt_object *dt,
2344                         struct lu_buf *buf, loff_t *pos,
2345                         struct lustre_capa *capa)
2346 {
2347         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2348
2349         if (osd_object_auth(env, dt, capa, CAPA_OPC_BODY_READ))
2350                 RETURN(-EACCES);
2351
2352         return fsfilt_ldiskfs_read(inode, buf->lb_buf, buf->lb_len, pos);
2353 }
2354
2355 static ssize_t osd_write(const struct lu_env *env, struct dt_object *dt,
2356                          const struct lu_buf *buf, loff_t *pos,
2357                          struct thandle *handle, struct lustre_capa *capa,
2358                          int ignore_quota)
2359 {
2360         struct inode       *inode = osd_dt_obj(dt)->oo_inode;
2361         struct osd_thandle *oh;
2362         ssize_t             result;
2363 #ifdef HAVE_QUOTA_SUPPORT
2364         cfs_cap_t           save = current->cap_effective;
2365 #endif
2366
2367         LASSERT(handle != NULL);
2368
2369         if (osd_object_auth(env, dt, capa, CAPA_OPC_BODY_WRITE))
2370                 RETURN(-EACCES);
2371
2372         oh = container_of(handle, struct osd_thandle, ot_super);
2373         LASSERT(oh->ot_handle->h_transaction != NULL);
2374 #ifdef HAVE_QUOTA_SUPPORT
2375         if (ignore_quota)
2376                 current->cap_effective |= CFS_CAP_SYS_RESOURCE_MASK;
2377         else
2378                 current->cap_effective &= ~CFS_CAP_SYS_RESOURCE_MASK;
2379 #endif
2380         result = fsfilt_ldiskfs_write_handle(inode, buf->lb_buf, buf->lb_len,
2381                                              pos, oh->ot_handle);
2382 #ifdef HAVE_QUOTA_SUPPORT
2383         current->cap_effective = save;
2384 #endif
2385         if (result == 0)
2386                 result = buf->lb_len;
2387         return result;
2388 }
2389
2390 static const struct dt_body_operations osd_body_ops = {
2391         .dbo_read  = osd_read,
2392         .dbo_write = osd_write
2393 };
2394
2395
2396 /**
2397  *      delete a (key, value) pair from index \a dt specified by \a key
2398  *
2399  *      \param  dt      osd index object
2400  *      \param  key     key for index
2401  *      \param  rec     record reference
2402  *      \param  handle  transaction handler
2403  *
2404  *      \retval  0  success
2405  *      \retval -ve   failure
2406  */
2407
2408 static int osd_index_iam_delete(const struct lu_env *env, struct dt_object *dt,
2409                                 const struct dt_key *key, struct thandle *handle,
2410                                 struct lustre_capa *capa)
2411 {
2412         struct osd_object     *obj = osd_dt_obj(dt);
2413         struct osd_thandle    *oh;
2414         struct iam_path_descr *ipd;
2415         struct iam_container  *bag = &obj->oo_dir->od_container;
2416         int rc;
2417
2418         ENTRY;
2419
2420         LINVRNT(osd_invariant(obj));
2421         LASSERT(dt_object_exists(dt));
2422         LASSERT(bag->ic_object == obj->oo_inode);
2423         LASSERT(handle != NULL);
2424
2425         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_DELETE))
2426                 RETURN(-EACCES);
2427
2428         ipd = osd_idx_ipd_get(env, bag);
2429         if (unlikely(ipd == NULL))
2430                 RETURN(-ENOMEM);
2431
2432         oh = container_of0(handle, struct osd_thandle, ot_super);
2433         LASSERT(oh->ot_handle != NULL);
2434         LASSERT(oh->ot_handle->h_transaction != NULL);
2435
2436         rc = iam_delete(oh->ot_handle, bag, (const struct iam_key *)key, ipd);
2437         osd_ipd_put(env, bag, ipd);
2438         LINVRNT(osd_invariant(obj));
2439         RETURN(rc);
2440 }
2441
2442 /**
2443  * Index delete function for interoperability mode (b11826).
2444  * It will remove the directory entry added by osd_index_ea_insert().
2445  * This entry is needed to maintain name->fid mapping.
2446  *
2447  * \param key,  key i.e. file entry to be deleted
2448  *
2449  * \retval   0, on success
2450  * \retval -ve, on error
2451  */
2452 static int osd_index_ea_delete(const struct lu_env *env, struct dt_object *dt,
2453                                const struct dt_key *key, struct thandle *handle,
2454                                struct lustre_capa *capa)
2455 {
2456         struct osd_object          *obj    = osd_dt_obj(dt);
2457         struct inode               *dir    = obj->oo_inode;
2458         struct dentry              *dentry;
2459         struct osd_thandle         *oh;
2460         struct ldiskfs_dir_entry_2 *de;
2461         struct buffer_head         *bh;
2462
2463         int rc;
2464
2465         ENTRY;
2466
2467         LINVRNT(osd_invariant(obj));
2468         LASSERT(dt_object_exists(dt));
2469         LASSERT(handle != NULL);
2470
2471         oh = container_of(handle, struct osd_thandle, ot_super);
2472         LASSERT(oh->ot_handle != NULL);
2473         LASSERT(oh->ot_handle->h_transaction != NULL);
2474
2475         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_DELETE))
2476                 RETURN(-EACCES);
2477
2478         dentry = osd_child_dentry_get(env, obj,
2479                                       (char *)key, strlen((char *)key));
2480
2481         cfs_down_write(&obj->oo_ext_idx_sem);
2482         bh = ll_ldiskfs_find_entry(dir, dentry, &de);
2483         if (bh) {
2484                 struct osd_thread_info *oti = osd_oti_get(env);
2485                 struct timespec *ctime = &oti->oti_time;
2486                 struct timespec *mtime = &oti->oti_time2;
2487
2488                 *ctime = dir->i_ctime;
2489                 *mtime = dir->i_mtime;
2490                 rc = ldiskfs_delete_entry(oh->ot_handle,
2491                                 dir, de, bh);
2492                 /* xtime should not be updated with server-side time. */
2493                 cfs_spin_lock(&obj->oo_guard);
2494                 dir->i_ctime = *ctime;
2495                 dir->i_mtime = *mtime;
2496                 cfs_spin_unlock(&obj->oo_guard);
2497                 mark_inode_dirty(dir);
2498                 brelse(bh);
2499         } else
2500                 rc = -ENOENT;
2501
2502         cfs_up_write(&obj->oo_ext_idx_sem);
2503         LASSERT(osd_invariant(obj));
2504         RETURN(rc);
2505 }
2506
2507 /**
2508  *      Lookup index for \a key and copy record to \a rec.
2509  *
2510  *      \param  dt      osd index object
2511  *      \param  key     key for index
2512  *      \param  rec     record reference
2513  *
2514  *      \retval  +ve  success : exact mach
2515  *      \retval  0    return record with key not greater than \a key
2516  *      \retval -ve   failure
2517  */
2518 static int osd_index_iam_lookup(const struct lu_env *env, struct dt_object *dt,
2519                                 struct dt_rec *rec, const struct dt_key *key,
2520                                 struct lustre_capa *capa)
2521 {
2522         struct osd_object     *obj = osd_dt_obj(dt);
2523         struct iam_path_descr *ipd;
2524         struct iam_container  *bag = &obj->oo_dir->od_container;
2525         struct osd_thread_info *oti = osd_oti_get(env);
2526         struct iam_iterator    *it = &oti->oti_idx_it;
2527         struct iam_rec *iam_rec;
2528         int rc;
2529         ENTRY;
2530
2531         LASSERT(osd_invariant(obj));
2532         LASSERT(dt_object_exists(dt));
2533         LASSERT(bag->ic_object == obj->oo_inode);
2534
2535         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_LOOKUP))
2536                 RETURN(-EACCES);
2537
2538         ipd = osd_idx_ipd_get(env, bag);
2539         if (IS_ERR(ipd))
2540                 RETURN(-ENOMEM);
2541
2542         /* got ipd now we can start iterator. */
2543         iam_it_init(it, bag, 0, ipd);
2544
2545         rc = iam_it_get(it, (struct iam_key *)key);
2546         if (rc >= 0) {
2547                 if (S_ISDIR(obj->oo_inode->i_mode))
2548                         iam_rec = (struct iam_rec *)oti->oti_fid_packed;
2549                 else
2550                         iam_rec = (struct iam_rec *) rec;
2551
2552                 iam_reccpy(&it->ii_path.ip_leaf, (struct iam_rec *)iam_rec);
2553                 if (S_ISDIR(obj->oo_inode->i_mode))
2554                         osd_fid_unpack((struct lu_fid *) rec,
2555                                        (struct osd_fid_pack *)iam_rec);
2556         }
2557         iam_it_put(it);
2558         iam_it_fini(it);
2559         osd_ipd_put(env, bag, ipd);
2560
2561         LINVRNT(osd_invariant(obj));
2562
2563         RETURN(rc);
2564 }
2565
2566 /**
2567  *      Inserts (key, value) pair in \a dt index object.
2568  *
2569  *      \param  dt      osd index object
2570  *      \param  key     key for index
2571  *      \param  rec     record reference
2572  *      \param  th      transaction handler
2573  *
2574  *      \retval  0  success
2575  *      \retval -ve failure
2576  */
2577 static int osd_index_iam_insert(const struct lu_env *env, struct dt_object *dt,
2578                                 const struct dt_rec *rec, const struct dt_key *key,
2579                                 struct thandle *th, struct lustre_capa *capa,
2580                                 int ignore_quota)
2581 {
2582         struct osd_object     *obj = osd_dt_obj(dt);
2583         struct iam_path_descr *ipd;
2584         struct osd_thandle    *oh;
2585         struct iam_container  *bag = &obj->oo_dir->od_container;
2586 #ifdef HAVE_QUOTA_SUPPORT
2587         cfs_cap_t              save = current->cap_effective;
2588 #endif
2589         struct osd_thread_info *oti = osd_oti_get(env);
2590         struct iam_rec *iam_rec = (struct iam_rec *)oti->oti_fid_packed;
2591         int rc;
2592
2593         ENTRY;
2594
2595         LINVRNT(osd_invariant(obj));
2596         LASSERT(dt_object_exists(dt));
2597         LASSERT(bag->ic_object == obj->oo_inode);
2598         LASSERT(th != NULL);
2599
2600         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_INSERT))
2601                 return -EACCES;
2602
2603         ipd = osd_idx_ipd_get(env, bag);
2604         if (unlikely(ipd == NULL))
2605                 RETURN(-ENOMEM);
2606
2607         oh = container_of0(th, struct osd_thandle, ot_super);
2608         LASSERT(oh->ot_handle != NULL);
2609         LASSERT(oh->ot_handle->h_transaction != NULL);
2610 #ifdef HAVE_QUOTA_SUPPORT
2611         if (ignore_quota)
2612                 current->cap_effective |= CFS_CAP_SYS_RESOURCE_MASK;
2613         else
2614                 current->cap_effective &= ~CFS_CAP_SYS_RESOURCE_MASK;
2615 #endif
2616         if (S_ISDIR(obj->oo_inode->i_mode))
2617                 osd_fid_pack((struct osd_fid_pack *)iam_rec, rec, &oti->oti_fid);
2618         else
2619                 iam_rec = (struct iam_rec *) rec;
2620         rc = iam_insert(oh->ot_handle, bag, (const struct iam_key *)key,
2621                         iam_rec, ipd);
2622 #ifdef HAVE_QUOTA_SUPPORT
2623         current->cap_effective = save;
2624 #endif
2625         osd_ipd_put(env, bag, ipd);
2626         LINVRNT(osd_invariant(obj));
2627         RETURN(rc);
2628 }
2629
2630 /**
2631  * Calls ldiskfs_add_entry() to add directory entry
2632  * into the directory. This is required for
2633  * interoperability mode (b11826)
2634  *
2635  * \retval   0, on success
2636  * \retval -ve, on error
2637  */
2638 static int __osd_ea_add_rec(struct osd_thread_info *info,
2639                             struct osd_object *pobj,
2640                             struct osd_object *cobj,
2641                             const char *name,
2642                             struct thandle *th)
2643 {
2644         struct dentry      *child;
2645         struct osd_thandle *oth;
2646         struct inode       *cinode  = cobj->oo_inode;
2647         int rc;
2648
2649         oth = container_of(th, struct osd_thandle, ot_super);
2650         LASSERT(oth->ot_handle != NULL);
2651         LASSERT(oth->ot_handle->h_transaction != NULL);
2652
2653         child = osd_child_dentry_get(info->oti_env, pobj, name, strlen(name));
2654         rc = ldiskfs_add_entry(oth->ot_handle, child, cinode);
2655
2656         RETURN(rc);
2657 }
2658
2659 /**
2660  * Calls ldiskfs_add_dot_dotdot() to add dot and dotdot entries
2661  * into the directory.Also sets flags into osd object to
2662  * indicate dot and dotdot are created. This is required for
2663  * interoperability mode (b11826)
2664  *
2665  * \param dir   directory for dot and dotdot fixup.
2666  * \param obj   child object for linking
2667  *
2668  * \retval   0, on success
2669  * \retval -ve, on error
2670  */
2671 static int osd_add_dot_dotdot(struct osd_thread_info *info,
2672                               struct osd_object *dir,
2673                               struct osd_object *obj, const char *name,
2674                               struct thandle *th)
2675 {
2676         struct inode            *parent_dir   = obj->oo_inode;
2677         struct inode            *inode  = dir->oo_inode;
2678         struct osd_thandle      *oth;
2679         int result = 0;
2680
2681         oth = container_of(th, struct osd_thandle, ot_super);
2682         LASSERT(oth->ot_handle->h_transaction != NULL);
2683         LASSERT(S_ISDIR(dir->oo_inode->i_mode));
2684
2685         if (strcmp(name, dot) == 0) {
2686                 if (dir->oo_compat_dot_created) {
2687                         result = -EEXIST;
2688                 } else {
2689                         LASSERT(obj == dir);
2690                         dir->oo_compat_dot_created = 1;
2691                         result = 0;
2692                 }
2693         } else if(strcmp(name, dotdot) == 0) {
2694                 if (!dir->oo_compat_dot_created)
2695                         return -EINVAL;
2696                 if (dir->oo_compat_dotdot_created)
2697                         return __osd_ea_add_rec(info, dir, obj, name, th);
2698
2699                 result = ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir, inode);
2700                 if (result == 0)
2701                        dir->oo_compat_dotdot_created = 1;
2702         }
2703
2704         return result;
2705 }
2706
2707
2708 /**
2709  * It will call the appropriate osd_add* function and return the
2710  * value, return by respective functions.
2711  */
2712 static int osd_ea_add_rec(const struct lu_env *env,
2713                           struct osd_object *pobj,
2714                           struct osd_object *cobj,
2715                           const char *name,
2716                           struct thandle *th)
2717 {
2718         struct osd_thread_info    *info   = osd_oti_get(env);
2719         int rc;
2720
2721         if (name[0] == '.' && (name[1] == '\0' || (name[1] == '.' &&
2722                                                    name[2] =='\0')))
2723                 rc = osd_add_dot_dotdot(info, pobj, cobj, name, th);
2724         else
2725                 rc = __osd_ea_add_rec(info, pobj, cobj, name, th);
2726
2727         return rc;
2728 }
2729
2730 /**
2731  * Calls ->lookup() to find dentry. From dentry get inode and
2732  * read inode's ea to get fid. This is required for  interoperability
2733  * mode (b11826)
2734  *
2735  * \retval   0, on success
2736  * \retval -ve, on error
2737  */
2738 static int osd_ea_lookup_rec(const struct lu_env *env, struct osd_object *obj,
2739                              struct dt_rec *rec, const struct dt_key *key)
2740 {
2741         struct inode               *dir    = obj->oo_inode;
2742         struct dentry              *dentry;
2743         struct ldiskfs_dir_entry_2 *de;
2744         struct buffer_head         *bh;
2745         struct lu_fid              *fid = (struct lu_fid *) rec;
2746         int ino;
2747         int rc;
2748
2749         LASSERT(dir->i_op != NULL && dir->i_op->lookup != NULL);
2750
2751         dentry = osd_child_dentry_get(env, obj,
2752                                       (char *)key, strlen((char *)key));
2753
2754         cfs_down_read(&obj->oo_ext_idx_sem);
2755         bh = ll_ldiskfs_find_entry(dir, dentry, &de);
2756         if (bh) {
2757                 ino = le32_to_cpu(de->inode);
2758                 brelse(bh);
2759                 rc = osd_ea_fid_get(env, obj, ino, fid);
2760         } else
2761                 rc = -ENOENT;
2762
2763         cfs_up_read(&obj->oo_ext_idx_sem);
2764         RETURN (rc);
2765 }
2766
2767 /**
2768  * Find the osd object for given fid.
2769  *
2770  * \param fid need to find the osd object having this fid
2771  *
2772  * \retval osd_object on success
2773  * \retval        -ve on error
2774  */
2775 struct osd_object *osd_object_find(const struct lu_env *env,
2776                                    struct dt_object *dt,
2777                                    const struct lu_fid *fid)
2778 {
2779         struct lu_device         *ludev = dt->do_lu.lo_dev;
2780         struct osd_object        *child = NULL;
2781         struct lu_object         *luch;
2782         struct lu_object         *lo;
2783
2784         luch = lu_object_find(env, ludev, fid, NULL);
2785         if (!IS_ERR(luch)) {
2786                 if (lu_object_exists(luch)) {
2787                         lo = lu_object_locate(luch->lo_header, ludev->ld_type);
2788                         if (lo != NULL)
2789                                 child = osd_obj(lo);
2790                         else
2791                                 LU_OBJECT_DEBUG(D_ERROR, env, luch,
2792                                                 "lu_object can't be located"
2793                                                 ""DFID"\n", PFID(fid));
2794
2795                         if (child == NULL) {
2796                                 lu_object_put(env, luch);
2797                                 CERROR("Unable to get osd_object\n");
2798                                 child = ERR_PTR(-ENOENT);
2799                         }
2800                 } else {
2801                         LU_OBJECT_DEBUG(D_ERROR, env, luch,
2802                                         "lu_object does not exists "DFID"\n",
2803                                         PFID(fid));
2804                         child = ERR_PTR(-ENOENT);
2805                 }
2806         } else
2807                 child = (void *)luch;
2808
2809         return child;
2810 }
2811
2812 /**
2813  * Put the osd object once done with it.
2814  *
2815  * \param obj osd object that needs to be put
2816  */
2817 static inline void osd_object_put(const struct lu_env *env,
2818                                   struct osd_object *obj)
2819 {
2820         lu_object_put(env, &obj->oo_dt.do_lu);
2821 }
2822
2823 /**
2824  * Index add function for interoperability mode (b11826).
2825  * It will add the directory entry.This entry is needed to
2826  * maintain name->fid mapping.
2827  *
2828  * \param key it is key i.e. file entry to be inserted
2829  * \param rec it is value of given key i.e. fid
2830  *
2831  * \retval   0, on success
2832  * \retval -ve, on error
2833  */
2834 static int osd_index_ea_insert(const struct lu_env *env, struct dt_object *dt,
2835                                const struct dt_rec *rec,
2836                                const struct dt_key *key, struct thandle *th,
2837                                struct lustre_capa *capa, int ignore_quota)
2838 {
2839         struct osd_object        *obj   = osd_dt_obj(dt);
2840         struct lu_fid            *fid   = (struct lu_fid *) rec;
2841         const char               *name  = (const char *)key;
2842         struct osd_object        *child;
2843 #ifdef HAVE_QUOTA_SUPPORT
2844         cfs_cap_t                 save  = current->cap_effective;
2845 #endif
2846         int rc;
2847
2848         ENTRY;
2849
2850         LASSERT(osd_invariant(obj));
2851         LASSERT(dt_object_exists(dt));
2852         LASSERT(th != NULL);
2853
2854         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_INSERT))
2855                 RETURN(-EACCES);
2856
2857         child = osd_object_find(env, dt, fid);
2858         if (!IS_ERR(child)) {
2859                 struct inode *inode = obj->oo_inode;
2860                 struct osd_thread_info *oti = osd_oti_get(env);
2861                 struct timespec *ctime = &oti->oti_time;
2862                 struct timespec *mtime = &oti->oti_time2;
2863
2864                 *ctime = inode->i_ctime;
2865                 *mtime = inode->i_mtime;
2866 #ifdef HAVE_QUOTA_SUPPORT
2867                 if (ignore_quota)
2868                         current->cap_effective |= CFS_CAP_SYS_RESOURCE_MASK;
2869                 else
2870                         current->cap_effective &= ~CFS_CAP_SYS_RESOURCE_MASK;
2871 #endif
2872                 cfs_down_write(&obj->oo_ext_idx_sem);
2873                 rc = osd_ea_add_rec(env, obj, child, name, th);
2874                 cfs_up_write(&obj->oo_ext_idx_sem);
2875 #ifdef HAVE_QUOTA_SUPPORT
2876                 current->cap_effective = save;
2877 #endif
2878                 osd_object_put(env, child);
2879                 /* xtime should not be updated with server-side time. */
2880                 cfs_spin_lock(&obj->oo_guard);
2881                 inode->i_ctime = *ctime;
2882                 inode->i_mtime = *mtime;
2883                 cfs_spin_unlock(&obj->oo_guard);
2884                 mark_inode_dirty(inode);
2885         } else {
2886                 rc = PTR_ERR(child);
2887         }
2888
2889         LASSERT(osd_invariant(obj));
2890         RETURN(rc);
2891 }
2892
2893 /**
2894  *  Initialize osd Iterator for given osd index object.
2895  *
2896  *  \param  dt      osd index object
2897  */
2898
2899 static struct dt_it *osd_it_iam_init(const struct lu_env *env,
2900                                  struct dt_object *dt,
2901                                  struct lustre_capa *capa)
2902 {
2903         struct osd_it_iam         *it;
2904         struct osd_thread_info *oti = osd_oti_get(env);
2905         struct osd_object     *obj = osd_dt_obj(dt);
2906         struct lu_object      *lo  = &dt->do_lu;
2907         struct iam_path_descr *ipd;
2908         struct iam_container  *bag = &obj->oo_dir->od_container;
2909
2910         LASSERT(lu_object_exists(lo));
2911
2912         if (osd_object_auth(env, dt, capa, CAPA_OPC_BODY_READ))
2913                 return ERR_PTR(-EACCES);
2914
2915         it = &oti->oti_it;
2916         ipd = osd_it_ipd_get(env, bag);
2917         if (likely(ipd != NULL)) {
2918                 it->oi_obj = obj;
2919                 it->oi_ipd = ipd;
2920                 lu_object_get(lo);
2921                 iam_it_init(&it->oi_it, bag, IAM_IT_MOVE, ipd);
2922                 return (struct dt_it *)it;
2923         }
2924         return ERR_PTR(-ENOMEM);
2925 }
2926
2927 /**
2928  * free given Iterator.
2929  */
2930
2931 static void osd_it_iam_fini(const struct lu_env *env, struct dt_it *di)
2932 {
2933         struct osd_it_iam     *it = (struct osd_it_iam *)di;
2934         struct osd_object *obj = it->oi_obj;
2935
2936         iam_it_fini(&it->oi_it);
2937         osd_ipd_put(env, &obj->oo_dir->od_container, it->oi_ipd);
2938         lu_object_put(env, &obj->oo_dt.do_lu);
2939 }
2940
2941 /**
2942  *  Move Iterator to record specified by \a key
2943  *
2944  *  \param  di      osd iterator
2945  *  \param  key     key for index
2946  *
2947  *  \retval +ve  di points to record with least key not larger than key
2948  *  \retval  0   di points to exact matched key
2949  *  \retval -ve  failure
2950  */
2951
2952 static int osd_it_iam_get(const struct lu_env *env,
2953                       struct dt_it *di, const struct dt_key *key)
2954 {
2955         struct osd_it_iam *it = (struct osd_it_iam *)di;
2956
2957         return iam_it_get(&it->oi_it, (const struct iam_key *)key);
2958 }
2959
2960 /**
2961  *  Release Iterator
2962  *
2963  *  \param  di      osd iterator
2964  */
2965
2966 static void osd_it_iam_put(const struct lu_env *env, struct dt_it *di)
2967 {
2968         struct osd_it_iam *it = (struct osd_it_iam *)di;
2969
2970         iam_it_put(&it->oi_it);
2971 }
2972
2973 /**
2974  *  Move iterator by one record
2975  *
2976  *  \param  di      osd iterator
2977  *
2978  *  \retval +1   end of container reached
2979  *  \retval  0   success
2980  *  \retval -ve  failure
2981  */
2982
2983 static int osd_it_iam_next(const struct lu_env *env, struct dt_it *di)
2984 {
2985         struct osd_it_iam *it = (struct osd_it_iam *)di;
2986
2987         return iam_it_next(&it->oi_it);
2988 }
2989
2990 /**
2991  * Return pointer to the key under iterator.
2992  */
2993
2994 static struct dt_key *osd_it_iam_key(const struct lu_env *env,
2995                                  const struct dt_it *di)
2996 {
2997         struct osd_it_iam *it = (struct osd_it_iam *)di;
2998
2999         return (struct dt_key *)iam_it_key_get(&it->oi_it);
3000 }
3001
3002 /**
3003  * Return size of key under iterator (in bytes)
3004  */
3005
3006 static int osd_it_iam_key_size(const struct lu_env *env, const struct dt_it *di)
3007 {
3008         struct osd_it_iam *it = (struct osd_it_iam *)di;
3009
3010         return iam_it_key_size(&it->oi_it);
3011 }
3012
3013 static inline void osd_it_append_attrs(struct lu_dirent*ent,
3014                                        __u32 attr,
3015                                        int len,
3016                                        __u16 type)
3017 {
3018         struct luda_type        *lt;
3019         const unsigned           align = sizeof(struct luda_type) - 1;
3020
3021         /* check if file type is required */
3022         if (attr & LUDA_TYPE) {
3023                         len = (len + align) & ~align;
3024
3025                         lt = (void *) ent->lde_name + len;
3026                         lt->lt_type = cpu_to_le16(CFS_DTTOIF(type));
3027                         ent->lde_attrs |= LUDA_TYPE;
3028         }
3029
3030         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
3031 }
3032
3033 /**
3034  * build lu direct from backend fs dirent.
3035  */
3036
3037 static inline void osd_it_pack_dirent(struct lu_dirent *ent,
3038                                       struct lu_fid *fid,
3039                                       __u64 offset,
3040                                       char *name,
3041                                       __u16 namelen,
3042                                       __u16 type,
3043                                       __u32 attr)
3044 {
3045         fid_cpu_to_le(&ent->lde_fid, fid);
3046         ent->lde_attrs = LUDA_FID;
3047
3048         ent->lde_hash = cpu_to_le64(offset);
3049         ent->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
3050
3051         strncpy(ent->lde_name, name, namelen);
3052         ent->lde_namelen = cpu_to_le16(namelen);
3053
3054         /* append lustre attributes */
3055         osd_it_append_attrs(ent, attr, namelen, type);
3056 }
3057
3058 /**
3059  * Return pointer to the record under iterator.
3060  */
3061 static int osd_it_iam_rec(const struct lu_env *env,
3062                           const struct dt_it *di,
3063                           struct lu_dirent *lde,
3064                           __u32 attr)
3065 {
3066         struct osd_it_iam *it        = (struct osd_it_iam *)di;
3067         struct osd_thread_info *info = osd_oti_get(env);
3068         struct lu_fid     *fid       = &info->oti_fid;
3069         const struct osd_fid_pack *rec;
3070         char *name;
3071         int namelen;
3072         __u64 hash;
3073         int rc;
3074
3075         name = (char *)iam_it_key_get(&it->oi_it);
3076         if (IS_ERR(name))
3077                 RETURN(PTR_ERR(name));
3078
3079         namelen = iam_it_key_size(&it->oi_it);
3080
3081         rec = (const struct osd_fid_pack *) iam_it_rec_get(&it->oi_it);
3082         if (IS_ERR(rec))
3083                 RETURN(PTR_ERR(rec));
3084
3085         rc = osd_fid_unpack(fid, rec);
3086         if (rc)
3087                 RETURN(rc);
3088
3089         hash = iam_it_store(&it->oi_it);
3090
3091         /* IAM does not store object type in IAM index (dir) */
3092         osd_it_pack_dirent(lde, fid, hash, name, namelen,
3093                            0, LUDA_FID);
3094
3095         return 0;
3096 }
3097
3098 /**
3099  * Returns cookie for current Iterator position.
3100  */
3101 static __u64 osd_it_iam_store(const struct lu_env *env, const struct dt_it *di)
3102 {
3103         struct osd_it_iam *it = (struct osd_it_iam *)di;
3104
3105         return iam_it_store(&it->oi_it);
3106 }
3107
3108 /**
3109  * Restore iterator from cookie.
3110  *
3111  * \param  di      osd iterator
3112  * \param  hash    Iterator location cookie
3113  *
3114  * \retval +ve  di points to record with least key not larger than key.
3115  * \retval  0   di points to exact matched key
3116  * \retval -ve  failure
3117  */
3118
3119 static int osd_it_iam_load(const struct lu_env *env,
3120                        const struct dt_it *di, __u64 hash)
3121 {
3122         struct osd_it_iam *it = (struct osd_it_iam *)di;
3123
3124         return iam_it_load(&it->oi_it, hash);
3125 }
3126
3127 static const struct dt_index_operations osd_index_iam_ops = {
3128         .dio_lookup = osd_index_iam_lookup,
3129         .dio_insert = osd_index_iam_insert,
3130         .dio_delete = osd_index_iam_delete,
3131         .dio_it     = {
3132                 .init     = osd_it_iam_init,
3133                 .fini     = osd_it_iam_fini,
3134                 .get      = osd_it_iam_get,
3135                 .put      = osd_it_iam_put,
3136                 .next     = osd_it_iam_next,
3137                 .key      = osd_it_iam_key,
3138                 .key_size = osd_it_iam_key_size,
3139                 .rec      = osd_it_iam_rec,
3140                 .store    = osd_it_iam_store,
3141                 .load     = osd_it_iam_load
3142         }
3143 };
3144
3145 /**
3146  * Creates or initializes iterator context.
3147  *
3148  * \retval struct osd_it_ea, iterator structure on success
3149  *
3150  */
3151 static struct dt_it *osd_it_ea_init(const struct lu_env *env,
3152                                     struct dt_object *dt,
3153                                     struct lustre_capa *capa)
3154 {
3155         struct osd_object       *obj  = osd_dt_obj(dt);
3156         struct osd_thread_info  *info = osd_oti_get(env);
3157         struct osd_it_ea        *it   = &info->oti_it_ea;
3158         struct lu_object        *lo   = &dt->do_lu;
3159         struct dentry           *obj_dentry = &info->oti_it_dentry;
3160         ENTRY;
3161         LASSERT(lu_object_exists(lo));
3162
3163         obj_dentry->d_inode = obj->oo_inode;
3164         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
3165         obj_dentry->d_name.hash = 0;
3166
3167         it->oie_rd_dirent       = 0;
3168         it->oie_it_dirent       = 0;
3169         it->oie_dirent          = NULL;
3170         it->oie_buf             = info->oti_it_ea_buf;
3171         it->oie_obj             = obj;
3172         it->oie_file.f_pos      = 0;
3173         it->oie_file.f_dentry   = obj_dentry;
3174         it->oie_file.f_mapping    = obj->oo_inode->i_mapping;
3175         it->oie_file.f_op         = obj->oo_inode->i_fop;
3176         it->oie_file.private_data = NULL;
3177         lu_object_get(lo);
3178         RETURN((struct dt_it *) it);
3179 }
3180
3181 /**
3182  * Destroy or finishes iterator context.
3183  *
3184  * \param di iterator structure to be destroyed
3185  */
3186 static void osd_it_ea_fini(const struct lu_env *env, struct dt_it *di)
3187 {
3188         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
3189         struct osd_object    *obj  = it->oie_obj;
3190         struct inode       *inode  = obj->oo_inode;
3191
3192         ENTRY;
3193         it->oie_file.f_op->release(inode, &it->oie_file);
3194         lu_object_put(env, &obj->oo_dt.do_lu);
3195         EXIT;
3196 }
3197
3198 /**
3199  * It position the iterator at given key, so that next lookup continues from
3200  * that key Or it is similar to dio_it->load() but based on a key,
3201  * rather than file position.
3202  *
3203  * As a special convention, osd_it_ea_get(env, di, "") has to rewind iterator
3204  * to the beginning.
3205  *
3206  * TODO: Presently return +1 considering it is only used by mdd_dir_is_empty().
3207  */
3208 static int osd_it_ea_get(const struct lu_env *env,
3209                          struct dt_it *di, const struct dt_key *key)
3210 {
3211         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
3212
3213         ENTRY;
3214         LASSERT(((const char *)key)[0] == '\0');
3215         it->oie_file.f_pos      = 0;
3216         it->oie_rd_dirent       = 0;
3217         it->oie_it_dirent       = 0;
3218         it->oie_dirent          = NULL;
3219
3220         RETURN(+1);
3221 }
3222
3223 /**
3224  * Does nothing
3225  */
3226 static void osd_it_ea_put(const struct lu_env *env, struct dt_it *di)
3227 {
3228 }
3229
3230 /**
3231  * It is called internally by ->readdir(). It fills the
3232  * iterator's in-memory data structure with required
3233  * information i.e. name, namelen, rec_size etc.
3234  *
3235  * \param buf in which information to be filled in.
3236  * \param name name of the file in given dir
3237  *
3238  * \retval 0 on success
3239  * \retval 1 on buffer full
3240  */
3241 static int osd_ldiskfs_filldir(char *buf, const char *name, int namelen,
3242                                loff_t offset, __u64 ino,
3243                                unsigned d_type)
3244 {
3245         struct osd_it_ea        *it = (struct osd_it_ea *)buf;
3246         struct osd_it_ea_dirent *ent = it->oie_dirent;
3247         ENTRY;
3248
3249         /* this should never happen */
3250         if (unlikely(namelen == 0 || namelen > LDISKFS_NAME_LEN)) {
3251                 CERROR("ldiskfs return invalid namelen %d\n", namelen);
3252                 RETURN(-EIO);
3253         }
3254
3255         if ((void *) ent - it->oie_buf + sizeof(*ent) + namelen >
3256             OSD_IT_EA_BUFSIZE)
3257                 RETURN(1);
3258
3259         ent->oied_ino     = ino;
3260         ent->oied_off     = offset;
3261         ent->oied_namelen = namelen;
3262         ent->oied_type    = d_type;
3263
3264         memcpy(ent->oied_name, name, namelen);
3265
3266         it->oie_rd_dirent++;
3267         it->oie_dirent = (void *) ent + cfs_size_round(sizeof(*ent) + namelen);
3268         RETURN(0);
3269 }
3270
3271 /**
3272  * Calls ->readdir() to load a directory entry at a time
3273  * and stored it in iterator's in-memory data structure.
3274  *
3275  * \param di iterator's in memory structure
3276  *
3277  * \retval   0 on success
3278  * \retval -ve on error
3279  */
3280 static int osd_ldiskfs_it_fill(const struct dt_it *di)
3281 {
3282         struct osd_it_ea   *it    = (struct osd_it_ea *)di;
3283         struct osd_object  *obj   = it->oie_obj;
3284         struct inode       *inode = obj->oo_inode;
3285         int                result = 0;
3286
3287         ENTRY;
3288         it->oie_dirent = it->oie_buf;
3289         it->oie_rd_dirent = 0;
3290
3291         cfs_down_read(&obj->oo_ext_idx_sem);
3292         result = inode->i_fop->readdir(&it->oie_file, it,
3293                                        (filldir_t) osd_ldiskfs_filldir);
3294
3295         cfs_up_read(&obj->oo_ext_idx_sem);
3296
3297         if (it->oie_rd_dirent == 0) {
3298                 result = -EIO;
3299         } else {
3300                 it->oie_dirent = it->oie_buf;
3301                 it->oie_it_dirent = 1;
3302         }
3303
3304         RETURN(result);
3305 }
3306
3307 /**
3308  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
3309  * to load a directory entry at a time and stored it in
3310  * iterator's in-memory data structure.
3311  *
3312  * \param di iterator's in memory structure
3313  *
3314  * \retval +ve iterator reached to end
3315  * \retval   0 iterator not reached to end
3316  * \retval -ve on error
3317  */
3318 static int osd_it_ea_next(const struct lu_env *env, struct dt_it *di)
3319 {
3320         struct osd_it_ea *it = (struct osd_it_ea *)di;
3321         int rc;
3322
3323         ENTRY;
3324
3325         if (it->oie_it_dirent < it->oie_rd_dirent) {
3326                 it->oie_dirent =
3327                         (void *) it->oie_dirent +
3328                         cfs_size_round(sizeof(struct osd_it_ea_dirent) +
3329                                        it->oie_dirent->oied_namelen);
3330                 it->oie_it_dirent++;
3331                 RETURN(0);
3332         } else {
3333                 if (it->oie_file.f_pos == LDISKFS_HTREE_EOF)
3334                         rc = +1;
3335                 else
3336                         rc = osd_ldiskfs_it_fill(di);
3337         }
3338
3339         RETURN(rc);
3340 }
3341
3342 /**
3343  * Returns the key at current position from iterator's in memory structure.
3344  *
3345  * \param di iterator's in memory structure
3346  *
3347  * \retval key i.e. struct dt_key on success
3348  */
3349 static struct dt_key *osd_it_ea_key(const struct lu_env *env,
3350                                     const struct dt_it *di)
3351 {
3352         struct osd_it_ea *it = (struct osd_it_ea *)di;
3353         ENTRY;
3354         RETURN((struct dt_key *)it->oie_dirent->oied_name);
3355 }
3356
3357 /**
3358  * Returns the key's size at current position from iterator's in memory structure.
3359  *
3360  * \param di iterator's in memory structure
3361  *
3362  * \retval key_size i.e. struct dt_key on success
3363  */
3364 static int osd_it_ea_key_size(const struct lu_env *env, const struct dt_it *di)
3365 {
3366         struct osd_it_ea *it = (struct osd_it_ea *)di;
3367         ENTRY;
3368         RETURN(it->oie_dirent->oied_namelen);
3369 }
3370
3371
3372 /**
3373  * Returns the value (i.e. fid/igif) at current position from iterator's
3374  * in memory structure.
3375  *
3376  * \param di struct osd_it_ea, iterator's in memory structure
3377  * \param attr attr requested for dirent.
3378  * \param lde lustre dirent
3379  *
3380  * \retval   0 no error and \param lde has correct lustre dirent.
3381  * \retval -ve on error
3382  */
3383 static inline int osd_it_ea_rec(const struct lu_env *env,
3384                                 const struct dt_it *di,
3385                                 struct lu_dirent *lde,
3386                                 __u32 attr)
3387 {
3388         struct osd_it_ea        *it     = (struct osd_it_ea *)di;
3389         struct osd_object       *obj    = it->oie_obj;
3390         struct osd_thread_info  *info   = osd_oti_get(env);
3391         struct lu_fid           *fid       = &info->oti_fid;
3392         int                      rc;
3393
3394         ENTRY;
3395
3396         rc = osd_ea_fid_get(env, obj, it->oie_dirent->oied_ino, fid);
3397
3398         if (rc == 0)
3399                 osd_it_pack_dirent(lde, fid, it->oie_dirent->oied_off,
3400                                    it->oie_dirent->oied_name,
3401                                    it->oie_dirent->oied_namelen,
3402                                    it->oie_dirent->oied_type,
3403                                    attr);
3404         RETURN(rc);
3405 }
3406
3407 /**
3408  * Returns a cookie for current position of the iterator head, so that
3409  * user can use this cookie to load/start the iterator next time.
3410  *
3411  * \param di iterator's in memory structure
3412  *
3413  * \retval cookie for current position, on success
3414  */
3415 static __u64 osd_it_ea_store(const struct lu_env *env, const struct dt_it *di)
3416 {
3417         struct osd_it_ea *it = (struct osd_it_ea *)di;
3418         ENTRY;
3419         RETURN(it->oie_dirent->oied_off);
3420 }
3421
3422 /**
3423  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
3424  * to load a directory entry at a time and stored it i inn,
3425  * in iterator's in-memory data structure.
3426  *
3427  * \param di struct osd_it_ea, iterator's in memory structure
3428  *
3429  * \retval +ve on success
3430  * \retval -ve on error
3431  */
3432 static int osd_it_ea_load(const struct lu_env *env,
3433                           const struct dt_it *di, __u64 hash)
3434 {
3435         struct osd_it_ea *it = (struct osd_it_ea *)di;
3436         int rc;
3437
3438         ENTRY;
3439         it->oie_file.f_pos = hash;
3440
3441         rc =  osd_ldiskfs_it_fill(di);
3442         if (rc == 0)
3443                 rc = +1;
3444
3445         RETURN(rc);
3446 }
3447
3448 /**
3449  * Index lookup function for interoperability mode (b11826).
3450  *
3451  * \param key,  key i.e. file name to be searched
3452  *
3453  * \retval +ve, on success
3454  * \retval -ve, on error
3455  */
3456 static int osd_index_ea_lookup(const struct lu_env *env, struct dt_object *dt,
3457                                struct dt_rec *rec, const struct dt_key *key,
3458                                struct lustre_capa *capa)
3459 {
3460         struct osd_object *obj = osd_dt_obj(dt);
3461         int rc = 0;
3462
3463         ENTRY;
3464
3465         LASSERT(S_ISDIR(obj->oo_inode->i_mode));
3466         LINVRNT(osd_invariant(obj));
3467
3468         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_LOOKUP))
3469                 return -EACCES;
3470
3471         rc = osd_ea_lookup_rec(env, obj, rec, key);
3472
3473         if (rc == 0)
3474                 rc = +1;
3475         RETURN(rc);
3476 }
3477
3478 /**
3479  * Index and Iterator operations for interoperability
3480  * mode (i.e. to run 2.0 mds on 1.8 disk) (b11826)
3481  */
3482 static const struct dt_index_operations osd_index_ea_ops = {
3483         .dio_lookup = osd_index_ea_lookup,
3484         .dio_insert = osd_index_ea_insert,
3485         .dio_delete = osd_index_ea_delete,
3486         .dio_it     = {
3487                 .init     = osd_it_ea_init,
3488                 .fini     = osd_it_ea_fini,
3489                 .get      = osd_it_ea_get,
3490                 .put      = osd_it_ea_put,
3491                 .next     = osd_it_ea_next,
3492                 .key      = osd_it_ea_key,
3493                 .key_size = osd_it_ea_key_size,
3494                 .rec      = osd_it_ea_rec,
3495                 .store    = osd_it_ea_store,
3496                 .load     = osd_it_ea_load
3497         }
3498 };
3499
3500 static void *osd_key_init(const struct lu_context *ctx,
3501                           struct lu_context_key *key)
3502 {
3503         struct osd_thread_info *info;
3504
3505         OBD_ALLOC_PTR(info);
3506         if (info != NULL) {
3507                 OBD_ALLOC(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
3508                 if (info->oti_it_ea_buf != NULL) {
3509                         info->oti_env = container_of(ctx, struct lu_env,
3510                                                      le_ctx);
3511                 } else {
3512                         OBD_FREE_PTR(info);
3513                         info = ERR_PTR(-ENOMEM);
3514                 }
3515         } else {
3516                 info = ERR_PTR(-ENOMEM);
3517         }
3518         return info;
3519 }
3520
3521 static void osd_key_fini(const struct lu_context *ctx,
3522                          struct lu_context_key *key, void* data)
3523 {
3524         struct osd_thread_info *info = data;
3525
3526         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
3527         OBD_FREE_PTR(info);
3528 }
3529
3530 static void osd_key_exit(const struct lu_context *ctx,
3531                          struct lu_context_key *key, void *data)
3532 {
3533         struct osd_thread_info *info = data;
3534
3535         LASSERT(info->oti_r_locks == 0);
3536         LASSERT(info->oti_w_locks == 0);
3537         LASSERT(info->oti_txns    == 0);
3538 }
3539
3540 /* type constructor/destructor: osd_type_init, osd_type_fini */
3541 LU_TYPE_INIT_FINI(osd, &osd_key);
3542
3543 static struct lu_context_key osd_key = {
3544         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD,
3545         .lct_init = osd_key_init,
3546         .lct_fini = osd_key_fini,
3547         .lct_exit = osd_key_exit
3548 };
3549
3550
3551 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
3552                            const char *name, struct lu_device *next)
3553 {
3554         int rc;
3555         struct lu_context *ctx;
3556
3557         /* context for commit hooks */
3558         ctx = &osd_dev(d)->od_env_for_commit.le_ctx;
3559         rc = lu_context_init(ctx, LCT_MD_THREAD|LCT_REMEMBER|LCT_NOREF);
3560         if (rc == 0) {
3561                 rc = osd_procfs_init(osd_dev(d), name);
3562                 ctx->lc_cookie = 0x3;
3563         }
3564         return rc;
3565 }
3566
3567 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
3568 {
3569         struct osd_thread_info *info = osd_oti_get(env);
3570         ENTRY;
3571         if (o->od_obj_area != NULL) {
3572                 lu_object_put(env, &o->od_obj_area->do_lu);
3573                 o->od_obj_area = NULL;
3574         }
3575         osd_oi_fini(info, &o->od_oi);
3576
3577         RETURN(0);
3578 }
3579
3580 static int osd_mount(const struct lu_env *env,
3581                      struct osd_device *o, struct lustre_cfg *cfg)
3582 {
3583         struct lustre_mount_info *lmi;
3584         const char               *dev  = lustre_cfg_string(cfg, 0);
3585         struct lustre_disk_data  *ldd;
3586         struct lustre_sb_info    *lsi;
3587
3588         ENTRY;
3589         if (o->od_mount != NULL) {
3590                 CERROR("Already mounted (%s)\n", dev);
3591                 RETURN(-EEXIST);
3592         }
3593
3594         /* get mount */
3595         lmi = server_get_mount(dev);
3596         if (lmi == NULL) {
3597                 CERROR("Cannot get mount info for %s!\n", dev);
3598                 RETURN(-EFAULT);
3599         }
3600
3601         LASSERT(lmi != NULL);
3602         /* save lustre_mount_info in dt_device */
3603         o->od_mount = lmi;
3604
3605         lsi = s2lsi(lmi->lmi_sb);
3606         ldd = lsi->lsi_ldd;
3607
3608         if (ldd->ldd_flags & LDD_F_IAM_DIR) {
3609                 o->od_iop_mode = 0;
3610                 LCONSOLE_WARN("OSD: IAM mode enabled\n");
3611         } else
3612                 o->od_iop_mode = 1;
3613
3614         o->od_obj_area = NULL;
3615         RETURN(0);
3616 }
3617
3618 static struct lu_device *osd_device_fini(const struct lu_env *env,
3619                                          struct lu_device *d)
3620 {
3621         int rc;
3622         ENTRY;
3623
3624         shrink_dcache_sb(osd_sb(osd_dev(d)));
3625         osd_sync(env, lu2dt_dev(d));
3626
3627         rc = osd_procfs_fini(osd_dev(d));
3628         if (rc) {
3629                 CERROR("proc fini error %d \n", rc);
3630                 RETURN (ERR_PTR(rc));
3631         }
3632
3633         if (osd_dev(d)->od_mount)
3634                 server_put_mount(osd_dev(d)->od_mount->lmi_name,
3635                                  osd_dev(d)->od_mount->lmi_mnt);
3636         osd_dev(d)->od_mount = NULL;
3637
3638         lu_context_fini(&osd_dev(d)->od_env_for_commit.le_ctx);
3639         RETURN(NULL);
3640 }
3641
3642 static struct lu_device *osd_device_alloc(const struct lu_env *env,
3643                                           struct lu_device_type *t,
3644                                           struct lustre_cfg *cfg)
3645 {
3646         struct lu_device  *l;
3647         struct osd_device *o;
3648
3649         OBD_ALLOC_PTR(o);
3650         if (o != NULL) {
3651                 int result;
3652
3653                 result = dt_device_init(&o->od_dt_dev, t);
3654                 if (result == 0) {
3655                         l = osd2lu_dev(o);
3656                         l->ld_ops = &osd_lu_ops;
3657                         o->od_dt_dev.dd_ops = &osd_dt_ops;
3658                         cfs_spin_lock_init(&o->od_osfs_lock);
3659                         o->od_osfs_age = cfs_time_shift_64(-1000);
3660                         o->od_capa_hash = init_capa_hash();
3661                         if (o->od_capa_hash == NULL) {
3662                                 dt_device_fini(&o->od_dt_dev);
3663                                 l = ERR_PTR(-ENOMEM);
3664                         }
3665                 } else
3666                         l = ERR_PTR(result);
3667
3668                 if (IS_ERR(l))
3669                         OBD_FREE_PTR(o);
3670         } else
3671                 l = ERR_PTR(-ENOMEM);
3672         return l;
3673 }
3674
3675 static struct lu_device *osd_device_free(const struct lu_env *env,
3676                                          struct lu_device *d)
3677 {
3678         struct osd_device *o = osd_dev(d);
3679         ENTRY;
3680
3681         cleanup_capa_hash(o->od_capa_hash);
3682         dt_device_fini(&o->od_dt_dev);
3683         OBD_FREE_PTR(o);
3684         RETURN(NULL);
3685 }
3686
3687 static int osd_process_config(const struct lu_env *env,
3688                               struct lu_device *d, struct lustre_cfg *cfg)
3689 {
3690         struct osd_device *o = osd_dev(d);
3691         int err;
3692         ENTRY;
3693
3694         switch(cfg->lcfg_command) {
3695         case LCFG_SETUP:
3696                 err = osd_mount(env, o, cfg);
3697                 break;
3698         case LCFG_CLEANUP:
3699                 err = osd_shutdown(env, o);
3700                 break;
3701         default:
3702                 err = -ENOSYS;
3703         }
3704
3705         RETURN(err);
3706 }
3707
3708 static int osd_recovery_complete(const struct lu_env *env,
3709                                  struct lu_device *d)
3710 {
3711         RETURN(0);
3712 }
3713
3714 static int osd_prepare(const struct lu_env *env,
3715                        struct lu_device *pdev,
3716                        struct lu_device *dev)
3717 {
3718         struct osd_device *osd = osd_dev(dev);
3719         struct lustre_sb_info *lsi;
3720         struct lustre_disk_data *ldd;
3721         struct lustre_mount_info  *lmi;
3722         struct osd_thread_info *oti = osd_oti_get(env);
3723         struct dt_object *d;
3724         int result;
3725
3726         ENTRY;
3727         /* 1. initialize oi before any file create or file open */
3728         result = osd_oi_init(oti, &osd->od_oi,
3729                              &osd->od_dt_dev, lu2md_dev(pdev));
3730         if (result != 0)
3731                 RETURN(result);
3732
3733         lmi = osd->od_mount;
3734         lsi = s2lsi(lmi->lmi_sb);
3735         ldd = lsi->lsi_ldd;
3736
3737         /* 2. setup local objects */
3738         result = llo_local_objects_setup(env, lu2md_dev(pdev), lu2dt_dev(dev));
3739         if (result)
3740                 goto out;
3741
3742         /* 3. open remote object dir */
3743         d = dt_store_open(env, lu2dt_dev(dev), "",
3744                           remote_obj_dir, &oti->oti_fid);
3745         if (!IS_ERR(d)) {
3746                 osd->od_obj_area = d;
3747                 result = 0;
3748         } else {
3749                 result = PTR_ERR(d);
3750                 osd->od_obj_area = NULL;
3751         }
3752
3753 out:
3754         RETURN(result);
3755 }
3756
3757 static const struct lu_object_operations osd_lu_obj_ops = {
3758         .loo_object_init      = osd_object_init,
3759         .loo_object_delete    = osd_object_delete,
3760         .loo_object_release   = osd_object_release,
3761         .loo_object_free      = osd_object_free,
3762         .loo_object_print     = osd_object_print,
3763         .loo_object_invariant = osd_object_invariant
3764 };
3765
3766 static const struct lu_device_operations osd_lu_ops = {
3767         .ldo_object_alloc      = osd_object_alloc,
3768         .ldo_process_config    = osd_process_config,
3769         .ldo_recovery_complete = osd_recovery_complete,
3770         .ldo_prepare           = osd_prepare,
3771 };
3772
3773 static const struct lu_device_type_operations osd_device_type_ops = {
3774         .ldto_init = osd_type_init,
3775         .ldto_fini = osd_type_fini,
3776
3777         .ldto_start = osd_type_start,
3778         .ldto_stop  = osd_type_stop,
3779
3780         .ldto_device_alloc = osd_device_alloc,
3781         .ldto_device_free  = osd_device_free,
3782
3783         .ldto_device_init    = osd_device_init,
3784         .ldto_device_fini    = osd_device_fini
3785 };
3786
3787 static struct lu_device_type osd_device_type = {
3788         .ldt_tags     = LU_DEVICE_DT,
3789         .ldt_name     = LUSTRE_OSD_NAME,
3790         .ldt_ops      = &osd_device_type_ops,
3791         .ldt_ctx_tags = LCT_MD_THREAD|LCT_DT_THREAD
3792 };
3793
3794 /*
3795  * lprocfs legacy support.
3796  */
3797 static struct obd_ops osd_obd_device_ops = {
3798         .o_owner = THIS_MODULE
3799 };
3800
3801 static struct lu_local_obj_desc llod_osd_rem_obj_dir = {
3802         .llod_name      = remote_obj_dir,
3803         .llod_oid       = OSD_REM_OBJ_DIR_OID,
3804         .llod_is_index  = 1,
3805         .llod_feat      = &dt_directory_features,
3806 };
3807
3808 static int __init osd_mod_init(void)
3809 {
3810         struct lprocfs_static_vars lvars;
3811
3812         osd_oi_mod_init();
3813         llo_local_obj_register(&llod_osd_rem_obj_dir);
3814         lprocfs_osd_init_vars(&lvars);
3815         return class_register_type(&osd_obd_device_ops, NULL, lvars.module_vars,
3816                                    LUSTRE_OSD_NAME, &osd_device_type);
3817 }
3818
3819 static void __exit osd_mod_exit(void)
3820 {
3821         llo_local_obj_unregister(&llod_osd_rem_obj_dir);
3822         class_unregister_type(LUSTRE_OSD_NAME);
3823 }
3824
3825 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
3826 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_NAME")");
3827 MODULE_LICENSE("GPL");
3828
3829 cfs_module(osd, "0.0.2", osd_mod_init, osd_mod_exit);