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