Whamcloud - gitweb
LU-6698 kernel: kernel update RHEL 6.6 [2.6.32-504.23.4.el6]
[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, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/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_OSD
45
46 #include <linux/module.h>
47 #include <linux/user_namespace.h>
48 #ifdef HAVE_UIDGID_HEADER
49 # include <linux/uidgid.h>
50 #endif
51
52 /* LUSTRE_VERSION_CODE */
53 #include <lustre_ver.h>
54 /* prerequisite for linux/xattr.h */
55 #include <linux/types.h>
56 /* prerequisite for linux/xattr.h */
57 #include <linux/fs.h>
58 /* XATTR_{REPLACE,CREATE} */
59 #include <linux/xattr.h>
60
61 #include <ldiskfs/ldiskfs.h>
62 #include <ldiskfs/xattr.h>
63 #undef ENTRY
64 /*
65  * struct OBD_{ALLOC,FREE}*()
66  * OBD_FAIL_CHECK
67  */
68 #include <obd_support.h>
69 /* struct ptlrpc_thread */
70 #include <lustre_net.h>
71 #include <lustre_fid.h>
72 /* process_config */
73 #include <lustre_param.h>
74
75 #include "osd_internal.h"
76 #include "osd_dynlocks.h"
77
78 /* llo_* api support */
79 #include <md_object.h>
80 #include <lustre_quota.h>
81
82 #include <lustre_linkea.h>
83
84 int ldiskfs_pdo = 1;
85 CFS_MODULE_PARM(ldiskfs_pdo, "i", int, 0644,
86                 "ldiskfs with parallel directory operations");
87
88 int ldiskfs_track_declares_assert;
89 CFS_MODULE_PARM(ldiskfs_track_declares_assert, "i", int, 0644,
90                 "LBUG during tracking of declares");
91
92 /* Slab to allocate dynlocks */
93 struct kmem_cache *dynlock_cachep;
94
95 /* Slab to allocate osd_it_ea */
96 struct kmem_cache *osd_itea_cachep;
97
98 static struct lu_kmem_descr ldiskfs_caches[] = {
99         {
100                 .ckd_cache = &dynlock_cachep,
101                 .ckd_name  = "dynlock_cache",
102                 .ckd_size  = sizeof(struct dynlock_handle)
103         },
104         {
105                 .ckd_cache = &osd_itea_cachep,
106                 .ckd_name  = "osd_itea_cache",
107                 .ckd_size  = sizeof(struct osd_it_ea)
108         },
109         {
110                 .ckd_cache = NULL
111         }
112 };
113
114 static const char dot[] = ".";
115 static const char dotdot[] = "..";
116 static const char remote_obj_dir[] = "REM_OBJ_DIR";
117
118 static const struct lu_object_operations      osd_lu_obj_ops;
119 static const struct dt_object_operations      osd_obj_ops;
120 static const struct dt_object_operations      osd_obj_ea_ops;
121 static const struct dt_object_operations      osd_obj_otable_it_ops;
122 static const struct dt_index_operations       osd_index_iam_ops;
123 static const struct dt_index_operations       osd_index_ea_ops;
124
125 int osd_trans_declare_op2rb[] = {
126         [OSD_OT_ATTR_SET]       = OSD_OT_ATTR_SET,
127         [OSD_OT_PUNCH]          = OSD_OT_MAX,
128         [OSD_OT_XATTR_SET]      = OSD_OT_XATTR_SET,
129         [OSD_OT_CREATE]         = OSD_OT_DESTROY,
130         [OSD_OT_DESTROY]        = OSD_OT_CREATE,
131         [OSD_OT_REF_ADD]        = OSD_OT_REF_DEL,
132         [OSD_OT_REF_DEL]        = OSD_OT_REF_ADD,
133         [OSD_OT_WRITE]          = OSD_OT_WRITE,
134         [OSD_OT_INSERT]         = OSD_OT_DELETE,
135         [OSD_OT_DELETE]         = OSD_OT_INSERT,
136         [OSD_OT_QUOTA]          = OSD_OT_MAX,
137 };
138
139 static int osd_has_index(const struct osd_object *obj)
140 {
141         return obj->oo_dt.do_index_ops != NULL;
142 }
143
144 static int osd_object_invariant(const struct lu_object *l)
145 {
146         return osd_invariant(osd_obj(l));
147 }
148
149 /*
150  * Concurrency: doesn't matter
151  */
152
153 /*
154  * Concurrency: doesn't matter
155  */
156 static int osd_write_locked(const struct lu_env *env, struct osd_object *o)
157 {
158         struct osd_thread_info *oti = osd_oti_get(env);
159         return oti->oti_w_locks > 0 && o->oo_owner == env;
160 }
161
162 /*
163  * Concurrency: doesn't access mutable data
164  */
165 static int osd_root_get(const struct lu_env *env,
166                         struct dt_device *dev, struct lu_fid *f)
167 {
168         lu_local_obj_fid(f, OSD_FS_ROOT_OID);
169         return 0;
170 }
171
172 /*
173  * OSD object methods.
174  */
175
176 /*
177  * Concurrency: no concurrent access is possible that early in object
178  * life-cycle.
179  */
180 static struct lu_object *osd_object_alloc(const struct lu_env *env,
181                                           const struct lu_object_header *hdr,
182                                           struct lu_device *d)
183 {
184         struct osd_object *mo;
185
186         OBD_ALLOC_PTR(mo);
187         if (mo != NULL) {
188                 struct lu_object *l;
189
190                 l = &mo->oo_dt.do_lu;
191                 dt_object_init(&mo->oo_dt, NULL, d);
192                 mo->oo_dt.do_ops = &osd_obj_ea_ops;
193                 l->lo_ops = &osd_lu_obj_ops;
194                 init_rwsem(&mo->oo_sem);
195                 init_rwsem(&mo->oo_ext_idx_sem);
196                 spin_lock_init(&mo->oo_guard);
197                 return l;
198         } else {
199                 return NULL;
200         }
201 }
202
203 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
204                 struct dentry *dentry, struct lustre_mdt_attrs *lma)
205 {
206         int rc;
207
208         CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
209         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
210                              info->oti_mdt_attrs_old, LMA_OLD_SIZE);
211         if (rc > 0) {
212                 if ((void *)lma != (void *)info->oti_mdt_attrs_old)
213                         memcpy(lma, info->oti_mdt_attrs_old, sizeof(*lma));
214                 rc = 0;
215                 lustre_lma_swab(lma);
216                 /* Check LMA compatibility */
217                 if (lma->lma_incompat & ~LMA_INCOMPAT_SUPP) {
218                         CWARN("%.16s: unsupported incompat LMA feature(s) %#x "
219                               "for fid = "DFID", ino = %lu\n",
220                               LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
221                               lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
222                               PFID(&lma->lma_self_fid), inode->i_ino);
223                         rc = -EOPNOTSUPP;
224                 }
225         } else if (rc == 0) {
226                 rc = -ENODATA;
227         }
228
229         return rc;
230 }
231
232 /*
233  * retrieve object from backend ext fs.
234  **/
235 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
236                        struct osd_inode_id *id)
237 {
238         struct inode *inode = NULL;
239
240         inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
241         if (IS_ERR(inode)) {
242                 CDEBUG(D_INODE, "no inode: ino = %u, rc = %ld\n",
243                        id->oii_ino, PTR_ERR(inode));
244         } else if (id->oii_gen != OSD_OII_NOGEN &&
245                    inode->i_generation != id->oii_gen) {
246                 CDEBUG(D_INODE, "unmatched inode: ino = %u, oii_gen = %u, "
247                        "i_generation = %u\n",
248                        id->oii_ino, id->oii_gen, inode->i_generation);
249                 iput(inode);
250                 inode = ERR_PTR(-ESTALE);
251         } else if (inode->i_nlink == 0) {
252                 /* due to parallel readdir and unlink,
253                 * we can have dead inode here. */
254                 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
255                 iput(inode);
256                 inode = ERR_PTR(-ESTALE);
257         } else if (is_bad_inode(inode)) {
258                 CWARN("%.16s: bad inode: ino = %u\n",
259                 LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name, id->oii_ino);
260                 iput(inode);
261                 inode = ERR_PTR(-ENOENT);
262         } else {
263                 if (id->oii_gen == OSD_OII_NOGEN)
264                         osd_id_gen(id, inode->i_ino, inode->i_generation);
265
266                 /* Do not update file c/mtime in ldiskfs.
267                  * NB: we don't have any lock to protect this because we don't
268                  * have reference on osd_object now, but contention with
269                  * another lookup + attr_set can't happen in the tiny window
270                  * between if (...) and set S_NOCMTIME. */
271                 if (!(inode->i_flags & S_NOCMTIME))
272                         inode->i_flags |= S_NOCMTIME;
273         }
274         return inode;
275 }
276
277 static struct inode *
278 osd_iget_fid(struct osd_thread_info *info, struct osd_device *dev,
279              struct osd_inode_id *id, struct lu_fid *fid)
280 {
281         struct lustre_mdt_attrs *lma   = &info->oti_mdt_attrs;
282         struct inode            *inode;
283         int                      rc;
284
285         inode = osd_iget(info, dev, id);
286         if (IS_ERR(inode))
287                 return inode;
288
289         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
290         if (rc == 0) {
291                 *fid = lma->lma_self_fid;
292         } else if (rc == -ENODATA) {
293                 if (unlikely(inode == osd_sb(dev)->s_root->d_inode))
294                         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
295                 else
296                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
297         } else {
298                 iput(inode);
299                 inode = ERR_PTR(rc);
300         }
301         return inode;
302 }
303
304 /**
305  * \retval +v: new filter_fid, does not contain self-fid
306  * \retval 0:  filter_fid_old, contains self-fid
307  * \retval -v: other failure cases
308  */
309 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
310                  struct dentry *dentry, struct lu_fid *fid)
311 {
312         struct filter_fid_old   *ff     = &info->oti_ff;
313         struct ost_id           *ostid  = &info->oti_ostid;
314         int                      rc;
315
316         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
317         if (rc == sizeof(*ff)) {
318                 rc = 0;
319                 ostid_set_seq(ostid, le64_to_cpu(ff->ff_seq));
320                 ostid_set_id(ostid, le64_to_cpu(ff->ff_objid));
321                 /* XXX: should use real OST index in the future. LU-3569 */
322                 ostid_to_fid(fid, ostid, 0);
323         } else if (rc == sizeof(struct filter_fid)) {
324                 rc = 1;
325         } else if (rc >= 0) {
326                 rc = -EINVAL;
327         }
328
329         return rc;
330 }
331
332 static int osd_lma_self_repair(struct osd_thread_info *info,
333                                struct osd_device *osd, struct inode *inode,
334                                const struct lu_fid *fid, __u32 compat)
335 {
336         handle_t *jh;
337         int       rc;
338
339         LASSERT(current->journal_info == NULL);
340
341         jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
342                                   osd_dto_credits_noquota[DTO_XATTR_SET]);
343         if (IS_ERR(jh)) {
344                 rc = PTR_ERR(jh);
345                 CWARN("%s: cannot start journal for lma_self_repair: rc = %d\n",
346                       osd_name(osd), rc);
347                 return rc;
348         }
349
350         rc = osd_ea_fid_set(info, inode, fid, compat, 0);
351         if (rc != 0)
352                 CWARN("%s: cannot self repair the LMA: rc = %d\n",
353                       osd_name(osd), rc);
354         ldiskfs_journal_stop(jh);
355         return rc;
356 }
357
358 static int osd_check_lma(const struct lu_env *env, struct osd_object *obj)
359 {
360         struct osd_thread_info  *info   = osd_oti_get(env);
361         struct osd_device       *osd    = osd_obj2dev(obj);
362         struct lustre_mdt_attrs *lma    = &info->oti_mdt_attrs;
363         struct inode            *inode  = obj->oo_inode;
364         struct dentry           *dentry = &info->oti_obj_dentry;
365         struct lu_fid           *fid    = NULL;
366         const struct lu_fid     *rfid   = lu_object_fid(&obj->oo_dt.do_lu);
367         int                      rc;
368         ENTRY;
369
370         CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
371         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
372                              info->oti_mdt_attrs_old, LMA_OLD_SIZE);
373         if (rc == -ENODATA && !fid_is_igif(rfid) && osd->od_check_ff) {
374                 fid = &lma->lma_self_fid;
375                 rc = osd_get_idif(info, inode, dentry, fid);
376                 if ((rc > 0) || (rc == -ENODATA && osd->od_index_in_idif)) {
377                         /* For the given OST-object, if it has neither LMA nor
378                          * FID in XATTR_NAME_FID, then the given FID (which is
379                          * contained in the @obj, from client RPC for locating
380                          * the OST-object) is trusted. We use it to generate
381                          * the LMA. */
382                         osd_lma_self_repair(info, osd, inode, rfid,
383                                             LMAC_FID_ON_OST);
384                         RETURN(0);
385                 }
386         }
387
388         if (unlikely(rc == -ENODATA))
389                 RETURN(0);
390
391         if (rc < 0)
392                 RETURN(rc);
393
394         if (rc > 0) {
395                 rc = 0;
396                 lustre_lma_swab(lma);
397                 if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
398                              CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT))) {
399                         CWARN("%s: unsupported incompat LMA feature(s) %#x for "
400                               "fid = "DFID", ino = %lu\n", osd_name(osd),
401                               lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
402                               PFID(rfid), inode->i_ino);
403                         rc = -EOPNOTSUPP;
404                 } else {
405                         fid = &lma->lma_self_fid;
406                 }
407         }
408
409         if (fid != NULL && unlikely(!lu_fid_eq(rfid, fid))) {
410                 if (fid_is_idif(rfid) && fid_is_idif(fid)) {
411                         struct ost_id   *oi   = &info->oti_ostid;
412                         struct lu_fid   *fid1 = &info->oti_fid3;
413                         __u32            idx  = fid_idif_ost_idx(rfid);
414
415                         /* For old IDIF, the OST index is not part of the IDIF,
416                          * Means that different OSTs may have the same IDIFs.
417                          * Under such case, we need to make some compatible
418                          * check to make sure to trigger OI scrub properly. */
419                         if (idx != 0 && fid_idif_ost_idx(fid) == 0) {
420                                 /* Given @rfid is new, LMA is old. */
421                                 fid_to_ostid(fid, oi);
422                                 ostid_to_fid(fid1, oi, idx);
423                                 if (lu_fid_eq(fid1, rfid)) {
424                                         if (osd->od_index_in_idif)
425                                                 osd_lma_self_repair(info, osd,
426                                                         inode, rfid,
427                                                         LMAC_FID_ON_OST);
428                                         RETURN(0);
429                                 }
430                         }
431                 }
432
433                 rc = -EREMCHG;
434         }
435
436         RETURN(rc);
437 }
438
439 static int osd_fid_lookup(const struct lu_env *env, struct osd_object *obj,
440                           const struct lu_fid *fid,
441                           const struct lu_object_conf *conf)
442 {
443         struct osd_thread_info *info;
444         struct lu_device       *ldev   = obj->oo_dt.do_lu.lo_dev;
445         struct osd_device      *dev;
446         struct osd_idmap_cache *oic;
447         struct osd_inode_id    *id;
448         struct inode           *inode;
449         struct osd_scrub       *scrub;
450         struct scrub_file      *sf;
451         int                     result;
452         int                     saved  = 0;
453         bool                    in_oi  = false;
454         bool                    in_cache = false;
455         bool                    triggered = false;
456         ENTRY;
457
458         LINVRNT(osd_invariant(obj));
459         LASSERT(obj->oo_inode == NULL);
460         LASSERTF(fid_is_sane(fid) || fid_is_idif(fid), DFID"\n", PFID(fid));
461
462         dev = osd_dev(ldev);
463         scrub = &dev->od_scrub;
464         sf = &scrub->os_file;
465         info = osd_oti_get(env);
466         LASSERT(info);
467         oic = &info->oti_cache;
468
469         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT))
470                 RETURN(-ENOENT);
471
472         /* For the object is created as locking anchor, or for the object to
473          * be created on disk. No need to osd_oi_lookup() at here because FID
474          * shouldn't never be re-used, if it's really a duplicate FID from
475          * unexpected reason, we should be able to detect it later by calling
476          * do_create->osd_oi_insert(). */
477         if (conf != NULL && conf->loc_flags & LOC_F_NEW)
478                 GOTO(out, result = 0);
479
480         /* Search order: 1. per-thread cache. */
481         if (lu_fid_eq(fid, &oic->oic_fid) &&
482             likely(oic->oic_dev == dev)) {
483                 id = &oic->oic_lid;
484                 in_cache = true;
485                 goto iget;
486         }
487
488         id = &info->oti_id;
489         if (!list_empty(&scrub->os_inconsistent_items)) {
490                 /* Search order: 2. OI scrub pending list. */
491                 result = osd_oii_lookup(dev, fid, id);
492                 if (result == 0)
493                         goto iget;
494         }
495
496         /* Search order: 3. OI files. */
497         result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
498         if (result == -ENOENT) {
499                 if (!(fid_is_norm(fid) || fid_is_igif(fid)) ||
500                     !ldiskfs_test_bit(osd_oi_fid2idx(dev,fid),
501                                       sf->sf_oi_bitmap))
502                         GOTO(out, result = 0);
503
504                 goto trigger;
505         }
506
507         if (result != 0)
508                 GOTO(out, result);
509
510         in_oi = true;
511
512 iget:
513         inode = osd_iget(info, dev, id);
514         if (IS_ERR(inode)) {
515                 result = PTR_ERR(inode);
516                 if (result != -ENOENT && result != -ESTALE)
517                         GOTO(out, result);
518
519                 if (in_cache)
520                         fid_zero(&oic->oic_fid);
521
522                 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
523                 if (result != 0)
524                         GOTO(out, result = (result == -ENOENT ? 0 : result));
525
526                 /* The OI mapping is there, but the inode is NOT there.
527                  * Two possible cases for that:
528                  *
529                  * 1) Backup/restore caused the OI invalid.
530                  * 2) Someone unlinked the object but NOT removed
531                  *    the OI mapping, such as mount target device
532                  *    as ldiskfs, and modify something directly.
533                  *
534                  * Generally, when the device is mounted, it will
535                  * auto check whether the system is restored from
536                  * file-level backup or not. We trust such detect
537                  * to distinguish the 1st case from the 2nd case. */
538                 if (!(scrub->os_file.sf_flags & SF_INCONSISTENT))
539                         GOTO(out, result = 0);
540
541 trigger:
542                 if (unlikely(triggered))
543                         GOTO(out, result = saved);
544
545                 triggered = true;
546                 if (thread_is_running(&scrub->os_thread)) {
547                         result = -EINPROGRESS;
548                 } else if (!dev->od_noscrub) {
549                         /* Since we do not know the right OI mapping, we have
550                          * to trigger OI scrub to scan the whole device. */
551                         result = osd_scrub_start(dev, SS_AUTO_FULL |
552                                 SS_CLEAR_DRYRUN | SS_CLEAR_FAILOUT);
553                         CDEBUG(D_LFSCK | D_CONSOLE, "%.16s: trigger OI "
554                                "scrub by RPC for "DFID", rc = %d [1]\n",
555                                osd_name(dev), PFID(fid), result);
556                         if (result == 0 || result == -EALREADY)
557                                 result = -EINPROGRESS;
558                         else
559                                 result = -EREMCHG;
560                 }
561
562                 /* We still have chance to get the valid inode: for the
563                  * object which is referenced by remote name entry, the
564                  * object on the local MDT will be linked under the dir
565                  * of "/REMOTE_PARENT_DIR" with its FID string as name.
566                  *
567                  * We do not know whether the object for the given FID
568                  * is referenced by some remote name entry or not, and
569                  * especially for DNE II, a multiple-linked object may
570                  * have many name entries reside on many MDTs.
571                  *
572                  * To simplify the operation, OSD will not distinguish
573                  * more, just lookup "/REMOTE_PARENT_DIR". Usually, it
574                  * only happened for the RPC from other MDT during the
575                  * OI scrub, or for the client side RPC with FID only,
576                  * such as FID to path, or from old connected client. */
577                 saved = result;
578                 result = osd_lookup_in_remote_parent(info, dev, fid, id);
579                 if (result == 0) {
580                         in_oi = false;
581                         goto iget;
582                 }
583
584                 GOTO(out, result = saved);
585         }
586
587         obj->oo_inode = inode;
588         LASSERT(obj->oo_inode->i_sb == osd_sb(dev));
589
590         result = osd_check_lma(env, obj);
591         if (result != 0) {
592                 iput(inode);
593                 obj->oo_inode = NULL;
594
595                 if (result != -EREMCHG)
596                         GOTO(out, result);
597
598                 if (in_cache)
599                         fid_zero(&oic->oic_fid);
600
601                 result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
602                 if (result == 0)
603                         goto trigger;
604
605                 if (result != -ENOENT)
606                         GOTO(out, result);
607
608                 if (!in_oi && (fid_is_norm(fid) || fid_is_igif(fid)) &&
609                     ldiskfs_test_bit(osd_oi_fid2idx(dev, fid),
610                                      sf->sf_oi_bitmap))
611                         goto trigger;
612
613                 GOTO(out, result = 0);
614         }
615
616         obj->oo_compat_dot_created = 1;
617         obj->oo_compat_dotdot_created = 1;
618
619         if (!S_ISDIR(inode->i_mode) || !ldiskfs_pdo) /* done */
620                 GOTO(out, result = 0);
621
622         LASSERT(obj->oo_hl_head == NULL);
623         obj->oo_hl_head = ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
624         if (obj->oo_hl_head == NULL) {
625                 obj->oo_inode = NULL;
626                 iput(inode);
627                 GOTO(out, result = -ENOMEM);
628         }
629         GOTO(out, result = 0);
630
631 out:
632         LINVRNT(osd_invariant(obj));
633         return result;
634 }
635
636 /*
637  * Concurrency: shouldn't matter.
638  */
639 static void osd_object_init0(struct osd_object *obj)
640 {
641         LASSERT(obj->oo_inode != NULL);
642         obj->oo_dt.do_body_ops = &osd_body_ops;
643         obj->oo_dt.do_lu.lo_header->loh_attr |=
644                 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
645 }
646
647 /*
648  * Concurrency: no concurrent access is possible that early in object
649  * life-cycle.
650  */
651 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
652                            const struct lu_object_conf *conf)
653 {
654         struct osd_object *obj = osd_obj(l);
655         int result;
656
657         LINVRNT(osd_invariant(obj));
658
659         if (fid_is_otable_it(&l->lo_header->loh_fid)) {
660                 obj->oo_dt.do_ops = &osd_obj_otable_it_ops;
661                 l->lo_header->loh_attr |= LOHA_EXISTS;
662                 return 0;
663         }
664
665         result = osd_fid_lookup(env, obj, lu_object_fid(l), conf);
666         obj->oo_dt.do_body_ops = &osd_body_ops_new;
667         if (result == 0 && obj->oo_inode != NULL)
668                 osd_object_init0(obj);
669
670         LINVRNT(osd_invariant(obj));
671         return result;
672 }
673
674 /*
675  * Concurrency: no concurrent access is possible that late in object
676  * life-cycle.
677  */
678 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
679 {
680         struct osd_object *obj = osd_obj(l);
681
682         LINVRNT(osd_invariant(obj));
683
684         dt_object_fini(&obj->oo_dt);
685         if (obj->oo_hl_head != NULL)
686                 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
687         OBD_FREE_PTR(obj);
688 }
689
690 /*
691  * Concurrency: no concurrent access is possible that late in object
692  * life-cycle.
693  */
694 static void osd_index_fini(struct osd_object *o)
695 {
696         struct iam_container *bag;
697
698         if (o->oo_dir != NULL) {
699                 bag = &o->oo_dir->od_container;
700                 if (o->oo_inode != NULL) {
701                         if (bag->ic_object == o->oo_inode)
702                                 iam_container_fini(bag);
703                 }
704                 OBD_FREE_PTR(o->oo_dir);
705                 o->oo_dir = NULL;
706         }
707 }
708
709 /*
710  * Concurrency: no concurrent access is possible that late in object
711  * life-cycle (for all existing callers, that is. New callers have to provide
712  * their own locking.)
713  */
714 static int osd_inode_unlinked(const struct inode *inode)
715 {
716         return inode->i_nlink == 0;
717 }
718
719 enum {
720         OSD_TXN_OI_DELETE_CREDITS    = 20,
721         OSD_TXN_INODE_DELETE_CREDITS = 20
722 };
723
724 /*
725  * Journal
726  */
727
728 #if OSD_THANDLE_STATS
729 /**
730  * Set time when the handle is allocated
731  */
732 static void osd_th_alloced(struct osd_thandle *oth)
733 {
734         oth->oth_alloced = cfs_time_current();
735 }
736
737 /**
738  * Set time when the handle started
739  */
740 static void osd_th_started(struct osd_thandle *oth)
741 {
742         oth->oth_started = cfs_time_current();
743 }
744
745 /**
746  * Helper function to convert time interval to microseconds packed in
747  * long int.
748  */
749 static long interval_to_usec(cfs_time_t start, cfs_time_t end)
750 {
751         struct timeval val;
752
753         cfs_duration_usec(cfs_time_sub(end, start), &val);
754         return val.tv_sec * 1000000 + val.tv_usec;
755 }
756
757 /**
758  * Check whether the we deal with this handle for too long.
759  */
760 static void __osd_th_check_slow(void *oth, struct osd_device *dev,
761                                 cfs_time_t alloced, cfs_time_t started,
762                                 cfs_time_t closed)
763 {
764         cfs_time_t now = cfs_time_current();
765
766         LASSERT(dev != NULL);
767
768         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_STARTING,
769                             interval_to_usec(alloced, started));
770         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_OPEN,
771                             interval_to_usec(started, closed));
772         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_CLOSING,
773                             interval_to_usec(closed, now));
774
775         if (cfs_time_before(cfs_time_add(alloced, cfs_time_seconds(30)), now)) {
776                 CWARN("transaction handle %p was open for too long: "
777                       "now "CFS_TIME_T" ,"
778                       "alloced "CFS_TIME_T" ,"
779                       "started "CFS_TIME_T" ,"
780                       "closed "CFS_TIME_T"\n",
781                       oth, now, alloced, started, closed);
782                 libcfs_debug_dumpstack(NULL);
783         }
784 }
785
786 #define OSD_CHECK_SLOW_TH(oth, dev, expr)                               \
787 {                                                                       \
788         cfs_time_t __closed = cfs_time_current();                       \
789         cfs_time_t __alloced = oth->oth_alloced;                        \
790         cfs_time_t __started = oth->oth_started;                        \
791                                                                         \
792         expr;                                                           \
793         __osd_th_check_slow(oth, dev, __alloced, __started, __closed);  \
794 }
795
796 #else /* OSD_THANDLE_STATS */
797
798 #define osd_th_alloced(h)                  do {} while(0)
799 #define osd_th_started(h)                  do {} while(0)
800 #define OSD_CHECK_SLOW_TH(oth, dev, expr)  expr
801
802 #endif /* OSD_THANDLE_STATS */
803
804 /*
805  * Concurrency: doesn't access mutable data.
806  */
807 static int osd_param_is_not_sane(const struct osd_device *dev,
808                                  const struct thandle *th)
809 {
810         struct osd_thandle *oh = container_of(th, typeof(*oh), ot_super);
811
812         return oh->ot_credits > osd_transaction_size(dev);
813 }
814
815 /*
816  * Concurrency: shouldn't matter.
817  */
818 static void osd_trans_commit_cb(struct super_block *sb,
819                                 struct ldiskfs_journal_cb_entry *jcb, int error)
820 {
821         struct osd_thandle *oh = container_of0(jcb, struct osd_thandle, ot_jcb);
822         struct thandle     *th  = &oh->ot_super;
823         struct lu_device   *lud = &th->th_dev->dd_lu_dev;
824         struct dt_txn_commit_cb *dcb, *tmp;
825
826         LASSERT(oh->ot_handle == NULL);
827
828         if (error)
829                 CERROR("transaction @0x%p commit error: %d\n", th, error);
830
831         dt_txn_hook_commit(th);
832
833         /* call per-transaction callbacks if any */
834         list_for_each_entry_safe(dcb, tmp, &oh->ot_commit_dcb_list,
835                                  dcb_linkage) {
836                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
837                          "commit callback entry: magic=%x name='%s'\n",
838                          dcb->dcb_magic, dcb->dcb_name);
839                 list_del_init(&dcb->dcb_linkage);
840                 dcb->dcb_func(NULL, th, dcb, error);
841         }
842
843         lu_ref_del_at(&lud->ld_reference, &oh->ot_dev_link, "osd-tx", th);
844         lu_device_put(lud);
845         th->th_dev = NULL;
846
847         lu_context_exit(&th->th_ctx);
848         lu_context_fini(&th->th_ctx);
849         OBD_FREE_PTR(oh);
850 }
851
852 static struct thandle *osd_trans_create(const struct lu_env *env,
853                                         struct dt_device *d)
854 {
855         struct osd_thread_info  *oti = osd_oti_get(env);
856         struct osd_iobuf        *iobuf = &oti->oti_iobuf;
857         struct osd_thandle      *oh;
858         struct thandle          *th;
859         ENTRY;
860
861         /* on pending IO in this thread should left from prev. request */
862         LASSERT(atomic_read(&iobuf->dr_numreqs) == 0);
863
864         th = ERR_PTR(-ENOMEM);
865         OBD_ALLOC_GFP(oh, sizeof *oh, GFP_NOFS);
866         if (oh != NULL) {
867                 oh->ot_quota_trans = &oti->oti_quota_trans;
868                 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
869                 th = &oh->ot_super;
870                 th->th_dev = d;
871                 th->th_result = 0;
872                 th->th_tags = LCT_TX_HANDLE;
873                 oh->ot_credits = 0;
874                 INIT_LIST_HEAD(&oh->ot_commit_dcb_list);
875                 INIT_LIST_HEAD(&oh->ot_stop_dcb_list);
876                 osd_th_alloced(oh);
877
878                 memset(oti->oti_declare_ops, 0,
879                                         sizeof(oti->oti_declare_ops));
880                 memset(oti->oti_declare_ops_rb, 0,
881                                         sizeof(oti->oti_declare_ops_rb));
882                 memset(oti->oti_declare_ops_cred, 0,
883                                         sizeof(oti->oti_declare_ops_cred));
884                 oti->oti_rollback = false;
885         }
886         RETURN(th);
887 }
888
889 /*
890  * Concurrency: shouldn't matter.
891  */
892 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
893                            struct thandle *th)
894 {
895         struct osd_thread_info *oti = osd_oti_get(env);
896         struct osd_device  *dev = osd_dt_dev(d);
897         handle_t           *jh;
898         struct osd_thandle *oh;
899         int rc;
900
901         ENTRY;
902
903         LASSERT(current->journal_info == NULL);
904
905         oh = container_of0(th, struct osd_thandle, ot_super);
906         LASSERT(oh != NULL);
907         LASSERT(oh->ot_handle == NULL);
908
909         rc = dt_txn_hook_start(env, d, th);
910         if (rc != 0)
911                 GOTO(out, rc);
912
913         if (unlikely(osd_param_is_not_sane(dev, th))) {
914                 static unsigned long last_printed;
915                 static int last_credits;
916
917                 CWARN("%.16s: too many transaction credits (%d > %d)\n",
918                       LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
919                       oh->ot_credits,
920                       osd_journal(dev)->j_max_transaction_buffers);
921                 CWARN("  create: %u/%u, destroy: %u/%u\n",
922                       oti->oti_declare_ops[OSD_OT_CREATE],
923                       oti->oti_declare_ops_cred[OSD_OT_CREATE],
924                       oti->oti_declare_ops[OSD_OT_DESTROY],
925                       oti->oti_declare_ops_cred[OSD_OT_DESTROY]);
926                 CWARN("  attr_set: %u/%u, xattr_set: %u/%u\n",
927                       oti->oti_declare_ops[OSD_OT_ATTR_SET],
928                       oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
929                       oti->oti_declare_ops[OSD_OT_XATTR_SET],
930                       oti->oti_declare_ops_cred[OSD_OT_XATTR_SET]);
931                 CWARN("  write: %u/%u, punch: %u/%u, quota %u/%u\n",
932                       oti->oti_declare_ops[OSD_OT_WRITE],
933                       oti->oti_declare_ops_cred[OSD_OT_WRITE],
934                       oti->oti_declare_ops[OSD_OT_PUNCH],
935                       oti->oti_declare_ops_cred[OSD_OT_PUNCH],
936                       oti->oti_declare_ops[OSD_OT_QUOTA],
937                       oti->oti_declare_ops_cred[OSD_OT_QUOTA]);
938                 CWARN("  insert: %u/%u, delete: %u/%u\n",
939                       oti->oti_declare_ops[OSD_OT_INSERT],
940                       oti->oti_declare_ops_cred[OSD_OT_INSERT],
941                       oti->oti_declare_ops[OSD_OT_DELETE],
942                       oti->oti_declare_ops_cred[OSD_OT_DELETE]);
943                 CWARN("  ref_add: %u/%u, ref_del: %u/%u\n",
944                       oti->oti_declare_ops[OSD_OT_REF_ADD],
945                       oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
946                       oti->oti_declare_ops[OSD_OT_REF_DEL],
947                       oti->oti_declare_ops_cred[OSD_OT_REF_DEL]);
948
949                 if (last_credits != oh->ot_credits &&
950                     time_after(jiffies, last_printed +
951                                msecs_to_jiffies(60 * MSEC_PER_SEC))) {
952                         libcfs_debug_dumpstack(NULL);
953                         last_credits = oh->ot_credits;
954                         last_printed = jiffies;
955                 }
956                 /* XXX Limit the credits to 'max_transaction_buffers', and
957                  *     let the underlying filesystem to catch the error if
958                  *     we really need so many credits.
959                  *
960                  *     This should be removed when we can calculate the
961                  *     credits precisely. */
962                 oh->ot_credits = osd_transaction_size(dev);
963         }
964
965         /*
966          * XXX temporary stuff. Some abstraction layer should
967          * be used.
968          */
969         jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
970         osd_th_started(oh);
971         if (!IS_ERR(jh)) {
972                 oh->ot_handle = jh;
973                 LASSERT(oti->oti_txns == 0);
974                 lu_context_init(&th->th_ctx, th->th_tags);
975                 lu_context_enter(&th->th_ctx);
976
977                 lu_device_get(&d->dd_lu_dev);
978                 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
979                               "osd-tx", th);
980                 oti->oti_txns++;
981                 rc = 0;
982         } else {
983                 rc = PTR_ERR(jh);
984         }
985 out:
986         RETURN(rc);
987 }
988
989 static int osd_seq_exists(const struct lu_env *env,
990                           struct osd_device *osd, u64 seq)
991 {
992         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
993         struct seq_server_site  *ss = osd_seq_site(osd);
994         int                     rc;
995         ENTRY;
996
997         LASSERT(ss != NULL);
998         LASSERT(ss->ss_server_fld != NULL);
999
1000         rc = osd_fld_lookup(env, osd, seq, range);
1001         if (rc != 0) {
1002                 if (rc != -ENOENT)
1003                         CERROR("%s: can't lookup FLD sequence "LPX64
1004                                ": rc = %d\n", osd_name(osd), seq, rc);
1005                 RETURN(0);
1006         }
1007
1008         RETURN(ss->ss_node_id == range->lsr_index);
1009 }
1010
1011 static void osd_trans_stop_cb(struct osd_thandle *oth, int result)
1012 {
1013         struct dt_txn_commit_cb *dcb;
1014         struct dt_txn_commit_cb *tmp;
1015
1016         /* call per-transaction stop callbacks if any */
1017         list_for_each_entry_safe(dcb, tmp, &oth->ot_stop_dcb_list,
1018                                  dcb_linkage) {
1019                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
1020                          "commit callback entry: magic=%x name='%s'\n",
1021                          dcb->dcb_magic, dcb->dcb_name);
1022                 list_del_init(&dcb->dcb_linkage);
1023                 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
1024         }
1025 }
1026
1027 /*
1028  * Concurrency: shouldn't matter.
1029  */
1030 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
1031                           struct thandle *th)
1032 {
1033         int                     rc = 0;
1034         struct osd_thandle     *oh;
1035         struct osd_thread_info *oti = osd_oti_get(env);
1036         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
1037         struct osd_device      *osd = osd_dt_dev(th->th_dev);
1038         struct qsd_instance    *qsd = osd->od_quota_slave;
1039         struct lquota_trans    *qtrans;
1040         ENTRY;
1041
1042         oh = container_of0(th, struct osd_thandle, ot_super);
1043
1044         qtrans = oh->ot_quota_trans;
1045         oh->ot_quota_trans = NULL;
1046
1047         if (oh->ot_handle != NULL) {
1048                 handle_t *hdl = oh->ot_handle;
1049
1050                 /*
1051                  * add commit callback
1052                  * notice we don't do this in osd_trans_start()
1053                  * as underlying transaction can change during truncate
1054                  */
1055                 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
1056                                          &oh->ot_jcb);
1057
1058                 LASSERT(oti->oti_txns == 1);
1059                 oti->oti_txns--;
1060
1061                 rc = dt_txn_hook_stop(env, th);
1062                 if (rc != 0)
1063                         CERROR("%s: failed in transaction hook: rc = %d\n",
1064                                osd_name(osd), rc);
1065
1066                 osd_trans_stop_cb(oh, rc);
1067                 /* hook functions might modify th_sync */
1068                 hdl->h_sync = th->th_sync;
1069
1070                 oh->ot_handle = NULL;
1071                 OSD_CHECK_SLOW_TH(oh, osd, rc = ldiskfs_journal_stop(hdl));
1072                 if (rc != 0)
1073                         CERROR("%s: failed to stop transaction: rc = %d\n",
1074                                osd_name(osd), rc);
1075         } else {
1076                 osd_trans_stop_cb(oh, th->th_result);
1077                 OBD_FREE_PTR(oh);
1078         }
1079
1080         /* inform the quota slave device that the transaction is stopping */
1081         qsd_op_end(env, qsd, qtrans);
1082
1083         /* as we want IO to journal and data IO be concurrent, we don't block
1084          * awaiting data IO completion in osd_do_bio(), instead we wait here
1085          * once transaction is submitted to the journal. all reqular requests
1086          * don't do direct IO (except read/write), thus this wait_event becomes
1087          * no-op for them.
1088          *
1089          * IMPORTANT: we have to wait till any IO submited by the thread is
1090          * completed otherwise iobuf may be corrupted by different request
1091          */
1092         wait_event(iobuf->dr_wait,
1093                        atomic_read(&iobuf->dr_numreqs) == 0);
1094         osd_fini_iobuf(osd, iobuf);
1095         if (!rc)
1096                 rc = iobuf->dr_error;
1097
1098         RETURN(rc);
1099 }
1100
1101 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
1102 {
1103         struct osd_thandle *oh = container_of0(th, struct osd_thandle,
1104                                                ot_super);
1105
1106         LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
1107         LASSERT(&dcb->dcb_func != NULL);
1108         if (dcb->dcb_flags & DCB_TRANS_STOP)
1109                 list_add(&dcb->dcb_linkage, &oh->ot_stop_dcb_list);
1110         else
1111                 list_add(&dcb->dcb_linkage, &oh->ot_commit_dcb_list);
1112
1113         return 0;
1114 }
1115
1116 /*
1117  * Called just before object is freed. Releases all resources except for
1118  * object itself (that is released by osd_object_free()).
1119  *
1120  * Concurrency: no concurrent access is possible that late in object
1121  * life-cycle.
1122  */
1123 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
1124 {
1125         struct osd_object *obj   = osd_obj(l);
1126         struct inode      *inode = obj->oo_inode;
1127
1128         LINVRNT(osd_invariant(obj));
1129
1130         /*
1131          * If object is unlinked remove fid->ino mapping from object index.
1132          */
1133
1134         osd_index_fini(obj);
1135         if (inode != NULL) {
1136                 struct qsd_instance     *qsd = osd_obj2dev(obj)->od_quota_slave;
1137                 qid_t                    uid = i_uid_read(inode);
1138                 qid_t                    gid = i_gid_read(inode);
1139
1140                 iput(inode);
1141                 obj->oo_inode = NULL;
1142
1143                 if (qsd != NULL) {
1144                         struct osd_thread_info  *info = osd_oti_get(env);
1145                         struct lquota_id_info   *qi = &info->oti_qi;
1146
1147                         /* Release granted quota to master if necessary */
1148                         qi->lqi_id.qid_uid = uid;
1149                         qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
1150
1151                         qi->lqi_id.qid_uid = gid;
1152                         qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
1153                 }
1154         }
1155 }
1156
1157 /*
1158  * Concurrency: ->loo_object_release() is called under site spin-lock.
1159  */
1160 static void osd_object_release(const struct lu_env *env,
1161                                struct lu_object *l)
1162 {
1163 }
1164
1165 /*
1166  * Concurrency: shouldn't matter.
1167  */
1168 static int osd_object_print(const struct lu_env *env, void *cookie,
1169                             lu_printer_t p, const struct lu_object *l)
1170 {
1171         struct osd_object *o = osd_obj(l);
1172         struct iam_descr  *d;
1173
1174         if (o->oo_dir != NULL)
1175                 d = o->oo_dir->od_container.ic_descr;
1176         else
1177                 d = NULL;
1178         return (*p)(env, cookie,
1179                     LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
1180                     o, o->oo_inode,
1181                     o->oo_inode ? o->oo_inode->i_ino : 0UL,
1182                     o->oo_inode ? o->oo_inode->i_generation : 0,
1183                     d ? d->id_ops->id_name : "plain");
1184 }
1185
1186 #define GRANT_FOR_LOCAL_OIDS 32 /* 128kB for last_rcvd, quota files, ... */
1187
1188 /*
1189  * Concurrency: shouldn't matter.
1190  */
1191 int osd_statfs(const struct lu_env *env, struct dt_device *d,
1192                struct obd_statfs *sfs)
1193 {
1194         struct osd_device  *osd = osd_dt_dev(d);
1195         struct super_block *sb = osd_sb(osd);
1196         struct kstatfs     *ksfs;
1197         int result = 0;
1198
1199         if (unlikely(osd->od_mnt == NULL))
1200                 return -EINPROGRESS;
1201
1202         /* osd_lproc.c call this without env, allocate ksfs for that case */
1203         if (unlikely(env == NULL)) {
1204                 OBD_ALLOC_PTR(ksfs);
1205                 if (ksfs == NULL)
1206                         return -ENOMEM;
1207         } else {
1208                 ksfs = &osd_oti_get(env)->oti_ksfs;
1209         }
1210
1211         spin_lock(&osd->od_osfs_lock);
1212         result = sb->s_op->statfs(sb->s_root, ksfs);
1213         if (likely(result == 0)) { /* N.B. statfs can't really fail */
1214                 statfs_pack(sfs, ksfs);
1215                 if (sb->s_flags & MS_RDONLY)
1216                         sfs->os_state = OS_STATE_READONLY;
1217         }
1218
1219         spin_unlock(&osd->od_osfs_lock);
1220
1221         if (unlikely(env == NULL))
1222                 OBD_FREE_PTR(ksfs);
1223
1224         /* Reserve a small amount of space for local objects like last_rcvd,
1225          * llog, quota files, ... */
1226         if (sfs->os_bavail <= GRANT_FOR_LOCAL_OIDS) {
1227                 sfs->os_bavail = 0;
1228         } else {
1229                 sfs->os_bavail -= GRANT_FOR_LOCAL_OIDS;
1230                 /** Take out metadata overhead for indirect blocks */
1231                 sfs->os_bavail -= sfs->os_bavail >> (sb->s_blocksize_bits - 3);
1232         }
1233
1234         return result;
1235 }
1236
1237 /**
1238  * Estimate space needed for file creations. We assume the largest filename
1239  * which is 2^64 - 1, hence a filename of 20 chars.
1240  * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
1241  */
1242 #ifdef __LDISKFS_DIR_REC_LEN
1243 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
1244 #else
1245 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
1246 #endif
1247
1248 /*
1249  * Concurrency: doesn't access mutable data.
1250  */
1251 static void osd_conf_get(const struct lu_env *env,
1252                          const struct dt_device *dev,
1253                          struct dt_device_param *param)
1254 {
1255         struct super_block *sb = osd_sb(osd_dt_dev(dev));
1256         int                ea_overhead;
1257
1258         /*
1259          * XXX should be taken from not-yet-existing fs abstraction layer.
1260          */
1261         param->ddp_max_name_len = LDISKFS_NAME_LEN;
1262         param->ddp_max_nlink    = LDISKFS_LINK_MAX;
1263         param->ddp_block_shift  = sb->s_blocksize_bits;
1264         param->ddp_mount_type     = LDD_MT_LDISKFS;
1265         param->ddp_maxbytes       = sb->s_maxbytes;
1266         /* Overhead estimate should be fairly accurate, so we really take a tiny
1267          * error margin which also avoids fragmenting the filesystem too much */
1268         param->ddp_grant_reserved = 2; /* end up to be 1.9% after conversion */
1269         /* inode are statically allocated, so per-inode space consumption
1270          * is the space consumed by the directory entry */
1271         param->ddp_inodespace     = PER_OBJ_USAGE;
1272         /* per-fragment overhead to be used by the client code */
1273         param->ddp_grant_frag     = 6 * LDISKFS_BLOCK_SIZE(sb);
1274         param->ddp_mntopts      = 0;
1275         if (test_opt(sb, XATTR_USER))
1276                 param->ddp_mntopts |= MNTOPT_USERXATTR;
1277         if (test_opt(sb, POSIX_ACL))
1278                 param->ddp_mntopts |= MNTOPT_ACL;
1279
1280         /* LOD might calculate the max stripe count based on max_ea_size,
1281          * so we need take account in the overhead as well,
1282          * xattr_header + magic + xattr_entry_head */
1283         ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
1284                       LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
1285
1286 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
1287         if (LDISKFS_HAS_INCOMPAT_FEATURE(sb, LDISKFS_FEATURE_INCOMPAT_EA_INODE))
1288                 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
1289                                                                 ea_overhead;
1290         else
1291 #endif
1292                 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
1293 }
1294
1295 /*
1296  * Concurrency: shouldn't matter.
1297  */
1298 static int osd_sync(const struct lu_env *env, struct dt_device *d)
1299 {
1300         int rc;
1301
1302         CDEBUG(D_CACHE, "syncing OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1303
1304         rc = ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
1305
1306         CDEBUG(D_CACHE, "synced OSD %s: rc = %d\n",
1307                LUSTRE_OSD_LDISKFS_NAME, rc);
1308
1309         return rc;
1310 }
1311
1312 /**
1313  * Start commit for OSD device.
1314  *
1315  * An implementation of dt_commit_async method for OSD device.
1316  * Asychronously starts underlayng fs sync and thereby a transaction
1317  * commit.
1318  *
1319  * \param env environment
1320  * \param d dt device
1321  *
1322  * \see dt_device_operations
1323  */
1324 static int osd_commit_async(const struct lu_env *env,
1325                             struct dt_device *d)
1326 {
1327         struct super_block *s = osd_sb(osd_dt_dev(d));
1328         ENTRY;
1329
1330         CDEBUG(D_HA, "async commit OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1331         RETURN(s->s_op->sync_fs(s, 0));
1332 }
1333
1334 /*
1335  * Concurrency: shouldn't matter.
1336  */
1337
1338 static int osd_ro(const struct lu_env *env, struct dt_device *d)
1339 {
1340         struct super_block *sb = osd_sb(osd_dt_dev(d));
1341         struct block_device *dev = sb->s_bdev;
1342 #ifdef HAVE_DEV_SET_RDONLY
1343         struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
1344         int rc = 0;
1345 #else
1346         int rc = -EOPNOTSUPP;
1347 #endif
1348         ENTRY;
1349
1350 #ifdef HAVE_DEV_SET_RDONLY
1351         CERROR("*** setting %s read-only ***\n", osd_dt_dev(d)->od_svname);
1352
1353         if (jdev && (jdev != dev)) {
1354                 CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
1355                        (long)jdev);
1356                 dev_set_rdonly(jdev);
1357         }
1358         CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
1359         dev_set_rdonly(dev);
1360 #else
1361         CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
1362                osd_dt_dev(d)->od_svname, (long)dev, rc);
1363 #endif
1364         RETURN(rc);
1365 }
1366
1367 /**
1368  * Note: we do not count into QUOTA here.
1369  * If we mount with --data_journal we may need more.
1370  */
1371 const int osd_dto_credits_noquota[DTO_NR] = {
1372         /**
1373          * Insert.
1374          * INDEX_EXTRA_TRANS_BLOCKS(8) +
1375          * SINGLEDATA_TRANS_BLOCKS(8)
1376          * XXX Note: maybe iam need more, since iam have more level than
1377          *           EXT3 htree.
1378          */
1379         [DTO_INDEX_INSERT]  = 16,
1380         /**
1381          * Delete
1382          * just modify a single entry, probably merge few within a block
1383          */
1384         [DTO_INDEX_DELETE]  = 1,
1385         /**
1386          * Used for OI scrub
1387          */
1388         [DTO_INDEX_UPDATE]  = 16,
1389         /**
1390          * 4(inode, inode bits, groups, GDT)
1391          *   notice: OI updates are counted separately with DTO_INDEX_INSERT
1392          */
1393         [DTO_OBJECT_CREATE] = 4,
1394         /**
1395          * 4(inode, inode bits, groups, GDT)
1396          *   notice: OI updates are counted separately with DTO_INDEX_DELETE
1397          */
1398         [DTO_OBJECT_DELETE] = 4,
1399         /**
1400          * Attr set credits (inode)
1401          */
1402         [DTO_ATTR_SET_BASE] = 1,
1403         /**
1404          * Xattr set. The same as xattr of EXT3.
1405          * DATA_TRANS_BLOCKS(14)
1406          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
1407          * are also counted in. Do not know why?
1408          */
1409         [DTO_XATTR_SET]     = 14,
1410         /**
1411          * credits for inode change during write.
1412          */
1413         [DTO_WRITE_BASE]    = 3,
1414         /**
1415          * credits for single block write.
1416          */
1417         [DTO_WRITE_BLOCK]   = 14,
1418         /**
1419          * Attr set credits for chown.
1420          * This is extra credits for setattr, and it is null without quota
1421          */
1422         [DTO_ATTR_SET_CHOWN] = 0
1423 };
1424
1425 static const struct dt_device_operations osd_dt_ops = {
1426         .dt_root_get       = osd_root_get,
1427         .dt_statfs         = osd_statfs,
1428         .dt_trans_create   = osd_trans_create,
1429         .dt_trans_start    = osd_trans_start,
1430         .dt_trans_stop     = osd_trans_stop,
1431         .dt_trans_cb_add   = osd_trans_cb_add,
1432         .dt_conf_get       = osd_conf_get,
1433         .dt_sync           = osd_sync,
1434         .dt_ro             = osd_ro,
1435         .dt_commit_async   = osd_commit_async,
1436 };
1437
1438 static void osd_object_read_lock(const struct lu_env *env,
1439                                  struct dt_object *dt, unsigned role)
1440 {
1441         struct osd_object *obj = osd_dt_obj(dt);
1442         struct osd_thread_info *oti = osd_oti_get(env);
1443
1444         LINVRNT(osd_invariant(obj));
1445
1446         LASSERT(obj->oo_owner != env);
1447         down_read_nested(&obj->oo_sem, role);
1448
1449         LASSERT(obj->oo_owner == NULL);
1450         oti->oti_r_locks++;
1451 }
1452
1453 static void osd_object_write_lock(const struct lu_env *env,
1454                                   struct dt_object *dt, unsigned role)
1455 {
1456         struct osd_object *obj = osd_dt_obj(dt);
1457         struct osd_thread_info *oti = osd_oti_get(env);
1458
1459         LINVRNT(osd_invariant(obj));
1460
1461         LASSERT(obj->oo_owner != env);
1462         down_write_nested(&obj->oo_sem, role);
1463
1464         LASSERT(obj->oo_owner == NULL);
1465         obj->oo_owner = env;
1466         oti->oti_w_locks++;
1467 }
1468
1469 static void osd_object_read_unlock(const struct lu_env *env,
1470                                    struct dt_object *dt)
1471 {
1472         struct osd_object *obj = osd_dt_obj(dt);
1473         struct osd_thread_info *oti = osd_oti_get(env);
1474
1475         LINVRNT(osd_invariant(obj));
1476
1477         LASSERT(oti->oti_r_locks > 0);
1478         oti->oti_r_locks--;
1479         up_read(&obj->oo_sem);
1480 }
1481
1482 static void osd_object_write_unlock(const struct lu_env *env,
1483                                     struct dt_object *dt)
1484 {
1485         struct osd_object *obj = osd_dt_obj(dt);
1486         struct osd_thread_info *oti = osd_oti_get(env);
1487
1488         LINVRNT(osd_invariant(obj));
1489
1490         LASSERT(obj->oo_owner == env);
1491         LASSERT(oti->oti_w_locks > 0);
1492         oti->oti_w_locks--;
1493         obj->oo_owner = NULL;
1494         up_write(&obj->oo_sem);
1495 }
1496
1497 static int osd_object_write_locked(const struct lu_env *env,
1498                                    struct dt_object *dt)
1499 {
1500         struct osd_object *obj = osd_dt_obj(dt);
1501
1502         LINVRNT(osd_invariant(obj));
1503
1504         return obj->oo_owner == env;
1505 }
1506
1507 static struct timespec *osd_inode_time(const struct lu_env *env,
1508                                        struct inode *inode, __u64 seconds)
1509 {
1510         struct osd_thread_info  *oti = osd_oti_get(env);
1511         struct timespec         *t   = &oti->oti_time;
1512
1513         t->tv_sec = seconds;
1514         t->tv_nsec = 0;
1515         *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
1516         return t;
1517 }
1518
1519
1520 static void osd_inode_getattr(const struct lu_env *env,
1521                               struct inode *inode, struct lu_attr *attr)
1522 {
1523         attr->la_valid  |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
1524                            LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
1525                            LA_FLAGS | LA_NLINK | LA_RDEV | LA_BLKSIZE |
1526                            LA_TYPE;
1527
1528         attr->la_atime   = LTIME_S(inode->i_atime);
1529         attr->la_mtime   = LTIME_S(inode->i_mtime);
1530         attr->la_ctime   = LTIME_S(inode->i_ctime);
1531         attr->la_mode    = inode->i_mode;
1532         attr->la_size    = i_size_read(inode);
1533         attr->la_blocks  = inode->i_blocks;
1534         attr->la_uid     = i_uid_read(inode);
1535         attr->la_gid     = i_gid_read(inode);
1536         attr->la_flags   = LDISKFS_I(inode)->i_flags;
1537         attr->la_nlink   = inode->i_nlink;
1538         attr->la_rdev    = inode->i_rdev;
1539         attr->la_blksize = 1 << inode->i_blkbits;
1540         attr->la_blkbits = inode->i_blkbits;
1541 }
1542
1543 static int osd_attr_get(const struct lu_env *env,
1544                         struct dt_object *dt,
1545                         struct lu_attr *attr)
1546 {
1547         struct osd_object *obj = osd_dt_obj(dt);
1548
1549         if (!dt_object_exists(dt))
1550                 return -ENOENT;
1551
1552         LASSERT(!dt_object_remote(dt));
1553         LINVRNT(osd_invariant(obj));
1554
1555         spin_lock(&obj->oo_guard);
1556         osd_inode_getattr(env, obj->oo_inode, attr);
1557         spin_unlock(&obj->oo_guard);
1558         return 0;
1559 }
1560
1561 static int osd_declare_attr_set(const struct lu_env *env,
1562                                 struct dt_object *dt,
1563                                 const struct lu_attr *attr,
1564                                 struct thandle *handle)
1565 {
1566         struct osd_thandle     *oh;
1567         struct osd_object      *obj;
1568         struct osd_thread_info *info = osd_oti_get(env);
1569         struct lquota_id_info  *qi = &info->oti_qi;
1570         qid_t                   uid;
1571         qid_t                   gid;
1572         long long               bspace;
1573         int                     rc = 0;
1574         bool                    enforce;
1575         ENTRY;
1576
1577         LASSERT(dt != NULL);
1578         LASSERT(handle != NULL);
1579
1580         obj = osd_dt_obj(dt);
1581         LASSERT(osd_invariant(obj));
1582
1583         oh = container_of0(handle, struct osd_thandle, ot_super);
1584         LASSERT(oh->ot_handle == NULL);
1585
1586         osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
1587                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
1588
1589         if (attr == NULL || obj->oo_inode == NULL)
1590                 RETURN(rc);
1591
1592         bspace   = obj->oo_inode->i_blocks;
1593         bspace <<= obj->oo_inode->i_sb->s_blocksize_bits;
1594         bspace   = toqb(bspace);
1595
1596         /* Changing ownership is always preformed by super user, it should not
1597          * fail with EDQUOT.
1598          *
1599          * We still need to call the osd_declare_qid() to calculate the journal
1600          * credits for updating quota accounting files and to trigger quota
1601          * space adjustment once the operation is completed.*/
1602         if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
1603                 /* USERQUOTA */
1604                 uid = i_uid_read(obj->oo_inode);
1605                 qi->lqi_type = USRQUOTA;
1606                 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
1607                 /* inode accounting */
1608                 qi->lqi_is_blk = false;
1609
1610                 /* one more inode for the new uid ... */
1611                 qi->lqi_id.qid_uid = attr->la_uid;
1612                 qi->lqi_space      = 1;
1613                 /* Reserve credits for the new uid */
1614                 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
1615                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1616                         rc = 0;
1617                 if (rc)
1618                         RETURN(rc);
1619
1620                 /* and one less inode for the current uid */
1621                 qi->lqi_id.qid_uid = uid;
1622                 qi->lqi_space      = -1;
1623                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1624                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1625                         rc = 0;
1626                 if (rc)
1627                         RETURN(rc);
1628
1629                 /* block accounting */
1630                 qi->lqi_is_blk = true;
1631
1632                 /* more blocks for the new uid ... */
1633                 qi->lqi_id.qid_uid = attr->la_uid;
1634                 qi->lqi_space      = bspace;
1635                 /*
1636                  * Credits for the new uid has been reserved, re-use "obj"
1637                  * to save credit reservation.
1638                  */
1639                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1640                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1641                         rc = 0;
1642                 if (rc)
1643                         RETURN(rc);
1644
1645                 /* and finally less blocks for the current uid */
1646                 qi->lqi_id.qid_uid = uid;
1647                 qi->lqi_space      = -bspace;
1648                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1649                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1650                         rc = 0;
1651                 if (rc)
1652                         RETURN(rc);
1653
1654                 /* GROUP QUOTA */
1655                 gid = i_gid_read(obj->oo_inode);
1656                 qi->lqi_type = GRPQUOTA;
1657                 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
1658
1659                 /* inode accounting */
1660                 qi->lqi_is_blk = false;
1661
1662                 /* one more inode for the new gid ... */
1663                 qi->lqi_id.qid_gid = attr->la_gid;
1664                 qi->lqi_space      = 1;
1665                 rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
1666                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1667                         rc = 0;
1668                 if (rc)
1669                         RETURN(rc);
1670
1671                 /* and one less inode for the current gid */
1672                 qi->lqi_id.qid_gid = gid;
1673                 qi->lqi_space      = -1;
1674                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1675                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1676                         rc = 0;
1677                 if (rc)
1678                         RETURN(rc);
1679
1680                 /* block accounting */
1681                 qi->lqi_is_blk = true;
1682
1683                 /* more blocks for the new gid ... */
1684                 qi->lqi_id.qid_gid = attr->la_gid;
1685                 qi->lqi_space      = bspace;
1686                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1687                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1688                         rc = 0;
1689                 if (rc)
1690                         RETURN(rc);
1691
1692                 /* and finally less blocks for the current gid */
1693                 qi->lqi_id.qid_gid = gid;
1694                 qi->lqi_space      = -bspace;
1695                 rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
1696                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1697                         rc = 0;
1698                 if (rc)
1699                         RETURN(rc);
1700         }
1701
1702         RETURN(rc);
1703 }
1704
1705 static int osd_inode_setattr(const struct lu_env *env,
1706                              struct inode *inode, const struct lu_attr *attr)
1707 {
1708         __u64 bits = attr->la_valid;
1709
1710         /* Only allow set size for regular file */
1711         if (!S_ISREG(inode->i_mode))
1712                 bits &= ~(LA_SIZE | LA_BLOCKS);
1713
1714         if (bits == 0)
1715                 return 0;
1716
1717         if (bits & LA_ATIME)
1718                 inode->i_atime  = *osd_inode_time(env, inode, attr->la_atime);
1719         if (bits & LA_CTIME)
1720                 inode->i_ctime  = *osd_inode_time(env, inode, attr->la_ctime);
1721         if (bits & LA_MTIME)
1722                 inode->i_mtime  = *osd_inode_time(env, inode, attr->la_mtime);
1723         if (bits & LA_SIZE) {
1724                 LDISKFS_I(inode)->i_disksize = attr->la_size;
1725                 i_size_write(inode, attr->la_size);
1726         }
1727
1728 #if 0
1729         /* OSD should not change "i_blocks" which is used by quota.
1730          * "i_blocks" should be changed by ldiskfs only. */
1731         if (bits & LA_BLOCKS)
1732                 inode->i_blocks = attr->la_blocks;
1733 #endif
1734         if (bits & LA_MODE)
1735                 inode->i_mode = (inode->i_mode & S_IFMT) |
1736                                 (attr->la_mode & ~S_IFMT);
1737         if (bits & LA_UID)
1738                 i_uid_write(inode, attr->la_uid);
1739         if (bits & LA_GID)
1740                 i_gid_write(inode, attr->la_gid);
1741         if (bits & LA_NLINK)
1742                 set_nlink(inode, attr->la_nlink);
1743         if (bits & LA_RDEV)
1744                 inode->i_rdev = attr->la_rdev;
1745
1746         if (bits & LA_FLAGS) {
1747                 /* always keep S_NOCMTIME */
1748                 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
1749                                  S_NOCMTIME;
1750         }
1751         return 0;
1752 }
1753
1754 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
1755 {
1756         if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
1757             (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
1758                 struct iattr    iattr;
1759                 int             rc;
1760
1761                 ll_vfs_dq_init(inode);
1762                 iattr.ia_valid = 0;
1763                 if (attr->la_valid & LA_UID)
1764                         iattr.ia_valid |= ATTR_UID;
1765                 if (attr->la_valid & LA_GID)
1766                         iattr.ia_valid |= ATTR_GID;
1767                 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
1768                 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
1769
1770                 rc = ll_vfs_dq_transfer(inode, &iattr);
1771                 if (rc) {
1772                         CERROR("%s: quota transfer failed: rc = %d. Is quota "
1773                                "enforcement enabled on the ldiskfs "
1774                                "filesystem?\n", inode->i_sb->s_id, rc);
1775                         return rc;
1776                 }
1777         }
1778         return 0;
1779 }
1780
1781 static int osd_attr_set(const struct lu_env *env,
1782                         struct dt_object *dt,
1783                         const struct lu_attr *attr,
1784                         struct thandle *handle)
1785 {
1786         struct osd_object *obj = osd_dt_obj(dt);
1787         struct inode      *inode;
1788         int rc;
1789
1790         if (!dt_object_exists(dt))
1791                 return -ENOENT;
1792
1793         LASSERT(handle != NULL);
1794         LASSERT(!dt_object_remote(dt));
1795         LASSERT(osd_invariant(obj));
1796
1797         osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
1798
1799         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING)) {
1800                 struct osd_thread_info  *oti  = osd_oti_get(env);
1801                 const struct lu_fid     *fid0 = lu_object_fid(&dt->do_lu);
1802                 struct lu_fid           *fid1 = &oti->oti_fid;
1803                 struct osd_inode_id     *id   = &oti->oti_id;
1804                 struct iam_path_descr   *ipd;
1805                 struct iam_container    *bag;
1806                 struct osd_thandle      *oh;
1807                 int                      rc;
1808
1809                 fid_cpu_to_be(fid1, fid0);
1810                 memset(id, 1, sizeof(*id));
1811                 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
1812                                   fid0)->oi_dir.od_container;
1813                 ipd = osd_idx_ipd_get(env, bag);
1814                 if (unlikely(ipd == NULL))
1815                         RETURN(-ENOMEM);
1816
1817                 oh = container_of0(handle, struct osd_thandle, ot_super);
1818                 rc = iam_update(oh->ot_handle, bag, (const struct iam_key *)fid1,
1819                                 (const struct iam_rec *)id, ipd);
1820                 osd_ipd_put(env, bag, ipd);
1821                 return(rc > 0 ? 0 : rc);
1822         }
1823
1824         inode = obj->oo_inode;
1825
1826         rc = osd_quota_transfer(inode, attr);
1827         if (rc)
1828                 return rc;
1829
1830         spin_lock(&obj->oo_guard);
1831         rc = osd_inode_setattr(env, inode, attr);
1832         spin_unlock(&obj->oo_guard);
1833
1834         if (!rc)
1835                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1836         return rc;
1837 }
1838
1839 static struct dentry *osd_child_dentry_get(const struct lu_env *env,
1840                                            struct osd_object *obj,
1841                                            const char *name, const int namelen)
1842 {
1843         return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
1844 }
1845
1846 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
1847                       umode_t mode, struct dt_allocation_hint *hint,
1848                       struct thandle *th)
1849 {
1850         int result;
1851         struct osd_device  *osd = osd_obj2dev(obj);
1852         struct osd_thandle *oth;
1853         struct dt_object   *parent = NULL;
1854         struct inode       *inode;
1855
1856         LINVRNT(osd_invariant(obj));
1857         LASSERT(obj->oo_inode == NULL);
1858         LASSERT(obj->oo_hl_head == NULL);
1859
1860         if (S_ISDIR(mode) && ldiskfs_pdo) {
1861                 obj->oo_hl_head =ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
1862                 if (obj->oo_hl_head == NULL)
1863                         return -ENOMEM;
1864         }
1865
1866         oth = container_of(th, struct osd_thandle, ot_super);
1867         LASSERT(oth->ot_handle->h_transaction != NULL);
1868
1869         if (hint && hint->dah_parent)
1870                 parent = hint->dah_parent;
1871
1872         inode = ldiskfs_create_inode(oth->ot_handle,
1873                                      parent ? osd_dt_obj(parent)->oo_inode :
1874                                               osd_sb(osd)->s_root->d_inode,
1875                                      mode);
1876         if (!IS_ERR(inode)) {
1877                 /* Do not update file c/mtime in ldiskfs. */
1878                 inode->i_flags |= S_NOCMTIME;
1879
1880                 /* For new created object, it must be consistent,
1881                  * and it is unnecessary to scrub against it. */
1882                 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
1883
1884                 obj->oo_inode = inode;
1885                 result = 0;
1886         } else {
1887                 if (obj->oo_hl_head != NULL) {
1888                         ldiskfs_htree_lock_head_free(obj->oo_hl_head);
1889                         obj->oo_hl_head = NULL;
1890                 }
1891                 result = PTR_ERR(inode);
1892         }
1893         LINVRNT(osd_invariant(obj));
1894         return result;
1895 }
1896
1897 enum {
1898         OSD_NAME_LEN = 255
1899 };
1900
1901 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
1902                      struct lu_attr *attr,
1903                      struct dt_allocation_hint *hint,
1904                      struct dt_object_format *dof,
1905                      struct thandle *th)
1906 {
1907         int result;
1908         struct osd_thandle *oth;
1909         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX));
1910
1911         LASSERT(S_ISDIR(attr->la_mode));
1912
1913         oth = container_of(th, struct osd_thandle, ot_super);
1914         LASSERT(oth->ot_handle->h_transaction != NULL);
1915         result = osd_mkfile(info, obj, mode, hint, th);
1916
1917         return result;
1918 }
1919
1920 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
1921                         struct lu_attr *attr,
1922                         struct dt_allocation_hint *hint,
1923                         struct dt_object_format *dof,
1924                         struct thandle *th)
1925 {
1926         int result;
1927         struct osd_thandle *oth;
1928         const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
1929
1930         __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
1931
1932         LASSERT(S_ISREG(attr->la_mode));
1933
1934         oth = container_of(th, struct osd_thandle, ot_super);
1935         LASSERT(oth->ot_handle->h_transaction != NULL);
1936
1937         result = osd_mkfile(info, obj, mode, hint, th);
1938         if (result == 0) {
1939                 LASSERT(obj->oo_inode != NULL);
1940                 if (feat->dif_flags & DT_IND_VARKEY)
1941                         result = iam_lvar_create(obj->oo_inode,
1942                                                  feat->dif_keysize_max,
1943                                                  feat->dif_ptrsize,
1944                                                  feat->dif_recsize_max,
1945                                                  oth->ot_handle);
1946                 else
1947                         result = iam_lfix_create(obj->oo_inode,
1948                                                  feat->dif_keysize_max,
1949                                                  feat->dif_ptrsize,
1950                                                  feat->dif_recsize_max,
1951                                                  oth->ot_handle);
1952
1953         }
1954         return result;
1955 }
1956
1957 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
1958                      struct lu_attr *attr,
1959                      struct dt_allocation_hint *hint,
1960                      struct dt_object_format *dof,
1961                      struct thandle *th)
1962 {
1963         LASSERT(S_ISREG(attr->la_mode));
1964         return osd_mkfile(info, obj, (attr->la_mode &
1965                                (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
1966 }
1967
1968 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
1969                      struct lu_attr *attr,
1970                      struct dt_allocation_hint *hint,
1971                      struct dt_object_format *dof,
1972                      struct thandle *th)
1973 {
1974         LASSERT(S_ISLNK(attr->la_mode));
1975         return osd_mkfile(info, obj, (attr->la_mode &
1976                               (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
1977 }
1978
1979 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
1980                      struct lu_attr *attr,
1981                      struct dt_allocation_hint *hint,
1982                      struct dt_object_format *dof,
1983                      struct thandle *th)
1984 {
1985         umode_t mode = attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX);
1986         int result;
1987
1988         LINVRNT(osd_invariant(obj));
1989         LASSERT(obj->oo_inode == NULL);
1990         LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
1991                 S_ISFIFO(mode) || S_ISSOCK(mode));
1992
1993         result = osd_mkfile(info, obj, mode, hint, th);
1994         if (result == 0) {
1995                 LASSERT(obj->oo_inode != NULL);
1996                 /*
1997                  * This inode should be marked dirty for i_rdev.  Currently
1998                  * that is done in the osd_attr_init().
1999                  */
2000                 init_special_inode(obj->oo_inode, obj->oo_inode->i_mode,
2001                                    attr->la_rdev);
2002         }
2003         LINVRNT(osd_invariant(obj));
2004         return result;
2005 }
2006
2007 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
2008                               struct lu_attr *,
2009                               struct dt_allocation_hint *hint,
2010                               struct dt_object_format *dof,
2011                               struct thandle *);
2012
2013 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
2014 {
2015         osd_obj_type_f result;
2016
2017         switch (type) {
2018         case DFT_DIR:
2019                 result = osd_mkdir;
2020                 break;
2021         case DFT_REGULAR:
2022                 result = osd_mkreg;
2023                 break;
2024         case DFT_SYM:
2025                 result = osd_mksym;
2026                 break;
2027         case DFT_NODE:
2028                 result = osd_mknod;
2029                 break;
2030         case DFT_INDEX:
2031                 result = osd_mk_index;
2032                 break;
2033
2034         default:
2035                 LBUG();
2036                 break;
2037         }
2038         return result;
2039 }
2040
2041
2042 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
2043                         struct dt_object *parent, struct dt_object *child,
2044                         umode_t child_mode)
2045 {
2046         LASSERT(ah);
2047
2048         ah->dah_parent = parent;
2049         ah->dah_mode = child_mode;
2050 }
2051
2052 static void osd_attr_init(struct osd_thread_info *info, struct osd_object *obj,
2053                           struct lu_attr *attr, struct dt_object_format *dof)
2054 {
2055         struct inode   *inode = obj->oo_inode;
2056         __u64           valid = attr->la_valid;
2057         int             result;
2058
2059         attr->la_valid &= ~(LA_TYPE | LA_MODE);
2060
2061         if (dof->dof_type != DFT_NODE)
2062                 attr->la_valid &= ~LA_RDEV;
2063         if ((valid & LA_ATIME) && (attr->la_atime == LTIME_S(inode->i_atime)))
2064                 attr->la_valid &= ~LA_ATIME;
2065         if ((valid & LA_CTIME) && (attr->la_ctime == LTIME_S(inode->i_ctime)))
2066                 attr->la_valid &= ~LA_CTIME;
2067         if ((valid & LA_MTIME) && (attr->la_mtime == LTIME_S(inode->i_mtime)))
2068                 attr->la_valid &= ~LA_MTIME;
2069
2070         result = osd_quota_transfer(inode, attr);
2071         if (result)
2072                 return;
2073
2074         if (attr->la_valid != 0) {
2075                 result = osd_inode_setattr(info->oti_env, inode, attr);
2076                 /*
2077                  * The osd_inode_setattr() should always succeed here.  The
2078                  * only error that could be returned is EDQUOT when we are
2079                  * trying to change the UID or GID of the inode. However, this
2080                  * should not happen since quota enforcement is no longer
2081                  * enabled on ldiskfs (lquota takes care of it).
2082                  */
2083                 LASSERTF(result == 0, "%d\n", result);
2084                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2085         }
2086
2087         attr->la_valid = valid;
2088 }
2089
2090 /**
2091  * Helper function for osd_object_create()
2092  *
2093  * \retval 0, on success
2094  */
2095 static int __osd_object_create(struct osd_thread_info *info,
2096                                struct osd_object *obj, struct lu_attr *attr,
2097                                struct dt_allocation_hint *hint,
2098                                struct dt_object_format *dof,
2099                                struct thandle *th)
2100 {
2101         int     result;
2102         __u32   umask;
2103
2104         /* we drop umask so that permissions we pass are not affected */
2105         umask = current->fs->umask;
2106         current->fs->umask = 0;
2107
2108         result = osd_create_type_f(dof->dof_type)(info, obj, attr, hint, dof,
2109                                                   th);
2110         if (likely(obj->oo_inode != NULL)) {
2111                 LASSERT(obj->oo_inode->i_state & I_NEW);
2112
2113                 /* Unlock the inode before attr initialization to avoid
2114                  * unnecessary dqget operations. LU-6378 */
2115                 unlock_new_inode(obj->oo_inode);
2116         }
2117
2118         if (likely(result == 0)) {
2119                 osd_attr_init(info, obj, attr, dof);
2120                 osd_object_init0(obj);
2121         }
2122
2123         /* restore previous umask value */
2124         current->fs->umask = umask;
2125
2126         return result;
2127 }
2128
2129 /**
2130  * Helper function for osd_object_create()
2131  *
2132  * \retval 0, on success
2133  */
2134 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
2135                            const struct lu_fid *fid, struct thandle *th)
2136 {
2137         struct osd_thread_info *info = osd_oti_get(env);
2138         struct osd_inode_id    *id   = &info->oti_id;
2139         struct osd_device      *osd  = osd_obj2dev(obj);
2140         struct osd_thandle     *oh;
2141
2142         LASSERT(obj->oo_inode != NULL);
2143
2144         oh = container_of0(th, struct osd_thandle, ot_super);
2145         LASSERT(oh->ot_handle);
2146
2147         osd_id_gen(id, obj->oo_inode->i_ino, obj->oo_inode->i_generation);
2148         return osd_oi_insert(info, osd, fid, id, oh->ot_handle, OI_CHECK_FLD);
2149 }
2150
2151 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
2152                    u64 seq, struct lu_seq_range *range)
2153 {
2154         struct seq_server_site  *ss = osd_seq_site(osd);
2155
2156         if (fid_seq_is_idif(seq)) {
2157                 fld_range_set_ost(range);
2158                 range->lsr_index = idif_ost_idx(seq);
2159                 return 0;
2160         }
2161
2162         if (!fid_seq_in_fldb(seq)) {
2163                 fld_range_set_mdt(range);
2164                 if (ss != NULL)
2165                         /* FIXME: If ss is NULL, it suppose not get lsr_index
2166                          * at all */
2167                         range->lsr_index = ss->ss_node_id;
2168                 return 0;
2169         }
2170
2171         LASSERT(ss != NULL);
2172         fld_range_set_any(range);
2173         /* OSD will only do local fld lookup */
2174         return fld_local_lookup(env, ss->ss_server_fld, seq, range);
2175 }
2176
2177 /*
2178  * Concurrency: no external locking is necessary.
2179  */
2180 static int osd_declare_object_create(const struct lu_env *env,
2181                                      struct dt_object *dt,
2182                                      struct lu_attr *attr,
2183                                      struct dt_allocation_hint *hint,
2184                                      struct dt_object_format *dof,
2185                                      struct thandle *handle)
2186 {
2187         struct osd_thandle      *oh;
2188         int                      rc;
2189         ENTRY;
2190
2191         LASSERT(handle != NULL);
2192
2193         oh = container_of0(handle, struct osd_thandle, ot_super);
2194         LASSERT(oh->ot_handle == NULL);
2195
2196         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
2197                              osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
2198         /* Reuse idle OI block may cause additional one OI block
2199          * to be changed. */
2200         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2201                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
2202
2203         /* If this is directory, then we expect . and .. to be inserted as
2204          * well. The one directory block always needs to be created for the
2205          * directory, so we could use DTO_WRITE_BASE here (GDT, block bitmap,
2206          * block), there is no danger of needing a tree for the first block.
2207          */
2208         if (attr && S_ISDIR(attr->la_mode)) {
2209                 osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2210                                      osd_dto_credits_noquota[DTO_WRITE_BASE]);
2211                 osd_trans_declare_op(env, oh, OSD_OT_INSERT, 0);
2212         }
2213
2214         if (!attr)
2215                 RETURN(0);
2216
2217         rc = osd_declare_inode_qid(env, attr->la_uid, attr->la_gid, 1, oh,
2218                                    osd_dt_obj(dt), false, NULL, false);
2219         if (rc != 0)
2220                 RETURN(rc);
2221
2222         RETURN(rc);
2223 }
2224
2225 static int osd_object_create(const struct lu_env *env, struct dt_object *dt,
2226                              struct lu_attr *attr,
2227                              struct dt_allocation_hint *hint,
2228                              struct dt_object_format *dof, struct thandle *th)
2229 {
2230         const struct lu_fid     *fid    = lu_object_fid(&dt->do_lu);
2231         struct osd_object       *obj    = osd_dt_obj(dt);
2232         struct osd_thread_info  *info   = osd_oti_get(env);
2233         int result;
2234         ENTRY;
2235
2236         if (dt_object_exists(dt))
2237                 return -EEXIST;
2238
2239         LINVRNT(osd_invariant(obj));
2240         LASSERT(!dt_object_remote(dt));
2241         LASSERT(osd_write_locked(env, obj));
2242         LASSERT(th != NULL);
2243
2244         if (unlikely(fid_is_acct(fid)))
2245                 /* Quota files can't be created from the kernel any more,
2246                  * 'tune2fs -O quota' will take care of creating them */
2247                 RETURN(-EPERM);
2248
2249         osd_trans_exec_op(env, th, OSD_OT_CREATE);
2250         osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2251
2252         result = __osd_object_create(info, obj, attr, hint, dof, th);
2253         if (result == 0)
2254                 result = __osd_oi_insert(env, obj, fid, th);
2255
2256         LASSERT(ergo(result == 0,
2257                      dt_object_exists(dt) && !dt_object_remote(dt)));
2258
2259         LASSERT(osd_invariant(obj));
2260         RETURN(result);
2261 }
2262
2263 /**
2264  * Called to destroy on-disk representation of the object
2265  *
2266  * Concurrency: must be locked
2267  */
2268 static int osd_declare_object_destroy(const struct lu_env *env,
2269                                       struct dt_object *dt,
2270                                       struct thandle *th)
2271 {
2272         struct osd_object  *obj = osd_dt_obj(dt);
2273         struct inode       *inode = obj->oo_inode;
2274         struct osd_thandle *oh;
2275         int                 rc;
2276         ENTRY;
2277
2278         oh = container_of0(th, struct osd_thandle, ot_super);
2279         LASSERT(oh->ot_handle == NULL);
2280         LASSERT(inode);
2281
2282         osd_trans_declare_op(env, oh, OSD_OT_DESTROY,
2283                              osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
2284         /* Recycle idle OI leaf may cause additional three OI blocks
2285          * to be changed. */
2286         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
2287                              osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
2288         /* one less inode */
2289         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2290                                    -1, oh, obj, false, NULL, false);
2291         if (rc)
2292                 RETURN(rc);
2293         /* data to be truncated */
2294         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2295                                    0, oh, obj, true, NULL, false);
2296         RETURN(rc);
2297 }
2298
2299 static int osd_object_destroy(const struct lu_env *env,
2300                               struct dt_object *dt,
2301                               struct thandle *th)
2302 {
2303         const struct lu_fid    *fid = lu_object_fid(&dt->do_lu);
2304         struct osd_object      *obj = osd_dt_obj(dt);
2305         struct inode           *inode = obj->oo_inode;
2306         struct osd_device      *osd = osd_obj2dev(obj);
2307         struct osd_thandle     *oh;
2308         int                     result;
2309         ENTRY;
2310
2311         oh = container_of0(th, struct osd_thandle, ot_super);
2312         LASSERT(oh->ot_handle);
2313         LASSERT(inode);
2314         LASSERT(!lu_object_is_dying(dt->do_lu.lo_header));
2315
2316         if (unlikely(fid_is_acct(fid)))
2317                 RETURN(-EPERM);
2318
2319         if (S_ISDIR(inode->i_mode)) {
2320                 LASSERT(osd_inode_unlinked(inode) || inode->i_nlink == 1 ||
2321                         inode->i_nlink == 2);
2322                 /* it will check/delete the inode from remote parent,
2323                  * how to optimize it? unlink performance impaction XXX */
2324                 result = osd_delete_from_remote_parent(env, osd, obj, oh);
2325                 if (result != 0 && result != -ENOENT) {
2326                         CERROR("%s: delete inode "DFID": rc = %d\n",
2327                                osd_name(osd), PFID(fid), result);
2328                 }
2329                 spin_lock(&obj->oo_guard);
2330                 clear_nlink(inode);
2331                 spin_unlock(&obj->oo_guard);
2332                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2333         }
2334
2335         osd_trans_exec_op(env, th, OSD_OT_DESTROY);
2336
2337         result = osd_oi_delete(osd_oti_get(env), osd, fid, oh->ot_handle,
2338                                OI_CHECK_FLD);
2339
2340         /* XXX: add to ext3 orphan list */
2341         /* rc = ext3_orphan_add(handle_t *handle, struct inode *inode) */
2342
2343         /* not needed in the cache anymore */
2344         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
2345
2346         RETURN(0);
2347 }
2348
2349 /**
2350  * Put the fid into lustre_mdt_attrs, and then place the structure
2351  * inode's ea. This fid should not be altered during the life time
2352  * of the inode.
2353  *
2354  * \retval +ve, on success
2355  * \retval -ve, on error
2356  *
2357  * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
2358  */
2359 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
2360                    const struct lu_fid *fid, __u32 compat, __u32 incompat)
2361 {
2362         struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
2363         int                      rc;
2364         ENTRY;
2365
2366         if (OBD_FAIL_CHECK(OBD_FAIL_FID_INLMA))
2367                 RETURN(0);
2368
2369         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_OST_EA_FID_SET))
2370                 rc = -ENOMEM;
2371
2372         lustre_lma_init(lma, fid, compat, incompat);
2373         lustre_lma_swab(lma);
2374
2375         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma, sizeof(*lma),
2376                              XATTR_CREATE);
2377         /* LMA may already exist, but we need to check that all the
2378          * desired compat/incompat flags have been added. */
2379         if (unlikely(rc == -EEXIST)) {
2380                 if (compat == 0 && incompat == 0)
2381                         RETURN(0);
2382
2383                 rc = __osd_xattr_get(inode, &info->oti_obj_dentry,
2384                                      XATTR_NAME_LMA, info->oti_mdt_attrs_old,
2385                                      LMA_OLD_SIZE);
2386                 if (rc <= 0)
2387                         RETURN(-EINVAL);
2388
2389                 lustre_lma_swab(lma);
2390                 if (!(~lma->lma_compat & compat) &&
2391                     !(~lma->lma_incompat & incompat))
2392                         RETURN(0);
2393
2394                 lma->lma_compat |= compat;
2395                 lma->lma_incompat |= incompat;
2396                 lustre_lma_swab(lma);
2397                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
2398                                      sizeof(*lma), XATTR_REPLACE);
2399         }
2400
2401         RETURN(rc);
2402 }
2403
2404 /**
2405  * ldiskfs supports fid in dirent, it is passed in dentry->d_fsdata.
2406  * lustre 1.8 also uses d_fsdata for passing other info to ldiskfs.
2407  * To have compatilibility with 1.8 ldiskfs driver we need to have
2408  * magic number at start of fid data.
2409  * \ldiskfs_dentry_param is used only to pass fid from osd to ldiskfs.
2410  * its inmemory API.
2411  */
2412 static void osd_get_ldiskfs_dirent_param(struct ldiskfs_dentry_param *param,
2413                                          const struct lu_fid *fid)
2414 {
2415         if (!fid_is_namespace_visible(fid) ||
2416             OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF)) {
2417                 param->edp_magic = 0;
2418                 return;
2419         }
2420
2421         param->edp_magic = LDISKFS_LUFID_MAGIC;
2422         param->edp_len =  sizeof(struct lu_fid) + 1;
2423         fid_cpu_to_be((struct lu_fid *)param->edp_data, (struct lu_fid *)fid);
2424 }
2425
2426 /**
2427  * Try to read the fid from inode ea into dt_rec.
2428  *
2429  * \param fid object fid.
2430  *
2431  * \retval 0 on success
2432  */
2433 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
2434                           __u32 ino, struct lu_fid *fid,
2435                           struct osd_inode_id *id)
2436 {
2437         struct osd_thread_info *info  = osd_oti_get(env);
2438         struct inode           *inode;
2439         ENTRY;
2440
2441         osd_id_gen(id, ino, OSD_OII_NOGEN);
2442         inode = osd_iget_fid(info, osd_obj2dev(obj), id, fid);
2443         if (IS_ERR(inode))
2444                 RETURN(PTR_ERR(inode));
2445
2446         iput(inode);
2447         RETURN(0);
2448 }
2449
2450 static int osd_add_dot_dotdot_internal(struct osd_thread_info *info,
2451                                         struct inode *dir,
2452                                         struct inode *parent_dir,
2453                                         const struct lu_fid *dot_fid,
2454                                         const struct lu_fid *dot_dot_fid,
2455                                         struct osd_thandle *oth)
2456 {
2457         struct ldiskfs_dentry_param *dot_ldp;
2458         struct ldiskfs_dentry_param *dot_dot_ldp;
2459
2460         dot_dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp2;
2461         osd_get_ldiskfs_dirent_param(dot_dot_ldp, dot_dot_fid);
2462
2463         dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
2464         dot_ldp->edp_magic = 0;
2465         return ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir,
2466                                         dir, dot_ldp, dot_dot_ldp);
2467 }
2468
2469 /**
2470  * Create an local agent inode for remote entry
2471  */
2472 static struct inode *osd_create_local_agent_inode(const struct lu_env *env,
2473                                                   struct osd_device *osd,
2474                                                   struct osd_object *pobj,
2475                                                   const struct lu_fid *fid,
2476                                                   __u32 type,
2477                                                   struct thandle *th)
2478 {
2479         struct osd_thread_info  *info = osd_oti_get(env);
2480         struct inode            *local;
2481         struct osd_thandle      *oh;
2482         int                     rc;
2483         ENTRY;
2484
2485         LASSERT(th);
2486         oh = container_of(th, struct osd_thandle, ot_super);
2487         LASSERT(oh->ot_handle->h_transaction != NULL);
2488
2489         local = ldiskfs_create_inode(oh->ot_handle, pobj->oo_inode, type);
2490         if (IS_ERR(local)) {
2491                 CERROR("%s: create local error %d\n", osd_name(osd),
2492                        (int)PTR_ERR(local));
2493                 RETURN(local);
2494         }
2495
2496         ldiskfs_set_inode_state(local, LDISKFS_STATE_LUSTRE_NOSCRUB);
2497         unlock_new_inode(local);
2498
2499         /* Set special LMA flag for local agent inode */
2500         rc = osd_ea_fid_set(info, local, fid, 0, LMAI_AGENT);
2501         if (rc != 0) {
2502                 CERROR("%s: set LMA for "DFID" remote inode failed: rc = %d\n",
2503                        osd_name(osd), PFID(fid), rc);
2504                 RETURN(ERR_PTR(rc));
2505         }
2506
2507         if (!S_ISDIR(type))
2508                 RETURN(local);
2509
2510         rc = osd_add_dot_dotdot_internal(info, local, pobj->oo_inode,
2511                                          lu_object_fid(&pobj->oo_dt.do_lu),
2512                                          fid, oh);
2513         if (rc != 0) {
2514                 CERROR("%s: "DFID" add dot dotdot error: rc = %d\n",
2515                         osd_name(osd), PFID(fid), rc);
2516                 RETURN(ERR_PTR(rc));
2517         }
2518
2519         RETURN(local);
2520 }
2521
2522 /**
2523  * Delete local agent inode for remote entry
2524  */
2525 static int osd_delete_local_agent_inode(const struct lu_env *env,
2526                                         struct osd_device *osd,
2527                                         const struct lu_fid *fid,
2528                                         __u32 ino, struct osd_thandle *oh)
2529 {
2530         struct osd_thread_info  *oti = osd_oti_get(env);
2531         struct osd_inode_id     *id = &oti->oti_id;
2532         struct inode            *inode;
2533         ENTRY;
2534
2535         id->oii_ino = le32_to_cpu(ino);
2536         id->oii_gen = OSD_OII_NOGEN;
2537         inode = osd_iget(oti, osd, id);
2538         if (IS_ERR(inode)) {
2539                 CERROR("%s: iget error "DFID" id %u:%u\n", osd_name(osd),
2540                        PFID(fid), id->oii_ino, id->oii_gen);
2541                 RETURN(PTR_ERR(inode));
2542         }
2543
2544         clear_nlink(inode);
2545         mark_inode_dirty(inode);
2546         CDEBUG(D_INODE, "%s: delete remote inode "DFID" %lu\n",
2547                 osd_name(osd), PFID(fid), inode->i_ino);
2548         iput(inode);
2549         RETURN(0);
2550 }
2551
2552 /**
2553  * OSD layer object create function for interoperability mode (b11826).
2554  * This is mostly similar to osd_object_create(). Only difference being, fid is
2555  * inserted into inode ea here.
2556  *
2557  * \retval   0, on success
2558  * \retval -ve, on error
2559  */
2560 static int osd_object_ea_create(const struct lu_env *env, struct dt_object *dt,
2561                                 struct lu_attr *attr,
2562                                 struct dt_allocation_hint *hint,
2563                                 struct dt_object_format *dof,
2564                                 struct thandle *th)
2565 {
2566         const struct lu_fid     *fid    = lu_object_fid(&dt->do_lu);
2567         struct osd_object       *obj    = osd_dt_obj(dt);
2568         struct osd_thread_info  *info   = osd_oti_get(env);
2569         int                      result;
2570
2571         ENTRY;
2572
2573         if (dt_object_exists(dt))
2574                 RETURN(-EEXIST);
2575
2576         LASSERT(osd_invariant(obj));
2577         LASSERT(!dt_object_remote(dt));
2578         LASSERT(osd_write_locked(env, obj));
2579         LASSERT(th != NULL);
2580
2581         if (unlikely(fid_is_acct(fid)))
2582                 /* Quota files can't be created from the kernel any more,
2583                  * 'tune2fs -O quota' will take care of creating them */
2584                 RETURN(-EPERM);
2585
2586         osd_trans_exec_op(env, th, OSD_OT_CREATE);
2587         osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2588
2589         result = __osd_object_create(info, obj, attr, hint, dof, th);
2590         if (result == 0) {
2591                 if (fid_is_idif(fid) &&
2592                     !osd_dev(dt->do_lu.lo_dev)->od_index_in_idif) {
2593                         struct lu_fid *tfid = &info->oti_fid;
2594                         struct ost_id *oi   = &info->oti_ostid;
2595
2596                         fid_to_ostid(fid, oi);
2597                         ostid_to_fid(tfid, oi, 0);
2598                         result = osd_ea_fid_set(info, obj->oo_inode, tfid,
2599                                                 LMAC_FID_ON_OST, 0);
2600                 } else {
2601                         result = osd_ea_fid_set(info, obj->oo_inode, fid,
2602                                 fid_is_on_ost(info, osd_obj2dev(obj),
2603                                               fid, OI_CHECK_FLD) ?
2604                                 LMAC_FID_ON_OST : 0, 0);
2605                 }
2606         }
2607
2608         if (result == 0)
2609                 result = __osd_oi_insert(env, obj, fid, th);
2610
2611         LASSERT(ergo(result == 0,
2612                      dt_object_exists(dt) && !dt_object_remote(dt)));
2613         LINVRNT(osd_invariant(obj));
2614         RETURN(result);
2615 }
2616
2617 static int osd_declare_object_ref_add(const struct lu_env *env,
2618                                       struct dt_object *dt,
2619                                       struct thandle *handle)
2620 {
2621         struct osd_thandle       *oh;
2622
2623         /* it's possible that object doesn't exist yet */
2624         LASSERT(handle != NULL);
2625
2626         oh = container_of0(handle, struct osd_thandle, ot_super);
2627         LASSERT(oh->ot_handle == NULL);
2628
2629         osd_trans_declare_op(env, oh, OSD_OT_REF_ADD,
2630                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2631
2632         return 0;
2633 }
2634
2635 /*
2636  * Concurrency: @dt is write locked.
2637  */
2638 static int osd_object_ref_add(const struct lu_env *env,
2639                               struct dt_object *dt, struct thandle *th)
2640 {
2641         struct osd_object  *obj = osd_dt_obj(dt);
2642         struct inode       *inode = obj->oo_inode;
2643         struct osd_thandle *oh;
2644         int                 rc = 0;
2645
2646         if (!dt_object_exists(dt))
2647                 return -ENOENT;
2648
2649         LINVRNT(osd_invariant(obj));
2650         LASSERT(!dt_object_remote(dt));
2651         LASSERT(osd_write_locked(env, obj));
2652         LASSERT(th != NULL);
2653
2654         oh = container_of0(th, struct osd_thandle, ot_super);
2655         LASSERT(oh->ot_handle != NULL);
2656
2657         osd_trans_exec_op(env, th, OSD_OT_REF_ADD);
2658
2659         CDEBUG(D_INODE, DFID" increase nlink %d\n",
2660                PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
2661         /*
2662          * The DIR_NLINK feature allows directories to exceed LDISKFS_LINK_MAX
2663          * (65000) subdirectories by storing "1" in i_nlink if the link count
2664          * would otherwise overflow. Directory tranversal tools understand
2665          * that (st_nlink == 1) indicates that the filesystem dose not track
2666          * hard links count on the directory, and will not abort subdirectory
2667          * scanning early once (st_nlink - 2) subdirs have been found.
2668          *
2669          * This also has to properly handle the case of inodes with nlink == 0
2670          * in case they are being linked into the PENDING directory
2671          */
2672         spin_lock(&obj->oo_guard);
2673         if (unlikely(inode->i_nlink == 0))
2674                 /* inc_nlink from 0 may cause WARN_ON */
2675                 set_nlink(inode, 1);
2676         else {
2677                 ldiskfs_inc_count(oh->ot_handle, inode);
2678                 if (!S_ISDIR(inode->i_mode))
2679                         LASSERT(inode->i_nlink <= LDISKFS_LINK_MAX);
2680         }
2681         spin_unlock(&obj->oo_guard);
2682
2683         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2684         LINVRNT(osd_invariant(obj));
2685
2686         return rc;
2687 }
2688
2689 static int osd_declare_object_ref_del(const struct lu_env *env,
2690                                       struct dt_object *dt,
2691                                       struct thandle *handle)
2692 {
2693         struct osd_thandle *oh;
2694
2695         LASSERT(!dt_object_remote(dt));
2696         LASSERT(handle != NULL);
2697
2698         oh = container_of0(handle, struct osd_thandle, ot_super);
2699         LASSERT(oh->ot_handle == NULL);
2700
2701         osd_trans_declare_op(env, oh, OSD_OT_REF_DEL,
2702                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2703
2704         return 0;
2705 }
2706
2707 /*
2708  * Concurrency: @dt is write locked.
2709  */
2710 static int osd_object_ref_del(const struct lu_env *env, struct dt_object *dt,
2711                               struct thandle *th)
2712 {
2713         struct osd_object       *obj = osd_dt_obj(dt);
2714         struct inode            *inode = obj->oo_inode;
2715         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
2716         struct osd_thandle      *oh;
2717
2718         if (!dt_object_exists(dt))
2719                 return -ENOENT;
2720
2721         LINVRNT(osd_invariant(obj));
2722         LASSERT(!dt_object_remote(dt));
2723         LASSERT(osd_write_locked(env, obj));
2724         LASSERT(th != NULL);
2725
2726         oh = container_of0(th, struct osd_thandle, ot_super);
2727         LASSERT(oh->ot_handle != NULL);
2728
2729         osd_trans_exec_op(env, th, OSD_OT_REF_DEL);
2730
2731         spin_lock(&obj->oo_guard);
2732         /* That can be result of upgrade from old Lustre version and
2733          * applied only to local files.  Just skip this ref_del call.
2734          * ext4_unlink() only treats this as a warning, don't LASSERT here.*/
2735         if (inode->i_nlink == 0) {
2736                 CDEBUG_LIMIT(fid_is_norm(lu_object_fid(&dt->do_lu)) ?
2737                              D_ERROR : D_INODE, "%s: nlink == 0 on "DFID
2738                              ", maybe an upgraded file? (LU-3915)\n",
2739                              osd_name(osd), PFID(lu_object_fid(&dt->do_lu)));
2740                 spin_unlock(&obj->oo_guard);
2741                 return 0;
2742         }
2743
2744         CDEBUG(D_INODE, DFID" decrease nlink %d\n",
2745                PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
2746
2747         ldiskfs_dec_count(oh->ot_handle, inode);
2748         spin_unlock(&obj->oo_guard);
2749
2750         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2751         LINVRNT(osd_invariant(obj));
2752
2753         return 0;
2754 }
2755
2756 /*
2757  * Get the 64-bit version for an inode.
2758  */
2759 static int osd_object_version_get(const struct lu_env *env,
2760                                   struct dt_object *dt, dt_obj_version_t *ver)
2761 {
2762         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2763
2764         CDEBUG(D_INODE, "Get version "LPX64" for inode %lu\n",
2765                LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2766         *ver = LDISKFS_I(inode)->i_fs_version;
2767         return 0;
2768 }
2769
2770 /*
2771  * Concurrency: @dt is read locked.
2772  */
2773 static int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
2774                          struct lu_buf *buf, const char *name)
2775 {
2776         struct osd_object      *obj    = osd_dt_obj(dt);
2777         struct inode           *inode  = obj->oo_inode;
2778         struct osd_thread_info *info   = osd_oti_get(env);
2779         struct dentry          *dentry = &info->oti_obj_dentry;
2780
2781         /* version get is not real XATTR but uses xattr API */
2782         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2783                 /* for version we are just using xattr API but change inode
2784                  * field instead */
2785                 if (buf->lb_len == 0)
2786                         return sizeof(dt_obj_version_t);
2787
2788                 if (buf->lb_len < sizeof(dt_obj_version_t))
2789                         return -ERANGE;
2790
2791                 osd_object_version_get(env, dt, buf->lb_buf);
2792
2793                 return sizeof(dt_obj_version_t);
2794         }
2795
2796         if (!dt_object_exists(dt))
2797                 return -ENOENT;
2798
2799         LASSERT(!dt_object_remote(dt));
2800         LASSERT(inode->i_op != NULL);
2801         LASSERT(inode->i_op->getxattr != NULL);
2802
2803         return __osd_xattr_get(inode, dentry, name, buf->lb_buf, buf->lb_len);
2804 }
2805
2806
2807 static int osd_declare_xattr_set(const struct lu_env *env,
2808                                  struct dt_object *dt,
2809                                  const struct lu_buf *buf, const char *name,
2810                                  int fl, struct thandle *handle)
2811 {
2812         struct osd_thandle *oh;
2813         int credits;
2814         struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
2815
2816         LASSERT(handle != NULL);
2817
2818         oh = container_of0(handle, struct osd_thandle, ot_super);
2819         LASSERT(oh->ot_handle == NULL);
2820
2821         /* optimistic optimization: LMA is set first and usually fit inode */
2822         if (strcmp(name, XATTR_NAME_LMA) == 0) {
2823                 if (dt_object_exists(dt))
2824                         credits = 0;
2825                 else
2826                         credits = 1;
2827         } else if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2828                 credits = 1;
2829         } else {
2830                 credits = osd_dto_credits_noquota[DTO_XATTR_SET];
2831                 if (buf && buf->lb_len > sb->s_blocksize) {
2832                         credits *= (buf->lb_len + sb->s_blocksize - 1) >>
2833                                         sb->s_blocksize_bits;
2834                 }
2835                 /*
2836                  * xattr set may involve inode quota change, reserve credits for
2837                  * dquot_initialize()
2838                  */
2839                 oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
2840         }
2841
2842         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET, credits);
2843
2844         return 0;
2845 }
2846
2847 /*
2848  * Set the 64-bit version for object
2849  */
2850 static void osd_object_version_set(const struct lu_env *env,
2851                                    struct dt_object *dt,
2852                                    dt_obj_version_t *new_version)
2853 {
2854         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2855
2856         CDEBUG(D_INODE, "Set version "LPX64" (old "LPX64") for inode %lu\n",
2857                *new_version, LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2858
2859         LDISKFS_I(inode)->i_fs_version = *new_version;
2860         /** Version is set after all inode operations are finished,
2861          *  so we should mark it dirty here */
2862         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2863 }
2864
2865 /*
2866  * Concurrency: @dt is write locked.
2867  */
2868 static int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
2869                          const struct lu_buf *buf, const char *name, int fl,
2870                          struct thandle *handle)
2871 {
2872         struct osd_object      *obj      = osd_dt_obj(dt);
2873         struct inode           *inode    = obj->oo_inode;
2874         struct osd_thread_info *info     = osd_oti_get(env);
2875         int                     fs_flags = 0;
2876         ENTRY;
2877
2878         LASSERT(handle != NULL);
2879
2880         /* version set is not real XATTR */
2881         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2882                 /* for version we are just using xattr API but change inode
2883                  * field instead */
2884                 LASSERT(buf->lb_len == sizeof(dt_obj_version_t));
2885                 osd_object_version_set(env, dt, buf->lb_buf);
2886                 return sizeof(dt_obj_version_t);
2887         }
2888
2889         CDEBUG(D_INODE, DFID" set xattr '%s' with size %zu\n",
2890                PFID(lu_object_fid(&dt->do_lu)), name, buf->lb_len);
2891
2892         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
2893         if (fl & LU_XATTR_REPLACE)
2894                 fs_flags |= XATTR_REPLACE;
2895
2896         if (fl & LU_XATTR_CREATE)
2897                 fs_flags |= XATTR_CREATE;
2898
2899         if (strcmp(name, XATTR_NAME_LMV) == 0) {
2900                 struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
2901                 int                      rc;
2902
2903                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
2904                 if (rc != 0)
2905                         RETURN(rc);
2906
2907                 lma->lma_incompat |= LMAI_STRIPED;
2908                 lustre_lma_swab(lma);
2909                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
2910                                      sizeof(*lma), XATTR_REPLACE);
2911                 if (rc != 0)
2912                         RETURN(rc);
2913         }
2914
2915         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_OVERFLOW) &&
2916             strcmp(name, XATTR_NAME_LINK) == 0)
2917                 return -ENOSPC;
2918
2919         return __osd_xattr_set(info, inode, name, buf->lb_buf, buf->lb_len,
2920                                fs_flags);
2921 }
2922
2923 /*
2924  * Concurrency: @dt is read locked.
2925  */
2926 static int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
2927                           const struct lu_buf *buf)
2928 {
2929         struct osd_object      *obj    = osd_dt_obj(dt);
2930         struct inode           *inode  = obj->oo_inode;
2931         struct osd_thread_info *info   = osd_oti_get(env);
2932         struct dentry          *dentry = &info->oti_obj_dentry;
2933
2934         if (!dt_object_exists(dt))
2935                 return -ENOENT;
2936
2937         LASSERT(!dt_object_remote(dt));
2938         LASSERT(inode->i_op != NULL);
2939         LASSERT(inode->i_op->listxattr != NULL);
2940
2941         dentry->d_inode = inode;
2942         dentry->d_sb = inode->i_sb;
2943         return inode->i_op->listxattr(dentry, buf->lb_buf, buf->lb_len);
2944 }
2945
2946 static int osd_declare_xattr_del(const struct lu_env *env,
2947                                  struct dt_object *dt, const char *name,
2948                                  struct thandle *handle)
2949 {
2950         struct osd_thandle *oh;
2951         struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
2952
2953         LASSERT(!dt_object_remote(dt));
2954         LASSERT(handle != NULL);
2955
2956         oh = container_of0(handle, struct osd_thandle, ot_super);
2957         LASSERT(oh->ot_handle == NULL);
2958
2959         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2960                              osd_dto_credits_noquota[DTO_XATTR_SET]);
2961         /*
2962          * xattr del may involve inode quota change, reserve credits for
2963          * dquot_initialize()
2964          */
2965         oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
2966
2967         return 0;
2968 }
2969
2970 /*
2971  * Concurrency: @dt is write locked.
2972  */
2973 static int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
2974                          const char *name, struct thandle *handle)
2975 {
2976         struct osd_object      *obj    = osd_dt_obj(dt);
2977         struct inode           *inode  = obj->oo_inode;
2978         struct osd_thread_info *info   = osd_oti_get(env);
2979         struct dentry          *dentry = &info->oti_obj_dentry;
2980         int                     rc;
2981
2982         if (!dt_object_exists(dt))
2983                 return -ENOENT;
2984
2985         LASSERT(!dt_object_remote(dt));
2986         LASSERT(inode->i_op != NULL);
2987         LASSERT(inode->i_op->removexattr != NULL);
2988         LASSERT(handle != NULL);
2989
2990         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
2991
2992         ll_vfs_dq_init(inode);
2993         dentry->d_inode = inode;
2994         dentry->d_sb = inode->i_sb;
2995         rc = inode->i_op->removexattr(dentry, name);
2996         return rc;
2997 }
2998
2999 static int osd_object_sync(const struct lu_env *env, struct dt_object *dt,
3000                            __u64 start, __u64 end)
3001 {
3002         struct osd_object       *obj    = osd_dt_obj(dt);
3003         struct inode            *inode  = obj->oo_inode;
3004         struct osd_thread_info  *info   = osd_oti_get(env);
3005         struct dentry           *dentry = &info->oti_obj_dentry;
3006         struct file             *file   = &info->oti_file;
3007         int                     rc;
3008
3009         ENTRY;
3010
3011         dentry->d_inode = inode;
3012         dentry->d_sb = inode->i_sb;
3013         file->f_path.dentry = dentry;
3014         file->f_mapping = inode->i_mapping;
3015         file->f_op = inode->i_fop;
3016         set_file_inode(file, inode);
3017
3018         rc = ll_vfs_fsync_range(file, start, end, 0);
3019
3020         RETURN(rc);
3021 }
3022
3023 /*
3024  * Index operations.
3025  */
3026
3027 static int osd_iam_index_probe(const struct lu_env *env, struct osd_object *o,
3028                            const struct dt_index_features *feat)
3029 {
3030         struct iam_descr *descr;
3031
3032         if (osd_object_is_root(o))
3033                 return feat == &dt_directory_features;
3034
3035         LASSERT(o->oo_dir != NULL);
3036
3037         descr = o->oo_dir->od_container.ic_descr;
3038         if (feat == &dt_directory_features) {
3039                 if (descr->id_rec_size == sizeof(struct osd_fid_pack))
3040                         return 1;
3041                 else
3042                         return 0;
3043         } else {
3044                 return
3045                         feat->dif_keysize_min <= descr->id_key_size &&
3046                         descr->id_key_size <= feat->dif_keysize_max &&
3047                         feat->dif_recsize_min <= descr->id_rec_size &&
3048                         descr->id_rec_size <= feat->dif_recsize_max &&
3049                         !(feat->dif_flags & (DT_IND_VARKEY |
3050                                              DT_IND_VARREC | DT_IND_NONUNQ)) &&
3051                         ergo(feat->dif_flags & DT_IND_UPDATE,
3052                              1 /* XXX check that object (and file system) is
3053                                 * writable */);
3054         }
3055 }
3056
3057 static int osd_iam_container_init(const struct lu_env *env,
3058                                   struct osd_object *obj,
3059                                   struct osd_directory *dir)
3060 {
3061         struct iam_container *bag = &dir->od_container;
3062         int result;
3063
3064         result = iam_container_init(bag, &dir->od_descr, obj->oo_inode);
3065         if (result != 0)
3066                 return result;
3067
3068         result = iam_container_setup(bag);
3069         if (result == 0)
3070                 obj->oo_dt.do_index_ops = &osd_index_iam_ops;
3071         else
3072                 iam_container_fini(bag);
3073
3074         return result;
3075 }
3076
3077
3078 /*
3079  * Concurrency: no external locking is necessary.
3080  */
3081 static int osd_index_try(const struct lu_env *env, struct dt_object *dt,
3082                          const struct dt_index_features *feat)
3083 {
3084         int                      result;
3085         int                      skip_iam = 0;
3086         struct osd_object       *obj = osd_dt_obj(dt);
3087
3088         LINVRNT(osd_invariant(obj));
3089
3090         if (osd_object_is_root(obj)) {
3091                 dt->do_index_ops = &osd_index_ea_ops;
3092                 result = 0;
3093         } else if (feat == &dt_directory_features) {
3094                 dt->do_index_ops = &osd_index_ea_ops;
3095                 if (obj->oo_inode != NULL && S_ISDIR(obj->oo_inode->i_mode))
3096                         result = 0;
3097                 else
3098                         result = -ENOTDIR;
3099                 skip_iam = 1;
3100         } else if (unlikely(feat == &dt_otable_features)) {
3101                 dt->do_index_ops = &osd_otable_ops;
3102                 return 0;
3103         } else if (unlikely(feat == &dt_acct_features)) {
3104                 dt->do_index_ops = &osd_acct_index_ops;
3105                 result = 0;
3106                 skip_iam = 1;
3107         } else if (!osd_has_index(obj)) {
3108                 struct osd_directory *dir;
3109
3110                 OBD_ALLOC_PTR(dir);
3111                 if (dir != NULL) {
3112
3113                         spin_lock(&obj->oo_guard);
3114                         if (obj->oo_dir == NULL)
3115                                 obj->oo_dir = dir;
3116                         else
3117                                 /*
3118                                  * Concurrent thread allocated container data.
3119                                  */
3120                                 OBD_FREE_PTR(dir);
3121                         spin_unlock(&obj->oo_guard);
3122                         /*
3123                          * Now, that we have container data, serialize its
3124                          * initialization.
3125                          */
3126                         down_write(&obj->oo_ext_idx_sem);
3127                         /*
3128                          * recheck under lock.
3129                          */
3130                         if (!osd_has_index(obj))
3131                                 result = osd_iam_container_init(env, obj,
3132                                                                 obj->oo_dir);
3133                         else
3134                                 result = 0;
3135                         up_write(&obj->oo_ext_idx_sem);
3136                 } else {
3137                         result = -ENOMEM;
3138                 }
3139         } else {
3140                 result = 0;
3141         }
3142
3143         if (result == 0 && skip_iam == 0) {
3144                 if (!osd_iam_index_probe(env, obj, feat))
3145                         result = -ENOTDIR;
3146         }
3147         LINVRNT(osd_invariant(obj));
3148
3149         if (result == 0 && feat == &dt_quota_glb_features &&
3150             fid_seq(lu_object_fid(&dt->do_lu)) == FID_SEQ_QUOTA_GLB)
3151                 result = osd_quota_migration(env, dt);
3152
3153         return result;
3154 }
3155
3156 static int osd_otable_it_attr_get(const struct lu_env *env,
3157                                  struct dt_object *dt,
3158                                  struct lu_attr *attr)
3159 {
3160         attr->la_valid = 0;
3161         return 0;
3162 }
3163
3164 static const struct dt_object_operations osd_obj_ops = {
3165         .do_read_lock         = osd_object_read_lock,
3166         .do_write_lock        = osd_object_write_lock,
3167         .do_read_unlock       = osd_object_read_unlock,
3168         .do_write_unlock      = osd_object_write_unlock,
3169         .do_write_locked      = osd_object_write_locked,
3170         .do_attr_get          = osd_attr_get,
3171         .do_declare_attr_set  = osd_declare_attr_set,
3172         .do_attr_set          = osd_attr_set,
3173         .do_ah_init           = osd_ah_init,
3174         .do_declare_create    = osd_declare_object_create,
3175         .do_create            = osd_object_create,
3176         .do_declare_destroy   = osd_declare_object_destroy,
3177         .do_destroy           = osd_object_destroy,
3178         .do_index_try         = osd_index_try,
3179         .do_declare_ref_add   = osd_declare_object_ref_add,
3180         .do_ref_add           = osd_object_ref_add,
3181         .do_declare_ref_del   = osd_declare_object_ref_del,
3182         .do_ref_del           = osd_object_ref_del,
3183         .do_xattr_get         = osd_xattr_get,
3184         .do_declare_xattr_set = osd_declare_xattr_set,
3185         .do_xattr_set         = osd_xattr_set,
3186         .do_declare_xattr_del = osd_declare_xattr_del,
3187         .do_xattr_del         = osd_xattr_del,
3188         .do_xattr_list        = osd_xattr_list,
3189         .do_object_sync       = osd_object_sync,
3190 };
3191
3192 /**
3193  * dt_object_operations for interoperability mode
3194  * (i.e. to run 2.0 mds on 1.8 disk) (b11826)
3195  */
3196 static const struct dt_object_operations osd_obj_ea_ops = {
3197         .do_read_lock         = osd_object_read_lock,
3198         .do_write_lock        = osd_object_write_lock,
3199         .do_read_unlock       = osd_object_read_unlock,
3200         .do_write_unlock      = osd_object_write_unlock,
3201         .do_write_locked      = osd_object_write_locked,
3202         .do_attr_get          = osd_attr_get,
3203         .do_declare_attr_set  = osd_declare_attr_set,
3204         .do_attr_set          = osd_attr_set,
3205         .do_ah_init           = osd_ah_init,
3206         .do_declare_create    = osd_declare_object_create,
3207         .do_create            = osd_object_ea_create,
3208         .do_declare_destroy   = osd_declare_object_destroy,
3209         .do_destroy           = osd_object_destroy,
3210         .do_index_try         = osd_index_try,
3211         .do_declare_ref_add   = osd_declare_object_ref_add,
3212         .do_ref_add           = osd_object_ref_add,
3213         .do_declare_ref_del   = osd_declare_object_ref_del,
3214         .do_ref_del           = osd_object_ref_del,
3215         .do_xattr_get         = osd_xattr_get,
3216         .do_declare_xattr_set = osd_declare_xattr_set,
3217         .do_xattr_set         = osd_xattr_set,
3218         .do_declare_xattr_del = osd_declare_xattr_del,
3219         .do_xattr_del         = osd_xattr_del,
3220         .do_xattr_list        = osd_xattr_list,
3221         .do_object_sync       = osd_object_sync,
3222 };
3223
3224 static const struct dt_object_operations osd_obj_otable_it_ops = {
3225         .do_attr_get    = osd_otable_it_attr_get,
3226         .do_index_try   = osd_index_try,
3227 };
3228
3229 static int osd_index_declare_iam_delete(const struct lu_env *env,
3230                                         struct dt_object *dt,
3231                                         const struct dt_key *key,
3232                                         struct thandle *handle)
3233 {
3234         struct osd_thandle    *oh;
3235
3236         oh = container_of0(handle, struct osd_thandle, ot_super);
3237         LASSERT(oh->ot_handle == NULL);
3238
3239         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3240                              osd_dto_credits_noquota[DTO_INDEX_DELETE]);
3241
3242         return 0;
3243 }
3244
3245 /**
3246  *      delete a (key, value) pair from index \a dt specified by \a key
3247  *
3248  *      \param  dt      osd index object
3249  *      \param  key     key for index
3250  *      \param  rec     record reference
3251  *      \param  handle  transaction handler
3252  *
3253  *      \retval  0  success
3254  *      \retval -ve   failure
3255  */
3256 static int osd_index_iam_delete(const struct lu_env *env, struct dt_object *dt,
3257                                 const struct dt_key *key,
3258                                 struct thandle *handle)
3259 {
3260         struct osd_thread_info *oti = osd_oti_get(env);
3261         struct osd_object      *obj = osd_dt_obj(dt);
3262         struct osd_thandle     *oh;
3263         struct iam_path_descr  *ipd;
3264         struct iam_container   *bag = &obj->oo_dir->od_container;
3265         int                     rc;
3266         ENTRY;
3267
3268         if (!dt_object_exists(dt))
3269                 RETURN(-ENOENT);
3270
3271         LINVRNT(osd_invariant(obj));
3272         LASSERT(!dt_object_remote(dt));
3273         LASSERT(bag->ic_object == obj->oo_inode);
3274         LASSERT(handle != NULL);
3275
3276         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
3277
3278         ipd = osd_idx_ipd_get(env, bag);
3279         if (unlikely(ipd == NULL))
3280                 RETURN(-ENOMEM);
3281
3282         oh = container_of0(handle, struct osd_thandle, ot_super);
3283         LASSERT(oh->ot_handle != NULL);
3284         LASSERT(oh->ot_handle->h_transaction != NULL);
3285
3286         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3287                 /* swab quota uid/gid provided by caller */
3288                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3289                 key = (const struct dt_key *)&oti->oti_quota_id;
3290         }
3291
3292         rc = iam_delete(oh->ot_handle, bag, (const struct iam_key *)key, ipd);
3293         osd_ipd_put(env, bag, ipd);
3294         LINVRNT(osd_invariant(obj));
3295         RETURN(rc);
3296 }
3297
3298 static int osd_index_declare_ea_delete(const struct lu_env *env,
3299                                        struct dt_object *dt,
3300                                        const struct dt_key *key,
3301                                        struct thandle *handle)
3302 {
3303         struct osd_thandle *oh;
3304         struct inode       *inode;
3305         int                 rc;
3306         ENTRY;
3307
3308         LASSERT(!dt_object_remote(dt));
3309         LASSERT(handle != NULL);
3310
3311         oh = container_of0(handle, struct osd_thandle, ot_super);
3312         LASSERT(oh->ot_handle == NULL);
3313
3314         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3315                              osd_dto_credits_noquota[DTO_INDEX_DELETE]);
3316
3317         inode = osd_dt_obj(dt)->oo_inode;
3318         LASSERT(inode);
3319
3320         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
3321                                    0, oh, osd_dt_obj(dt), true, NULL, false);
3322         RETURN(rc);
3323 }
3324
3325 static inline int osd_get_fid_from_dentry(struct ldiskfs_dir_entry_2 *de,
3326                                           struct dt_rec *fid)
3327 {
3328         struct osd_fid_pack *rec;
3329         int                  rc = -ENODATA;
3330
3331         if (de->file_type & LDISKFS_DIRENT_LUFID) {
3332                 rec = (struct osd_fid_pack *) (de->name + de->name_len + 1);
3333                 rc = osd_fid_unpack((struct lu_fid *)fid, rec);
3334                 if (rc == 0 && unlikely(!fid_is_sane((struct lu_fid *)fid)))
3335                         rc = -EINVAL;
3336         }
3337         return rc;
3338 }
3339
3340 static int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
3341                           const struct lu_fid *fid)
3342 {
3343         struct seq_server_site  *ss = osd_seq_site(osd);
3344         ENTRY;
3345
3346         /* FID seqs not in FLDB, must be local seq */
3347         if (unlikely(!fid_seq_in_fldb(fid_seq(fid))))
3348                 RETURN(0);
3349
3350         /* If FLD is not being initialized yet, it only happens during the
3351          * initialization, likely during mgs initialization, and we assume
3352          * this is local FID. */
3353         if (ss == NULL || ss->ss_server_fld == NULL)
3354                 RETURN(0);
3355
3356         /* Only check the local FLDB here */
3357         if (osd_seq_exists(env, osd, fid_seq(fid)))
3358                 RETURN(0);
3359
3360         RETURN(1);
3361 }
3362
3363 /**
3364  * Index delete function for interoperability mode (b11826).
3365  * It will remove the directory entry added by osd_index_ea_insert().
3366  * This entry is needed to maintain name->fid mapping.
3367  *
3368  * \param key,  key i.e. file entry to be deleted
3369  *
3370  * \retval   0, on success
3371  * \retval -ve, on error
3372  */
3373 static int osd_index_ea_delete(const struct lu_env *env, struct dt_object *dt,
3374                                const struct dt_key *key, struct thandle *handle)
3375 {
3376         struct osd_object          *obj = osd_dt_obj(dt);
3377         struct inode               *dir = obj->oo_inode;
3378         struct dentry              *dentry;
3379         struct osd_thandle         *oh;
3380         struct ldiskfs_dir_entry_2 *de = NULL;
3381         struct buffer_head         *bh;
3382         struct htree_lock          *hlock = NULL;
3383         struct lu_fid              *fid = &osd_oti_get(env)->oti_fid;
3384         struct osd_device          *osd = osd_dev(dt->do_lu.lo_dev);
3385         int                        rc;
3386         ENTRY;
3387
3388         if (!dt_object_exists(dt))
3389                 RETURN(-ENOENT);
3390
3391         LINVRNT(osd_invariant(obj));
3392         LASSERT(!dt_object_remote(dt));
3393         LASSERT(handle != NULL);
3394
3395         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
3396
3397         oh = container_of(handle, struct osd_thandle, ot_super);
3398         LASSERT(oh->ot_handle != NULL);
3399         LASSERT(oh->ot_handle->h_transaction != NULL);
3400
3401         ll_vfs_dq_init(dir);
3402         dentry = osd_child_dentry_get(env, obj,
3403                                       (char *)key, strlen((char *)key));
3404
3405         if (obj->oo_hl_head != NULL) {
3406                 hlock = osd_oti_get(env)->oti_hlock;
3407                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
3408                                    dir, LDISKFS_HLOCK_DEL);
3409         } else {
3410                 down_write(&obj->oo_ext_idx_sem);
3411         }
3412
3413         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
3414         if (bh) {
3415                 __u32 ino = 0;
3416
3417                 /* If this is not the ".." entry, it might be a remote DNE
3418                  * entry and  we need to check if the FID is for a remote
3419                  * MDT.  If the FID is  not in the directory entry (e.g.
3420                  * upgraded 1.8 filesystem without dirdata enabled) then
3421                  * we need to get the FID from the LMA. For a remote directory
3422                  * there HAS to be an LMA, it cannot be an IGIF inode in this
3423                  * case.
3424                  *
3425                  * Delete the entry before the agent inode in order to
3426                  * simplify error handling.  At worst an error after deleting
3427                  * the entry first might leak the agent inode afterward. The
3428                  * reverse would need filesystem abort in case of error deleting
3429                  * the entry after the agent had been removed, or leave a
3430                  * dangling entry pointing at a random inode. */
3431                 if (strcmp((char *)key, dotdot) != 0) {
3432                         LASSERT(de != NULL);
3433                         rc = osd_get_fid_from_dentry(de, (struct dt_rec *)fid);
3434                         /* If Fid is not in dentry, try to get it from LMA */
3435                         if (rc == -ENODATA) {
3436                                 struct osd_inode_id *id;
3437                                 struct inode *inode;
3438
3439                                 /* Before trying to get fid from the inode,
3440                                  * check whether the inode is valid.
3441                                  *
3442                                  * If the inode has been deleted, do not go
3443                                  * ahead to do osd_ea_fid_get, which will set
3444                                  * the inode to bad inode, which might cause
3445                                  * the inode to be deleted uncorrectly */
3446                                 inode = ldiskfs_iget(osd_sb(osd),
3447                                                      le32_to_cpu(de->inode));
3448                                 if (IS_ERR(inode)) {
3449                                         CDEBUG(D_INODE, "%s: "DFID"get inode"
3450                                                "error.\n", osd_name(osd),
3451                                                PFID(fid));
3452                                         rc = PTR_ERR(inode);
3453                                 } else {
3454                                         if (likely(inode->i_nlink != 0)) {
3455                                                 id = &osd_oti_get(env)->oti_id;
3456                                                 rc = osd_ea_fid_get(env, obj,
3457                                                         le32_to_cpu(de->inode),
3458                                                                     fid, id);
3459                                         } else {
3460                                                 CDEBUG(D_INFO, "%s: %u "DFID
3461                                                        "deleted.\n",
3462                                                        osd_name(osd),
3463                                                        le32_to_cpu(de->inode),
3464                                                        PFID(fid));
3465                                                 rc = -ESTALE;
3466                                         }
3467                                         iput(inode);
3468                                 }
3469                         }
3470                         if (rc == 0 &&
3471                             unlikely(osd_remote_fid(env, osd, fid)))
3472                                 /* Need to delete agent inode */
3473                                 ino = le32_to_cpu(de->inode);
3474                 }
3475                 rc = ldiskfs_delete_entry(oh->ot_handle, dir, de, bh);
3476                 brelse(bh);
3477                 if (rc == 0 && unlikely(ino != 0)) {
3478                         rc = osd_delete_local_agent_inode(env, osd, fid, ino,
3479                                                           oh);
3480                         if (rc != 0)
3481                                 CERROR("%s: del local inode "DFID": rc = %d\n",
3482                                        osd_name(osd), PFID(fid), rc);
3483                 }
3484         } else {
3485                 rc = -ENOENT;
3486         }
3487         if (hlock != NULL)
3488                 ldiskfs_htree_unlock(hlock);
3489         else
3490                 up_write(&obj->oo_ext_idx_sem);
3491
3492         if (rc != 0)
3493                 GOTO(out, rc);
3494
3495         /* For inode on the remote MDT, .. will point to
3496          * /Agent directory, Check whether it needs to delete
3497          * from agent directory */
3498         if (unlikely(strcmp((char *)key, dotdot) == 0)) {
3499                 rc = osd_delete_from_remote_parent(env, osd_obj2dev(obj), obj,
3500                                                    oh);
3501                 if (rc != 0 && rc != -ENOENT) {
3502                         CERROR("%s: delete agent inode "DFID": rc = %d\n",
3503                                osd_name(osd), PFID(fid), rc);
3504                 }
3505
3506                 if (rc == -ENOENT)
3507                         rc = 0;
3508
3509                 GOTO(out, rc);
3510         }
3511 out:
3512
3513         LASSERT(osd_invariant(obj));
3514         RETURN(rc);
3515 }
3516
3517 /**
3518  *      Lookup index for \a key and copy record to \a rec.
3519  *
3520  *      \param  dt      osd index object
3521  *      \param  key     key for index
3522  *      \param  rec     record reference
3523  *
3524  *      \retval  +ve  success : exact mach
3525  *      \retval  0    return record with key not greater than \a key
3526  *      \retval -ve   failure
3527  */
3528 static int osd_index_iam_lookup(const struct lu_env *env, struct dt_object *dt,
3529                                 struct dt_rec *rec, const struct dt_key *key)
3530 {
3531         struct osd_object      *obj = osd_dt_obj(dt);
3532         struct iam_path_descr  *ipd;
3533         struct iam_container   *bag = &obj->oo_dir->od_container;
3534         struct osd_thread_info *oti = osd_oti_get(env);
3535         struct iam_iterator    *it = &oti->oti_idx_it;
3536         struct iam_rec         *iam_rec;
3537         int                     rc;
3538         ENTRY;
3539
3540         if (!dt_object_exists(dt))
3541                 RETURN(-ENOENT);
3542
3543         LASSERT(osd_invariant(obj));
3544         LASSERT(!dt_object_remote(dt));
3545         LASSERT(bag->ic_object == obj->oo_inode);
3546
3547         ipd = osd_idx_ipd_get(env, bag);
3548         if (IS_ERR(ipd))
3549                 RETURN(-ENOMEM);
3550
3551         /* got ipd now we can start iterator. */
3552         iam_it_init(it, bag, 0, ipd);
3553
3554         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3555                 /* swab quota uid/gid provided by caller */
3556                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3557                 key = (const struct dt_key *)&oti->oti_quota_id;
3558         }
3559
3560         rc = iam_it_get(it, (struct iam_key *)key);
3561         if (rc >= 0) {
3562                 if (S_ISDIR(obj->oo_inode->i_mode))
3563                         iam_rec = (struct iam_rec *)oti->oti_ldp;
3564                 else
3565                         iam_rec = (struct iam_rec *) rec;
3566
3567                 iam_reccpy(&it->ii_path.ip_leaf, (struct iam_rec *)iam_rec);
3568
3569                 if (S_ISDIR(obj->oo_inode->i_mode))
3570                         osd_fid_unpack((struct lu_fid *) rec,
3571                                        (struct osd_fid_pack *)iam_rec);
3572                 else if (fid_is_quota(lu_object_fid(&dt->do_lu)))
3573                         osd_quota_unpack(obj, rec);
3574         }
3575
3576         iam_it_put(it);
3577         iam_it_fini(it);
3578         osd_ipd_put(env, bag, ipd);
3579
3580         LINVRNT(osd_invariant(obj));
3581
3582         RETURN(rc);
3583 }
3584
3585 static int osd_index_declare_iam_insert(const struct lu_env *env,
3586                                         struct dt_object *dt,
3587                                         const struct dt_rec *rec,
3588                                         const struct dt_key *key,
3589                                         struct thandle *handle)
3590 {
3591         struct osd_thandle *oh;
3592
3593         LASSERT(handle != NULL);
3594
3595         oh = container_of0(handle, struct osd_thandle, ot_super);
3596         LASSERT(oh->ot_handle == NULL);
3597
3598         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
3599                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
3600
3601         return 0;
3602 }
3603
3604 /**
3605  *      Inserts (key, value) pair in \a dt index object.
3606  *
3607  *      \param  dt      osd index object
3608  *      \param  key     key for index
3609  *      \param  rec     record reference
3610  *      \param  th      transaction handler
3611  *
3612  *      \retval  0  success
3613  *      \retval -ve failure
3614  */
3615 static int osd_index_iam_insert(const struct lu_env *env, struct dt_object *dt,
3616                                 const struct dt_rec *rec,
3617                                 const struct dt_key *key, struct thandle *th,
3618                                 int ignore_quota)
3619 {
3620         struct osd_object     *obj = osd_dt_obj(dt);
3621         struct iam_path_descr *ipd;
3622         struct osd_thandle    *oh;
3623         struct iam_container  *bag;
3624         struct osd_thread_info *oti = osd_oti_get(env);
3625         struct iam_rec         *iam_rec;
3626         int                     rc;
3627         ENTRY;
3628
3629         if (!dt_object_exists(dt))
3630                 RETURN(-ENOENT);
3631
3632         LINVRNT(osd_invariant(obj));
3633         LASSERT(!dt_object_remote(dt));
3634
3635         bag = &obj->oo_dir->od_container;
3636         LASSERT(bag->ic_object == obj->oo_inode);
3637         LASSERT(th != NULL);
3638
3639         osd_trans_exec_op(env, th, OSD_OT_INSERT);
3640
3641         ipd = osd_idx_ipd_get(env, bag);
3642         if (unlikely(ipd == NULL))
3643                 RETURN(-ENOMEM);
3644
3645         oh = container_of0(th, struct osd_thandle, ot_super);
3646         LASSERT(oh->ot_handle != NULL);
3647         LASSERT(oh->ot_handle->h_transaction != NULL);
3648         if (S_ISDIR(obj->oo_inode->i_mode)) {
3649                 iam_rec = (struct iam_rec *)oti->oti_ldp;
3650                 osd_fid_pack((struct osd_fid_pack *)iam_rec, rec, &oti->oti_fid);
3651         } else if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3652                 /* pack quota uid/gid */
3653                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3654                 key = (const struct dt_key *)&oti->oti_quota_id;
3655                 /* pack quota record */
3656                 rec = osd_quota_pack(obj, rec, &oti->oti_quota_rec);
3657                 iam_rec = (struct iam_rec *)rec;
3658         } else {
3659                 iam_rec = (struct iam_rec *)rec;
3660         }
3661
3662         rc = iam_insert(oh->ot_handle, bag, (const struct iam_key *)key,
3663                         iam_rec, ipd);
3664         osd_ipd_put(env, bag, ipd);
3665         LINVRNT(osd_invariant(obj));
3666         RETURN(rc);
3667 }
3668
3669 /**
3670  * Calls ldiskfs_add_entry() to add directory entry
3671  * into the directory. This is required for
3672  * interoperability mode (b11826)
3673  *
3674  * \retval   0, on success
3675  * \retval -ve, on error
3676  */
3677 static int __osd_ea_add_rec(struct osd_thread_info *info,
3678                             struct osd_object *pobj, struct inode  *cinode,
3679                             const char *name, const struct lu_fid *fid,
3680                             struct htree_lock *hlock, struct thandle *th)
3681 {
3682         struct ldiskfs_dentry_param *ldp;
3683         struct dentry               *child;
3684         struct osd_thandle          *oth;
3685         int                          rc;
3686
3687         oth = container_of(th, struct osd_thandle, ot_super);
3688         LASSERT(oth->ot_handle != NULL);
3689         LASSERT(oth->ot_handle->h_transaction != NULL);
3690         LASSERT(pobj->oo_inode);
3691
3692         ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
3693         if (unlikely(pobj->oo_inode ==
3694                      osd_sb(osd_obj2dev(pobj))->s_root->d_inode))
3695                 ldp->edp_magic = 0;
3696         else
3697                 osd_get_ldiskfs_dirent_param(ldp, fid);
3698         child = osd_child_dentry_get(info->oti_env, pobj, name, strlen(name));
3699         child->d_fsdata = (void *)ldp;
3700         ll_vfs_dq_init(pobj->oo_inode);
3701         rc = osd_ldiskfs_add_entry(oth->ot_handle, child, cinode, hlock);
3702         if (rc == 0 && OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_TYPE)) {
3703                 struct ldiskfs_dir_entry_2      *de;
3704                 struct buffer_head              *bh;
3705                 int                              rc1;
3706
3707                 bh = osd_ldiskfs_find_entry(pobj->oo_inode, &child->d_name, &de,
3708                                             NULL, hlock);
3709                 if (bh != NULL) {
3710                         rc1 = ldiskfs_journal_get_write_access(oth->ot_handle,
3711                                                                bh);
3712                         if (rc1 == 0) {
3713                                 if (S_ISDIR(cinode->i_mode))
3714                                         de->file_type = LDISKFS_DIRENT_LUFID |
3715                                                         LDISKFS_FT_REG_FILE;
3716                                 else
3717                                         de->file_type = LDISKFS_DIRENT_LUFID |
3718                                                         LDISKFS_FT_DIR;
3719                                 ldiskfs_handle_dirty_metadata(oth->ot_handle,
3720                                                               NULL, bh);
3721                                 brelse(bh);
3722                         }
3723                 }
3724         }
3725
3726         RETURN(rc);
3727 }
3728
3729 /**
3730  * Calls ldiskfs_add_dot_dotdot() to add dot and dotdot entries
3731  * into the directory.Also sets flags into osd object to
3732  * indicate dot and dotdot are created. This is required for
3733  * interoperability mode (b11826)
3734  *
3735  * \param dir   directory for dot and dotdot fixup.
3736  * \param obj   child object for linking
3737  *
3738  * \retval   0, on success
3739  * \retval -ve, on error
3740  */
3741 static int osd_add_dot_dotdot(struct osd_thread_info *info,
3742                               struct osd_object *dir,
3743                               struct inode *parent_dir, const char *name,
3744                               const struct lu_fid *dot_fid,
3745                               const struct lu_fid *dot_dot_fid,
3746                               struct thandle *th)
3747 {
3748         struct inode                *inode = dir->oo_inode;
3749         struct osd_thandle          *oth;
3750         int result = 0;
3751
3752         oth = container_of(th, struct osd_thandle, ot_super);
3753         LASSERT(oth->ot_handle->h_transaction != NULL);
3754         LASSERT(S_ISDIR(dir->oo_inode->i_mode));
3755
3756         if (strcmp(name, dot) == 0) {
3757                 if (dir->oo_compat_dot_created) {
3758                         result = -EEXIST;
3759                 } else {
3760                         LASSERT(inode == parent_dir);
3761                         dir->oo_compat_dot_created = 1;
3762                         result = 0;
3763                 }
3764         } else if (strcmp(name, dotdot) == 0) {
3765                 if (!dir->oo_compat_dot_created)
3766                         return -EINVAL;
3767                 /* in case of rename, dotdot is already created */
3768                 if (dir->oo_compat_dotdot_created) {
3769                         return __osd_ea_add_rec(info, dir, parent_dir, name,
3770                                                 dot_dot_fid, NULL, th);
3771                 }
3772
3773                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT)) {
3774                         struct lu_fid tfid = *dot_dot_fid;
3775
3776                         tfid.f_oid--;
3777                         result = osd_add_dot_dotdot_internal(info,
3778                                         dir->oo_inode, parent_dir, dot_fid,
3779                                         &tfid, oth);
3780                 } else {
3781                         result = osd_add_dot_dotdot_internal(info,
3782                                         dir->oo_inode, parent_dir, dot_fid,
3783                                         dot_dot_fid, oth);
3784                 }
3785
3786                 if (result == 0)
3787                         dir->oo_compat_dotdot_created = 1;
3788         }
3789
3790         /* ldiskfs_init_new_dir() doesn't call ldiskfs_mark_inode_dirty()
3791          * this seem as an optimization as usually it's called
3792          * later to refresh mtime of the parent. Lustre does not
3793          * update mtime in few cases (e.g. PENDING, .lustre)
3794          * we still need to transfer i_size/etc to the buffer cache */
3795         ldiskfs_mark_inode_dirty(oth->ot_handle, dir->oo_inode);
3796
3797         return result;
3798 }
3799
3800
3801 /**
3802  * It will call the appropriate osd_add* function and return the
3803  * value, return by respective functions.
3804  */
3805 static int osd_ea_add_rec(const struct lu_env *env, struct osd_object *pobj,
3806                           struct inode *cinode, const char *name,
3807                           const struct lu_fid *fid, struct thandle *th)
3808 {
3809         struct osd_thread_info *info   = osd_oti_get(env);
3810         struct htree_lock      *hlock;
3811         int                     rc;
3812
3813         hlock = pobj->oo_hl_head != NULL ? info->oti_hlock : NULL;
3814
3815         if (name[0] == '.' && (name[1] == '\0' || (name[1] == '.' &&
3816                                                    name[2] =='\0'))) {
3817                 if (hlock != NULL) {
3818                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
3819                                            pobj->oo_inode, 0);
3820                 } else {
3821                         down_write(&pobj->oo_ext_idx_sem);
3822                 }
3823
3824                 rc = osd_add_dot_dotdot(info, pobj, cinode, name,
3825                                         lu_object_fid(&pobj->oo_dt.do_lu),
3826                                         fid, th);
3827         } else {
3828                 if (hlock != NULL) {
3829                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
3830                                            pobj->oo_inode, LDISKFS_HLOCK_ADD);
3831                 } else {
3832                         down_write(&pobj->oo_ext_idx_sem);
3833                 }
3834
3835                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_INDIR)) {
3836                         struct lu_fid *tfid = &info->oti_fid;
3837
3838                         *tfid = *fid;
3839                         tfid->f_ver = ~0;
3840                         rc = __osd_ea_add_rec(info, pobj, cinode, name,
3841                                               tfid, hlock, th);
3842                 } else {
3843                         rc = __osd_ea_add_rec(info, pobj, cinode, name, fid,
3844                                               hlock, th);
3845                 }
3846         }
3847         if (hlock != NULL)
3848                 ldiskfs_htree_unlock(hlock);
3849         else
3850                 up_write(&pobj->oo_ext_idx_sem);
3851
3852         return rc;
3853 }
3854
3855 static void
3856 osd_consistency_check(struct osd_thread_info *oti, struct osd_device *dev,
3857                       struct osd_idmap_cache *oic)
3858 {
3859         struct osd_scrub    *scrub = &dev->od_scrub;
3860         struct lu_fid       *fid   = &oic->oic_fid;
3861         struct osd_inode_id *id    = &oti->oti_id;
3862         int                  once  = 0;
3863         int                  rc;
3864         ENTRY;
3865
3866         if (!fid_is_norm(fid) && !fid_is_igif(fid))
3867                 RETURN_EXIT;
3868
3869         if (scrub->os_pos_current > id->oii_ino)
3870                 RETURN_EXIT;
3871
3872 again:
3873         rc = osd_oi_lookup(oti, dev, fid, id, OI_CHECK_FLD);
3874         if (rc != 0 && rc != -ENOENT)
3875                 RETURN_EXIT;
3876
3877         if (rc == 0 && osd_id_eq(id, &oic->oic_lid))
3878                 RETURN_EXIT;
3879
3880         if (thread_is_running(&scrub->os_thread)) {
3881                 rc = osd_oii_insert(dev, oic, rc == -ENOENT);
3882                 /* There is race condition between osd_oi_lookup and OI scrub.
3883                  * The OI scrub finished just after osd_oi_lookup() failure.
3884                  * Under such case, it is unnecessary to trigger OI scrub again,
3885                  * but try to call osd_oi_lookup() again. */
3886                 if (unlikely(rc == -EAGAIN))
3887                         goto again;
3888
3889                 RETURN_EXIT;
3890         }
3891
3892         if (!dev->od_noscrub && ++once == 1) {
3893                 rc = osd_scrub_start(dev, SS_AUTO_PARTIAL | SS_CLEAR_DRYRUN |
3894                                      SS_CLEAR_FAILOUT);
3895                 CDEBUG(D_LFSCK | D_CONSOLE, "%.16s: trigger OI scrub by RPC "
3896                        "for "DFID", rc = %d [2]\n",
3897                        LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
3898                        PFID(fid), rc);
3899                 if (rc == 0 || rc == -EALREADY)
3900                         goto again;
3901         }
3902
3903         EXIT;
3904 }
3905
3906 static int osd_fail_fid_lookup(struct osd_thread_info *oti,
3907                                struct osd_device *dev,
3908                                struct osd_idmap_cache *oic,
3909                                struct lu_fid *fid, __u32 ino)
3910 {
3911         struct lustre_mdt_attrs *lma   = &oti->oti_mdt_attrs;
3912         struct inode            *inode;
3913         int                      rc;
3914
3915         osd_id_gen(&oic->oic_lid, ino, OSD_OII_NOGEN);
3916         inode = osd_iget(oti, dev, &oic->oic_lid);
3917         if (IS_ERR(inode)) {
3918                 fid_zero(&oic->oic_fid);
3919                 return PTR_ERR(inode);
3920         }
3921
3922         rc = osd_get_lma(oti, inode, &oti->oti_obj_dentry, lma);
3923         iput(inode);
3924         if (rc != 0)
3925                 fid_zero(&oic->oic_fid);
3926         else
3927                 *fid = oic->oic_fid = lma->lma_self_fid;
3928         return rc;
3929 }
3930
3931 void osd_add_oi_cache(struct osd_thread_info *info, struct osd_device *osd,
3932                       struct osd_inode_id *id, const struct lu_fid *fid)
3933 {
3934         CDEBUG(D_INODE, "add "DFID" %u:%u to info %p\n", PFID(fid),
3935                id->oii_ino, id->oii_gen, info);
3936         info->oti_cache.oic_lid = *id;
3937         info->oti_cache.oic_fid = *fid;
3938         info->oti_cache.oic_dev = osd;
3939 }
3940
3941 /**
3942  * Get parent FID from the linkEA.
3943  *
3944  * For a directory which parent resides on remote MDT, to satisfy the
3945  * local e2fsck, we insert it into the /REMOTE_PARENT_DIR locally. On
3946  * the other hand, to make the lookup(..) on the directory can return
3947  * the real parent FID, we append the real parent FID after its ".."
3948  * name entry in the /REMOTE_PARENT_DIR.
3949  *
3950  * Unfortunately, such PFID-in-dirent cannot be preserved via file-level
3951  * backup. So after the restore, we cannot get the right parent FID from
3952  * its ".." name entry in the /REMOTE_PARENT_DIR. Under such case, since
3953  * we have stored the real parent FID in the directory object's linkEA,
3954  * we can parse the linkEA for the real parent FID.
3955  *
3956  * \param[in] env       pointer to the thread context
3957  * \param[in] obj       pointer to the object to be handled
3958  * \param[out]fid       pointer to the buffer to hold the parent FID
3959  *
3960  * \retval              0 for getting the real parent FID successfully
3961  * \retval              negative error number on failure
3962  */
3963 static int osd_get_pfid_from_linkea(const struct lu_env *env,
3964                                     struct osd_object *obj,
3965                                     struct lu_fid *fid)
3966 {
3967         struct osd_thread_info  *oti    = osd_oti_get(env);
3968         struct lu_buf           *buf    = &oti->oti_big_buf;
3969         struct dentry           *dentry = &oti->oti_obj_dentry;
3970         struct inode            *inode  = obj->oo_inode;
3971         struct linkea_data       ldata  = { NULL };
3972         int                      rc;
3973         ENTRY;
3974
3975         fid_zero(fid);
3976         if (!S_ISDIR(inode->i_mode))
3977                 RETURN(-EIO);
3978
3979 again:
3980         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
3981                              buf->lb_buf, buf->lb_len);
3982         if (rc == -ERANGE) {
3983                 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
3984                                      NULL, 0);
3985                 if (rc > 0) {
3986                         lu_buf_realloc(buf, rc);
3987                         if (buf->lb_buf == NULL)
3988                                 RETURN(-ENOMEM);
3989
3990                         goto again;
3991                 }
3992         }
3993
3994         if (unlikely(rc == 0))
3995                 RETURN(-ENODATA);
3996
3997         if (rc < 0)
3998                 RETURN(rc);
3999
4000         if (unlikely(buf->lb_buf == NULL)) {
4001                 lu_buf_realloc(buf, rc);
4002                 if (buf->lb_buf == NULL)
4003                         RETURN(-ENOMEM);
4004
4005                 goto again;
4006         }
4007
4008         ldata.ld_buf = buf;
4009         rc = linkea_init(&ldata);
4010         if (rc == 0) {
4011                 linkea_first_entry(&ldata);
4012                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, NULL, fid);
4013         }
4014
4015         RETURN(rc);
4016 }
4017
4018 /**
4019  * Calls ->lookup() to find dentry. From dentry get inode and
4020  * read inode's ea to get fid. This is required for  interoperability
4021  * mode (b11826)
4022  *
4023  * \retval   0, on success
4024  * \retval -ve, on error
4025  */
4026 static int osd_ea_lookup_rec(const struct lu_env *env, struct osd_object *obj,
4027                              struct dt_rec *rec, const struct dt_key *key)
4028 {
4029         struct inode                    *dir    = obj->oo_inode;
4030         struct dentry                   *dentry;
4031         struct ldiskfs_dir_entry_2      *de;
4032         struct buffer_head              *bh;
4033         struct lu_fid                   *fid = (struct lu_fid *) rec;
4034         struct htree_lock               *hlock = NULL;
4035         int                             ino;
4036         int                             rc;
4037         ENTRY;
4038
4039         LASSERT(dir->i_op != NULL);
4040         LASSERT(dir->i_op->lookup != NULL);
4041
4042         dentry = osd_child_dentry_get(env, obj,
4043                                       (char *)key, strlen((char *)key));
4044
4045         if (obj->oo_hl_head != NULL) {
4046                 hlock = osd_oti_get(env)->oti_hlock;
4047                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
4048                                    dir, LDISKFS_HLOCK_LOOKUP);
4049         } else {
4050                 down_read(&obj->oo_ext_idx_sem);
4051         }
4052
4053         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
4054         if (bh) {
4055                 struct osd_thread_info *oti = osd_oti_get(env);
4056                 struct osd_inode_id *id = &oti->oti_id;
4057                 struct osd_idmap_cache *oic = &oti->oti_cache;
4058                 struct osd_device *dev = osd_obj2dev(obj);
4059
4060                 ino = le32_to_cpu(de->inode);
4061                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP)) {
4062                         brelse(bh);
4063                         rc = osd_fail_fid_lookup(oti, dev, oic, fid, ino);
4064                         GOTO(out, rc);
4065                 }
4066
4067                 rc = osd_get_fid_from_dentry(de, rec);
4068
4069                 /* done with de, release bh */
4070                 brelse(bh);
4071                 if (rc != 0) {
4072                         if (unlikely(ino == osd_remote_parent_ino(dev))) {
4073                                 const char *name = (const char *)key;
4074
4075                                 /* If the parent is on remote MDT, and there
4076                                  * is no FID-in-dirent, then we have to get
4077                                  * the parent FID from the linkEA.  */
4078                                 if (likely(strlen(name) == 2 &&
4079                                            name[0] == '.' && name[1] == '.'))
4080                                         rc = osd_get_pfid_from_linkea(env, obj,
4081                                                                       fid);
4082                         } else {
4083                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
4084                         }
4085                 } else {
4086                         osd_id_gen(id, ino, OSD_OII_NOGEN);
4087                 }
4088
4089                 if (rc != 0) {
4090                         fid_zero(&oic->oic_fid);
4091                         GOTO(out, rc);
4092                 }
4093
4094                 if (osd_remote_fid(env, dev, fid))
4095                         GOTO(out, rc = 0);
4096
4097                 osd_add_oi_cache(osd_oti_get(env), osd_obj2dev(obj), id, fid);
4098                 osd_consistency_check(oti, dev, oic);
4099         } else {
4100                 rc = -ENOENT;
4101         }
4102
4103         GOTO(out, rc);
4104
4105 out:
4106         if (hlock != NULL)
4107                 ldiskfs_htree_unlock(hlock);
4108         else
4109                 up_read(&obj->oo_ext_idx_sem);
4110         return rc;
4111 }
4112
4113 /**
4114  * Find the osd object for given fid.
4115  *
4116  * \param fid need to find the osd object having this fid
4117  *
4118  * \retval osd_object on success
4119  * \retval        -ve on error
4120  */
4121 static struct osd_object *osd_object_find(const struct lu_env *env,
4122                                           struct dt_object *dt,
4123                                           const struct lu_fid *fid)
4124 {
4125         struct lu_device  *ludev = dt->do_lu.lo_dev;
4126         struct osd_object *child = NULL;
4127         struct lu_object  *luch;
4128         struct lu_object  *lo;
4129
4130         /*
4131          * at this point topdev might not exist yet
4132          * (i.e. MGS is preparing profiles). so we can
4133          * not rely on topdev and instead lookup with
4134          * our device passed as topdev. this can't work
4135          * if the object isn't cached yet (as osd doesn't
4136          * allocate lu_header). IOW, the object must be
4137          * in the cache, otherwise lu_object_alloc() crashes
4138          * -bzzz
4139          */
4140         luch = lu_object_find_at(env, ludev->ld_site->ls_top_dev == NULL ?
4141                                  ludev : ludev->ld_site->ls_top_dev,
4142                                  fid, NULL);
4143         if (!IS_ERR(luch)) {
4144                 if (lu_object_exists(luch)) {
4145                         lo = lu_object_locate(luch->lo_header, ludev->ld_type);
4146                         if (lo != NULL)
4147                                 child = osd_obj(lo);
4148                         else
4149                                 LU_OBJECT_DEBUG(D_ERROR, env, luch,
4150                                                 "lu_object can't be located"
4151                                                 DFID"\n", PFID(fid));
4152
4153                         if (child == NULL) {
4154                                 lu_object_put(env, luch);
4155                                 CERROR("Unable to get osd_object\n");
4156                                 child = ERR_PTR(-ENOENT);
4157                         }
4158                 } else {
4159                         LU_OBJECT_DEBUG(D_ERROR, env, luch,
4160                                         "lu_object does not exists "DFID"\n",
4161                                         PFID(fid));
4162                         lu_object_put(env, luch);
4163                         child = ERR_PTR(-ENOENT);
4164                 }
4165         } else {
4166                 child = ERR_CAST(luch);
4167         }
4168
4169         return child;
4170 }
4171
4172 /**
4173  * Put the osd object once done with it.
4174  *
4175  * \param obj osd object that needs to be put
4176  */
4177 static inline void osd_object_put(const struct lu_env *env,
4178                                   struct osd_object *obj)
4179 {
4180         lu_object_put(env, &obj->oo_dt.do_lu);
4181 }
4182
4183 static int osd_index_declare_ea_insert(const struct lu_env *env,
4184                                        struct dt_object *dt,
4185                                        const struct dt_rec *rec,
4186                                        const struct dt_key *key,
4187                                        struct thandle *handle)
4188 {
4189         struct osd_thandle      *oh;
4190         struct osd_device       *osd   = osd_dev(dt->do_lu.lo_dev);
4191         struct lu_fid           *fid = (struct lu_fid *)rec;
4192         int                     rc;
4193         ENTRY;
4194
4195         LASSERT(!dt_object_remote(dt));
4196         LASSERT(handle != NULL);
4197
4198         oh = container_of0(handle, struct osd_thandle, ot_super);
4199         LASSERT(oh->ot_handle == NULL);
4200
4201         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4202                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
4203
4204         if (osd_dt_obj(dt)->oo_inode != NULL) {
4205                 struct inode *inode = osd_dt_obj(dt)->oo_inode;
4206
4207                 /* We ignore block quota on meta pool (MDTs), so needn't
4208                  * calculate how many blocks will be consumed by this index
4209                  * insert */
4210                 rc = osd_declare_inode_qid(env, i_uid_read(inode),
4211                                            i_gid_read(inode), 0, oh,
4212                                            osd_dt_obj(dt), true, NULL, false);
4213         }
4214
4215         if (fid == NULL)
4216                 RETURN(0);
4217
4218         rc = osd_remote_fid(env, osd, fid);
4219         if (rc <= 0)
4220                 RETURN(rc);
4221
4222         rc = 0;
4223
4224         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
4225                              osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
4226         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4227                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
4228         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4229                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
4230
4231         RETURN(rc);
4232 }
4233
4234 /**
4235  * Index add function for interoperability mode (b11826).
4236  * It will add the directory entry.This entry is needed to
4237  * maintain name->fid mapping.
4238  *
4239  * \param key it is key i.e. file entry to be inserted
4240  * \param rec it is value of given key i.e. fid
4241  *
4242  * \retval   0, on success
4243  * \retval -ve, on error
4244  */
4245 static int osd_index_ea_insert(const struct lu_env *env, struct dt_object *dt,
4246                                const struct dt_rec *rec,
4247                                const struct dt_key *key, struct thandle *th,
4248                                int ignore_quota)
4249 {
4250         struct osd_object       *obj = osd_dt_obj(dt);
4251         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
4252         struct dt_insert_rec    *rec1   = (struct dt_insert_rec *)rec;
4253         const struct lu_fid     *fid    = rec1->rec_fid;
4254         const char              *name = (const char *)key;
4255         struct osd_thread_info  *oti   = osd_oti_get(env);
4256         struct osd_inode_id     *id    = &oti->oti_id;
4257         struct inode            *child_inode = NULL;
4258         struct osd_object       *child = NULL;
4259         int                     rc;
4260         ENTRY;
4261
4262         if (!dt_object_exists(dt))
4263                 RETURN(-ENOENT);
4264
4265         LASSERT(osd_invariant(obj));
4266         LASSERT(!dt_object_remote(dt));
4267         LASSERT(th != NULL);
4268
4269         osd_trans_exec_op(env, th, OSD_OT_INSERT);
4270
4271         LASSERTF(fid_is_sane(fid), "fid"DFID" is insane!\n", PFID(fid));
4272
4273         rc = osd_remote_fid(env, osd, fid);
4274         if (rc < 0) {
4275                 CERROR("%s: Can not find object "DFID" rc %d\n",
4276                        osd_name(osd), PFID(fid), rc);
4277                 RETURN(rc);
4278         }
4279
4280         if (rc == 1) {
4281                 /* Insert remote entry */
4282                 if (strcmp(name, dotdot) == 0 && strlen(name) == 2) {
4283                         struct osd_mdobj_map    *omm = osd->od_mdt_map;
4284                         struct osd_thandle      *oh;
4285
4286                         /* If parent on remote MDT, we need put this object
4287                          * under AGENT */
4288                         oh = container_of(th, typeof(*oh), ot_super);
4289                         rc = osd_add_to_remote_parent(env, osd, obj, oh);
4290                         if (rc != 0) {
4291                                 CERROR("%s: add "DFID" error: rc = %d\n",
4292                                        osd_name(osd),
4293                                        PFID(lu_object_fid(&dt->do_lu)), rc);
4294                                 RETURN(rc);
4295                         }
4296
4297                         child_inode = igrab(omm->omm_remote_parent->d_inode);
4298                 } else {
4299                         child_inode = osd_create_local_agent_inode(env, osd,
4300                                         obj, fid, rec1->rec_type & S_IFMT, th);
4301                         if (IS_ERR(child_inode))
4302                                 RETURN(PTR_ERR(child_inode));
4303                 }
4304         } else {
4305                 /* Insert local entry */
4306                 child = osd_object_find(env, dt, fid);
4307                 if (IS_ERR(child)) {
4308                         CERROR("%s: Can not find object "DFID"%u:%u: rc = %d\n",
4309                                osd_name(osd), PFID(fid),
4310                                id->oii_ino, id->oii_gen,
4311                                (int)PTR_ERR(child));
4312                         RETURN(PTR_ERR(child));
4313                 }
4314                 child_inode = igrab(child->oo_inode);
4315         }
4316
4317         rc = osd_ea_add_rec(env, obj, child_inode, name, fid, th);
4318
4319         CDEBUG(D_INODE, "parent %lu insert %s:%lu rc = %d\n",
4320                obj->oo_inode->i_ino, name, child_inode->i_ino, rc);
4321
4322         iput(child_inode);
4323         if (child != NULL)
4324                 osd_object_put(env, child);
4325         LASSERT(osd_invariant(obj));
4326         RETURN(rc);
4327 }
4328
4329 /**
4330  *  Initialize osd Iterator for given osd index object.
4331  *
4332  *  \param  dt      osd index object
4333  */
4334
4335 static struct dt_it *osd_it_iam_init(const struct lu_env *env,
4336                                      struct dt_object *dt,
4337                                      __u32 unused)
4338 {
4339         struct osd_it_iam      *it;
4340         struct osd_object      *obj = osd_dt_obj(dt);
4341         struct lu_object       *lo  = &dt->do_lu;
4342         struct iam_path_descr  *ipd;
4343         struct iam_container   *bag = &obj->oo_dir->od_container;
4344
4345         if (!dt_object_exists(dt))
4346                 return ERR_PTR(-ENOENT);
4347
4348         OBD_ALLOC_PTR(it);
4349         if (it == NULL)
4350                 return ERR_PTR(-ENOMEM);
4351
4352         ipd = osd_it_ipd_get(env, bag);
4353         if (likely(ipd != NULL)) {
4354                 it->oi_obj = obj;
4355                 it->oi_ipd = ipd;
4356                 lu_object_get(lo);
4357                 iam_it_init(&it->oi_it, bag, IAM_IT_MOVE, ipd);
4358                 return (struct dt_it *)it;
4359         } else {
4360                 OBD_FREE_PTR(it);
4361                 return ERR_PTR(-ENOMEM);
4362         }
4363 }
4364
4365 /**
4366  * free given Iterator.
4367  */
4368
4369 static void osd_it_iam_fini(const struct lu_env *env, struct dt_it *di)
4370 {
4371         struct osd_it_iam       *it  = (struct osd_it_iam *)di;
4372         struct osd_object       *obj = it->oi_obj;
4373
4374         iam_it_fini(&it->oi_it);
4375         osd_ipd_put(env, &obj->oo_dir->od_container, it->oi_ipd);
4376         lu_object_put(env, &obj->oo_dt.do_lu);
4377         OBD_FREE_PTR(it);
4378 }
4379
4380 /**
4381  *  Move Iterator to record specified by \a key
4382  *
4383  *  \param  di      osd iterator
4384  *  \param  key     key for index
4385  *
4386  *  \retval +ve  di points to record with least key not larger than key
4387  *  \retval  0   di points to exact matched key
4388  *  \retval -ve  failure
4389  */
4390
4391 static int osd_it_iam_get(const struct lu_env *env,
4392                           struct dt_it *di, const struct dt_key *key)
4393 {
4394         struct osd_thread_info  *oti = osd_oti_get(env);
4395         struct osd_it_iam       *it = (struct osd_it_iam *)di;
4396
4397         if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
4398                 /* swab quota uid/gid */
4399                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
4400                 key = (struct dt_key *)&oti->oti_quota_id;
4401         }
4402
4403         return iam_it_get(&it->oi_it, (const struct iam_key *)key);
4404 }
4405
4406 /**
4407  *  Release Iterator
4408  *
4409  *  \param  di      osd iterator
4410  */
4411 static void osd_it_iam_put(const struct lu_env *env, struct dt_it *di)
4412 {
4413         struct osd_it_iam *it = (struct osd_it_iam *)di;
4414
4415         iam_it_put(&it->oi_it);
4416 }
4417
4418 /**
4419  *  Move iterator by one record
4420  *
4421  *  \param  di      osd iterator
4422  *
4423  *  \retval +1   end of container reached
4424  *  \retval  0   success
4425  *  \retval -ve  failure
4426  */
4427
4428 static int osd_it_iam_next(const struct lu_env *env, struct dt_it *di)
4429 {
4430         struct osd_it_iam *it = (struct osd_it_iam *)di;
4431
4432         return iam_it_next(&it->oi_it);
4433 }
4434
4435 /**
4436  * Return pointer to the key under iterator.
4437  */
4438
4439 static struct dt_key *osd_it_iam_key(const struct lu_env *env,
4440                                  const struct dt_it *di)
4441 {
4442         struct osd_thread_info *oti = osd_oti_get(env);
4443         struct osd_it_iam      *it = (struct osd_it_iam *)di;
4444         struct osd_object      *obj = it->oi_obj;
4445         struct dt_key          *key;
4446
4447         key = (struct dt_key *)iam_it_key_get(&it->oi_it);
4448
4449         if (!IS_ERR(key) && fid_is_quota(lu_object_fid(&obj->oo_dt.do_lu))) {
4450                 /* swab quota uid/gid */
4451                 oti->oti_quota_id = le64_to_cpu(*((__u64 *)key));
4452                 key = (struct dt_key *)&oti->oti_quota_id;
4453         }
4454
4455         return key;
4456 }
4457
4458 /**
4459  * Return size of key under iterator (in bytes)
4460  */
4461
4462 static int osd_it_iam_key_size(const struct lu_env *env, const struct dt_it *di)
4463 {
4464         struct osd_it_iam *it = (struct osd_it_iam *)di;
4465
4466         return iam_it_key_size(&it->oi_it);
4467 }
4468
4469 static inline void
4470 osd_it_append_attrs(struct lu_dirent *ent, int len, __u16 type)
4471 {
4472         /* check if file type is required */
4473         if (ent->lde_attrs & LUDA_TYPE) {
4474                 struct luda_type *lt;
4475                 int align = sizeof(*lt) - 1;
4476
4477                 len = (len + align) & ~align;
4478                 lt = (struct luda_type *)(ent->lde_name + len);
4479                 lt->lt_type = cpu_to_le16(DTTOIF(type));
4480         }
4481
4482         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
4483 }
4484
4485 /**
4486  * build lu direct from backend fs dirent.
4487  */
4488
4489 static inline void
4490 osd_it_pack_dirent(struct lu_dirent *ent, struct lu_fid *fid, __u64 offset,
4491                    char *name, __u16 namelen, __u16 type, __u32 attr)
4492 {
4493         ent->lde_attrs = attr | LUDA_FID;
4494         fid_cpu_to_le(&ent->lde_fid, fid);
4495
4496         ent->lde_hash = cpu_to_le64(offset);
4497         ent->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
4498
4499         strncpy(ent->lde_name, name, namelen);
4500         ent->lde_name[namelen] = '\0';
4501         ent->lde_namelen = cpu_to_le16(namelen);
4502
4503         /* append lustre attributes */
4504         osd_it_append_attrs(ent, namelen, type);
4505 }
4506
4507 /**
4508  * Return pointer to the record under iterator.
4509  */
4510 static int osd_it_iam_rec(const struct lu_env *env,
4511                           const struct dt_it *di,
4512                           struct dt_rec *dtrec, __u32 attr)
4513 {
4514         struct osd_it_iam      *it   = (struct osd_it_iam *)di;
4515         struct osd_thread_info *info = osd_oti_get(env);
4516         ENTRY;
4517
4518         if (S_ISDIR(it->oi_obj->oo_inode->i_mode)) {
4519                 const struct osd_fid_pack *rec;
4520                 struct lu_fid             *fid = &info->oti_fid;
4521                 struct lu_dirent          *lde = (struct lu_dirent *)dtrec;
4522                 char                      *name;
4523                 int                        namelen;
4524                 __u64                      hash;
4525                 int                        rc;
4526
4527                 name = (char *)iam_it_key_get(&it->oi_it);
4528                 if (IS_ERR(name))
4529                         RETURN(PTR_ERR(name));
4530
4531                 namelen = iam_it_key_size(&it->oi_it);
4532
4533                 rec = (const struct osd_fid_pack *)iam_it_rec_get(&it->oi_it);
4534                 if (IS_ERR(rec))
4535                         RETURN(PTR_ERR(rec));
4536
4537                 rc = osd_fid_unpack(fid, rec);
4538                 if (rc)
4539                         RETURN(rc);
4540
4541                 hash = iam_it_store(&it->oi_it);
4542
4543                 /* IAM does not store object type in IAM index (dir) */
4544                 osd_it_pack_dirent(lde, fid, hash, name, namelen,
4545                                    0, LUDA_FID);
4546         } else if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
4547                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
4548                            (struct iam_rec *)dtrec);
4549                 osd_quota_unpack(it->oi_obj, dtrec);
4550         } else {
4551                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
4552                            (struct iam_rec *)dtrec);
4553         }
4554
4555         RETURN(0);
4556 }
4557
4558 /**
4559  * Returns cookie for current Iterator position.
4560  */
4561 static __u64 osd_it_iam_store(const struct lu_env *env, const struct dt_it *di)
4562 {
4563         struct osd_it_iam *it = (struct osd_it_iam *)di;
4564
4565         return iam_it_store(&it->oi_it);
4566 }
4567
4568 /**
4569  * Restore iterator from cookie.
4570  *
4571  * \param  di      osd iterator
4572  * \param  hash    Iterator location cookie
4573  *
4574  * \retval +ve  di points to record with least key not larger than key.
4575  * \retval  0   di points to exact matched key
4576  * \retval -ve  failure
4577  */
4578
4579 static int osd_it_iam_load(const struct lu_env *env,
4580                            const struct dt_it *di, __u64 hash)
4581 {
4582         struct osd_it_iam *it = (struct osd_it_iam *)di;
4583
4584         return iam_it_load(&it->oi_it, hash);
4585 }
4586
4587 static const struct dt_index_operations osd_index_iam_ops = {
4588         .dio_lookup         = osd_index_iam_lookup,
4589         .dio_declare_insert = osd_index_declare_iam_insert,
4590         .dio_insert         = osd_index_iam_insert,
4591         .dio_declare_delete = osd_index_declare_iam_delete,
4592         .dio_delete         = osd_index_iam_delete,
4593         .dio_it     = {
4594                 .init     = osd_it_iam_init,
4595                 .fini     = osd_it_iam_fini,
4596                 .get      = osd_it_iam_get,
4597                 .put      = osd_it_iam_put,
4598                 .next     = osd_it_iam_next,
4599                 .key      = osd_it_iam_key,
4600                 .key_size = osd_it_iam_key_size,
4601                 .rec      = osd_it_iam_rec,
4602                 .store    = osd_it_iam_store,
4603                 .load     = osd_it_iam_load
4604         }
4605 };
4606
4607
4608 /**
4609  * Creates or initializes iterator context.
4610  *
4611  * \retval struct osd_it_ea, iterator structure on success
4612  *
4613  */
4614 static struct dt_it *osd_it_ea_init(const struct lu_env *env,
4615                                     struct dt_object *dt,
4616                                     __u32 attr)
4617 {
4618         struct osd_object       *obj  = osd_dt_obj(dt);
4619         struct osd_thread_info  *info = osd_oti_get(env);
4620         struct osd_it_ea        *oie;
4621         struct file             *file;
4622         struct lu_object        *lo   = &dt->do_lu;
4623         struct dentry           *obj_dentry;
4624         ENTRY;
4625
4626         if (!dt_object_exists(dt))
4627                 RETURN(ERR_PTR(-ENOENT));
4628
4629         OBD_SLAB_ALLOC_PTR_GFP(oie, osd_itea_cachep, GFP_NOFS);
4630         if (oie == NULL)
4631                 RETURN(ERR_PTR(-ENOMEM));
4632         obj_dentry = &oie->oie_dentry;
4633
4634         obj_dentry->d_inode = obj->oo_inode;
4635         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
4636         obj_dentry->d_name.hash = 0;
4637
4638         oie->oie_rd_dirent       = 0;
4639         oie->oie_it_dirent       = 0;
4640         oie->oie_dirent          = NULL;
4641         if (unlikely(!info->oti_it_ea_buf_used)) {
4642                 oie->oie_buf = info->oti_it_ea_buf;
4643                 info->oti_it_ea_buf_used = 1;
4644         } else {
4645                 OBD_ALLOC(oie->oie_buf, OSD_IT_EA_BUFSIZE);
4646                 if (oie->oie_buf == NULL)
4647                         RETURN(ERR_PTR(-ENOMEM));
4648         }
4649         oie->oie_obj             = obj;
4650
4651         file = &oie->oie_file;
4652
4653         /* Only FMODE_64BITHASH or FMODE_32BITHASH should be set, NOT both. */
4654         if (attr & LUDA_64BITHASH)
4655                 file->f_mode    = FMODE_64BITHASH;
4656         else
4657                 file->f_mode    = FMODE_32BITHASH;
4658         file->f_path.dentry     = obj_dentry;
4659         file->f_mapping         = obj->oo_inode->i_mapping;
4660         file->f_op              = obj->oo_inode->i_fop;
4661         set_file_inode(file, obj->oo_inode);
4662
4663         lu_object_get(lo);
4664         RETURN((struct dt_it *) oie);
4665 }
4666
4667 /**
4668  * Destroy or finishes iterator context.
4669  *
4670  * \param di iterator structure to be destroyed
4671  */
4672 static void osd_it_ea_fini(const struct lu_env *env, struct dt_it *di)
4673 {
4674         struct osd_thread_info  *info = osd_oti_get(env);
4675         struct osd_it_ea        *oie    = (struct osd_it_ea *)di;
4676         struct osd_object       *obj    = oie->oie_obj;
4677         struct inode            *inode  = obj->oo_inode;
4678
4679         ENTRY;
4680         oie->oie_file.f_op->release(inode, &oie->oie_file);
4681         lu_object_put(env, &obj->oo_dt.do_lu);
4682         if (unlikely(oie->oie_buf != info->oti_it_ea_buf))
4683                 OBD_FREE(oie->oie_buf, OSD_IT_EA_BUFSIZE);
4684         else
4685                 info->oti_it_ea_buf_used = 0;
4686         OBD_SLAB_FREE_PTR(oie, osd_itea_cachep);
4687         EXIT;
4688 }
4689
4690 /**
4691  * It position the iterator at given key, so that next lookup continues from
4692  * that key Or it is similar to dio_it->load() but based on a key,
4693  * rather than file position.
4694  *
4695  * As a special convention, osd_it_ea_get(env, di, "") has to rewind iterator
4696  * to the beginning.
4697  *
4698  * TODO: Presently return +1 considering it is only used by mdd_dir_is_empty().
4699  */
4700 static int osd_it_ea_get(const struct lu_env *env,
4701                          struct dt_it *di, const struct dt_key *key)
4702 {
4703         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
4704
4705         ENTRY;
4706         LASSERT(((const char *)key)[0] == '\0');
4707         it->oie_file.f_pos      = 0;
4708         it->oie_rd_dirent       = 0;
4709         it->oie_it_dirent       = 0;
4710         it->oie_dirent          = NULL;
4711
4712         RETURN(+1);
4713 }
4714
4715 /**
4716  * Does nothing
4717  */
4718 static void osd_it_ea_put(const struct lu_env *env, struct dt_it *di)
4719 {
4720 }
4721
4722 struct osd_filldir_cbs {
4723 #ifdef HAVE_DIR_CONTEXT
4724         struct dir_context ctx;
4725 #endif
4726         struct osd_it_ea  *it;
4727 };
4728 /**
4729  * It is called internally by ->readdir(). It fills the
4730  * iterator's in-memory data structure with required
4731  * information i.e. name, namelen, rec_size etc.
4732  *
4733  * \param buf in which information to be filled in.
4734  * \param name name of the file in given dir
4735  *
4736  * \retval 0 on success
4737  * \retval 1 on buffer full
4738  */
4739 static int osd_ldiskfs_filldir(void *buf, const char *name, int namelen,
4740                                loff_t offset, __u64 ino,
4741                                unsigned d_type)
4742 {
4743         struct osd_it_ea        *it   = ((struct osd_filldir_cbs *)buf)->it;
4744         struct osd_object       *obj  = it->oie_obj;
4745         struct osd_it_ea_dirent *ent  = it->oie_dirent;
4746         struct lu_fid           *fid  = &ent->oied_fid;
4747         struct osd_fid_pack     *rec;
4748         ENTRY;
4749
4750         /* this should never happen */
4751         if (unlikely(namelen == 0 || namelen > LDISKFS_NAME_LEN)) {
4752                 CERROR("ldiskfs return invalid namelen %d\n", namelen);
4753                 RETURN(-EIO);
4754         }
4755
4756         if ((void *) ent - it->oie_buf + sizeof(*ent) + namelen >
4757             OSD_IT_EA_BUFSIZE)
4758                 RETURN(1);
4759
4760         /* "." is just the object itself. */
4761         if (namelen == 1 && name[0] == '.') {
4762                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
4763         } else if (d_type & LDISKFS_DIRENT_LUFID) {
4764                 rec = (struct osd_fid_pack*) (name + namelen + 1);
4765                 if (osd_fid_unpack(fid, rec) != 0)
4766                         fid_zero(fid);
4767         } else {
4768                 fid_zero(fid);
4769         }
4770         d_type &= ~LDISKFS_DIRENT_LUFID;
4771
4772         /* NOT export local root. */
4773         if (unlikely(osd_sb(osd_obj2dev(obj))->s_root->d_inode->i_ino == ino)) {
4774                 ino = obj->oo_inode->i_ino;
4775                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
4776         }
4777
4778         ent->oied_ino     = ino;
4779         ent->oied_off     = offset;
4780         ent->oied_namelen = namelen;
4781         ent->oied_type    = d_type;
4782
4783         memcpy(ent->oied_name, name, namelen);
4784
4785         it->oie_rd_dirent++;
4786         it->oie_dirent = (void *) ent + cfs_size_round(sizeof(*ent) + namelen);
4787         RETURN(0);
4788 }
4789
4790 /**
4791  * Calls ->readdir() to load a directory entry at a time
4792  * and stored it in iterator's in-memory data structure.
4793  *
4794  * \param di iterator's in memory structure
4795  *
4796  * \retval   0 on success
4797  * \retval -ve on error
4798  * \retval +1 reach the end of entry
4799  */
4800 static int osd_ldiskfs_it_fill(const struct lu_env *env,
4801                                const struct dt_it *di)
4802 {
4803         struct osd_it_ea   *it    = (struct osd_it_ea *)di;
4804         struct osd_object  *obj   = it->oie_obj;
4805         struct inode       *inode = obj->oo_inode;
4806         struct htree_lock  *hlock = NULL;
4807         struct file        *filp  = &it->oie_file;
4808         int                 rc = 0;
4809         struct osd_filldir_cbs buf = {
4810 #ifdef HAVE_DIR_CONTEXT
4811                 .ctx.actor = osd_ldiskfs_filldir,
4812 #endif
4813                 .it = it
4814         };
4815
4816         ENTRY;
4817         it->oie_dirent = it->oie_buf;
4818         it->oie_rd_dirent = 0;
4819
4820         if (obj->oo_hl_head != NULL) {
4821                 hlock = osd_oti_get(env)->oti_hlock;
4822                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
4823                                    inode, LDISKFS_HLOCK_READDIR);
4824         } else {
4825                 down_read(&obj->oo_ext_idx_sem);
4826         }
4827
4828 #ifdef HAVE_DIR_CONTEXT
4829         buf.ctx.pos = filp->f_pos;
4830         rc = inode->i_fop->iterate(filp, &buf.ctx);
4831         filp->f_pos = buf.ctx.pos;
4832 #else
4833         rc = inode->i_fop->readdir(filp, &buf, osd_ldiskfs_filldir);
4834 #endif
4835
4836         if (hlock != NULL)
4837                 ldiskfs_htree_unlock(hlock);
4838         else
4839                 up_read(&obj->oo_ext_idx_sem);
4840
4841         if (it->oie_rd_dirent == 0) {
4842                 /*If it does not get any dirent, it means it has been reached
4843                  *to the end of the dir */
4844                 it->oie_file.f_pos = ldiskfs_get_htree_eof(&it->oie_file);
4845                 if (rc == 0)
4846                         rc = 1;
4847         } else {
4848                 it->oie_dirent = it->oie_buf;
4849                 it->oie_it_dirent = 1;
4850         }
4851
4852         RETURN(rc);
4853 }
4854
4855 /**
4856  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
4857  * to load a directory entry at a time and stored it in
4858  * iterator's in-memory data structure.
4859  *
4860  * \param di iterator's in memory structure
4861  *
4862  * \retval +ve iterator reached to end
4863  * \retval   0 iterator not reached to end
4864  * \retval -ve on error
4865  */
4866 static int osd_it_ea_next(const struct lu_env *env, struct dt_it *di)
4867 {
4868         struct osd_it_ea *it = (struct osd_it_ea *)di;
4869         int rc;
4870
4871         ENTRY;
4872
4873         if (it->oie_it_dirent < it->oie_rd_dirent) {
4874                 it->oie_dirent =
4875                         (void *) it->oie_dirent +
4876                         cfs_size_round(sizeof(struct osd_it_ea_dirent) +
4877                                        it->oie_dirent->oied_namelen);
4878                 it->oie_it_dirent++;
4879                 RETURN(0);
4880         } else {
4881                 if (it->oie_file.f_pos == ldiskfs_get_htree_eof(&it->oie_file))
4882                         rc = +1;
4883                 else
4884                         rc = osd_ldiskfs_it_fill(env, di);
4885         }
4886
4887         RETURN(rc);
4888 }
4889
4890 /**
4891  * Returns the key at current position from iterator's in memory structure.
4892  *
4893  * \param di iterator's in memory structure
4894  *
4895  * \retval key i.e. struct dt_key on success
4896  */
4897 static struct dt_key *osd_it_ea_key(const struct lu_env *env,
4898                                     const struct dt_it *di)
4899 {
4900         struct osd_it_ea *it = (struct osd_it_ea *)di;
4901
4902         return (struct dt_key *)it->oie_dirent->oied_name;
4903 }
4904
4905 /**
4906  * Returns the key's size at current position from iterator's in memory structure.
4907  *
4908  * \param di iterator's in memory structure
4909  *
4910  * \retval key_size i.e. struct dt_key on success
4911  */
4912 static int osd_it_ea_key_size(const struct lu_env *env, const struct dt_it *di)
4913 {
4914         struct osd_it_ea *it = (struct osd_it_ea *)di;
4915
4916         return it->oie_dirent->oied_namelen;
4917 }
4918
4919 static int
4920 osd_dirent_update(handle_t *jh, struct super_block *sb,
4921                   struct osd_it_ea_dirent *ent, struct lu_fid *fid,
4922                   struct buffer_head *bh, struct ldiskfs_dir_entry_2 *de)
4923 {
4924         struct osd_fid_pack *rec;
4925         int                  rc;
4926         ENTRY;
4927
4928         LASSERT(de->file_type & LDISKFS_DIRENT_LUFID);
4929         LASSERT(de->rec_len >= de->name_len + sizeof(struct osd_fid_pack));
4930
4931         rc = ldiskfs_journal_get_write_access(jh, bh);
4932         if (rc != 0)
4933                 RETURN(rc);
4934
4935         rec = (struct osd_fid_pack *)(de->name + de->name_len + 1);
4936         fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
4937         rc = ldiskfs_handle_dirty_metadata(jh, NULL, bh);
4938
4939         RETURN(rc);
4940 }
4941
4942 static inline int
4943 osd_dirent_has_space(__u16 reclen, __u16 namelen, unsigned blocksize)
4944 {
4945         if (ldiskfs_rec_len_from_disk(reclen, blocksize) >=
4946             __LDISKFS_DIR_REC_LEN(namelen + 1 + sizeof(struct osd_fid_pack)))
4947                 return 1;
4948         else
4949                 return 0;
4950 }
4951
4952 static inline int
4953 osd_dot_dotdot_has_space(struct ldiskfs_dir_entry_2 *de, int dot_dotdot)
4954 {
4955         LASSERTF(dot_dotdot == 1 || dot_dotdot == 2,
4956                  "dot_dotdot = %d\n", dot_dotdot);
4957
4958         if (LDISKFS_DIR_REC_LEN(de) >=
4959             __LDISKFS_DIR_REC_LEN(dot_dotdot + 1 + sizeof(struct osd_fid_pack)))
4960                 return 1;
4961         else
4962                 return 0;
4963 }
4964
4965 static int
4966 osd_dirent_reinsert(const struct lu_env *env, handle_t *jh,
4967                     struct inode *dir, struct inode *inode,
4968                     struct osd_it_ea_dirent *ent, struct lu_fid *fid,
4969                     struct buffer_head *bh, struct ldiskfs_dir_entry_2 *de,
4970                     struct htree_lock *hlock)
4971 {
4972         struct dentry               *dentry;
4973         struct osd_fid_pack         *rec;
4974         struct ldiskfs_dentry_param *ldp;
4975         int                          rc;
4976         ENTRY;
4977
4978         if (!LDISKFS_HAS_INCOMPAT_FEATURE(inode->i_sb,
4979                                           LDISKFS_FEATURE_INCOMPAT_DIRDATA))
4980                 RETURN(0);
4981
4982         /* There is enough space to hold the FID-in-dirent. */
4983         if (osd_dirent_has_space(de->rec_len, ent->oied_namelen,
4984                                  dir->i_sb->s_blocksize)) {
4985                 rc = ldiskfs_journal_get_write_access(jh, bh);
4986                 if (rc != 0)
4987                         RETURN(rc);
4988
4989                 de->name[de->name_len] = 0;
4990                 rec = (struct osd_fid_pack *)(de->name + de->name_len + 1);
4991                 rec->fp_len = sizeof(struct lu_fid) + 1;
4992                 fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
4993                 de->file_type |= LDISKFS_DIRENT_LUFID;
4994
4995                 rc = ldiskfs_handle_dirty_metadata(jh, NULL, bh);
4996
4997                 RETURN(rc);
4998         }
4999
5000         rc = ldiskfs_delete_entry(jh, dir, de, bh);
5001         if (rc != 0)
5002                 RETURN(rc);
5003
5004         dentry = osd_child_dentry_by_inode(env, dir, ent->oied_name,
5005                                            ent->oied_namelen);
5006         ldp = (struct ldiskfs_dentry_param *)osd_oti_get(env)->oti_ldp;
5007         osd_get_ldiskfs_dirent_param(ldp, fid);
5008         dentry->d_fsdata = (void *)ldp;
5009         ll_vfs_dq_init(dir);
5010         rc = osd_ldiskfs_add_entry(jh, dentry, inode, hlock);
5011         /* It is too bad, we cannot reinsert the name entry back.
5012          * That means we lose it! */
5013         if (rc != 0)
5014                 CDEBUG(D_LFSCK, "%.16s: fail to reinsert the dirent, "
5015                        "dir = %lu/%u, name = %.*s, "DFID": rc = %d\n",
5016                        LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
5017                        dir->i_ino, dir->i_generation,
5018                        ent->oied_namelen, ent->oied_name, PFID(fid), rc);
5019
5020         RETURN(rc);
5021 }
5022
5023 static int
5024 osd_dirent_check_repair(const struct lu_env *env, struct osd_object *obj,
5025                         struct osd_it_ea *it, struct lu_fid *fid,
5026                         struct osd_inode_id *id, __u32 *attr)
5027 {
5028         struct osd_thread_info     *info        = osd_oti_get(env);
5029         struct lustre_mdt_attrs    *lma         = &info->oti_mdt_attrs;
5030         struct osd_device          *dev         = osd_obj2dev(obj);
5031         struct super_block         *sb          = osd_sb(dev);
5032         const char                 *devname     =
5033                                         LDISKFS_SB(sb)->s_es->s_volume_name;
5034         struct osd_it_ea_dirent    *ent         = it->oie_dirent;
5035         struct inode               *dir         = obj->oo_inode;
5036         struct htree_lock          *hlock       = NULL;
5037         struct buffer_head         *bh          = NULL;
5038         handle_t                   *jh          = NULL;
5039         struct ldiskfs_dir_entry_2 *de;
5040         struct dentry              *dentry;
5041         struct inode               *inode;
5042         int                         credits;
5043         int                         rc;
5044         int                         dot_dotdot  = 0;
5045         bool                        dirty       = false;
5046         ENTRY;
5047
5048         if (ent->oied_name[0] == '.') {
5049                 if (ent->oied_namelen == 1)
5050                         dot_dotdot = 1;
5051                 else if (ent->oied_namelen == 2 && ent->oied_name[1] == '.')
5052                         dot_dotdot = 2;
5053         }
5054
5055         dentry = osd_child_dentry_get(env, obj, ent->oied_name,
5056                                       ent->oied_namelen);
5057
5058         /* We need to ensure that the name entry is still valid.
5059          * Because it may be removed or renamed by other already.
5060          *
5061          * The unlink or rename operation will start journal before PDO lock,
5062          * so to avoid deadlock, here we need to start journal handle before
5063          * related PDO lock also. But because we do not know whether there
5064          * will be something to be repaired before PDO lock, we just start
5065          * journal without conditions.
5066          *
5067          * We may need to remove the name entry firstly, then insert back.
5068          * One credit is for user quota file update.
5069          * One credit is for group quota file update.
5070          * Two credits are for dirty inode. */
5071         credits = osd_dto_credits_noquota[DTO_INDEX_DELETE] +
5072                   osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1 + 1 + 2;
5073
5074 again:
5075         if (dev->od_dirent_journal != 0) {
5076                 jh = osd_journal_start_sb(sb, LDISKFS_HT_MISC, credits);
5077                 if (IS_ERR(jh)) {
5078                         rc = PTR_ERR(jh);
5079                         CDEBUG(D_LFSCK, "%.16s: fail to start trans for dirent "
5080                                "check_repair, dir = %lu/%u, credits = %d, "
5081                                "name = %.*s: rc = %d\n",
5082                                devname, dir->i_ino, dir->i_generation, credits,
5083                                ent->oied_namelen, ent->oied_name, rc);
5084                         RETURN(rc);
5085                 }
5086
5087                 if (obj->oo_hl_head != NULL) {
5088                         hlock = osd_oti_get(env)->oti_hlock;
5089                         /* "0" means exclusive lock for the whole directory.
5090                          * We need to prevent others access such name entry
5091                          * during the delete + insert. Neither HLOCK_ADD nor
5092                          * HLOCK_DEL cannot guarantee the atomicity. */
5093                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir, 0);
5094                 } else {
5095                         down_write(&obj->oo_ext_idx_sem);
5096                 }
5097         } else {
5098                 if (obj->oo_hl_head != NULL) {
5099                         hlock = osd_oti_get(env)->oti_hlock;
5100                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir,
5101                                            LDISKFS_HLOCK_LOOKUP);
5102                 } else {
5103                         down_read(&obj->oo_ext_idx_sem);
5104                 }
5105         }
5106
5107         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
5108         /* For dot/dotdot entry, if there is not enough space to hold the
5109          * FID-in-dirent, just keep them there. It only happens when the
5110          * device upgraded from 1.8 or restored from MDT file-level backup.
5111          * For the whole directory, only dot/dotdot entry have no FID-in-dirent
5112          * and needs to get FID from LMA when readdir, it will not affect the
5113          * performance much. */
5114         if ((bh == NULL) || (le32_to_cpu(de->inode) != ent->oied_ino) ||
5115             (dot_dotdot != 0 && !osd_dot_dotdot_has_space(de, dot_dotdot))) {
5116                 *attr |= LUDA_IGNORE;
5117                 GOTO(out_journal, rc = 0);
5118         }
5119
5120         osd_id_gen(id, ent->oied_ino, OSD_OII_NOGEN);
5121         inode = osd_iget(info, dev, id);
5122         if (IS_ERR(inode)) {
5123                 rc = PTR_ERR(inode);
5124                 if (rc == -ENOENT || rc == -ESTALE)
5125                         rc = 1;
5126                 else
5127                         CDEBUG(D_LFSCK, "%.16s: fail to iget for dirent "
5128                                "check_repair, dir = %lu/%u, name = %.*s: "
5129                                "rc = %d\n",
5130                                devname, dir->i_ino, dir->i_generation,
5131                                ent->oied_namelen, ent->oied_name, rc);
5132
5133                 GOTO(out_journal, rc);
5134         }
5135
5136         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
5137         if (rc == 0) {
5138                 LASSERT(!(lma->lma_compat & LMAC_NOT_IN_OI));
5139
5140                 if (fid_is_sane(fid)) {
5141                         /* FID-in-dirent is valid. */
5142                         if (lu_fid_eq(fid, &lma->lma_self_fid))
5143                                 GOTO(out_inode, rc = 0);
5144
5145                         /* Do not repair under dryrun mode. */
5146                         if (*attr & LUDA_VERIFY_DRYRUN) {
5147                                 *attr |= LUDA_REPAIR;
5148                                 GOTO(out_inode, rc = 0);
5149                         }
5150
5151                         if (dev->od_dirent_journal == 0) {
5152                                 iput(inode);
5153                                 brelse(bh);
5154                                 if (hlock != NULL)
5155                                         ldiskfs_htree_unlock(hlock);
5156                                 else
5157                                         up_read(&obj->oo_ext_idx_sem);
5158                                 dev->od_dirent_journal = 1;
5159                                 goto again;
5160                         }
5161
5162                         *fid = lma->lma_self_fid;
5163                         dirty = true;
5164                         /* Update the FID-in-dirent. */
5165                         rc = osd_dirent_update(jh, sb, ent, fid, bh, de);
5166                         if (rc == 0)
5167                                 *attr |= LUDA_REPAIR;
5168                         else
5169                                 CDEBUG(D_LFSCK, "%.16s: fail to update FID "
5170                                        "in the dirent, dir = %lu/%u, "
5171                                        "name = %.*s, "DFID": rc = %d\n",
5172                                        devname, dir->i_ino, dir->i_generation,
5173                                        ent->oied_namelen, ent->oied_name,
5174                                        PFID(fid), rc);
5175                 } else {
5176                         /* Do not repair under dryrun mode. */
5177                         if (*attr & LUDA_VERIFY_DRYRUN) {
5178                                 *fid = lma->lma_self_fid;
5179                                 *attr |= LUDA_REPAIR;
5180                                 GOTO(out_inode, rc = 0);
5181                         }
5182
5183                         if (dev->od_dirent_journal == 0) {
5184                                 iput(inode);
5185                                 brelse(bh);
5186                                 if (hlock != NULL)
5187                                         ldiskfs_htree_unlock(hlock);
5188                                 else
5189                                         up_read(&obj->oo_ext_idx_sem);
5190                                 dev->od_dirent_journal = 1;
5191                                 goto again;
5192                         }
5193
5194                         *fid = lma->lma_self_fid;
5195                         dirty = true;
5196                         /* Append the FID-in-dirent. */
5197                         rc = osd_dirent_reinsert(env, jh, dir, inode, ent,
5198                                                  fid, bh, de, hlock);
5199                         if (rc == 0)
5200                                 *attr |= LUDA_REPAIR;
5201                         else
5202                                 CDEBUG(D_LFSCK, "%.16s: fail to append FID "
5203                                        "after the dirent, dir = %lu/%u, "
5204                                        "name = %.*s, "DFID": rc = %d\n",
5205                                        devname, dir->i_ino, dir->i_generation,
5206                                        ent->oied_namelen, ent->oied_name,
5207                                        PFID(fid), rc);
5208                 }
5209         } else if (rc == -ENODATA) {
5210                 /* Do not repair under dryrun mode. */
5211                 if (*attr & LUDA_VERIFY_DRYRUN) {
5212                         if (fid_is_sane(fid)) {
5213                                 *attr |= LUDA_REPAIR;
5214                         } else {
5215                                 lu_igif_build(fid, inode->i_ino,
5216                                               inode->i_generation);
5217                                 *attr |= LUDA_UPGRADE;
5218                         }
5219                         GOTO(out_inode, rc = 0);
5220                 }
5221
5222                 if (dev->od_dirent_journal == 0) {
5223                         iput(inode);
5224                         brelse(bh);
5225                         if (hlock != NULL)
5226                                 ldiskfs_htree_unlock(hlock);
5227                         else
5228                                 up_read(&obj->oo_ext_idx_sem);
5229                         dev->od_dirent_journal = 1;
5230                         goto again;
5231                 }
5232
5233                 dirty = true;
5234                 if (unlikely(fid_is_sane(fid))) {
5235                         /* FID-in-dirent exists, but FID-in-LMA is lost.
5236                          * Trust the FID-in-dirent, and add FID-in-LMA. */
5237                         rc = osd_ea_fid_set(info, inode, fid, 0, 0);
5238                         if (rc == 0)
5239                                 *attr |= LUDA_REPAIR;
5240                         else
5241                                 CDEBUG(D_LFSCK, "%.16s: fail to set LMA for "
5242                                        "update dirent, dir = %lu/%u, "
5243                                        "name = %.*s, "DFID": rc = %d\n",
5244                                        devname, dir->i_ino, dir->i_generation,
5245                                        ent->oied_namelen, ent->oied_name,
5246                                        PFID(fid), rc);
5247                 } else {
5248                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
5249                         /* It is probably IGIF object. Only aappend the
5250                          * FID-in-dirent. OI scrub will process FID-in-LMA. */
5251                         rc = osd_dirent_reinsert(env, jh, dir, inode, ent,
5252                                                  fid, bh, de, hlock);
5253                         if (rc == 0)
5254                                 *attr |= LUDA_UPGRADE;
5255                         else
5256                                 CDEBUG(D_LFSCK, "%.16s: fail to append IGIF "
5257                                        "after the dirent, dir = %lu/%u, "
5258                                        "name = %.*s, "DFID": rc = %d\n",
5259                                        devname, dir->i_ino, dir->i_generation,
5260                                        ent->oied_namelen, ent->oied_name,
5261                                        PFID(fid), rc);
5262                 }
5263         }
5264
5265         GOTO(out_inode, rc);
5266
5267 out_inode:
5268         iput(inode);
5269
5270 out_journal:
5271         brelse(bh);
5272         if (hlock != NULL) {
5273                 ldiskfs_htree_unlock(hlock);
5274         } else {
5275                 if (dev->od_dirent_journal != 0)
5276                         up_write(&obj->oo_ext_idx_sem);
5277                 else
5278                         up_read(&obj->oo_ext_idx_sem);
5279         }
5280         if (jh != NULL)
5281                 ldiskfs_journal_stop(jh);
5282         if (rc >= 0 && !dirty)
5283                 dev->od_dirent_journal = 0;
5284         return rc;
5285 }
5286
5287 /**
5288  * Returns the value at current position from iterator's in memory structure.
5289  *
5290  * \param di struct osd_it_ea, iterator's in memory structure
5291  * \param attr attr requested for dirent.
5292  * \param lde lustre dirent
5293  *
5294  * \retval   0 no error and \param lde has correct lustre dirent.
5295  * \retval -ve on error
5296  */
5297 static inline int osd_it_ea_rec(const struct lu_env *env,
5298                                 const struct dt_it *di,
5299                                 struct dt_rec *dtrec, __u32 attr)
5300 {
5301         struct osd_it_ea       *it    = (struct osd_it_ea *)di;
5302         struct osd_object      *obj   = it->oie_obj;
5303         struct osd_device      *dev   = osd_obj2dev(obj);
5304         struct osd_thread_info *oti   = osd_oti_get(env);
5305         struct osd_inode_id    *id    = &oti->oti_id;
5306         struct lu_fid          *fid   = &it->oie_dirent->oied_fid;
5307         struct lu_dirent       *lde   = (struct lu_dirent *)dtrec;
5308         __u32                   ino   = it->oie_dirent->oied_ino;
5309         int                     rc    = 0;
5310         ENTRY;
5311
5312         LASSERT(obj->oo_inode != dev->od_mdt_map->omm_remote_parent->d_inode);
5313
5314         if (attr & LUDA_VERIFY) {
5315                 if (unlikely(ino == osd_remote_parent_ino(dev))) {
5316                         attr |= LUDA_IGNORE;
5317                         /* If the parent is on remote MDT, and there
5318                          * is no FID-in-dirent, then we have to get
5319                          * the parent FID from the linkEA.  */
5320                         if (!fid_is_sane(fid) &&
5321                             it->oie_dirent->oied_namelen == 2 &&
5322                             it->oie_dirent->oied_name[0] == '.' &&
5323                             it->oie_dirent->oied_name[1] == '.')
5324                                 osd_get_pfid_from_linkea(env, obj, fid);
5325                 } else {
5326                         rc = osd_dirent_check_repair(env, obj, it, fid, id,
5327                                                      &attr);
5328                 }
5329         } else {
5330                 attr &= ~LU_DIRENT_ATTRS_MASK;
5331                 if (!fid_is_sane(fid)) {
5332                         if (it->oie_dirent->oied_namelen == 2 &&
5333                             it->oie_dirent->oied_name[0] == '.' &&
5334                             it->oie_dirent->oied_name[1] == '.') {
5335                                 /* If the parent is on remote MDT, and there
5336                                  * is no FID-in-dirent, then we have to get
5337                                  * the parent FID from the linkEA.  */
5338                                 if (ino == osd_remote_parent_ino(dev))
5339                                         rc = osd_get_pfid_from_linkea(env, obj,
5340                                                                       fid);
5341                         } else {
5342                                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP))
5343                                         RETURN(-ENOENT);
5344
5345                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
5346                         }
5347                 } else {
5348                         osd_id_gen(id, ino, OSD_OII_NOGEN);
5349                 }
5350         }
5351
5352         /* Pack the entry anyway, at least the offset is right. */
5353         osd_it_pack_dirent(lde, fid, it->oie_dirent->oied_off,
5354                            it->oie_dirent->oied_name,
5355                            it->oie_dirent->oied_namelen,
5356                            it->oie_dirent->oied_type, attr);
5357
5358         if (rc < 0)
5359                 RETURN(rc);
5360
5361         if (osd_remote_fid(env, dev, fid))
5362                 RETURN(0);
5363
5364         if (likely(!(attr & LUDA_IGNORE) && rc == 0))
5365                 osd_add_oi_cache(oti, dev, id, fid);
5366
5367         RETURN(rc > 0 ? 0 : rc);
5368 }
5369
5370 /**
5371  * Returns the record size size at current position.
5372  *
5373  * This function will return record(lu_dirent) size in bytes.
5374  *
5375  * \param[in] env       execution environment
5376  * \param[in] di        iterator's in memory structure
5377  * \param[in] attr      attribute of the entry, only requires LUDA_TYPE to
5378  *                      calculate the lu_dirent size.
5379  *
5380  * \retval      record size(in bytes & in memory) of the current lu_dirent
5381  *              entry.
5382  */
5383 static int osd_it_ea_rec_size(const struct lu_env *env, const struct dt_it *di,
5384                               __u32 attr)
5385 {
5386         struct osd_it_ea *it = (struct osd_it_ea *)di;
5387
5388         return lu_dirent_calc_size(it->oie_dirent->oied_namelen, attr);
5389 }
5390
5391 /**
5392  * Returns a cookie for current position of the iterator head, so that
5393  * user can use this cookie to load/start the iterator next time.
5394  *
5395  * \param di iterator's in memory structure
5396  *
5397  * \retval cookie for current position, on success
5398  */
5399 static __u64 osd_it_ea_store(const struct lu_env *env, const struct dt_it *di)
5400 {
5401         struct osd_it_ea *it = (struct osd_it_ea *)di;
5402
5403         return it->oie_dirent->oied_off;
5404 }
5405
5406 /**
5407  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
5408  * to load a directory entry at a time and stored it i inn,
5409  * in iterator's in-memory data structure.
5410  *
5411  * \param di struct osd_it_ea, iterator's in memory structure
5412  *
5413  * \retval +ve on success
5414  * \retval -ve on error
5415  */
5416 static int osd_it_ea_load(const struct lu_env *env,
5417                           const struct dt_it *di, __u64 hash)
5418 {
5419         struct osd_it_ea *it = (struct osd_it_ea *)di;
5420         int rc;
5421
5422         ENTRY;
5423         it->oie_file.f_pos = hash;
5424
5425         rc =  osd_ldiskfs_it_fill(env, di);
5426         if (rc > 0)
5427                 rc = -ENODATA;
5428
5429         if (rc == 0)
5430                 rc = +1;
5431
5432         RETURN(rc);
5433 }
5434
5435 /**
5436  * Index lookup function for interoperability mode (b11826).
5437  *
5438  * \param key,  key i.e. file name to be searched
5439  *
5440  * \retval +ve, on success
5441  * \retval -ve, on error
5442  */
5443 static int osd_index_ea_lookup(const struct lu_env *env, struct dt_object *dt,
5444                                struct dt_rec *rec, const struct dt_key *key)
5445 {
5446         struct osd_object *obj = osd_dt_obj(dt);
5447         int rc = 0;
5448
5449         ENTRY;
5450
5451         LASSERT(S_ISDIR(obj->oo_inode->i_mode));
5452         LINVRNT(osd_invariant(obj));
5453
5454         rc = osd_ea_lookup_rec(env, obj, rec, key);
5455         if (rc == 0)
5456                 rc = +1;
5457         RETURN(rc);
5458 }
5459
5460 /**
5461  * Index and Iterator operations for interoperability
5462  * mode (i.e. to run 2.0 mds on 1.8 disk) (b11826)
5463  */
5464 static const struct dt_index_operations osd_index_ea_ops = {
5465         .dio_lookup         = osd_index_ea_lookup,
5466         .dio_declare_insert = osd_index_declare_ea_insert,
5467         .dio_insert         = osd_index_ea_insert,
5468         .dio_declare_delete = osd_index_declare_ea_delete,
5469         .dio_delete         = osd_index_ea_delete,
5470         .dio_it     = {
5471                 .init     = osd_it_ea_init,
5472                 .fini     = osd_it_ea_fini,
5473                 .get      = osd_it_ea_get,
5474                 .put      = osd_it_ea_put,
5475                 .next     = osd_it_ea_next,
5476                 .key      = osd_it_ea_key,
5477                 .key_size = osd_it_ea_key_size,
5478                 .rec      = osd_it_ea_rec,
5479                 .rec_size = osd_it_ea_rec_size,
5480                 .store    = osd_it_ea_store,
5481                 .load     = osd_it_ea_load
5482         }
5483 };
5484
5485 static void *osd_key_init(const struct lu_context *ctx,
5486                           struct lu_context_key *key)
5487 {
5488         struct osd_thread_info *info;
5489
5490         OBD_ALLOC_PTR(info);
5491         if (info == NULL)
5492                 return ERR_PTR(-ENOMEM);
5493
5494         OBD_ALLOC(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5495         if (info->oti_it_ea_buf == NULL)
5496                 goto out_free_info;
5497
5498         info->oti_env = container_of(ctx, struct lu_env, le_ctx);
5499
5500         info->oti_hlock = ldiskfs_htree_lock_alloc();
5501         if (info->oti_hlock == NULL)
5502                 goto out_free_ea;
5503
5504         return info;
5505
5506  out_free_ea:
5507         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5508  out_free_info:
5509         OBD_FREE_PTR(info);
5510         return ERR_PTR(-ENOMEM);
5511 }
5512
5513 static void osd_key_fini(const struct lu_context *ctx,
5514                          struct lu_context_key *key, void* data)
5515 {
5516         struct osd_thread_info *info = data;
5517
5518         if (info->oti_inode != NULL)
5519                 OBD_FREE_PTR(info->oti_inode);
5520         if (info->oti_hlock != NULL)
5521                 ldiskfs_htree_lock_free(info->oti_hlock);
5522         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5523         lu_buf_free(&info->oti_iobuf.dr_pg_buf);
5524         lu_buf_free(&info->oti_iobuf.dr_bl_buf);
5525         lu_buf_free(&info->oti_big_buf);
5526         OBD_FREE_PTR(info);
5527 }
5528
5529 static void osd_key_exit(const struct lu_context *ctx,
5530                          struct lu_context_key *key, void *data)
5531 {
5532         struct osd_thread_info *info = data;
5533
5534         LASSERT(info->oti_r_locks == 0);
5535         LASSERT(info->oti_w_locks == 0);
5536         LASSERT(info->oti_txns    == 0);
5537 }
5538
5539 /* type constructor/destructor: osd_type_init, osd_type_fini */
5540 LU_TYPE_INIT_FINI(osd, &osd_key);
5541
5542 struct lu_context_key osd_key = {
5543         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
5544         .lct_init = osd_key_init,
5545         .lct_fini = osd_key_fini,
5546         .lct_exit = osd_key_exit
5547 };
5548
5549
5550 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
5551                            const char *name, struct lu_device *next)
5552 {
5553         struct osd_device *osd = osd_dev(d);
5554
5555         if (strlcpy(osd->od_svname, name, sizeof(osd->od_svname))
5556             >= sizeof(osd->od_svname))
5557                 return -E2BIG;
5558         return osd_procfs_init(osd, name);
5559 }
5560
5561 static int osd_fid_init(const struct lu_env *env, struct osd_device *osd)
5562 {
5563         struct seq_server_site  *ss = osd_seq_site(osd);
5564         int                     rc;
5565         ENTRY;
5566
5567         if (osd->od_is_ost || osd->od_cl_seq != NULL)
5568                 RETURN(0);
5569
5570         if (unlikely(ss == NULL))
5571                 RETURN(-ENODEV);
5572
5573         OBD_ALLOC_PTR(osd->od_cl_seq);
5574         if (osd->od_cl_seq == NULL)
5575                 RETURN(-ENOMEM);
5576
5577         rc = seq_client_init(osd->od_cl_seq, NULL, LUSTRE_SEQ_METADATA,
5578                              osd->od_svname, ss->ss_server_seq);
5579         if (rc != 0) {
5580                 OBD_FREE_PTR(osd->od_cl_seq);
5581                 osd->od_cl_seq = NULL;
5582                 RETURN(rc);
5583         }
5584
5585         if (ss->ss_node_id == 0) {
5586                 /* If the OSD on the sequence controller(MDT0), then allocate
5587                  * sequence here, otherwise allocate sequence after connected
5588                  * to MDT0 (see mdt_register_lwp_callback()). */
5589                 rc = seq_server_alloc_meta(osd->od_cl_seq->lcs_srv,
5590                                    &osd->od_cl_seq->lcs_space, env);
5591         }
5592
5593         RETURN(rc);
5594 }
5595
5596 static void osd_fid_fini(const struct lu_env *env, struct osd_device *osd)
5597 {
5598         if (osd->od_cl_seq == NULL)
5599                 return;
5600
5601         seq_client_fini(osd->od_cl_seq);
5602         OBD_FREE_PTR(osd->od_cl_seq);
5603         osd->od_cl_seq = NULL;
5604 }
5605
5606 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
5607 {
5608         ENTRY;
5609
5610         /* shutdown quota slave instance associated with the device */
5611         if (o->od_quota_slave != NULL) {
5612                 qsd_fini(env, o->od_quota_slave);
5613                 o->od_quota_slave = NULL;
5614         }
5615
5616         osd_fid_fini(env, o);
5617
5618         RETURN(0);
5619 }
5620
5621 static void osd_umount(const struct lu_env *env, struct osd_device *o)
5622 {
5623         ENTRY;
5624
5625         if (o->od_mnt != NULL) {
5626                 shrink_dcache_sb(osd_sb(o));
5627                 osd_sync(env, &o->od_dt_dev);
5628
5629                 mntput(o->od_mnt);
5630                 o->od_mnt = NULL;
5631         }
5632
5633         EXIT;
5634 }
5635
5636 static int osd_mount(const struct lu_env *env,
5637                      struct osd_device *o, struct lustre_cfg *cfg)
5638 {
5639         const char              *name  = lustre_cfg_string(cfg, 0);
5640         const char              *dev  = lustre_cfg_string(cfg, 1);
5641         const char              *opts;
5642         unsigned long            page, s_flags, lmd_flags = 0;
5643         struct page             *__page;
5644         struct file_system_type *type;
5645         char                    *options = NULL;
5646         char                    *str;
5647         struct osd_thread_info  *info = osd_oti_get(env);
5648         struct lu_fid           *fid = &info->oti_fid;
5649         struct inode            *inode;
5650         int                      rc = 0, force_over_128tb = 0;
5651         ENTRY;
5652
5653         if (o->od_mnt != NULL)
5654                 RETURN(0);
5655
5656         if (strlen(dev) >= sizeof(o->od_mntdev))
5657                 RETURN(-E2BIG);
5658         strcpy(o->od_mntdev, dev);
5659
5660         str = lustre_cfg_string(cfg, 2);
5661         s_flags = simple_strtoul(str, NULL, 0);
5662         str = strstr(str, ":");
5663         if (str)
5664                 lmd_flags = simple_strtoul(str + 1, NULL, 0);
5665         opts = lustre_cfg_string(cfg, 3);
5666 #ifdef __BIG_ENDIAN
5667         if (opts == NULL || strstr(opts, "bigendian_extents") == NULL) {
5668                 CERROR("%s: device %s extents feature is not guaranteed to "
5669                        "work on big-endian systems. Use \"bigendian_extents\" "
5670                        "mount option to override.\n", name, dev);
5671                 RETURN(-EINVAL);
5672         }
5673 #endif
5674         if (opts != NULL && strstr(opts, "force_over_128tb") != NULL)
5675                 force_over_128tb = 1;
5676
5677         OBD_PAGE_ALLOC(__page, GFP_IOFS);
5678         if (__page == NULL)
5679                 GOTO(out, rc = -ENOMEM);
5680         page = (unsigned long)page_address(__page);
5681         options = (char *)page;
5682         *options = '\0';
5683         if (opts != NULL) {
5684                 /* strip out the options for back compatiblity */
5685                 static char *sout[] = {
5686                         "mballoc",
5687                         "iopen",
5688                         "noiopen",
5689                         "iopen_nopriv",
5690                         "extents",
5691                         "noextents",
5692                         /* strip out option we processed in osd */
5693                         "bigendian_extents",
5694                         "force_over_128tb",
5695                         NULL
5696                 };
5697                 strcat(options, opts);
5698                 for (rc = 0, str = options; sout[rc]; ) {
5699                         char *op = strstr(str, sout[rc]);
5700                         if (op == NULL) {
5701                                 rc++;
5702                                 str = options;
5703                                 continue;
5704                         }
5705                         if (op == options || *(op - 1) == ',') {
5706                                 str = op + strlen(sout[rc]);
5707                                 if (*str == ',' || *str == '\0') {
5708                                         *str == ',' ? str++ : str;
5709                                         memmove(op, str, strlen(str) + 1);
5710                                 }
5711                         }
5712                         for (str = op; *str != ',' && *str != '\0'; str++)
5713                                 ;
5714                 }
5715         } else {
5716                 strncat(options, "user_xattr,acl", 14);
5717         }
5718
5719         /* Glom up mount options */
5720         if (*options != '\0')
5721                 strcat(options, ",");
5722         strlcat(options, "no_mbcache", PAGE_CACHE_SIZE);
5723
5724         type = get_fs_type("ldiskfs");
5725         if (!type) {
5726                 CERROR("%s: cannot find ldiskfs module\n", name);
5727                 GOTO(out, rc = -ENODEV);
5728         }
5729
5730         o->od_mnt = vfs_kern_mount(type, s_flags, dev, options);
5731         module_put(type->owner);
5732
5733         if (IS_ERR(o->od_mnt)) {
5734                 rc = PTR_ERR(o->od_mnt);
5735                 o->od_mnt = NULL;
5736                 CERROR("%s: can't mount %s: %d\n", name, dev, rc);
5737                 GOTO(out, rc);
5738         }
5739
5740         if (ldiskfs_blocks_count(LDISKFS_SB(osd_sb(o))->s_es) > (8ULL << 32) &&
5741             force_over_128tb == 0) {
5742                 CERROR("%s: device %s LDISKFS does not support filesystems "
5743                        "greater than 128TB and can cause data corruption. "
5744                        "Use \"force_over_128tb\" mount option to override.\n",
5745                        name, dev);
5746                 GOTO(out, rc = -EINVAL);
5747         }
5748
5749 #ifdef HAVE_DEV_SET_RDONLY
5750         if (dev_check_rdonly(o->od_mnt->mnt_sb->s_bdev)) {
5751                 CERROR("%s: underlying device %s is marked as read-only. "
5752                        "Setup failed\n", name, dev);
5753                 GOTO(out_mnt, rc = -EROFS);
5754         }
5755 #endif
5756
5757         if (!LDISKFS_HAS_COMPAT_FEATURE(o->od_mnt->mnt_sb,
5758                                         LDISKFS_FEATURE_COMPAT_HAS_JOURNAL)) {
5759                 CERROR("%s: device %s is mounted w/o journal\n", name, dev);
5760                 GOTO(out_mnt, rc = -EINVAL);
5761         }
5762
5763 #ifdef LDISKFS_MOUNT_DIRDATA
5764         if (LDISKFS_HAS_INCOMPAT_FEATURE(o->od_mnt->mnt_sb,
5765                                          LDISKFS_FEATURE_INCOMPAT_DIRDATA))
5766                 LDISKFS_SB(osd_sb(o))->s_mount_opt |= LDISKFS_MOUNT_DIRDATA;
5767         else if (!o->od_is_ost)
5768                 CWARN("%s: device %s was upgraded from Lustre-1.x without "
5769                       "enabling the dirdata feature. If you do not want to "
5770                       "downgrade to Lustre-1.x again, you can enable it via "
5771                       "'tune2fs -O dirdata device'\n", name, dev);
5772 #endif
5773         inode = osd_sb(o)->s_root->d_inode;
5774         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
5775         rc = osd_ea_fid_set(info, inode, fid, LMAC_NOT_IN_OI, 0);
5776         if (rc != 0) {
5777                 CERROR("%s: failed to set lma on %s root inode\n", name, dev);
5778                 GOTO(out_mnt, rc);
5779         }
5780
5781         if (lmd_flags & LMD_FLG_NOSCRUB)
5782                 o->od_noscrub = 1;
5783
5784         GOTO(out, rc = 0);
5785
5786 out_mnt:
5787         mntput(o->od_mnt);
5788         o->od_mnt = NULL;
5789
5790 out:
5791         if (__page)
5792                 OBD_PAGE_FREE(__page);
5793
5794         return rc;
5795 }
5796
5797 static struct lu_device *osd_device_fini(const struct lu_env *env,
5798                                          struct lu_device *d)
5799 {
5800         struct osd_device *o = osd_dev(d);
5801         ENTRY;
5802
5803         osd_shutdown(env, o);
5804         osd_procfs_fini(o);
5805         osd_scrub_cleanup(env, o);
5806         osd_obj_map_fini(o);
5807         osd_umount(env, o);
5808
5809         RETURN(NULL);
5810 }
5811
5812 static int osd_device_init0(const struct lu_env *env,
5813                             struct osd_device *o,
5814                             struct lustre_cfg *cfg)
5815 {
5816         struct lu_device        *l = osd2lu_dev(o);
5817         struct osd_thread_info *info;
5818         int                     rc;
5819         int                     cplen = 0;
5820
5821         /* if the module was re-loaded, env can loose its keys */
5822         rc = lu_env_refill((struct lu_env *) env);
5823         if (rc)
5824                 GOTO(out, rc);
5825         info = osd_oti_get(env);
5826         LASSERT(info);
5827
5828         l->ld_ops = &osd_lu_ops;
5829         o->od_dt_dev.dd_ops = &osd_dt_ops;
5830
5831         spin_lock_init(&o->od_osfs_lock);
5832         mutex_init(&o->od_otable_mutex);
5833
5834         o->od_read_cache = 1;
5835         o->od_writethrough_cache = 1;
5836         o->od_readcache_max_filesize = OSD_MAX_CACHE_SIZE;
5837
5838         cplen = strlcpy(o->od_svname, lustre_cfg_string(cfg, 4),
5839                         sizeof(o->od_svname));
5840         if (cplen >= sizeof(o->od_svname)) {
5841                 rc = -E2BIG;
5842                 GOTO(out, rc);
5843         }
5844
5845         if (server_name_is_ost(o->od_svname))
5846                 o->od_is_ost = 1;
5847
5848         o->od_full_scrub_ratio = OFSR_DEFAULT;
5849         o->od_full_scrub_threshold_rate = FULL_SCRUB_THRESHOLD_RATE_DEFAULT;
5850         rc = osd_mount(env, o, cfg);
5851         if (rc != 0)
5852                 GOTO(out, rc);
5853
5854         rc = osd_obj_map_init(env, o);
5855         if (rc != 0)
5856                 GOTO(out_mnt, rc);
5857
5858         rc = lu_site_init(&o->od_site, l);
5859         if (rc != 0)
5860                 GOTO(out_compat, rc);
5861         o->od_site.ls_bottom_dev = l;
5862
5863         rc = lu_site_init_finish(&o->od_site);
5864         if (rc != 0)
5865                 GOTO(out_site, rc);
5866
5867         INIT_LIST_HEAD(&o->od_ios_list);
5868         /* setup scrub, including OI files initialization */
5869         rc = osd_scrub_setup(env, o);
5870         if (rc < 0)
5871                 GOTO(out_site, rc);
5872
5873         rc = osd_procfs_init(o, o->od_svname);
5874         if (rc != 0) {
5875                 CERROR("%s: can't initialize procfs: rc = %d\n",
5876                        o->od_svname, rc);
5877                 GOTO(out_scrub, rc);
5878         }
5879
5880         LASSERT(l->ld_site->ls_linkage.next != NULL);
5881         LASSERT(l->ld_site->ls_linkage.prev != NULL);
5882
5883         /* initialize quota slave instance */
5884         o->od_quota_slave = qsd_init(env, o->od_svname, &o->od_dt_dev,
5885                                      o->od_proc_entry);
5886         if (IS_ERR(o->od_quota_slave)) {
5887                 rc = PTR_ERR(o->od_quota_slave);
5888                 o->od_quota_slave = NULL;
5889                 GOTO(out_procfs, rc);
5890         }
5891
5892         RETURN(0);
5893
5894 out_procfs:
5895         osd_procfs_fini(o);
5896 out_scrub:
5897         osd_scrub_cleanup(env, o);
5898 out_site:
5899         lu_site_fini(&o->od_site);
5900 out_compat:
5901         osd_obj_map_fini(o);
5902 out_mnt:
5903         osd_umount(env, o);
5904 out:
5905         return rc;
5906 }
5907
5908 static struct lu_device *osd_device_alloc(const struct lu_env *env,
5909                                           struct lu_device_type *t,
5910                                           struct lustre_cfg *cfg)
5911 {
5912         struct osd_device *o;
5913         int                rc;
5914
5915         OBD_ALLOC_PTR(o);
5916         if (o == NULL)
5917                 return ERR_PTR(-ENOMEM);
5918
5919         rc = dt_device_init(&o->od_dt_dev, t);
5920         if (rc == 0) {
5921                 /* Because the ctx might be revived in dt_device_init,
5922                  * refill the env here */
5923                 lu_env_refill((struct lu_env *)env);
5924                 rc = osd_device_init0(env, o, cfg);
5925                 if (rc)
5926                         dt_device_fini(&o->od_dt_dev);
5927         }
5928
5929         if (unlikely(rc != 0))
5930                 OBD_FREE_PTR(o);
5931
5932         return rc == 0 ? osd2lu_dev(o) : ERR_PTR(rc);
5933 }
5934
5935 static struct lu_device *osd_device_free(const struct lu_env *env,
5936                                          struct lu_device *d)
5937 {
5938         struct osd_device *o = osd_dev(d);
5939         ENTRY;
5940
5941         /* XXX: make osd top device in order to release reference */
5942         d->ld_site->ls_top_dev = d;
5943         lu_site_purge(env, d->ld_site, -1);
5944         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
5945                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
5946                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
5947         }
5948         lu_site_fini(&o->od_site);
5949         dt_device_fini(&o->od_dt_dev);
5950         OBD_FREE_PTR(o);
5951         RETURN(NULL);
5952 }
5953
5954 static int osd_process_config(const struct lu_env *env,
5955                               struct lu_device *d, struct lustre_cfg *cfg)
5956 {
5957         struct osd_device               *o = osd_dev(d);
5958         int                             rc;
5959         ENTRY;
5960
5961         switch (cfg->lcfg_command) {
5962         case LCFG_SETUP:
5963                 rc = osd_mount(env, o, cfg);
5964                 break;
5965         case LCFG_CLEANUP:
5966                 lu_dev_del_linkage(d->ld_site, d);
5967                 rc = osd_shutdown(env, o);
5968                 break;
5969         case LCFG_PARAM:
5970                 LASSERT(&o->od_dt_dev);
5971                 rc = class_process_proc_param(PARAM_OSD, lprocfs_osd_obd_vars,
5972                                               cfg, &o->od_dt_dev);
5973                 if (rc > 0 || rc == -ENOSYS)
5974                         rc = class_process_proc_param(PARAM_OST,
5975                                                       lprocfs_osd_obd_vars,
5976                                                       cfg, &o->od_dt_dev);
5977                 break;
5978         default:
5979                 rc = -ENOSYS;
5980         }
5981
5982         RETURN(rc);
5983 }
5984
5985 static int osd_recovery_complete(const struct lu_env *env,
5986                                  struct lu_device *d)
5987 {
5988         struct osd_device       *osd = osd_dev(d);
5989         int                      rc = 0;
5990         ENTRY;
5991
5992         if (osd->od_quota_slave == NULL)
5993                 RETURN(0);
5994
5995         /* start qsd instance on recovery completion, this notifies the quota
5996          * slave code that we are about to process new requests now */
5997         rc = qsd_start(env, osd->od_quota_slave);
5998         RETURN(rc);
5999 }
6000
6001 /*
6002  * we use exports to track all osd users
6003  */
6004 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
6005                            struct obd_device *obd, struct obd_uuid *cluuid,
6006                            struct obd_connect_data *data, void *localdata)
6007 {
6008         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
6009         struct lustre_handle  conn;
6010         int                   rc;
6011         ENTRY;
6012
6013         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
6014
6015         rc = class_connect(&conn, obd, cluuid);
6016         if (rc)
6017                 RETURN(rc);
6018
6019         *exp = class_conn2export(&conn);
6020
6021         spin_lock(&osd->od_osfs_lock);
6022         osd->od_connects++;
6023         spin_unlock(&osd->od_osfs_lock);
6024
6025         RETURN(0);
6026 }
6027
6028 /*
6029  * once last export (we don't count self-export) disappeared
6030  * osd can be released
6031  */
6032 static int osd_obd_disconnect(struct obd_export *exp)
6033 {
6034         struct obd_device *obd = exp->exp_obd;
6035         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
6036         int                rc, release = 0;
6037         ENTRY;
6038
6039         /* Only disconnect the underlying layers on the final disconnect. */
6040         spin_lock(&osd->od_osfs_lock);
6041         osd->od_connects--;
6042         if (osd->od_connects == 0)
6043                 release = 1;
6044         spin_unlock(&osd->od_osfs_lock);
6045
6046         rc = class_disconnect(exp); /* bz 9811 */
6047
6048         if (rc == 0 && release)
6049                 class_manual_cleanup(obd);
6050         RETURN(rc);
6051 }
6052
6053 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
6054                        struct lu_device *dev)
6055 {
6056         struct osd_device       *osd    = osd_dev(dev);
6057         struct lr_server_data   *lsd    =
6058                         &osd->od_dt_dev.dd_lu_dev.ld_site->ls_tgt->lut_lsd;
6059         int                      result = 0;
6060         ENTRY;
6061
6062         if (osd->od_quota_slave != NULL) {
6063                 /* set up quota slave objects */
6064                 result = qsd_prepare(env, osd->od_quota_slave);
6065                 if (result != 0)
6066                         RETURN(result);
6067         }
6068
6069         if (lsd->lsd_feature_incompat & OBD_COMPAT_OST) {
6070 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 52, 0)
6071                 if (lsd->lsd_feature_rocompat & OBD_ROCOMPAT_IDX_IN_IDIF) {
6072                         osd->od_index_in_idif = 1;
6073                 } else {
6074                         osd->od_index_in_idif = 0;
6075                         result = osd_register_proc_index_in_idif(osd);
6076                         if (result != 0)
6077                                 RETURN(result);
6078                 }
6079 #else
6080                 osd->od_index_in_idif = 1;
6081 #endif
6082         }
6083
6084         result = osd_fid_init(env, osd);
6085
6086         RETURN(result);
6087 }
6088
6089 static int osd_fid_alloc(const struct lu_env *env, struct obd_export *exp,
6090                          struct lu_fid *fid, struct md_op_data *op_data)
6091 {
6092         struct osd_device *osd = osd_dev(exp->exp_obd->obd_lu_dev);
6093
6094         return seq_client_alloc_fid(env, osd->od_cl_seq, fid);
6095 }
6096
6097 static const struct lu_object_operations osd_lu_obj_ops = {
6098         .loo_object_init      = osd_object_init,
6099         .loo_object_delete    = osd_object_delete,
6100         .loo_object_release   = osd_object_release,
6101         .loo_object_free      = osd_object_free,
6102         .loo_object_print     = osd_object_print,
6103         .loo_object_invariant = osd_object_invariant
6104 };
6105
6106 const struct lu_device_operations osd_lu_ops = {
6107         .ldo_object_alloc      = osd_object_alloc,
6108         .ldo_process_config    = osd_process_config,
6109         .ldo_recovery_complete = osd_recovery_complete,
6110         .ldo_prepare           = osd_prepare,
6111 };
6112
6113 static const struct lu_device_type_operations osd_device_type_ops = {
6114         .ldto_init = osd_type_init,
6115         .ldto_fini = osd_type_fini,
6116
6117         .ldto_start = osd_type_start,
6118         .ldto_stop  = osd_type_stop,
6119
6120         .ldto_device_alloc = osd_device_alloc,
6121         .ldto_device_free  = osd_device_free,
6122
6123         .ldto_device_init    = osd_device_init,
6124         .ldto_device_fini    = osd_device_fini
6125 };
6126
6127 static struct lu_device_type osd_device_type = {
6128         .ldt_tags     = LU_DEVICE_DT,
6129         .ldt_name     = LUSTRE_OSD_LDISKFS_NAME,
6130         .ldt_ops      = &osd_device_type_ops,
6131         .ldt_ctx_tags = LCT_LOCAL,
6132 };
6133
6134 static int osd_health_check(const struct lu_env *env, struct obd_device *obd)
6135 {
6136         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
6137         struct super_block *sb = osd_sb(osd);
6138
6139         return (osd->od_mnt == NULL || sb->s_flags & MS_RDONLY);
6140 }
6141
6142 /*
6143  * lprocfs legacy support.
6144  */
6145 static struct obd_ops osd_obd_device_ops = {
6146         .o_owner = THIS_MODULE,
6147         .o_connect      = osd_obd_connect,
6148         .o_disconnect   = osd_obd_disconnect,
6149         .o_fid_alloc    = osd_fid_alloc,
6150         .o_health_check = osd_health_check,
6151 };
6152
6153 static int __init osd_mod_init(void)
6154 {
6155         int rc;
6156
6157 #if !defined(CONFIG_DEBUG_MUTEXES) && !defined(CONFIG_DEBUG_SPINLOCK)
6158         /* please, try to keep osd_thread_info smaller than a page */
6159         CLASSERT(sizeof(struct osd_thread_info) <= PAGE_SIZE);
6160 #endif
6161
6162         osd_oi_mod_init();
6163
6164         rc = lu_kmem_init(ldiskfs_caches);
6165         if (rc)
6166                 return rc;
6167
6168         rc = class_register_type(&osd_obd_device_ops, NULL, true,
6169                                  lprocfs_osd_module_vars,
6170                                  LUSTRE_OSD_LDISKFS_NAME, &osd_device_type);
6171         if (rc)
6172                 lu_kmem_fini(ldiskfs_caches);
6173         return rc;
6174 }
6175
6176 static void __exit osd_mod_exit(void)
6177 {
6178         class_unregister_type(LUSTRE_OSD_LDISKFS_NAME);
6179         lu_kmem_fini(ldiskfs_caches);
6180 }
6181
6182 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
6183 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_LDISKFS_NAME")");
6184 MODULE_VERSION(LUSTRE_VERSION_STRING);
6185 MODULE_LICENSE("GPL");
6186
6187 module_init(osd_mod_init);
6188 module_exit(osd_mod_exit);