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