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