Whamcloud - gitweb
LU-7251 osp: do not assign commit callback to every thandle
[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         OBD_FREE_PTR(oh);
1594 }
1595
1596 #ifndef HAVE_SB_START_WRITE
1597 # define sb_start_write(sb) do {} while (0)
1598 # define sb_end_write(sb) do {} while (0)
1599 #endif
1600
1601 static struct thandle *osd_trans_create(const struct lu_env *env,
1602                                         struct dt_device *d)
1603 {
1604         struct osd_thread_info  *oti = osd_oti_get(env);
1605         struct osd_iobuf        *iobuf = &oti->oti_iobuf;
1606         struct osd_thandle      *oh;
1607         struct thandle          *th;
1608         ENTRY;
1609
1610         if (d->dd_rdonly) {
1611                 CERROR("%s: someone try to start transaction under "
1612                        "readonly mode, should be disabled.\n",
1613                        osd_name(osd_dt_dev(d)));
1614                 dump_stack();
1615                 RETURN(ERR_PTR(-EROFS));
1616         }
1617
1618         /* on pending IO in this thread should left from prev. request */
1619         LASSERT(atomic_read(&iobuf->dr_numreqs) == 0);
1620
1621         sb_start_write(osd_sb(osd_dt_dev(d)));
1622
1623         OBD_ALLOC_GFP(oh, sizeof *oh, GFP_NOFS);
1624         if (oh != NULL) {
1625                 oh->ot_quota_trans = &oti->oti_quota_trans;
1626                 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
1627                 th = &oh->ot_super;
1628                 th->th_dev = d;
1629                 th->th_result = 0;
1630                 oh->ot_credits = 0;
1631                 INIT_LIST_HEAD(&oh->ot_commit_dcb_list);
1632                 INIT_LIST_HEAD(&oh->ot_stop_dcb_list);
1633                 osd_th_alloced(oh);
1634
1635                 memset(oti->oti_declare_ops, 0,
1636                        sizeof(oti->oti_declare_ops));
1637                 memset(oti->oti_declare_ops_cred, 0,
1638                        sizeof(oti->oti_declare_ops_cred));
1639                 memset(oti->oti_declare_ops_used, 0,
1640                        sizeof(oti->oti_declare_ops_used));
1641         } else {
1642                 sb_end_write(osd_sb(osd_dt_dev(d)));
1643                 th = ERR_PTR(-ENOMEM);
1644         }
1645         RETURN(th);
1646 }
1647
1648 void osd_trans_dump_creds(const struct lu_env *env, struct thandle *th)
1649 {
1650         struct osd_thread_info  *oti = osd_oti_get(env);
1651         struct osd_thandle      *oh;
1652
1653         oh = container_of0(th, struct osd_thandle, ot_super);
1654         LASSERT(oh != NULL);
1655
1656         CWARN("  create: %u/%u/%u, destroy: %u/%u/%u\n",
1657               oti->oti_declare_ops[OSD_OT_CREATE],
1658               oti->oti_declare_ops_cred[OSD_OT_CREATE],
1659               oti->oti_declare_ops_used[OSD_OT_CREATE],
1660               oti->oti_declare_ops[OSD_OT_DESTROY],
1661               oti->oti_declare_ops_cred[OSD_OT_DESTROY],
1662               oti->oti_declare_ops_used[OSD_OT_DESTROY]);
1663         CWARN("  attr_set: %u/%u/%u, xattr_set: %u/%u/%u\n",
1664               oti->oti_declare_ops[OSD_OT_ATTR_SET],
1665               oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
1666               oti->oti_declare_ops_used[OSD_OT_ATTR_SET],
1667               oti->oti_declare_ops[OSD_OT_XATTR_SET],
1668               oti->oti_declare_ops_cred[OSD_OT_XATTR_SET],
1669               oti->oti_declare_ops_used[OSD_OT_XATTR_SET]);
1670         CWARN("  write: %u/%u/%u, punch: %u/%u/%u, quota %u/%u/%u\n",
1671               oti->oti_declare_ops[OSD_OT_WRITE],
1672               oti->oti_declare_ops_cred[OSD_OT_WRITE],
1673               oti->oti_declare_ops_used[OSD_OT_WRITE],
1674               oti->oti_declare_ops[OSD_OT_PUNCH],
1675               oti->oti_declare_ops_cred[OSD_OT_PUNCH],
1676               oti->oti_declare_ops_used[OSD_OT_PUNCH],
1677               oti->oti_declare_ops[OSD_OT_QUOTA],
1678               oti->oti_declare_ops_cred[OSD_OT_QUOTA],
1679               oti->oti_declare_ops_used[OSD_OT_QUOTA]);
1680         CWARN("  insert: %u/%u/%u, delete: %u/%u/%u\n",
1681               oti->oti_declare_ops[OSD_OT_INSERT],
1682               oti->oti_declare_ops_cred[OSD_OT_INSERT],
1683               oti->oti_declare_ops_used[OSD_OT_INSERT],
1684               oti->oti_declare_ops[OSD_OT_DELETE],
1685               oti->oti_declare_ops_cred[OSD_OT_DELETE],
1686               oti->oti_declare_ops_used[OSD_OT_DELETE]);
1687         CWARN("  ref_add: %u/%u/%u, ref_del: %u/%u/%u\n",
1688               oti->oti_declare_ops[OSD_OT_REF_ADD],
1689               oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
1690               oti->oti_declare_ops_used[OSD_OT_REF_ADD],
1691               oti->oti_declare_ops[OSD_OT_REF_DEL],
1692               oti->oti_declare_ops_cred[OSD_OT_REF_DEL],
1693               oti->oti_declare_ops_used[OSD_OT_REF_DEL]);
1694 }
1695
1696 /*
1697  * Concurrency: shouldn't matter.
1698  */
1699 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
1700                            struct thandle *th)
1701 {
1702         struct osd_thread_info *oti = osd_oti_get(env);
1703         struct osd_device  *dev = osd_dt_dev(d);
1704         handle_t           *jh;
1705         struct osd_thandle *oh;
1706         int rc;
1707
1708         ENTRY;
1709
1710         LASSERT(current->journal_info == NULL);
1711
1712         oh = container_of0(th, struct osd_thandle, ot_super);
1713         LASSERT(oh != NULL);
1714         LASSERT(oh->ot_handle == NULL);
1715
1716         rc = dt_txn_hook_start(env, d, th);
1717         if (rc != 0)
1718                 GOTO(out, rc);
1719
1720         if (unlikely(osd_param_is_not_sane(dev, th))) {
1721                 static unsigned long last_printed;
1722                 static int last_credits;
1723
1724                 /* don't make noise on a tiny testing systems
1725                  * actual credits misuse will be caught anyway */
1726                 if (last_credits != oh->ot_credits &&
1727                     time_after(jiffies, last_printed +
1728                                msecs_to_jiffies(60 * MSEC_PER_SEC)) &&
1729                     osd_transaction_size(dev) > 512) {
1730                         CWARN("%s: credits %u > trans_max %u\n", osd_name(dev),
1731                               oh->ot_credits, osd_transaction_size(dev));
1732                         osd_trans_dump_creds(env, th);
1733                         libcfs_debug_dumpstack(NULL);
1734                         last_credits = oh->ot_credits;
1735                         last_printed = jiffies;
1736                 }
1737                 /* XXX Limit the credits to 'max_transaction_buffers', and
1738                  *     let the underlying filesystem to catch the error if
1739                  *     we really need so many credits.
1740                  *
1741                  *     This should be removed when we can calculate the
1742                  *     credits precisely. */
1743                 oh->ot_credits = osd_transaction_size(dev);
1744         } else if (ldiskfs_track_declares_assert != 0) {
1745                 /* reserve few credits to prevent an assertion in JBD
1746                  * our debugging mechanism will be able to detected
1747                  * overuse. this can help to debug single-update
1748                  * transactions */
1749                 oh->ot_credits += 10;
1750                 if (unlikely(osd_param_is_not_sane(dev, th)))
1751                         oh->ot_credits = osd_transaction_size(dev);
1752         }
1753
1754         /*
1755          * XXX temporary stuff. Some abstraction layer should
1756          * be used.
1757          */
1758         jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
1759         osd_th_started(oh);
1760         if (!IS_ERR(jh)) {
1761                 oh->ot_handle = jh;
1762                 LASSERT(oti->oti_txns == 0);
1763
1764                 lu_device_get(&d->dd_lu_dev);
1765                 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
1766                               "osd-tx", th);
1767                 oti->oti_txns++;
1768                 rc = 0;
1769         } else {
1770                 rc = PTR_ERR(jh);
1771         }
1772 out:
1773         RETURN(rc);
1774 }
1775
1776 static int osd_seq_exists(const struct lu_env *env,
1777                           struct osd_device *osd, u64 seq)
1778 {
1779         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
1780         struct seq_server_site  *ss = osd_seq_site(osd);
1781         int                     rc;
1782         ENTRY;
1783
1784         LASSERT(ss != NULL);
1785         LASSERT(ss->ss_server_fld != NULL);
1786
1787         rc = osd_fld_lookup(env, osd, seq, range);
1788         if (rc != 0) {
1789                 if (rc != -ENOENT)
1790                         CERROR("%s: can't lookup FLD sequence %#llx: rc = %d\n",
1791                                osd_name(osd), seq, rc);
1792                 RETURN(0);
1793         }
1794
1795         RETURN(ss->ss_node_id == range->lsr_index);
1796 }
1797
1798 static void osd_trans_stop_cb(struct osd_thandle *oth, int result)
1799 {
1800         struct dt_txn_commit_cb *dcb;
1801         struct dt_txn_commit_cb *tmp;
1802
1803         /* call per-transaction stop callbacks if any */
1804         list_for_each_entry_safe(dcb, tmp, &oth->ot_stop_dcb_list,
1805                                  dcb_linkage) {
1806                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
1807                          "commit callback entry: magic=%x name='%s'\n",
1808                          dcb->dcb_magic, dcb->dcb_name);
1809                 list_del_init(&dcb->dcb_linkage);
1810                 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
1811         }
1812 }
1813
1814 /*
1815  * Concurrency: shouldn't matter.
1816  */
1817 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
1818                           struct thandle *th)
1819 {
1820         int                     rc = 0, remove_agents = 0;
1821         struct osd_thandle     *oh;
1822         struct osd_thread_info *oti = osd_oti_get(env);
1823         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
1824         struct osd_device      *osd = osd_dt_dev(th->th_dev);
1825         struct qsd_instance    *qsd = osd->od_quota_slave;
1826         struct lquota_trans    *qtrans;
1827         ENTRY;
1828
1829         oh = container_of0(th, struct osd_thandle, ot_super);
1830
1831         /* reset OI cache for safety */
1832         oti->oti_ins_cache_used = 0;
1833
1834         remove_agents = oh->ot_remove_agents;
1835
1836         qtrans = oh->ot_quota_trans;
1837         oh->ot_quota_trans = NULL;
1838
1839         if (oh->ot_handle != NULL) {
1840                 int rc2;
1841                 handle_t *hdl = oh->ot_handle;
1842
1843                 /*
1844                  * add commit callback
1845                  * notice we don't do this in osd_trans_start()
1846                  * as underlying transaction can change during truncate
1847                  */
1848                 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
1849                                          &oh->ot_jcb);
1850
1851                 LASSERT(oti->oti_txns == 1);
1852                 oti->oti_txns--;
1853
1854                 rc = dt_txn_hook_stop(env, th);
1855                 if (rc != 0)
1856                         CERROR("%s: failed in transaction hook: rc = %d\n",
1857                                osd_name(osd), rc);
1858
1859                 osd_trans_stop_cb(oh, rc);
1860                 /* hook functions might modify th_sync */
1861                 hdl->h_sync = th->th_sync;
1862
1863                 oh->ot_handle = NULL;
1864                 OSD_CHECK_SLOW_TH(oh, osd, rc2 = ldiskfs_journal_stop(hdl));
1865                 if (rc2 != 0)
1866                         CERROR("%s: failed to stop transaction: rc = %d\n",
1867                                osd_name(osd), rc2);
1868                 if (!rc)
1869                         rc = rc2;
1870         } else {
1871                 osd_trans_stop_cb(oh, th->th_result);
1872                 OBD_FREE_PTR(oh);
1873         }
1874
1875         /* inform the quota slave device that the transaction is stopping */
1876         qsd_op_end(env, qsd, qtrans);
1877
1878         /* as we want IO to journal and data IO be concurrent, we don't block
1879          * awaiting data IO completion in osd_do_bio(), instead we wait here
1880          * once transaction is submitted to the journal. all reqular requests
1881          * don't do direct IO (except read/write), thus this wait_event becomes
1882          * no-op for them.
1883          *
1884          * IMPORTANT: we have to wait till any IO submited by the thread is
1885          * completed otherwise iobuf may be corrupted by different request
1886          */
1887         wait_event(iobuf->dr_wait,
1888                        atomic_read(&iobuf->dr_numreqs) == 0);
1889         osd_fini_iobuf(osd, iobuf);
1890         if (!rc)
1891                 rc = iobuf->dr_error;
1892
1893         if (unlikely(remove_agents != 0))
1894                 osd_process_scheduled_agent_removals(env, osd);
1895
1896         sb_end_write(osd_sb(osd));
1897
1898         RETURN(rc);
1899 }
1900
1901 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
1902 {
1903         struct osd_thandle *oh = container_of0(th, struct osd_thandle,
1904                                                ot_super);
1905
1906         LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
1907         LASSERT(&dcb->dcb_func != NULL);
1908         if (dcb->dcb_flags & DCB_TRANS_STOP)
1909                 list_add(&dcb->dcb_linkage, &oh->ot_stop_dcb_list);
1910         else
1911                 list_add(&dcb->dcb_linkage, &oh->ot_commit_dcb_list);
1912
1913         return 0;
1914 }
1915
1916 /*
1917  * Called just before object is freed. Releases all resources except for
1918  * object itself (that is released by osd_object_free()).
1919  *
1920  * Concurrency: no concurrent access is possible that late in object
1921  * life-cycle.
1922  */
1923 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
1924 {
1925         struct osd_object *obj   = osd_obj(l);
1926         struct inode      *inode = obj->oo_inode;
1927
1928         LINVRNT(osd_invariant(obj));
1929
1930         /*
1931          * If object is unlinked remove fid->ino mapping from object index.
1932          */
1933
1934         osd_index_fini(obj);
1935         if (inode != NULL) {
1936                 struct qsd_instance     *qsd = osd_obj2dev(obj)->od_quota_slave;
1937                 qid_t                    uid = i_uid_read(inode);
1938                 qid_t                    gid = i_gid_read(inode);
1939
1940                 iput(inode);
1941                 obj->oo_inode = NULL;
1942
1943                 if (qsd != NULL) {
1944                         struct osd_thread_info  *info = osd_oti_get(env);
1945                         struct lquota_id_info   *qi = &info->oti_qi;
1946
1947                         /* Release granted quota to master if necessary */
1948                         qi->lqi_id.qid_uid = uid;
1949                         qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
1950
1951                         qi->lqi_id.qid_uid = gid;
1952                         qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
1953
1954                         qi->lqi_id.qid_uid = i_projid_read(inode);
1955                         qsd_op_adjust(env, qsd, &qi->lqi_id, PRJQUOTA);
1956                 }
1957         }
1958 }
1959
1960 /*
1961  * Concurrency: ->loo_object_release() is called under site spin-lock.
1962  */
1963 static void osd_object_release(const struct lu_env *env,
1964                                struct lu_object *l)
1965 {
1966         struct osd_object *o = osd_obj(l);
1967         /* nobody should be releasing a non-destroyed object with nlink=0
1968          * the API allows this, but ldiskfs doesn't like and then report
1969          * this inode as deleted */
1970         if (unlikely(!o->oo_destroyed && o->oo_inode && o->oo_inode->i_nlink == 0))
1971                 LBUG();
1972 }
1973
1974 /*
1975  * Concurrency: shouldn't matter.
1976  */
1977 static int osd_object_print(const struct lu_env *env, void *cookie,
1978                             lu_printer_t p, const struct lu_object *l)
1979 {
1980         struct osd_object *o = osd_obj(l);
1981         struct iam_descr  *d;
1982
1983         if (o->oo_dir != NULL)
1984                 d = o->oo_dir->od_container.ic_descr;
1985         else
1986                 d = NULL;
1987         return (*p)(env, cookie,
1988                     LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
1989                     o, o->oo_inode,
1990                     o->oo_inode ? o->oo_inode->i_ino : 0UL,
1991                     o->oo_inode ? o->oo_inode->i_generation : 0,
1992                     d ? d->id_ops->id_name : "plain");
1993 }
1994
1995 /*
1996  * Concurrency: shouldn't matter.
1997  */
1998 int osd_statfs(const struct lu_env *env, struct dt_device *d,
1999                struct obd_statfs *sfs)
2000 {
2001         struct osd_device       *osd = osd_dt_dev(d);
2002         struct super_block      *sb = osd_sb(osd);
2003         struct kstatfs          *ksfs;
2004         __u64                    reserved;
2005         int                      result = 0;
2006
2007         if (unlikely(osd->od_mnt == NULL))
2008                 return -EINPROGRESS;
2009
2010         /* osd_lproc.c call this without env, allocate ksfs for that case */
2011         if (unlikely(env == NULL)) {
2012                 OBD_ALLOC_PTR(ksfs);
2013                 if (ksfs == NULL)
2014                         return -ENOMEM;
2015         } else {
2016                 ksfs = &osd_oti_get(env)->oti_ksfs;
2017         }
2018
2019         result = sb->s_op->statfs(sb->s_root, ksfs);
2020         if (result)
2021                 goto out;
2022
2023         statfs_pack(sfs, ksfs);
2024         if (unlikely(sb->s_flags & MS_RDONLY))
2025                 sfs->os_state |= OS_STATE_READONLY;
2026         if (LDISKFS_HAS_INCOMPAT_FEATURE(sb,
2027                                          LDISKFS_FEATURE_INCOMPAT_EXTENTS))
2028                 sfs->os_maxbytes = sb->s_maxbytes;
2029         else
2030                 sfs->os_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2031
2032         /*
2033          * Reserve some space so to avoid fragmenting the filesystem too much.
2034          * Fragmentation not only impacts performance, but can also increase
2035          * metadata overhead significantly, causing grant calculation to be
2036          * wrong.
2037          *
2038          * Reserve 0.78% of total space, at least 8MB for small filesystems.
2039          */
2040         CLASSERT(OSD_STATFS_RESERVED > LDISKFS_MAX_BLOCK_SIZE);
2041         reserved = OSD_STATFS_RESERVED >> sb->s_blocksize_bits;
2042         if (likely(sfs->os_blocks >= reserved << OSD_STATFS_RESERVED_SHIFT))
2043                 reserved = sfs->os_blocks >> OSD_STATFS_RESERVED_SHIFT;
2044
2045         sfs->os_blocks -= reserved;
2046         sfs->os_bfree  -= min(reserved, sfs->os_bfree);
2047         sfs->os_bavail -= min(reserved, sfs->os_bavail);
2048
2049 out:
2050         if (unlikely(env == NULL))
2051                 OBD_FREE_PTR(ksfs);
2052         return result;
2053 }
2054
2055 /**
2056  * Estimate space needed for file creations. We assume the largest filename
2057  * which is 2^64 - 1, hence a filename of 20 chars.
2058  * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
2059  */
2060 #ifdef __LDISKFS_DIR_REC_LEN
2061 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
2062 #else
2063 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
2064 #endif
2065
2066 /*
2067  * Concurrency: doesn't access mutable data.
2068  */
2069 static void osd_conf_get(const struct lu_env *env,
2070                          const struct dt_device *dev,
2071                          struct dt_device_param *param)
2072 {
2073         struct super_block *sb = osd_sb(osd_dt_dev(dev));
2074         int                ea_overhead;
2075
2076         /*
2077          * XXX should be taken from not-yet-existing fs abstraction layer.
2078          */
2079         param->ddp_max_name_len = LDISKFS_NAME_LEN;
2080         param->ddp_max_nlink    = LDISKFS_LINK_MAX;
2081         param->ddp_symlink_max  = sb->s_blocksize;
2082         param->ddp_mount_type     = LDD_MT_LDISKFS;
2083         if (LDISKFS_HAS_INCOMPAT_FEATURE(sb, LDISKFS_FEATURE_INCOMPAT_EXTENTS))
2084                 param->ddp_maxbytes = sb->s_maxbytes;
2085         else
2086                 param->ddp_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2087         /* inode are statically allocated, so per-inode space consumption
2088          * is the space consumed by the directory entry */
2089         param->ddp_inodespace     = PER_OBJ_USAGE;
2090         /* EXT_INIT_MAX_LEN is the theoretical maximum extent size  (32k blocks
2091          * = 128MB) which is unlikely to be hit in real life. Report a smaller
2092          * maximum length to not under count the actual number of extents
2093          * needed for writing a file. */
2094         param->ddp_max_extent_blks = EXT_INIT_MAX_LEN >> 2;
2095         /* worst-case extent insertion metadata overhead */
2096         param->ddp_extent_tax = 6 * LDISKFS_BLOCK_SIZE(sb);
2097         param->ddp_mntopts      = 0;
2098         if (test_opt(sb, XATTR_USER))
2099                 param->ddp_mntopts |= MNTOPT_USERXATTR;
2100         if (test_opt(sb, POSIX_ACL))
2101                 param->ddp_mntopts |= MNTOPT_ACL;
2102
2103         /* LOD might calculate the max stripe count based on max_ea_size,
2104          * so we need take account in the overhead as well,
2105          * xattr_header + magic + xattr_entry_head */
2106         ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
2107                       LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
2108
2109 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
2110         if (LDISKFS_HAS_INCOMPAT_FEATURE(sb, LDISKFS_FEATURE_INCOMPAT_EA_INODE))
2111                 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
2112                                                                 ea_overhead;
2113         else
2114 #endif
2115                 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
2116 }
2117
2118 /*
2119  * Concurrency: shouldn't matter.
2120  */
2121 static int osd_sync(const struct lu_env *env, struct dt_device *d)
2122 {
2123         int rc;
2124
2125         CDEBUG(D_CACHE, "%s: syncing OSD\n", osd_dt_dev(d)->od_svname);
2126
2127         rc = ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
2128
2129         CDEBUG(D_CACHE, "%s: synced OSD: rc = %d\n", osd_dt_dev(d)->od_svname,
2130                rc);
2131
2132         return rc;
2133 }
2134
2135 /**
2136  * Start commit for OSD device.
2137  *
2138  * An implementation of dt_commit_async method for OSD device.
2139  * Asychronously starts underlayng fs sync and thereby a transaction
2140  * commit.
2141  *
2142  * \param env environment
2143  * \param d dt device
2144  *
2145  * \see dt_device_operations
2146  */
2147 static int osd_commit_async(const struct lu_env *env,
2148                             struct dt_device *d)
2149 {
2150         struct super_block *s = osd_sb(osd_dt_dev(d));
2151         ENTRY;
2152
2153         CDEBUG(D_HA, "%s: async commit OSD\n", osd_dt_dev(d)->od_svname);
2154         RETURN(s->s_op->sync_fs(s, 0));
2155 }
2156
2157 /* Our own copy of the set readonly functions if present, or NU if not. */
2158 static int (*priv_dev_set_rdonly)(struct block_device *bdev);
2159 static int (*priv_dev_check_rdonly)(struct block_device *bdev);
2160 /* static int (*priv_dev_clear_rdonly)(struct block_device *bdev); */
2161
2162 /*
2163  * Concurrency: shouldn't matter.
2164  */
2165 static int osd_ro(const struct lu_env *env, struct dt_device *d)
2166 {
2167         struct super_block *sb = osd_sb(osd_dt_dev(d));
2168         struct block_device *dev = sb->s_bdev;
2169         int rc = -EOPNOTSUPP;
2170         ENTRY;
2171
2172         if (priv_dev_set_rdonly) {
2173                 struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
2174
2175                 rc = 0;
2176                 CERROR("*** setting %s read-only ***\n",
2177                        osd_dt_dev(d)->od_svname);
2178
2179                 if (sb->s_op->freeze_fs) {
2180                         rc = sb->s_op->freeze_fs(sb);
2181                         if (rc)
2182                                 goto out;
2183                 }
2184
2185                 if (jdev && (jdev != dev)) {
2186                         CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
2187                                (long)jdev);
2188                         priv_dev_set_rdonly(jdev);
2189                 }
2190                 CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
2191                 priv_dev_set_rdonly(dev);
2192
2193                 if (sb->s_op->unfreeze_fs)
2194                         sb->s_op->unfreeze_fs(sb);
2195         }
2196
2197 out:
2198         if (rc)
2199                 CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
2200                        osd_dt_dev(d)->od_svname, (long)dev, rc);
2201
2202         RETURN(rc);
2203 }
2204
2205 /**
2206  * Note: we do not count into QUOTA here.
2207  * If we mount with --data_journal we may need more.
2208  */
2209 const int osd_dto_credits_noquota[DTO_NR] = {
2210         /**
2211          * Insert.
2212          * INDEX_EXTRA_TRANS_BLOCKS(8) +
2213          * SINGLEDATA_TRANS_BLOCKS(8)
2214          * XXX Note: maybe iam need more, since iam have more level than
2215          *           EXT3 htree.
2216          */
2217         [DTO_INDEX_INSERT]  = 16,
2218         /**
2219          * Delete
2220          * just modify a single entry, probably merge few within a block
2221          */
2222         [DTO_INDEX_DELETE]  = 1,
2223         /**
2224          * Used for OI scrub
2225          */
2226         [DTO_INDEX_UPDATE]  = 16,
2227         /**
2228          * 4(inode, inode bits, groups, GDT)
2229          *   notice: OI updates are counted separately with DTO_INDEX_INSERT
2230          */
2231         [DTO_OBJECT_CREATE] = 4,
2232         /**
2233          * 4(inode, inode bits, groups, GDT)
2234          *   notice: OI updates are counted separately with DTO_INDEX_DELETE
2235          */
2236         [DTO_OBJECT_DELETE] = 4,
2237         /**
2238          * Attr set credits (inode)
2239          */
2240         [DTO_ATTR_SET_BASE] = 1,
2241         /**
2242          * Xattr set. The same as xattr of EXT3.
2243          * DATA_TRANS_BLOCKS(14)
2244          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
2245          * are also counted in. Do not know why?
2246          */
2247         [DTO_XATTR_SET]     = 14,
2248         /**
2249          * credits for inode change during write.
2250          */
2251         [DTO_WRITE_BASE]    = 3,
2252         /**
2253          * credits for single block write.
2254          */
2255         [DTO_WRITE_BLOCK]   = 14,
2256         /**
2257          * Attr set credits for chown.
2258          * This is extra credits for setattr, and it is null without quota
2259          */
2260         [DTO_ATTR_SET_CHOWN] = 0
2261 };
2262
2263 static const struct dt_device_operations osd_dt_ops = {
2264         .dt_root_get       = osd_root_get,
2265         .dt_statfs         = osd_statfs,
2266         .dt_trans_create   = osd_trans_create,
2267         .dt_trans_start    = osd_trans_start,
2268         .dt_trans_stop     = osd_trans_stop,
2269         .dt_trans_cb_add   = osd_trans_cb_add,
2270         .dt_conf_get       = osd_conf_get,
2271         .dt_sync           = osd_sync,
2272         .dt_ro             = osd_ro,
2273         .dt_commit_async   = osd_commit_async,
2274 };
2275
2276 static void osd_read_lock(const struct lu_env *env, struct dt_object *dt,
2277                           unsigned role)
2278 {
2279         struct osd_object *obj = osd_dt_obj(dt);
2280         struct osd_thread_info *oti = osd_oti_get(env);
2281
2282         LINVRNT(osd_invariant(obj));
2283
2284         LASSERT(obj->oo_owner != env);
2285         down_read_nested(&obj->oo_sem, role);
2286
2287         LASSERT(obj->oo_owner == NULL);
2288         oti->oti_r_locks++;
2289 }
2290
2291 static void osd_write_lock(const struct lu_env *env, struct dt_object *dt,
2292                            unsigned role)
2293 {
2294         struct osd_object *obj = osd_dt_obj(dt);
2295         struct osd_thread_info *oti = osd_oti_get(env);
2296
2297         LINVRNT(osd_invariant(obj));
2298
2299         LASSERT(obj->oo_owner != env);
2300         down_write_nested(&obj->oo_sem, role);
2301
2302         LASSERT(obj->oo_owner == NULL);
2303         obj->oo_owner = env;
2304         oti->oti_w_locks++;
2305 }
2306
2307 static void osd_read_unlock(const struct lu_env *env, struct dt_object *dt)
2308 {
2309         struct osd_object *obj = osd_dt_obj(dt);
2310         struct osd_thread_info *oti = osd_oti_get(env);
2311
2312         LINVRNT(osd_invariant(obj));
2313
2314         LASSERT(oti->oti_r_locks > 0);
2315         oti->oti_r_locks--;
2316         up_read(&obj->oo_sem);
2317 }
2318
2319 static void osd_write_unlock(const struct lu_env *env, struct dt_object *dt)
2320 {
2321         struct osd_object *obj = osd_dt_obj(dt);
2322         struct osd_thread_info *oti = osd_oti_get(env);
2323
2324         LINVRNT(osd_invariant(obj));
2325
2326         LASSERT(obj->oo_owner == env);
2327         LASSERT(oti->oti_w_locks > 0);
2328         oti->oti_w_locks--;
2329         obj->oo_owner = NULL;
2330         up_write(&obj->oo_sem);
2331 }
2332
2333 static int osd_write_locked(const struct lu_env *env, struct dt_object *dt)
2334 {
2335         struct osd_object *obj = osd_dt_obj(dt);
2336
2337         LINVRNT(osd_invariant(obj));
2338
2339         return obj->oo_owner == env;
2340 }
2341
2342 static struct timespec *osd_inode_time(const struct lu_env *env,
2343                                        struct inode *inode, __u64 seconds)
2344 {
2345         struct osd_thread_info  *oti = osd_oti_get(env);
2346         struct timespec         *t   = &oti->oti_time;
2347
2348         t->tv_sec = seconds;
2349         t->tv_nsec = 0;
2350         *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
2351         return t;
2352 }
2353
2354 static void osd_inode_getattr(const struct lu_env *env,
2355                               struct inode *inode, struct lu_attr *attr)
2356 {
2357         attr->la_valid  |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
2358                            LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
2359                            LA_PROJID | LA_FLAGS | LA_NLINK | LA_RDEV |
2360                            LA_BLKSIZE | LA_TYPE;
2361
2362         attr->la_atime   = LTIME_S(inode->i_atime);
2363         attr->la_mtime   = LTIME_S(inode->i_mtime);
2364         attr->la_ctime   = LTIME_S(inode->i_ctime);
2365         attr->la_mode    = inode->i_mode;
2366         attr->la_size    = i_size_read(inode);
2367         attr->la_blocks  = inode->i_blocks;
2368         attr->la_uid     = i_uid_read(inode);
2369         attr->la_gid     = i_gid_read(inode);
2370         attr->la_projid  = i_projid_read(inode);
2371         attr->la_flags   = ll_inode_to_ext_flags(inode->i_flags);
2372         attr->la_nlink   = inode->i_nlink;
2373         attr->la_rdev    = inode->i_rdev;
2374         attr->la_blksize = 1 << inode->i_blkbits;
2375         attr->la_blkbits = inode->i_blkbits;
2376         /*
2377          * Ext4 did not transfer inherit flags from raw inode
2378          * to inode flags, and ext4 internally test raw inode
2379          * @i_flags directly. Instead of patching ext4, we do it here.
2380          */
2381         if (LDISKFS_I(inode)->i_flags & LUSTRE_PROJINHERIT_FL)
2382                 attr->la_flags |= LUSTRE_PROJINHERIT_FL;
2383 }
2384
2385 static int osd_attr_get(const struct lu_env *env,
2386                         struct dt_object *dt,
2387                         struct lu_attr *attr)
2388 {
2389         struct osd_object *obj = osd_dt_obj(dt);
2390
2391         if (unlikely(!dt_object_exists(dt)))
2392                 return -ENOENT;
2393         if (unlikely(obj->oo_destroyed))
2394                 return -ENOENT;
2395
2396         LASSERT(!dt_object_remote(dt));
2397         LINVRNT(osd_invariant(obj));
2398
2399         spin_lock(&obj->oo_guard);
2400         osd_inode_getattr(env, obj->oo_inode, attr);
2401         if (obj->oo_lma_flags & LUSTRE_ORPHAN_FL)
2402                 attr->la_flags |= LUSTRE_ORPHAN_FL;
2403         spin_unlock(&obj->oo_guard);
2404
2405         return 0;
2406 }
2407
2408 static int osd_declare_attr_qid(const struct lu_env *env,
2409                                 struct osd_object *obj,
2410                                 struct osd_thandle *oh, long long bspace,
2411                                 qid_t old_id, qid_t new_id, bool enforce,
2412                                 unsigned type)
2413 {
2414         int rc;
2415         struct osd_thread_info *info = osd_oti_get(env);
2416         struct lquota_id_info  *qi = &info->oti_qi;
2417
2418         qi->lqi_type = type;
2419         /* inode accounting */
2420         qi->lqi_is_blk = false;
2421
2422         /* one more inode for the new id ... */
2423         qi->lqi_id.qid_uid = new_id;
2424         qi->lqi_space      = 1;
2425         /* Reserve credits for the new id */
2426         rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
2427         if (rc == -EDQUOT || rc == -EINPROGRESS)
2428                 rc = 0;
2429         if (rc)
2430                 RETURN(rc);
2431
2432         /* and one less inode for the current id */
2433         qi->lqi_id.qid_uid = old_id;
2434         qi->lqi_space      = -1;
2435         rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2436         if (rc == -EDQUOT || rc == -EINPROGRESS)
2437                 rc = 0;
2438         if (rc)
2439                 RETURN(rc);
2440
2441         /* block accounting */
2442         qi->lqi_is_blk = true;
2443
2444         /* more blocks for the new id ... */
2445         qi->lqi_id.qid_uid = new_id;
2446         qi->lqi_space      = bspace;
2447         /*
2448          * Credits for the new uid has been reserved, re-use "obj"
2449          * to save credit reservation.
2450          */
2451         rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2452         if (rc == -EDQUOT || rc == -EINPROGRESS)
2453                 rc = 0;
2454         if (rc)
2455                 RETURN(rc);
2456
2457         /* and finally less blocks for the current uid */
2458         qi->lqi_id.qid_uid = old_id;
2459         qi->lqi_space      = -bspace;
2460         rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2461         if (rc == -EDQUOT || rc == -EINPROGRESS)
2462                 rc = 0;
2463
2464         RETURN(rc);
2465 }
2466
2467 static int osd_declare_attr_set(const struct lu_env *env,
2468                                 struct dt_object *dt,
2469                                 const struct lu_attr *attr,
2470                                 struct thandle *handle)
2471 {
2472         struct osd_thandle     *oh;
2473         struct osd_object      *obj;
2474         qid_t                   uid;
2475         qid_t                   gid;
2476         long long               bspace;
2477         int                     rc = 0;
2478         bool                    enforce;
2479         ENTRY;
2480
2481         LASSERT(dt != NULL);
2482         LASSERT(handle != NULL);
2483
2484         obj = osd_dt_obj(dt);
2485         LASSERT(osd_invariant(obj));
2486
2487         oh = container_of0(handle, struct osd_thandle, ot_super);
2488         LASSERT(oh->ot_handle == NULL);
2489
2490         osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
2491                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2492
2493         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2494                              osd_dto_credits_noquota[DTO_XATTR_SET]);
2495
2496         if (attr == NULL || obj->oo_inode == NULL)
2497                 RETURN(rc);
2498
2499         bspace   = obj->oo_inode->i_blocks;
2500         bspace <<= obj->oo_inode->i_sb->s_blocksize_bits;
2501         bspace   = toqb(bspace);
2502
2503         /* Changing ownership is always preformed by super user, it should not
2504          * fail with EDQUOT.
2505          *
2506          * We still need to call the osd_declare_qid() to calculate the journal
2507          * credits for updating quota accounting files and to trigger quota
2508          * space adjustment once the operation is completed.*/
2509         if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
2510                 /* USERQUOTA */
2511                 uid = i_uid_read(obj->oo_inode);
2512                 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
2513                 rc = osd_declare_attr_qid(env, obj, oh, bspace, uid,
2514                                           attr->la_uid, enforce, USRQUOTA);
2515                 if (rc)
2516                         RETURN(rc);
2517
2518                 gid = i_gid_read(obj->oo_inode);
2519                 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
2520                 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2521                                           i_gid_read(obj->oo_inode),
2522                                           attr->la_gid, enforce, GRPQUOTA);
2523                 if (rc)
2524                         RETURN(rc);
2525
2526         }
2527 #ifdef HAVE_PROJECT_QUOTA
2528         if (attr->la_valid & LA_PROJID) {
2529                 __u32 projid = i_projid_read(obj->oo_inode);
2530                 enforce = (attr->la_valid & LA_PROJID) &&
2531                                         (attr->la_projid != projid);
2532                 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2533                                           (qid_t)projid, (qid_t)attr->la_projid,
2534                                           enforce, PRJQUOTA);
2535                 if (rc)
2536                         RETURN(rc);
2537         }
2538 #endif
2539         RETURN(rc);
2540 }
2541
2542 static int osd_inode_setattr(const struct lu_env *env,
2543                              struct inode *inode, const struct lu_attr *attr)
2544 {
2545         __u64 bits = attr->la_valid;
2546
2547         /* Only allow set size for regular file */
2548         if (!S_ISREG(inode->i_mode))
2549                 bits &= ~(LA_SIZE | LA_BLOCKS);
2550
2551         if (bits == 0)
2552                 return 0;
2553
2554         if (bits & LA_ATIME)
2555                 inode->i_atime  = *osd_inode_time(env, inode, attr->la_atime);
2556         if (bits & LA_CTIME)
2557                 inode->i_ctime  = *osd_inode_time(env, inode, attr->la_ctime);
2558         if (bits & LA_MTIME)
2559                 inode->i_mtime  = *osd_inode_time(env, inode, attr->la_mtime);
2560         if (bits & LA_SIZE) {
2561                 spin_lock(&inode->i_lock);
2562                 LDISKFS_I(inode)->i_disksize = attr->la_size;
2563                 i_size_write(inode, attr->la_size);
2564                 spin_unlock(&inode->i_lock);
2565         }
2566
2567         /* OSD should not change "i_blocks" which is used by quota.
2568          * "i_blocks" should be changed by ldiskfs only. */
2569         if (bits & LA_MODE)
2570                 inode->i_mode = (inode->i_mode & S_IFMT) |
2571                                 (attr->la_mode & ~S_IFMT);
2572         if (bits & LA_UID)
2573                 i_uid_write(inode, attr->la_uid);
2574         if (bits & LA_GID)
2575                 i_gid_write(inode, attr->la_gid);
2576         if (bits & LA_PROJID)
2577                 i_projid_write(inode, attr->la_projid);
2578         if (bits & LA_NLINK)
2579                 set_nlink(inode, attr->la_nlink);
2580         if (bits & LA_RDEV)
2581                 inode->i_rdev = attr->la_rdev;
2582
2583         if (bits & LA_FLAGS) {
2584                 /* always keep S_NOCMTIME */
2585                 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
2586                                  S_NOCMTIME;
2587                 /*
2588                  * Ext4 did not transfer inherit flags from
2589                  * @inode->i_flags to raw inode i_flags when writing
2590                  * flags, we do it explictly here.
2591                  */
2592                 if (attr->la_flags & LUSTRE_PROJINHERIT_FL)
2593                         LDISKFS_I(inode)->i_flags |= LUSTRE_PROJINHERIT_FL;
2594                 else
2595                         LDISKFS_I(inode)->i_flags &= ~LUSTRE_PROJINHERIT_FL;
2596         }
2597         return 0;
2598 }
2599
2600 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
2601 {
2602         int rc;
2603
2604         if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
2605             (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
2606                 struct iattr    iattr;
2607
2608                 ll_vfs_dq_init(inode);
2609                 iattr.ia_valid = 0;
2610                 if (attr->la_valid & LA_UID)
2611                         iattr.ia_valid |= ATTR_UID;
2612                 if (attr->la_valid & LA_GID)
2613                         iattr.ia_valid |= ATTR_GID;
2614                 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
2615                 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
2616
2617                 rc = ll_vfs_dq_transfer(inode, &iattr);
2618                 if (rc) {
2619                         CERROR("%s: quota transfer failed: rc = %d. Is quota "
2620                                "enforcement enabled on the ldiskfs "
2621                                "filesystem?\n", inode->i_sb->s_id, rc);
2622                         return rc;
2623                 }
2624         }
2625
2626         /* Handle project id transfer here properly */
2627         if (attr->la_valid & LA_PROJID &&
2628             attr->la_projid != i_projid_read(inode)) {
2629 #ifdef HAVE_PROJECT_QUOTA
2630                 rc = ldiskfs_transfer_project(inode, attr->la_projid);
2631 #else
2632                 rc = -ENOTSUPP;
2633 #endif
2634                 if (rc) {
2635                         CERROR("%s: quota transfer failed: rc = %d. Is project "
2636                                "enforcement enabled on the ldiskfs "
2637                                "filesystem?\n", inode->i_sb->s_id, rc);
2638                         return rc;
2639                 }
2640         }
2641         return 0;
2642 }
2643
2644 static int osd_attr_set(const struct lu_env *env,
2645                         struct dt_object *dt,
2646                         const struct lu_attr *attr,
2647                         struct thandle *handle)
2648 {
2649         struct osd_object *obj = osd_dt_obj(dt);
2650         struct inode      *inode;
2651         int rc;
2652
2653         if (!dt_object_exists(dt))
2654                 return -ENOENT;
2655
2656         LASSERT(handle != NULL);
2657         LASSERT(!dt_object_remote(dt));
2658         LASSERT(osd_invariant(obj));
2659
2660         osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
2661
2662         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING)) {
2663                 struct osd_thread_info  *oti  = osd_oti_get(env);
2664                 const struct lu_fid     *fid0 = lu_object_fid(&dt->do_lu);
2665                 struct lu_fid           *fid1 = &oti->oti_fid;
2666                 struct osd_inode_id     *id   = &oti->oti_id;
2667                 struct iam_path_descr   *ipd;
2668                 struct iam_container    *bag;
2669                 struct osd_thandle      *oh;
2670                 int                      rc;
2671
2672                 fid_cpu_to_be(fid1, fid0);
2673                 memset(id, 1, sizeof(*id));
2674                 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
2675                                   fid0)->oi_dir.od_container;
2676                 ipd = osd_idx_ipd_get(env, bag);
2677                 if (unlikely(ipd == NULL))
2678                         RETURN(-ENOMEM);
2679
2680                 oh = container_of0(handle, struct osd_thandle, ot_super);
2681                 rc = iam_update(oh->ot_handle, bag, (const struct iam_key *)fid1,
2682                                 (const struct iam_rec *)id, ipd);
2683                 osd_ipd_put(env, bag, ipd);
2684                 return(rc > 0 ? 0 : rc);
2685         }
2686
2687         inode = obj->oo_inode;
2688
2689         rc = osd_quota_transfer(inode, attr);
2690         if (rc)
2691                 return rc;
2692
2693         spin_lock(&obj->oo_guard);
2694         rc = osd_inode_setattr(env, inode, attr);
2695         spin_unlock(&obj->oo_guard);
2696         if (rc != 0)
2697                 GOTO(out, rc);
2698
2699         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2700
2701         if (!(attr->la_valid & LA_FLAGS))
2702                 GOTO(out, rc);
2703
2704         /* Let's check if there are extra flags need to be set into LMA */
2705         if (attr->la_flags & LUSTRE_LMA_FL_MASKS) {
2706                 struct osd_thread_info *info = osd_oti_get(env);
2707                 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
2708
2709                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry,
2710                                  &info->oti_ost_attrs);
2711                 if (rc)
2712                         GOTO(out, rc);
2713
2714                 lma->lma_incompat |=
2715                         lustre_to_lma_flags(attr->la_flags);
2716                 lustre_lma_swab(lma);
2717                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA,
2718                                      lma, sizeof(*lma), XATTR_REPLACE);
2719                 if (rc != 0) {
2720                         struct osd_device *osd = osd_obj2dev(obj);
2721
2722                         CWARN("%s: set "DFID" lma flags %u failed: rc = %d\n",
2723                               osd_name(osd), PFID(lu_object_fid(&dt->do_lu)),
2724                               lma->lma_incompat, rc);
2725                 } else {
2726                         obj->oo_lma_flags =
2727                                 attr->la_flags & LUSTRE_LMA_FL_MASKS;
2728                 }
2729                 osd_trans_exec_check(env, handle, OSD_OT_XATTR_SET);
2730         }
2731 out:
2732         osd_trans_exec_check(env, handle, OSD_OT_ATTR_SET);
2733
2734         return rc;
2735 }
2736
2737 static struct dentry *osd_child_dentry_get(const struct lu_env *env,
2738                                            struct osd_object *obj,
2739                                            const char *name, const int namelen)
2740 {
2741         return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
2742 }
2743
2744 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
2745                       umode_t mode, struct dt_allocation_hint *hint,
2746                       struct thandle *th)
2747 {
2748         int result;
2749         struct osd_device  *osd = osd_obj2dev(obj);
2750         struct osd_thandle *oth;
2751         struct dt_object   *parent = NULL;
2752         struct inode       *inode;
2753
2754         LINVRNT(osd_invariant(obj));
2755         LASSERT(obj->oo_inode == NULL);
2756         LASSERT(obj->oo_hl_head == NULL);
2757
2758         if (S_ISDIR(mode) && ldiskfs_pdo) {
2759                 obj->oo_hl_head =ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
2760                 if (obj->oo_hl_head == NULL)
2761                         return -ENOMEM;
2762         }
2763
2764         oth = container_of(th, struct osd_thandle, ot_super);
2765         LASSERT(oth->ot_handle->h_transaction != NULL);
2766
2767         if (hint != NULL && hint->dah_parent != NULL &&
2768             !dt_object_remote(hint->dah_parent))
2769                 parent = hint->dah_parent;
2770
2771         inode = ldiskfs_create_inode(oth->ot_handle,
2772                                      parent ? osd_dt_obj(parent)->oo_inode :
2773                                               osd_sb(osd)->s_root->d_inode,
2774                                      mode);
2775         if (!IS_ERR(inode)) {
2776                 /* Do not update file c/mtime in ldiskfs. */
2777                 inode->i_flags |= S_NOCMTIME;
2778
2779                 /* For new created object, it must be consistent,
2780                  * and it is unnecessary to scrub against it. */
2781                 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
2782
2783                 obj->oo_inode = inode;
2784                 result = 0;
2785         } else {
2786                 if (obj->oo_hl_head != NULL) {
2787                         ldiskfs_htree_lock_head_free(obj->oo_hl_head);
2788                         obj->oo_hl_head = NULL;
2789                 }
2790                 result = PTR_ERR(inode);
2791         }
2792         LINVRNT(osd_invariant(obj));
2793         return result;
2794 }
2795
2796 enum {
2797         OSD_NAME_LEN = 255
2798 };
2799
2800 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
2801                      struct lu_attr *attr,
2802                      struct dt_allocation_hint *hint,
2803                      struct dt_object_format *dof,
2804                      struct thandle *th)
2805 {
2806         int result;
2807         struct osd_thandle *oth;
2808         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX | S_ISGID));
2809
2810         LASSERT(S_ISDIR(attr->la_mode));
2811
2812         oth = container_of(th, struct osd_thandle, ot_super);
2813         LASSERT(oth->ot_handle->h_transaction != NULL);
2814         result = osd_mkfile(info, obj, mode, hint, th);
2815
2816         return result;
2817 }
2818
2819 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
2820                         struct lu_attr *attr,
2821                         struct dt_allocation_hint *hint,
2822                         struct dt_object_format *dof,
2823                         struct thandle *th)
2824 {
2825         int result;
2826         struct osd_thandle *oth;
2827         const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
2828
2829         __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
2830
2831         LASSERT(S_ISREG(attr->la_mode));
2832
2833         oth = container_of(th, struct osd_thandle, ot_super);
2834         LASSERT(oth->ot_handle->h_transaction != NULL);
2835
2836         result = osd_mkfile(info, obj, mode, hint, th);
2837         if (result == 0) {
2838                 LASSERT(obj->oo_inode != NULL);
2839                 if (feat->dif_flags & DT_IND_VARKEY)
2840                         result = iam_lvar_create(obj->oo_inode,
2841                                                  feat->dif_keysize_max,
2842                                                  feat->dif_ptrsize,
2843                                                  feat->dif_recsize_max,
2844                                                  oth->ot_handle);
2845                 else
2846                         result = iam_lfix_create(obj->oo_inode,
2847                                                  feat->dif_keysize_max,
2848                                                  feat->dif_ptrsize,
2849                                                  feat->dif_recsize_max,
2850                                                  oth->ot_handle);
2851
2852         }
2853         return result;
2854 }
2855
2856 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
2857                      struct lu_attr *attr,
2858                      struct dt_allocation_hint *hint,
2859                      struct dt_object_format *dof,
2860                      struct thandle *th)
2861 {
2862         LASSERT(S_ISREG(attr->la_mode));
2863         return osd_mkfile(info, obj, (attr->la_mode &
2864                                (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2865 }
2866
2867 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
2868                      struct lu_attr *attr,
2869                      struct dt_allocation_hint *hint,
2870                      struct dt_object_format *dof,
2871                      struct thandle *th)
2872 {
2873         LASSERT(S_ISLNK(attr->la_mode));
2874         return osd_mkfile(info, obj, (attr->la_mode &
2875                               (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2876 }
2877
2878 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
2879                      struct lu_attr *attr,
2880                      struct dt_allocation_hint *hint,
2881                      struct dt_object_format *dof,
2882                      struct thandle *th)
2883 {
2884         umode_t mode = attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX);
2885         int result;
2886
2887         LINVRNT(osd_invariant(obj));
2888         LASSERT(obj->oo_inode == NULL);
2889         LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
2890                 S_ISFIFO(mode) || S_ISSOCK(mode));
2891
2892         result = osd_mkfile(info, obj, mode, hint, th);
2893         if (result == 0) {
2894                 LASSERT(obj->oo_inode != NULL);
2895                 /*
2896                  * This inode should be marked dirty for i_rdev.  Currently
2897                  * that is done in the osd_attr_init().
2898                  */
2899                 init_special_inode(obj->oo_inode, obj->oo_inode->i_mode,
2900                                    attr->la_rdev);
2901         }
2902         LINVRNT(osd_invariant(obj));
2903         return result;
2904 }
2905
2906 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
2907                               struct lu_attr *,
2908                               struct dt_allocation_hint *hint,
2909                               struct dt_object_format *dof,
2910                               struct thandle *);
2911
2912 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
2913 {
2914         osd_obj_type_f result;
2915
2916         switch (type) {
2917         case DFT_DIR:
2918                 result = osd_mkdir;
2919                 break;
2920         case DFT_REGULAR:
2921                 result = osd_mkreg;
2922                 break;
2923         case DFT_SYM:
2924                 result = osd_mksym;
2925                 break;
2926         case DFT_NODE:
2927                 result = osd_mknod;
2928                 break;
2929         case DFT_INDEX:
2930                 result = osd_mk_index;
2931                 break;
2932
2933         default:
2934                 LBUG();
2935                 break;
2936         }
2937         return result;
2938 }
2939
2940
2941 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
2942                         struct dt_object *parent, struct dt_object *child,
2943                         umode_t child_mode)
2944 {
2945         LASSERT(ah);
2946
2947         ah->dah_parent = parent;
2948         ah->dah_mode = child_mode;
2949
2950         if (parent != NULL && !dt_object_remote(parent)) {
2951                 /* will help to find FID->ino at dt_insert("..") */
2952                 struct osd_object *pobj = osd_dt_obj(parent);
2953                 osd_idc_find_and_init(env, osd_obj2dev(pobj), pobj);
2954         }
2955 }
2956
2957 static void osd_attr_init(struct osd_thread_info *info, struct osd_object *obj,
2958                           struct lu_attr *attr, struct dt_object_format *dof)
2959 {
2960         struct inode   *inode = obj->oo_inode;
2961         __u64           valid = attr->la_valid;
2962         int             result;
2963
2964         attr->la_valid &= ~(LA_TYPE | LA_MODE);
2965
2966         if (dof->dof_type != DFT_NODE)
2967                 attr->la_valid &= ~LA_RDEV;
2968         if ((valid & LA_ATIME) && (attr->la_atime == LTIME_S(inode->i_atime)))
2969                 attr->la_valid &= ~LA_ATIME;
2970         if ((valid & LA_CTIME) && (attr->la_ctime == LTIME_S(inode->i_ctime)))
2971                 attr->la_valid &= ~LA_CTIME;
2972         if ((valid & LA_MTIME) && (attr->la_mtime == LTIME_S(inode->i_mtime)))
2973                 attr->la_valid &= ~LA_MTIME;
2974
2975         result = osd_quota_transfer(inode, attr);
2976         if (result)
2977                 return;
2978
2979         if (attr->la_valid != 0) {
2980                 result = osd_inode_setattr(info->oti_env, inode, attr);
2981                 /*
2982                  * The osd_inode_setattr() should always succeed here.  The
2983                  * only error that could be returned is EDQUOT when we are
2984                  * trying to change the UID or GID of the inode. However, this
2985                  * should not happen since quota enforcement is no longer
2986                  * enabled on ldiskfs (lquota takes care of it).
2987                  */
2988                 LASSERTF(result == 0, "%d\n", result);
2989                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2990         }
2991
2992         attr->la_valid = valid;
2993 }
2994
2995 /**
2996  * Helper function for osd_create()
2997  *
2998  * \retval 0, on success
2999  */
3000 static int __osd_create(struct osd_thread_info *info, struct osd_object *obj,
3001                         struct lu_attr *attr, struct dt_allocation_hint *hint,
3002                         struct dt_object_format *dof, struct thandle *th)
3003 {
3004         int     result;
3005         __u32   umask;
3006
3007         osd_trans_exec_op(info->oti_env, th, OSD_OT_CREATE);
3008
3009         /* we drop umask so that permissions we pass are not affected */
3010         umask = current->fs->umask;
3011         current->fs->umask = 0;
3012
3013         result = osd_create_type_f(dof->dof_type)(info, obj, attr, hint, dof,
3014                                                   th);
3015         if (likely(obj->oo_inode != NULL)) {
3016                 LASSERT(obj->oo_inode->i_state & I_NEW);
3017
3018                 /* Unlock the inode before attr initialization to avoid
3019                  * unnecessary dqget operations. LU-6378 */
3020                 unlock_new_inode(obj->oo_inode);
3021         }
3022
3023         if (likely(result == 0)) {
3024                 osd_attr_init(info, obj, attr, dof);
3025                 osd_object_init0(obj);
3026         }
3027
3028         /* restore previous umask value */
3029         current->fs->umask = umask;
3030
3031         osd_trans_exec_check(info->oti_env, th, OSD_OT_CREATE);
3032
3033         return result;
3034 }
3035
3036 /**
3037  * Helper function for osd_create()
3038  *
3039  * \retval 0, on success
3040  */
3041 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
3042                            const struct lu_fid *fid, struct thandle *th)
3043 {
3044         struct osd_thread_info *info = osd_oti_get(env);
3045         struct osd_inode_id    *id   = &info->oti_id;
3046         struct osd_device      *osd  = osd_obj2dev(obj);
3047         struct osd_thandle     *oh;
3048         int                     rc;
3049
3050         LASSERT(obj->oo_inode != NULL);
3051
3052         oh = container_of0(th, struct osd_thandle, ot_super);
3053         LASSERT(oh->ot_handle);
3054         osd_trans_exec_op(env, th, OSD_OT_INSERT);
3055
3056         osd_id_gen(id, obj->oo_inode->i_ino, obj->oo_inode->i_generation);
3057         rc = osd_oi_insert(info, osd, fid, id, oh->ot_handle,
3058                            OI_CHECK_FLD, NULL);
3059         osd_trans_exec_check(env, th, OSD_OT_INSERT);
3060
3061         return rc;
3062 }
3063
3064 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
3065                    u64 seq, struct lu_seq_range *range)
3066 {
3067         struct seq_server_site  *ss = osd_seq_site(osd);
3068
3069         if (fid_seq_is_idif(seq)) {
3070                 fld_range_set_ost(range);
3071                 range->lsr_index = idif_ost_idx(seq);
3072                 return 0;
3073         }
3074
3075         if (!fid_seq_in_fldb(seq)) {
3076                 fld_range_set_mdt(range);
3077                 if (ss != NULL)
3078                         /* FIXME: If ss is NULL, it suppose not get lsr_index
3079                          * at all */
3080                         range->lsr_index = ss->ss_node_id;
3081                 return 0;
3082         }
3083
3084         LASSERT(ss != NULL);
3085         fld_range_set_any(range);
3086         /* OSD will only do local fld lookup */
3087         return fld_local_lookup(env, ss->ss_server_fld, seq, range);
3088 }
3089
3090 static int osd_declare_create(const struct lu_env *env, struct dt_object *dt,
3091                               struct lu_attr *attr,
3092                               struct dt_allocation_hint *hint,
3093                               struct dt_object_format *dof,
3094                               struct thandle *handle)
3095 {
3096         struct osd_thandle *oh;
3097         int rc;
3098         ENTRY;
3099
3100         LASSERT(handle != NULL);
3101
3102         oh = container_of0(handle, struct osd_thandle, ot_super);
3103         LASSERT(oh->ot_handle == NULL);
3104
3105         /* EA object consumes more credits than regular object: osd_mk_index
3106          * vs. osd_mkreg: osd_mk_index will create 2 blocks for root_node and
3107          * leaf_node, could involves the block, block bitmap, groups, GDT
3108          * change for each block, so add 4 * 2 credits in that case. */
3109         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
3110                              osd_dto_credits_noquota[DTO_OBJECT_CREATE] +
3111                              (dof->dof_type == DFT_INDEX) ? 4 * 2 : 0);
3112         /* Reuse idle OI block may cause additional one OI block
3113          * to be changed. */
3114         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
3115                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
3116
3117         if (!attr)
3118                 RETURN(0);
3119
3120         rc = osd_declare_inode_qid(env, attr->la_uid, attr->la_gid,
3121                                    attr->la_projid, 1, oh, osd_dt_obj(dt),
3122                                    NULL, OSD_QID_INODE);
3123         if (rc != 0)
3124                 RETURN(rc);
3125
3126         /* will help to find FID->ino mapping at dt_insert() */
3127         rc = osd_idc_find_and_init(env, osd_obj2dev(osd_dt_obj(dt)),
3128                                    osd_dt_obj(dt));
3129
3130         RETURN(rc);
3131 }
3132
3133 /**
3134  * Called to destroy on-disk representation of the object
3135  *
3136  * Concurrency: must be locked
3137  */
3138 static int osd_declare_destroy(const struct lu_env *env, struct dt_object *dt,
3139                                struct thandle *th)
3140 {
3141         struct osd_object  *obj = osd_dt_obj(dt);
3142         struct inode       *inode = obj->oo_inode;
3143         struct osd_thandle *oh;
3144         int                 rc;
3145         ENTRY;
3146
3147         if (inode == NULL)
3148                 RETURN(-ENOENT);
3149
3150         oh = container_of0(th, struct osd_thandle, ot_super);
3151         LASSERT(oh->ot_handle == NULL);
3152
3153         osd_trans_declare_op(env, oh, OSD_OT_DESTROY,
3154                              osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
3155         /* Recycle idle OI leaf may cause additional three OI blocks
3156          * to be changed. */
3157         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
3158                 osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3159                              osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
3160         /* one less inode */
3161         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
3162                                    i_projid_read(inode), -1, oh, obj, NULL,
3163                                    OSD_QID_INODE);
3164         if (rc)
3165                 RETURN(rc);
3166         /* data to be truncated */
3167         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
3168                                    i_projid_read(inode), 0, oh, obj, NULL,
3169                                    OSD_QID_BLK);
3170         if (rc)
3171                 RETURN(rc);
3172
3173         /* will help to find FID->ino when this object is being
3174          * added to PENDING/ */
3175         rc = osd_idc_find_and_init(env, osd_obj2dev(obj), obj);
3176
3177         RETURN(rc);
3178 }
3179
3180 static int osd_destroy(const struct lu_env *env, struct dt_object *dt,
3181                        struct thandle *th)
3182 {
3183         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
3184         struct osd_object *obj = osd_dt_obj(dt);
3185         struct inode *inode = obj->oo_inode;
3186         struct osd_device *osd = osd_obj2dev(obj);
3187         struct osd_thandle *oh;
3188         int result;
3189         ENTRY;
3190
3191         oh = container_of0(th, struct osd_thandle, ot_super);
3192         LASSERT(oh->ot_handle);
3193         LASSERT(inode);
3194         LASSERT(!lu_object_is_dying(dt->do_lu.lo_header));
3195
3196         if (unlikely(fid_is_acct(fid)))
3197                 RETURN(-EPERM);
3198
3199         if (S_ISDIR(inode->i_mode)) {
3200                 LASSERT(osd_inode_unlinked(inode) || inode->i_nlink == 1 ||
3201                         inode->i_nlink == 2);
3202                 /* it will check/delete the inode from remote parent,
3203                  * how to optimize it? unlink performance impaction XXX */
3204                 result = osd_delete_from_remote_parent(env, osd, obj, oh);
3205                 if (result != 0)
3206                         CERROR("%s: delete inode "DFID": rc = %d\n",
3207                                osd_name(osd), PFID(fid), result);
3208
3209                 spin_lock(&obj->oo_guard);
3210                 clear_nlink(inode);
3211                 spin_unlock(&obj->oo_guard);
3212                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3213         }
3214
3215         osd_trans_exec_op(env, th, OSD_OT_DESTROY);
3216
3217         ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_DESTROY);
3218
3219         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
3220                 result = osd_oi_delete(osd_oti_get(env), osd, fid,
3221                                        oh->ot_handle, OI_CHECK_FLD);
3222
3223         osd_trans_exec_check(env, th, OSD_OT_DESTROY);
3224         /* XXX: add to ext3 orphan list */
3225         /* rc = ext3_orphan_add(handle_t *handle, struct inode *inode) */
3226
3227         /* not needed in the cache anymore */
3228         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
3229         obj->oo_destroyed = 1;
3230
3231         RETURN(0);
3232 }
3233
3234 /**
3235  * Put the fid into lustre_mdt_attrs, and then place the structure
3236  * inode's ea. This fid should not be altered during the life time
3237  * of the inode.
3238  *
3239  * \retval +ve, on success
3240  * \retval -ve, on error
3241  *
3242  * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
3243  */
3244 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
3245                    const struct lu_fid *fid, __u32 compat, __u32 incompat)
3246 {
3247         struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
3248         struct lustre_mdt_attrs *lma = &loa->loa_lma;
3249         int rc;
3250         ENTRY;
3251
3252         if (OBD_FAIL_CHECK(OBD_FAIL_FID_INLMA))
3253                 RETURN(0);
3254
3255         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_OST_EA_FID_SET))
3256                 rc = -ENOMEM;
3257
3258         lustre_loa_init(loa, fid, compat, incompat);
3259         lustre_loa_swab(loa, false);
3260
3261         /* For the OST device with 256 bytes inode size by default,
3262          * the PFID EA will be stored together with LMA EA to avoid
3263          * performance trouble. Otherwise the PFID EA can be stored
3264          * independently. LU-8998 */
3265         if ((compat & LMAC_FID_ON_OST) &&
3266             LDISKFS_INODE_SIZE(inode->i_sb) <= 256)
3267                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, loa,
3268                                      sizeof(*loa), XATTR_CREATE);
3269         else
3270                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
3271                                      sizeof(*lma), XATTR_CREATE);
3272         /* LMA may already exist, but we need to check that all the
3273          * desired compat/incompat flags have been added. */
3274         if (unlikely(rc == -EEXIST)) {
3275                 rc = __osd_xattr_get(inode, &info->oti_obj_dentry,
3276                                      XATTR_NAME_LMA, (void *)loa, sizeof(*loa));
3277                 if (rc < 0)
3278                         RETURN(rc);
3279
3280                 if (rc < sizeof(*lma))
3281                         RETURN(-EINVAL);
3282
3283                 lustre_loa_swab(loa, true);
3284                 if (lu_fid_eq(fid, &lma->lma_self_fid) &&
3285                     ((compat == 0 && incompat == 0) ||
3286                      (!(~lma->lma_compat & compat) &&
3287                       !(~lma->lma_incompat & incompat))))
3288                         RETURN(0);
3289
3290                 lma->lma_self_fid = *fid;
3291                 lma->lma_compat |= compat;
3292                 lma->lma_incompat |= incompat;
3293                 if (rc == sizeof(*lma)) {
3294                         lustre_lma_swab(lma);
3295                         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
3296                                              sizeof(*lma), XATTR_REPLACE);
3297                 } else {
3298                         lustre_loa_swab(loa, false);
3299                         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, loa,
3300                                              sizeof(*loa), XATTR_REPLACE);
3301                 }
3302         }
3303
3304         RETURN(rc);
3305 }
3306
3307 /**
3308  * ldiskfs supports fid in dirent, it is passed in dentry->d_fsdata.
3309  * lustre 1.8 also uses d_fsdata for passing other info to ldiskfs.
3310  * To have compatilibility with 1.8 ldiskfs driver we need to have
3311  * magic number at start of fid data.
3312  * \ldiskfs_dentry_param is used only to pass fid from osd to ldiskfs.
3313  * its inmemory API.
3314  */
3315 static void osd_get_ldiskfs_dirent_param(struct ldiskfs_dentry_param *param,
3316                                          const struct lu_fid *fid)
3317 {
3318         if (!fid_is_namespace_visible(fid) ||
3319             OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF)) {
3320                 param->edp_magic = 0;
3321                 return;
3322         }
3323
3324         param->edp_magic = LDISKFS_LUFID_MAGIC;
3325         param->edp_len =  sizeof(struct lu_fid) + 1;
3326         fid_cpu_to_be((struct lu_fid *)param->edp_data, (struct lu_fid *)fid);
3327 }
3328
3329 /**
3330  * Try to read the fid from inode ea into dt_rec.
3331  *
3332  * \param fid object fid.
3333  *
3334  * \retval 0 on success
3335  */
3336 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
3337                           __u32 ino, struct lu_fid *fid,
3338                           struct osd_inode_id *id)
3339 {
3340         struct osd_thread_info *info  = osd_oti_get(env);
3341         struct inode           *inode;
3342         ENTRY;
3343
3344         osd_id_gen(id, ino, OSD_OII_NOGEN);
3345         inode = osd_iget_fid(info, osd_obj2dev(obj), id, fid);
3346         if (IS_ERR(inode))
3347                 RETURN(PTR_ERR(inode));
3348
3349         iput(inode);
3350         RETURN(0);
3351 }
3352
3353 static int osd_add_dot_dotdot_internal(struct osd_thread_info *info,
3354                                         struct inode *dir,
3355                                         struct inode *parent_dir,
3356                                         const struct lu_fid *dot_fid,
3357                                         const struct lu_fid *dot_dot_fid,
3358                                         struct osd_thandle *oth)
3359 {
3360         struct ldiskfs_dentry_param *dot_ldp;
3361         struct ldiskfs_dentry_param *dot_dot_ldp;
3362         __u32 saved_nlink = dir->i_nlink;
3363         int rc;
3364
3365         dot_dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp2;
3366         osd_get_ldiskfs_dirent_param(dot_dot_ldp, dot_dot_fid);
3367
3368         dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
3369         dot_ldp->edp_magic = 0;
3370
3371         rc = ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir,
3372                                     dir, dot_ldp, dot_dot_ldp);
3373         /* The ldiskfs_add_dot_dotdot() may dir->i_nlink as 2, then
3374          * the subseqent ref_add() will increase the dir->i_nlink
3375          * as 3. That is incorrect for new created directory.
3376          *
3377          * It looks like hack, because we want to make the OSD API
3378          * to be order-independent for new created directory object
3379          * between dt_insert(..) and ref_add() operations.
3380          *
3381          * Here, we only restore the in-RAM dir-inode's nlink attr,
3382          * becuase if the nlink attr is not 2, then there will be
3383          * ref_add() called following the dt_insert(..), such call
3384          * will make both the in-RAM and on-disk dir-inode's nlink
3385          * attr to be set as 2. LU-7447 */
3386         set_nlink(dir, saved_nlink);
3387         return rc;
3388 }
3389
3390 /**
3391  * Create an local agent inode for remote entry
3392  */
3393 static struct inode *osd_create_local_agent_inode(const struct lu_env *env,
3394                                                   struct osd_device *osd,
3395                                                   struct osd_object *pobj,
3396                                                   const struct lu_fid *fid,
3397                                                   __u32 type,
3398                                                   struct thandle *th)
3399 {
3400         struct osd_thread_info  *info = osd_oti_get(env);
3401         struct inode            *local;
3402         struct osd_thandle      *oh;
3403         int                     rc;
3404         ENTRY;
3405
3406         LASSERT(th);
3407         oh = container_of(th, struct osd_thandle, ot_super);
3408         LASSERT(oh->ot_handle->h_transaction != NULL);
3409
3410         local = ldiskfs_create_inode(oh->ot_handle, pobj->oo_inode, type);
3411         if (IS_ERR(local)) {
3412                 CERROR("%s: create local error %d\n", osd_name(osd),
3413                        (int)PTR_ERR(local));
3414                 RETURN(local);
3415         }
3416
3417         /* restore i_gid in case S_ISGID is set, we will inherit S_ISGID and set
3418          * correct gid on remote file, not agent here */
3419         local->i_gid = current_fsgid();
3420         ldiskfs_set_inode_state(local, LDISKFS_STATE_LUSTRE_NOSCRUB);
3421         unlock_new_inode(local);
3422
3423         /* Agent inode should not have project ID */
3424 #ifdef  HAVE_PROJECT_QUOTA
3425         if (LDISKFS_I(pobj->oo_inode)->i_flags & LUSTRE_PROJINHERIT_FL &&
3426             i_projid_read(pobj->oo_inode) != 0) {
3427                 rc = ldiskfs_transfer_project(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                 if (rc)
5371                         RETURN(rc);
5372
5373 #ifdef HAVE_PROJECT_QUOTA
5374                 /* Reserve credits for local agent inode to transfer
5375                  * to 0, quota enforcement is ignored in this case.
5376                  */
5377                 if (idc->oic_remote &&
5378                     LDISKFS_I(inode)->i_flags & LUSTRE_PROJINHERIT_FL &&
5379                     i_projid_read(inode) != 0)
5380                         rc = osd_declare_attr_qid(env, osd_dt_obj(dt), oh,
5381                                                   0, i_projid_read(inode),
5382                                                   0, false, PRJQUOTA);
5383 #endif
5384         }
5385
5386
5387         RETURN(rc);
5388 }
5389
5390 /**
5391  * Index add function for interoperability mode (b11826).
5392  * It will add the directory entry.This entry is needed to
5393  * maintain name->fid mapping.
5394  *
5395  * \param key it is key i.e. file entry to be inserted
5396  * \param rec it is value of given key i.e. fid
5397  *
5398  * \retval   0, on success
5399  * \retval -ve, on error
5400  */
5401 static int osd_index_ea_insert(const struct lu_env *env, struct dt_object *dt,
5402                                const struct dt_rec *rec,
5403                                const struct dt_key *key, struct thandle *th,
5404                                int ignore_quota)
5405 {
5406         struct osd_object       *obj = osd_dt_obj(dt);
5407         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
5408         struct dt_insert_rec    *rec1   = (struct dt_insert_rec *)rec;
5409         const struct lu_fid     *fid    = rec1->rec_fid;
5410         const char              *name = (const char *)key;
5411         struct osd_thread_info  *oti   = osd_oti_get(env);
5412         struct inode            *child_inode = NULL;
5413         struct osd_idmap_cache  *idc;
5414         int                     rc;
5415         ENTRY;
5416
5417         if (!dt_object_exists(dt))
5418                 RETURN(-ENOENT);
5419
5420         LASSERT(osd_invariant(obj));
5421         LASSERT(!dt_object_remote(dt));
5422         LASSERT(th != NULL);
5423
5424         osd_trans_exec_op(env, th, OSD_OT_INSERT);
5425
5426         LASSERTF(fid_is_sane(fid), "fid"DFID" is insane!\n", PFID(fid));
5427
5428         idc = osd_idc_find(env, osd, fid);
5429         if (unlikely(idc == NULL)) {
5430                 /* this dt_insert() wasn't declared properly, so
5431                  * FID is missing in OI cache. we better do not
5432                  * lookup FID in FLDB/OI and don't risk to deadlock,
5433                  * but in some special cases (lfsck testing, etc)
5434                  * it's much simpler than fixing a caller */
5435                 CERROR("%s: "DFID" wasn't declared for insert\n",
5436                        osd_name(osd), PFID(fid));
5437                 dump_stack();
5438                 idc = osd_idc_find_or_init(env, osd, fid);
5439                 if (IS_ERR(idc))
5440                         RETURN(PTR_ERR(idc));
5441         }
5442
5443         if (idc->oic_remote) {
5444                 /* Insert remote entry */
5445                 if (strcmp(name, dotdot) == 0 && strlen(name) == 2) {
5446                         struct osd_mdobj_map    *omm = osd->od_mdt_map;
5447                         struct osd_thandle      *oh;
5448
5449                         /* If parent on remote MDT, we need put this object
5450                          * under AGENT */
5451                         oh = container_of(th, typeof(*oh), ot_super);
5452                         rc = osd_add_to_remote_parent(env, osd, obj, oh);
5453                         if (rc != 0) {
5454                                 CERROR("%s: add "DFID" error: rc = %d\n",
5455                                        osd_name(osd),
5456                                        PFID(lu_object_fid(&dt->do_lu)), rc);
5457                                 RETURN(rc);
5458                         }
5459
5460                         child_inode = igrab(omm->omm_remote_parent->d_inode);
5461                 } else {
5462                         child_inode = osd_create_local_agent_inode(env, osd,
5463                                         obj, fid, rec1->rec_type & S_IFMT, th);
5464                         if (IS_ERR(child_inode))
5465                                 RETURN(PTR_ERR(child_inode));
5466                 }
5467         } else {
5468                 /* Insert local entry */
5469                 if (unlikely(idc->oic_lid.oii_ino == 0)) {
5470                         /* for a reason OI cache wasn't filled properly */
5471                         CERROR("%s: OIC for "DFID" isn't filled\n",
5472                                osd_name(osd), PFID(fid));
5473                         RETURN(-EINVAL);
5474                 }
5475                 child_inode = oti->oti_inode;
5476                 if (unlikely(child_inode == NULL)) {
5477                         struct ldiskfs_inode_info *lii;
5478                         OBD_ALLOC_PTR(lii);
5479                         if (lii == NULL)
5480                                 RETURN(-ENOMEM);
5481                         child_inode = oti->oti_inode = &lii->vfs_inode;
5482                 }
5483                 child_inode->i_sb = osd_sb(osd);
5484                 child_inode->i_ino = idc->oic_lid.oii_ino;
5485                 child_inode->i_mode = rec1->rec_type & S_IFMT;
5486         }
5487
5488         rc = osd_ea_add_rec(env, obj, child_inode, name, fid, th);
5489
5490         CDEBUG(D_INODE, "parent %lu insert %s:%lu rc = %d\n",
5491                obj->oo_inode->i_ino, name, child_inode->i_ino, rc);
5492
5493         if (child_inode && child_inode != oti->oti_inode)
5494                 iput(child_inode);
5495         LASSERT(osd_invariant(obj));
5496         osd_trans_exec_check(env, th, OSD_OT_INSERT);
5497         RETURN(rc);
5498 }
5499
5500 /**
5501  *  Initialize osd Iterator for given osd index object.
5502  *
5503  *  \param  dt      osd index object
5504  */
5505
5506 static struct dt_it *osd_it_iam_init(const struct lu_env *env,
5507                                      struct dt_object *dt,
5508                                      __u32 unused)
5509 {
5510         struct osd_it_iam      *it;
5511         struct osd_object      *obj = osd_dt_obj(dt);
5512         struct lu_object       *lo  = &dt->do_lu;
5513         struct iam_path_descr  *ipd;
5514         struct iam_container   *bag = &obj->oo_dir->od_container;
5515
5516         if (!dt_object_exists(dt))
5517                 return ERR_PTR(-ENOENT);
5518
5519         OBD_ALLOC_PTR(it);
5520         if (it == NULL)
5521                 return ERR_PTR(-ENOMEM);
5522
5523         ipd = osd_it_ipd_get(env, bag);
5524         if (likely(ipd != NULL)) {
5525                 it->oi_obj = obj;
5526                 it->oi_ipd = ipd;
5527                 lu_object_get(lo);
5528                 iam_it_init(&it->oi_it, bag, IAM_IT_MOVE, ipd);
5529                 return (struct dt_it *)it;
5530         } else {
5531                 OBD_FREE_PTR(it);
5532                 return ERR_PTR(-ENOMEM);
5533         }
5534 }
5535
5536 /**
5537  * free given Iterator.
5538  */
5539 static void osd_it_iam_fini(const struct lu_env *env, struct dt_it *di)
5540 {
5541         struct osd_it_iam       *it  = (struct osd_it_iam *)di;
5542         struct osd_object       *obj = it->oi_obj;
5543
5544         iam_it_fini(&it->oi_it);
5545         osd_ipd_put(env, &obj->oo_dir->od_container, it->oi_ipd);
5546         osd_object_put(env, obj);
5547         OBD_FREE_PTR(it);
5548 }
5549
5550 /**
5551  *  Move Iterator to record specified by \a key
5552  *
5553  *  \param  di      osd iterator
5554  *  \param  key     key for index
5555  *
5556  *  \retval +ve  di points to record with least key not larger than key
5557  *  \retval  0   di points to exact matched key
5558  *  \retval -ve  failure
5559  */
5560
5561 static int osd_it_iam_get(const struct lu_env *env,
5562                           struct dt_it *di, const struct dt_key *key)
5563 {
5564         struct osd_thread_info  *oti = osd_oti_get(env);
5565         struct osd_it_iam       *it = (struct osd_it_iam *)di;
5566
5567         if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
5568                 /* swab quota uid/gid */
5569                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
5570                 key = (struct dt_key *)&oti->oti_quota_id;
5571         }
5572
5573         return iam_it_get(&it->oi_it, (const struct iam_key *)key);
5574 }
5575
5576 /**
5577  *  Release Iterator
5578  *
5579  *  \param  di      osd iterator
5580  */
5581 static void osd_it_iam_put(const struct lu_env *env, struct dt_it *di)
5582 {
5583         struct osd_it_iam *it = (struct osd_it_iam *)di;
5584
5585         iam_it_put(&it->oi_it);
5586 }
5587
5588 /**
5589  *  Move iterator by one record
5590  *
5591  *  \param  di      osd iterator
5592  *
5593  *  \retval +1   end of container reached
5594  *  \retval  0   success
5595  *  \retval -ve  failure
5596  */
5597
5598 static int osd_it_iam_next(const struct lu_env *env, struct dt_it *di)
5599 {
5600         struct osd_it_iam *it = (struct osd_it_iam *)di;
5601
5602         return iam_it_next(&it->oi_it);
5603 }
5604
5605 /**
5606  * Return pointer to the key under iterator.
5607  */
5608
5609 static struct dt_key *osd_it_iam_key(const struct lu_env *env,
5610                                  const struct dt_it *di)
5611 {
5612         struct osd_thread_info *oti = osd_oti_get(env);
5613         struct osd_it_iam      *it = (struct osd_it_iam *)di;
5614         struct osd_object      *obj = it->oi_obj;
5615         struct dt_key          *key;
5616
5617         key = (struct dt_key *)iam_it_key_get(&it->oi_it);
5618
5619         if (!IS_ERR(key) && fid_is_quota(lu_object_fid(&obj->oo_dt.do_lu))) {
5620                 /* swab quota uid/gid */
5621                 oti->oti_quota_id = le64_to_cpu(*((__u64 *)key));
5622                 key = (struct dt_key *)&oti->oti_quota_id;
5623         }
5624
5625         return key;
5626 }
5627
5628 /**
5629  * Return size of key under iterator (in bytes)
5630  */
5631
5632 static int osd_it_iam_key_size(const struct lu_env *env, const struct dt_it *di)
5633 {
5634         struct osd_it_iam *it = (struct osd_it_iam *)di;
5635
5636         return iam_it_key_size(&it->oi_it);
5637 }
5638
5639 static inline void
5640 osd_it_append_attrs(struct lu_dirent *ent, int len, __u16 type)
5641 {
5642         /* check if file type is required */
5643         if (ent->lde_attrs & LUDA_TYPE) {
5644                 struct luda_type *lt;
5645                 int align = sizeof(*lt) - 1;
5646
5647                 len = (len + align) & ~align;
5648                 lt = (struct luda_type *)(ent->lde_name + len);
5649                 lt->lt_type = cpu_to_le16(DTTOIF(type));
5650         }
5651
5652         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
5653 }
5654
5655 /**
5656  * build lu direct from backend fs dirent.
5657  */
5658
5659 static inline void
5660 osd_it_pack_dirent(struct lu_dirent *ent, struct lu_fid *fid, __u64 offset,
5661                    char *name, __u16 namelen, __u16 type, __u32 attr)
5662 {
5663         ent->lde_attrs = attr | LUDA_FID;
5664         fid_cpu_to_le(&ent->lde_fid, fid);
5665
5666         ent->lde_hash = cpu_to_le64(offset);
5667         ent->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
5668
5669         strncpy(ent->lde_name, name, namelen);
5670         ent->lde_name[namelen] = '\0';
5671         ent->lde_namelen = cpu_to_le16(namelen);
5672
5673         /* append lustre attributes */
5674         osd_it_append_attrs(ent, namelen, type);
5675 }
5676
5677 /**
5678  * Return pointer to the record under iterator.
5679  */
5680 static int osd_it_iam_rec(const struct lu_env *env,
5681                           const struct dt_it *di,
5682                           struct dt_rec *dtrec, __u32 attr)
5683 {
5684         struct osd_it_iam      *it   = (struct osd_it_iam *)di;
5685         struct osd_thread_info *info = osd_oti_get(env);
5686         ENTRY;
5687
5688         if (S_ISDIR(it->oi_obj->oo_inode->i_mode)) {
5689                 const struct osd_fid_pack *rec;
5690                 struct lu_fid             *fid = &info->oti_fid;
5691                 struct lu_dirent          *lde = (struct lu_dirent *)dtrec;
5692                 char                      *name;
5693                 int                        namelen;
5694                 __u64                      hash;
5695                 int                        rc;
5696
5697                 name = (char *)iam_it_key_get(&it->oi_it);
5698                 if (IS_ERR(name))
5699                         RETURN(PTR_ERR(name));
5700
5701                 namelen = iam_it_key_size(&it->oi_it);
5702
5703                 rec = (const struct osd_fid_pack *)iam_it_rec_get(&it->oi_it);
5704                 if (IS_ERR(rec))
5705                         RETURN(PTR_ERR(rec));
5706
5707                 rc = osd_fid_unpack(fid, rec);
5708                 if (rc)
5709                         RETURN(rc);
5710
5711                 hash = iam_it_store(&it->oi_it);
5712
5713                 /* IAM does not store object type in IAM index (dir) */
5714                 osd_it_pack_dirent(lde, fid, hash, name, namelen,
5715                                    0, LUDA_FID);
5716         } else if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
5717                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
5718                            (struct iam_rec *)dtrec);
5719                 osd_quota_unpack(it->oi_obj, dtrec);
5720         } else {
5721                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
5722                            (struct iam_rec *)dtrec);
5723         }
5724
5725         RETURN(0);
5726 }
5727
5728 /**
5729  * Returns cookie for current Iterator position.
5730  */
5731 static __u64 osd_it_iam_store(const struct lu_env *env, const struct dt_it *di)
5732 {
5733         struct osd_it_iam *it = (struct osd_it_iam *)di;
5734
5735         return iam_it_store(&it->oi_it);
5736 }
5737
5738 /**
5739  * Restore iterator from cookie.
5740  *
5741  * \param  di      osd iterator
5742  * \param  hash    Iterator location cookie
5743  *
5744  * \retval +ve  di points to record with least key not larger than key.
5745  * \retval  0   di points to exact matched key
5746  * \retval -ve  failure
5747  */
5748
5749 static int osd_it_iam_load(const struct lu_env *env,
5750                            const struct dt_it *di, __u64 hash)
5751 {
5752         struct osd_it_iam *it = (struct osd_it_iam *)di;
5753
5754         return iam_it_load(&it->oi_it, hash);
5755 }
5756
5757 static const struct dt_index_operations osd_index_iam_ops = {
5758         .dio_lookup         = osd_index_iam_lookup,
5759         .dio_declare_insert = osd_index_declare_iam_insert,
5760         .dio_insert         = osd_index_iam_insert,
5761         .dio_declare_delete = osd_index_declare_iam_delete,
5762         .dio_delete         = osd_index_iam_delete,
5763         .dio_it     = {
5764                 .init     = osd_it_iam_init,
5765                 .fini     = osd_it_iam_fini,
5766                 .get      = osd_it_iam_get,
5767                 .put      = osd_it_iam_put,
5768                 .next     = osd_it_iam_next,
5769                 .key      = osd_it_iam_key,
5770                 .key_size = osd_it_iam_key_size,
5771                 .rec      = osd_it_iam_rec,
5772                 .store    = osd_it_iam_store,
5773                 .load     = osd_it_iam_load
5774         }
5775 };
5776
5777
5778 /**
5779  * Creates or initializes iterator context.
5780  *
5781  * \retval struct osd_it_ea, iterator structure on success
5782  *
5783  */
5784 static struct dt_it *osd_it_ea_init(const struct lu_env *env,
5785                                     struct dt_object *dt,
5786                                     __u32 attr)
5787 {
5788         struct osd_object       *obj  = osd_dt_obj(dt);
5789         struct osd_thread_info  *info = osd_oti_get(env);
5790         struct osd_it_ea        *oie;
5791         struct file             *file;
5792         struct lu_object        *lo   = &dt->do_lu;
5793         struct dentry           *obj_dentry;
5794         ENTRY;
5795
5796         if (!dt_object_exists(dt) || obj->oo_destroyed)
5797                 RETURN(ERR_PTR(-ENOENT));
5798
5799         OBD_SLAB_ALLOC_PTR_GFP(oie, osd_itea_cachep, GFP_NOFS);
5800         if (oie == NULL)
5801                 RETURN(ERR_PTR(-ENOMEM));
5802         obj_dentry = &oie->oie_dentry;
5803
5804         obj_dentry->d_inode = obj->oo_inode;
5805         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
5806         obj_dentry->d_name.hash = 0;
5807
5808         oie->oie_rd_dirent       = 0;
5809         oie->oie_it_dirent       = 0;
5810         oie->oie_dirent          = NULL;
5811         if (unlikely(!info->oti_it_ea_buf_used)) {
5812                 oie->oie_buf = info->oti_it_ea_buf;
5813                 info->oti_it_ea_buf_used = 1;
5814         } else {
5815                 OBD_ALLOC(oie->oie_buf, OSD_IT_EA_BUFSIZE);
5816                 if (oie->oie_buf == NULL)
5817                         RETURN(ERR_PTR(-ENOMEM));
5818         }
5819         oie->oie_obj             = obj;
5820
5821         file = &oie->oie_file;
5822
5823         /* Only FMODE_64BITHASH or FMODE_32BITHASH should be set, NOT both. */
5824         if (attr & LUDA_64BITHASH)
5825                 file->f_mode    = FMODE_64BITHASH;
5826         else
5827                 file->f_mode    = FMODE_32BITHASH;
5828         file->f_path.dentry     = obj_dentry;
5829         file->f_mapping         = obj->oo_inode->i_mapping;
5830         file->f_op              = obj->oo_inode->i_fop;
5831         set_file_inode(file, obj->oo_inode);
5832
5833         lu_object_get(lo);
5834         RETURN((struct dt_it *) oie);
5835 }
5836
5837 /**
5838  * Destroy or finishes iterator context.
5839  *
5840  * \param di iterator structure to be destroyed
5841  */
5842 static void osd_it_ea_fini(const struct lu_env *env, struct dt_it *di)
5843 {
5844         struct osd_thread_info  *info = osd_oti_get(env);
5845         struct osd_it_ea        *oie    = (struct osd_it_ea *)di;
5846         struct osd_object       *obj    = oie->oie_obj;
5847         struct inode            *inode  = obj->oo_inode;
5848
5849         ENTRY;
5850         oie->oie_file.f_op->release(inode, &oie->oie_file);
5851         osd_object_put(env, obj);
5852         if (unlikely(oie->oie_buf != info->oti_it_ea_buf))
5853                 OBD_FREE(oie->oie_buf, OSD_IT_EA_BUFSIZE);
5854         else
5855                 info->oti_it_ea_buf_used = 0;
5856         OBD_SLAB_FREE_PTR(oie, osd_itea_cachep);
5857         EXIT;
5858 }
5859
5860 /**
5861  * It position the iterator at given key, so that next lookup continues from
5862  * that key Or it is similar to dio_it->load() but based on a key,
5863  * rather than file position.
5864  *
5865  * As a special convention, osd_it_ea_get(env, di, "") has to rewind iterator
5866  * to the beginning.
5867  *
5868  * TODO: Presently return +1 considering it is only used by mdd_dir_is_empty().
5869  */
5870 static int osd_it_ea_get(const struct lu_env *env,
5871                          struct dt_it *di, const struct dt_key *key)
5872 {
5873         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
5874
5875         ENTRY;
5876         LASSERT(((const char *)key)[0] == '\0');
5877         it->oie_file.f_pos      = 0;
5878         it->oie_rd_dirent       = 0;
5879         it->oie_it_dirent       = 0;
5880         it->oie_dirent          = NULL;
5881
5882         RETURN(+1);
5883 }
5884
5885 /**
5886  * Does nothing
5887  */
5888 static void osd_it_ea_put(const struct lu_env *env, struct dt_it *di)
5889 {
5890 }
5891
5892 struct osd_filldir_cbs {
5893 #ifdef HAVE_DIR_CONTEXT
5894         struct dir_context ctx;
5895 #endif
5896         struct osd_it_ea  *it;
5897 };
5898 /**
5899  * It is called internally by ->readdir(). It fills the
5900  * iterator's in-memory data structure with required
5901  * information i.e. name, namelen, rec_size etc.
5902  *
5903  * \param buf in which information to be filled in.
5904  * \param name name of the file in given dir
5905  *
5906  * \retval 0 on success
5907  * \retval 1 on buffer full
5908  */
5909 #ifdef HAVE_FILLDIR_USE_CTX
5910 static int osd_ldiskfs_filldir(struct dir_context *buf,
5911 #else
5912 static int osd_ldiskfs_filldir(void *buf,
5913 #endif
5914                                const char *name, int namelen,
5915                                loff_t offset, __u64 ino, unsigned d_type)
5916 {
5917         struct osd_it_ea        *it   =
5918                 ((struct osd_filldir_cbs *)buf)->it;
5919         struct osd_object       *obj  = it->oie_obj;
5920         struct osd_it_ea_dirent *ent  = it->oie_dirent;
5921         struct lu_fid           *fid  = &ent->oied_fid;
5922         struct osd_fid_pack     *rec;
5923         ENTRY;
5924
5925         /* this should never happen */
5926         if (unlikely(namelen == 0 || namelen > LDISKFS_NAME_LEN)) {
5927                 CERROR("ldiskfs return invalid namelen %d\n", namelen);
5928                 RETURN(-EIO);
5929         }
5930
5931         if ((void *) ent - it->oie_buf + sizeof(*ent) + namelen >
5932             OSD_IT_EA_BUFSIZE)
5933                 RETURN(1);
5934
5935         /* "." is just the object itself. */
5936         if (namelen == 1 && name[0] == '.') {
5937                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
5938         } else if (d_type & LDISKFS_DIRENT_LUFID) {
5939                 rec = (struct osd_fid_pack*) (name + namelen + 1);
5940                 if (osd_fid_unpack(fid, rec) != 0)
5941                         fid_zero(fid);
5942         } else {
5943                 fid_zero(fid);
5944         }
5945         d_type &= ~LDISKFS_DIRENT_LUFID;
5946
5947         /* NOT export local root. */
5948         if (unlikely(osd_sb(osd_obj2dev(obj))->s_root->d_inode->i_ino == ino)) {
5949                 ino = obj->oo_inode->i_ino;
5950                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
5951         }
5952
5953         ent->oied_ino     = ino;
5954         ent->oied_off     = offset;
5955         ent->oied_namelen = namelen;
5956         ent->oied_type    = d_type;
5957
5958         memcpy(ent->oied_name, name, namelen);
5959
5960         it->oie_rd_dirent++;
5961         it->oie_dirent = (void *) ent + cfs_size_round(sizeof(*ent) + namelen);
5962         RETURN(0);
5963 }
5964
5965 /**
5966  * Calls ->readdir() to load a directory entry at a time
5967  * and stored it in iterator's in-memory data structure.
5968  *
5969  * \param di iterator's in memory structure
5970  *
5971  * \retval   0 on success
5972  * \retval -ve on error
5973  * \retval +1 reach the end of entry
5974  */
5975 static int osd_ldiskfs_it_fill(const struct lu_env *env,
5976                                const struct dt_it *di)
5977 {
5978         struct osd_it_ea   *it    = (struct osd_it_ea *)di;
5979         struct osd_object  *obj   = it->oie_obj;
5980         struct inode       *inode = obj->oo_inode;
5981         struct htree_lock  *hlock = NULL;
5982         struct file        *filp  = &it->oie_file;
5983         int                 rc = 0;
5984         struct osd_filldir_cbs buf = {
5985 #ifdef HAVE_DIR_CONTEXT
5986                 .ctx.actor = osd_ldiskfs_filldir,
5987 #endif
5988                 .it = it
5989         };
5990
5991         ENTRY;
5992         it->oie_dirent = it->oie_buf;
5993         it->oie_rd_dirent = 0;
5994
5995         if (obj->oo_hl_head != NULL) {
5996                 hlock = osd_oti_get(env)->oti_hlock;
5997                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
5998                                    inode, LDISKFS_HLOCK_READDIR);
5999         } else {
6000                 down_read(&obj->oo_ext_idx_sem);
6001         }
6002
6003 #ifdef HAVE_DIR_CONTEXT
6004         buf.ctx.pos = filp->f_pos;
6005         rc = inode->i_fop->iterate(filp, &buf.ctx);
6006         filp->f_pos = buf.ctx.pos;
6007 #else
6008         rc = inode->i_fop->readdir(filp, &buf, osd_ldiskfs_filldir);
6009 #endif
6010
6011         if (hlock != NULL)
6012                 ldiskfs_htree_unlock(hlock);
6013         else
6014                 up_read(&obj->oo_ext_idx_sem);
6015
6016         if (it->oie_rd_dirent == 0) {
6017                 /*If it does not get any dirent, it means it has been reached
6018                  *to the end of the dir */
6019                 it->oie_file.f_pos = ldiskfs_get_htree_eof(&it->oie_file);
6020                 if (rc == 0)
6021                         rc = 1;
6022         } else {
6023                 it->oie_dirent = it->oie_buf;
6024                 it->oie_it_dirent = 1;
6025         }
6026
6027         RETURN(rc);
6028 }
6029
6030 /**
6031  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
6032  * to load a directory entry at a time and stored it in
6033  * iterator's in-memory data structure.
6034  *
6035  * \param di iterator's in memory structure
6036  *
6037  * \retval +ve iterator reached to end
6038  * \retval   0 iterator not reached to end
6039  * \retval -ve on error
6040  */
6041 static int osd_it_ea_next(const struct lu_env *env, struct dt_it *di)
6042 {
6043         struct osd_it_ea *it = (struct osd_it_ea *)di;
6044         int rc;
6045
6046         ENTRY;
6047
6048         if (it->oie_it_dirent < it->oie_rd_dirent) {
6049                 it->oie_dirent =
6050                         (void *) it->oie_dirent +
6051                         cfs_size_round(sizeof(struct osd_it_ea_dirent) +
6052                                        it->oie_dirent->oied_namelen);
6053                 it->oie_it_dirent++;
6054                 RETURN(0);
6055         } else {
6056                 if (it->oie_file.f_pos == ldiskfs_get_htree_eof(&it->oie_file))
6057                         rc = +1;
6058                 else
6059                         rc = osd_ldiskfs_it_fill(env, di);
6060         }
6061
6062         RETURN(rc);
6063 }
6064
6065 /**
6066  * Returns the key at current position from iterator's in memory structure.
6067  *
6068  * \param di iterator's in memory structure
6069  *
6070  * \retval key i.e. struct dt_key on success
6071  */
6072 static struct dt_key *osd_it_ea_key(const struct lu_env *env,
6073                                     const struct dt_it *di)
6074 {
6075         struct osd_it_ea *it = (struct osd_it_ea *)di;
6076
6077         return (struct dt_key *)it->oie_dirent->oied_name;
6078 }
6079
6080 /**
6081  * Returns the key's size at current position from iterator's in memory structure.
6082  *
6083  * \param di iterator's in memory structure
6084  *
6085  * \retval key_size i.e. struct dt_key on success
6086  */
6087 static int osd_it_ea_key_size(const struct lu_env *env, const struct dt_it *di)
6088 {
6089         struct osd_it_ea *it = (struct osd_it_ea *)di;
6090
6091         return it->oie_dirent->oied_namelen;
6092 }
6093
6094 static inline bool osd_dotdot_has_space(struct ldiskfs_dir_entry_2 *de)
6095 {
6096         if (LDISKFS_DIR_REC_LEN(de) >=
6097             __LDISKFS_DIR_REC_LEN(2 + 1 + sizeof(struct osd_fid_pack)))
6098                 return true;
6099
6100         return false;
6101 }
6102
6103 static inline bool
6104 osd_dirent_has_space(struct ldiskfs_dir_entry_2 *de, __u16 namelen,
6105                      unsigned blocksize, bool dotdot)
6106 {
6107         if (dotdot)
6108                 return osd_dotdot_has_space(de);
6109
6110         if (ldiskfs_rec_len_from_disk(de->rec_len, blocksize) >=
6111             __LDISKFS_DIR_REC_LEN(namelen + 1 + sizeof(struct osd_fid_pack)))
6112                 return true;
6113
6114         return false;
6115 }
6116
6117 static int
6118 osd_dirent_reinsert(const struct lu_env *env, struct osd_device *dev,
6119                     handle_t *jh, struct dentry *dentry,
6120                     const struct lu_fid *fid, struct buffer_head *bh,
6121                     struct ldiskfs_dir_entry_2 *de, struct htree_lock *hlock,
6122                     bool dotdot)
6123 {
6124         struct inode                *dir        = dentry->d_parent->d_inode;
6125         struct inode                *inode      = dentry->d_inode;
6126         struct osd_fid_pack         *rec;
6127         struct ldiskfs_dentry_param *ldp;
6128         int                          namelen    = dentry->d_name.len;
6129         int                          rc;
6130         struct osd_thread_info     *info        = osd_oti_get(env);
6131         ENTRY;
6132
6133         if (!LDISKFS_HAS_INCOMPAT_FEATURE(inode->i_sb,
6134                                           LDISKFS_FEATURE_INCOMPAT_DIRDATA))
6135                 RETURN(0);
6136
6137         /* There is enough space to hold the FID-in-dirent. */
6138         if (osd_dirent_has_space(de, namelen, dir->i_sb->s_blocksize, dotdot)) {
6139                 rc = ldiskfs_journal_get_write_access(jh, bh);
6140                 if (rc != 0)
6141                         RETURN(rc);
6142
6143                 de->name[namelen] = 0;
6144                 rec = (struct osd_fid_pack *)(de->name + namelen + 1);
6145                 rec->fp_len = sizeof(struct lu_fid) + 1;
6146                 fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
6147                 de->file_type |= LDISKFS_DIRENT_LUFID;
6148                 rc = ldiskfs_handle_dirty_metadata(jh, NULL, bh);
6149
6150                 RETURN(rc);
6151         }
6152
6153         LASSERT(!dotdot);
6154
6155         rc = ldiskfs_delete_entry(jh, dir, de, bh);
6156         if (rc != 0)
6157                 RETURN(rc);
6158
6159         ldp = (struct ldiskfs_dentry_param *)osd_oti_get(env)->oti_ldp;
6160         osd_get_ldiskfs_dirent_param(ldp, fid);
6161         dentry->d_fsdata = (void *)ldp;
6162         ll_vfs_dq_init(dir);
6163         rc = osd_ldiskfs_add_entry(info, dev, jh, dentry, inode, hlock);
6164         /* It is too bad, we cannot reinsert the name entry back.
6165          * That means we lose it! */
6166         if (rc != 0)
6167                 CDEBUG(D_LFSCK, "%s: fail to reinsert the dirent, "
6168                        "dir = %lu/%u, name = %.*s, "DFID": rc = %d\n",
6169                        osd_ino2name(inode),
6170                        dir->i_ino, dir->i_generation, namelen,
6171                        dentry->d_name.name, PFID(fid), rc);
6172
6173         RETURN(rc);
6174 }
6175
6176 static int
6177 osd_dirent_check_repair(const struct lu_env *env, struct osd_object *obj,
6178                         struct osd_it_ea *it, struct lu_fid *fid,
6179                         struct osd_inode_id *id, __u32 *attr)
6180 {
6181         struct osd_thread_info     *info        = osd_oti_get(env);
6182         struct lustre_mdt_attrs    *lma         = &info->oti_ost_attrs.loa_lma;
6183         struct osd_device          *dev         = osd_obj2dev(obj);
6184         struct super_block         *sb          = osd_sb(dev);
6185         const char                 *devname     = osd_name(dev);
6186         struct osd_it_ea_dirent    *ent         = it->oie_dirent;
6187         struct inode               *dir         = obj->oo_inode;
6188         struct htree_lock          *hlock       = NULL;
6189         struct buffer_head         *bh          = NULL;
6190         handle_t                   *jh          = NULL;
6191         struct ldiskfs_dir_entry_2 *de;
6192         struct dentry              *dentry;
6193         struct inode               *inode;
6194         const struct lu_fid *pfid = lu_object_fid(&obj->oo_dt.do_lu);
6195         int                         credits;
6196         int                         rc;
6197         bool                        dotdot      = false;
6198         bool                        dirty       = false;
6199         ENTRY;
6200
6201         if (ent->oied_name[0] == '.') {
6202                 if (ent->oied_namelen == 1)
6203                         RETURN(0);
6204
6205                 if (ent->oied_namelen == 2 && ent->oied_name[1] == '.')
6206                         dotdot = true;
6207         }
6208
6209         osd_id_gen(id, ent->oied_ino, OSD_OII_NOGEN);
6210         inode = osd_iget(info, dev, id);
6211         if (IS_ERR(inode)) {
6212                 rc = PTR_ERR(inode);
6213                 if (rc == -ENOENT || rc == -ESTALE) {
6214                         /* Maybe dangling name entry, or
6215                          * corrupted directory entry. */
6216                         *attr |= LUDA_UNKNOWN;
6217                         rc = 0;
6218                 } else {
6219                         CDEBUG(D_LFSCK, "%s: fail to iget() for dirent "
6220                                "check_repair, dir = %lu/%u, name = %.*s, "
6221                                "ino = %llu, rc = %d\n",
6222                                devname, dir->i_ino, dir->i_generation,
6223                                ent->oied_namelen, ent->oied_name,
6224                                ent->oied_ino, rc);
6225                 }
6226
6227                 RETURN(rc);
6228         }
6229
6230         dentry = osd_child_dentry_by_inode(env, dir, ent->oied_name,
6231                                            ent->oied_namelen);
6232         rc = osd_get_lma(info, inode, dentry, &info->oti_ost_attrs);
6233         if (rc == -ENODATA || !fid_is_sane(&lma->lma_self_fid))
6234                 lma = NULL;
6235         else if (rc != 0)
6236                 GOTO(out, rc);
6237
6238         /* We need to ensure that the name entry is still valid.
6239          * Because it may be removed or renamed by other already.
6240          *
6241          * The unlink or rename operation will start journal before PDO lock,
6242          * so to avoid deadlock, here we need to start journal handle before
6243          * related PDO lock also. But because we do not know whether there
6244          * will be something to be repaired before PDO lock, we just start
6245          * journal without conditions.
6246          *
6247          * We may need to remove the name entry firstly, then insert back.
6248          * One credit is for user quota file update.
6249          * One credit is for group quota file update.
6250          * Two credits are for dirty inode. */
6251         credits = osd_dto_credits_noquota[DTO_INDEX_DELETE] +
6252                   osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1 + 1 + 2;
6253
6254         if (dev->od_dirent_journal != 0) {
6255
6256 again:
6257                 jh = osd_journal_start_sb(sb, LDISKFS_HT_MISC, credits);
6258                 if (IS_ERR(jh)) {
6259                         rc = PTR_ERR(jh);
6260                         CDEBUG(D_LFSCK, "%s: fail to start trans for dirent "
6261                                "check_repair, dir = %lu/%u, credits = %d, "
6262                                "name = %.*s, ino = %llu: rc = %d\n",
6263                                devname, dir->i_ino, dir->i_generation, credits,
6264                                ent->oied_namelen, ent->oied_name,
6265                                ent->oied_ino, rc);
6266
6267                         GOTO(out_inode, rc);
6268                 }
6269
6270                 if (obj->oo_hl_head != NULL) {
6271                         hlock = osd_oti_get(env)->oti_hlock;
6272                         /* "0" means exclusive lock for the whole directory.
6273                          * We need to prevent others access such name entry
6274                          * during the delete + insert. Neither HLOCK_ADD nor
6275                          * HLOCK_DEL cannot guarantee the atomicity. */
6276                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir, 0);
6277                 } else {
6278                         down_write(&obj->oo_ext_idx_sem);
6279                 }
6280         } else {
6281                 if (obj->oo_hl_head != NULL) {
6282                         hlock = osd_oti_get(env)->oti_hlock;
6283                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir,
6284                                            LDISKFS_HLOCK_LOOKUP);
6285                 } else {
6286                         down_read(&obj->oo_ext_idx_sem);
6287                 }
6288         }
6289
6290         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
6291         if (IS_ERR(bh) || le32_to_cpu(de->inode) != inode->i_ino) {
6292                 *attr |= LUDA_IGNORE;
6293
6294                 GOTO(out, rc = 0);
6295         }
6296
6297         /* For dotdot entry, if there is not enough space to hold the
6298          * FID-in-dirent, just keep them there. It only happens when the
6299          * device upgraded from 1.8 or restored from MDT file-level backup.
6300          * For the whole directory, only dotdot entry have no FID-in-dirent
6301          * and needs to get FID from LMA when readdir, it will not affect the
6302          * performance much. */
6303         if (dotdot && !osd_dotdot_has_space(de)) {
6304                 *attr |= LUDA_UNKNOWN;
6305
6306                 GOTO(out, rc = 0);
6307         }
6308
6309         if (lma != NULL) {
6310                 if (lu_fid_eq(fid, &lma->lma_self_fid))
6311                         GOTO(out, rc = 0);
6312
6313                 if (unlikely(lma->lma_compat & LMAC_NOT_IN_OI)) {
6314                         struct lu_fid *tfid = &lma->lma_self_fid;
6315
6316                         if (likely(dotdot &&
6317                                    fid_seq(tfid) == FID_SEQ_LOCAL_FILE &&
6318                                    fid_oid(tfid) == REMOTE_PARENT_DIR_OID)) {
6319                                 /* It must be REMOTE_PARENT_DIR and as the
6320                                  * 'dotdot' entry of remote directory */
6321                                 *attr |= LUDA_IGNORE;
6322                         } else {
6323                                 CDEBUG(D_LFSCK, "%s: expect remote agent "
6324                                        "parent directory, but got %.*s under "
6325                                        "dir = %lu/%u with the FID "DFID"\n",
6326                                        devname, ent->oied_namelen,
6327                                        ent->oied_name, dir->i_ino,
6328                                        dir->i_generation, PFID(tfid));
6329
6330                                 *attr |= LUDA_UNKNOWN;
6331                         }
6332
6333                         GOTO(out, rc = 0);
6334                 }
6335         }
6336
6337         if (!fid_is_zero(fid)) {
6338                 rc = osd_verify_ent_by_linkea(env, inode, pfid, ent->oied_name,
6339                                               ent->oied_namelen);
6340                 if (rc == -ENOENT ||
6341                     (rc == -ENODATA &&
6342                      !(dev->od_scrub.os_file.sf_flags & SF_UPGRADE))) {
6343                         /* linkEA does not recognize the dirent entry,
6344                          * it may because the dirent entry corruption
6345                          * and points to other's inode. */
6346                         CDEBUG(D_LFSCK, "%s: the target inode does not "
6347                                "recognize the dirent, dir = %lu/%u, "
6348                                " name = %.*s, ino = %llu, "
6349                                DFID": rc = %d\n", devname, dir->i_ino,
6350                                dir->i_generation, ent->oied_namelen,
6351                                ent->oied_name, ent->oied_ino, PFID(fid), rc);
6352                         *attr |= LUDA_UNKNOWN;
6353
6354                         GOTO(out, rc = 0);
6355                 }
6356
6357                 if (rc && rc != -ENODATA) {
6358                         CDEBUG(D_LFSCK, "%s: fail to verify FID in the dirent, "
6359                                "dir = %lu/%u, name = %.*s, ino = %llu, "
6360                                DFID": rc = %d\n", devname, dir->i_ino,
6361                                dir->i_generation, ent->oied_namelen,
6362                                ent->oied_name, ent->oied_ino, PFID(fid), rc);
6363                         *attr |= LUDA_UNKNOWN;
6364
6365                         GOTO(out, rc = 0);
6366                 }
6367         }
6368
6369         if (lma != NULL) {
6370                 /* linkEA recognizes the dirent entry, the FID-in-LMA is
6371                  * valid, trusted, in spite of fid_is_sane(fid) or not. */
6372                 if (*attr & LUDA_VERIFY_DRYRUN) {
6373                         *fid = lma->lma_self_fid;
6374                         *attr |= LUDA_REPAIR;
6375
6376                         GOTO(out, rc = 0);
6377                 }
6378
6379                 if (jh == NULL) {
6380                         brelse(bh);
6381                         dev->od_dirent_journal = 1;
6382                         if (hlock != NULL) {
6383                                 ldiskfs_htree_unlock(hlock);
6384                                 hlock = NULL;
6385                         } else {
6386                                 up_read(&obj->oo_ext_idx_sem);
6387                         }
6388
6389                         goto again;
6390                 }
6391
6392                 *fid = lma->lma_self_fid;
6393                 dirty = true;
6394                 /* Update or append the FID-in-dirent. */
6395                 rc = osd_dirent_reinsert(env, dev, jh, dentry, fid,
6396                                          bh, de, hlock, dotdot);
6397                 if (rc == 0)
6398                         *attr |= LUDA_REPAIR;
6399                 else
6400                         CDEBUG(D_LFSCK, "%s: fail to re-insert FID after "
6401                                "the dirent, dir = %lu/%u, name = %.*s, "
6402                                "ino = %llu, "DFID": rc = %d\n",
6403                                devname, dir->i_ino, dir->i_generation,
6404                                ent->oied_namelen, ent->oied_name,
6405                                ent->oied_ino, PFID(fid), rc);
6406         } else {
6407                 /* lma is NULL, trust the FID-in-dirent if it is valid. */
6408                 if (*attr & LUDA_VERIFY_DRYRUN) {
6409                         if (fid_is_sane(fid)) {
6410                                 *attr |= LUDA_REPAIR;
6411                         } else if (dev->od_index == 0) {
6412                                 lu_igif_build(fid, inode->i_ino,
6413                                               inode->i_generation);
6414                                 *attr |= LUDA_UPGRADE;
6415                         }
6416
6417                         GOTO(out, rc = 0);
6418                 }
6419
6420                 if (jh == NULL) {
6421                         brelse(bh);
6422                         dev->od_dirent_journal = 1;
6423                         if (hlock != NULL) {
6424                                 ldiskfs_htree_unlock(hlock);
6425                                 hlock = NULL;
6426                         } else {
6427                                 up_read(&obj->oo_ext_idx_sem);
6428                         }
6429
6430                         goto again;
6431                 }
6432
6433                 dirty = true;
6434                 if (unlikely(fid_is_sane(fid))) {
6435                         /* FID-in-dirent exists, but FID-in-LMA is lost.
6436                          * Trust the FID-in-dirent, and add FID-in-LMA. */
6437                         rc = osd_ea_fid_set(info, inode, fid, 0, 0);
6438                         if (rc == 0)
6439                                 *attr |= LUDA_REPAIR;
6440                         else
6441                                 CDEBUG(D_LFSCK, "%s: fail to set LMA for "
6442                                        "update dirent, dir = %lu/%u, "
6443                                        "name = %.*s, ino = %llu, "
6444                                        DFID": rc = %d\n",
6445                                        devname, dir->i_ino, dir->i_generation,
6446                                        ent->oied_namelen, ent->oied_name,
6447                                        ent->oied_ino, PFID(fid), rc);
6448                 } else if (dev->od_index == 0) {
6449                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
6450                         /* It is probably IGIF object. Only aappend the
6451                          * FID-in-dirent. OI scrub will process FID-in-LMA. */
6452                         rc = osd_dirent_reinsert(env, dev, jh, dentry, fid,
6453                                                  bh, de, hlock, dotdot);
6454                         if (rc == 0)
6455                                 *attr |= LUDA_UPGRADE;
6456                         else
6457                                 CDEBUG(D_LFSCK, "%s: fail to append IGIF "
6458                                        "after the dirent, dir = %lu/%u, "
6459                                        "name = %.*s, ino = %llu, "
6460                                        DFID": rc = %d\n",
6461                                        devname, dir->i_ino, dir->i_generation,
6462                                        ent->oied_namelen, ent->oied_name,
6463                                        ent->oied_ino, PFID(fid), rc);
6464                 }
6465         }
6466
6467         GOTO(out, rc);
6468
6469 out:
6470         if (!IS_ERR(bh))
6471                 brelse(bh);
6472         if (hlock != NULL) {
6473                 ldiskfs_htree_unlock(hlock);
6474         } else {
6475                 if (dev->od_dirent_journal != 0)
6476                         up_write(&obj->oo_ext_idx_sem);
6477                 else
6478                         up_read(&obj->oo_ext_idx_sem);
6479         }
6480
6481         if (jh != NULL)
6482                 ldiskfs_journal_stop(jh);
6483
6484 out_inode:
6485         iput(inode);
6486         if (rc >= 0 && !dirty)
6487                 dev->od_dirent_journal = 0;
6488
6489         return rc;
6490 }
6491
6492 /**
6493  * Returns the value at current position from iterator's in memory structure.
6494  *
6495  * \param di struct osd_it_ea, iterator's in memory structure
6496  * \param attr attr requested for dirent.
6497  * \param lde lustre dirent
6498  *
6499  * \retval   0 no error and \param lde has correct lustre dirent.
6500  * \retval -ve on error
6501  */
6502 static inline int osd_it_ea_rec(const struct lu_env *env,
6503                                 const struct dt_it *di,
6504                                 struct dt_rec *dtrec, __u32 attr)
6505 {
6506         struct osd_it_ea       *it    = (struct osd_it_ea *)di;
6507         struct osd_object      *obj   = it->oie_obj;
6508         struct osd_device      *dev   = osd_obj2dev(obj);
6509         struct osd_thread_info *oti   = osd_oti_get(env);
6510         struct osd_inode_id    *id    = &oti->oti_id;
6511         struct lu_fid          *fid   = &it->oie_dirent->oied_fid;
6512         struct lu_dirent       *lde   = (struct lu_dirent *)dtrec;
6513         __u32                   ino   = it->oie_dirent->oied_ino;
6514         int                     rc    = 0;
6515         ENTRY;
6516
6517         LASSERT(obj->oo_inode != dev->od_mdt_map->omm_remote_parent->d_inode);
6518
6519         if (attr & LUDA_VERIFY) {
6520                 if (unlikely(ino == osd_remote_parent_ino(dev))) {
6521                         attr |= LUDA_IGNORE;
6522                         /* If the parent is on remote MDT, and there
6523                          * is no FID-in-dirent, then we have to get
6524                          * the parent FID from the linkEA.  */
6525                         if (!fid_is_sane(fid) &&
6526                             it->oie_dirent->oied_namelen == 2 &&
6527                             it->oie_dirent->oied_name[0] == '.' &&
6528                             it->oie_dirent->oied_name[1] == '.')
6529                                 osd_get_pfid_from_linkea(env, obj, fid);
6530                 } else {
6531                         rc = osd_dirent_check_repair(env, obj, it, fid, id,
6532                                                      &attr);
6533                 }
6534
6535                 if (!fid_is_sane(fid))
6536                         attr |= LUDA_UNKNOWN;
6537         } else {
6538                 attr &= ~LU_DIRENT_ATTRS_MASK;
6539                 if (!fid_is_sane(fid)) {
6540                         bool is_dotdot = false;
6541                         if (it->oie_dirent->oied_namelen == 2 &&
6542                             it->oie_dirent->oied_name[0] == '.' &&
6543                             it->oie_dirent->oied_name[1] == '.')
6544                                 is_dotdot = true;
6545                         /* If the parent is on remote MDT, and there
6546                          * is no FID-in-dirent, then we have to get
6547                          * the parent FID from the linkEA.  */
6548                         if (ino == osd_remote_parent_ino(dev) && is_dotdot) {
6549                                 rc = osd_get_pfid_from_linkea(env, obj, fid);
6550                         } else {
6551                                 if (is_dotdot == false &&
6552                                     OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP))
6553                                         RETURN(-ENOENT);
6554
6555                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
6556                         }
6557                 } else {
6558                         osd_id_gen(id, ino, OSD_OII_NOGEN);
6559                 }
6560         }
6561
6562         /* Pack the entry anyway, at least the offset is right. */
6563         osd_it_pack_dirent(lde, fid, it->oie_dirent->oied_off,
6564                            it->oie_dirent->oied_name,
6565                            it->oie_dirent->oied_namelen,
6566                            it->oie_dirent->oied_type, attr);
6567
6568         if (rc < 0)
6569                 RETURN(rc);
6570
6571         if (osd_remote_fid(env, dev, fid))
6572                 RETURN(0);
6573
6574         if (likely(!(attr & (LUDA_IGNORE | LUDA_UNKNOWN)) && rc == 0))
6575                 osd_add_oi_cache(oti, dev, id, fid);
6576
6577         RETURN(rc > 0 ? 0 : rc);
6578 }
6579
6580 /**
6581  * Returns the record size size at current position.
6582  *
6583  * This function will return record(lu_dirent) size in bytes.
6584  *
6585  * \param[in] env       execution environment
6586  * \param[in] di        iterator's in memory structure
6587  * \param[in] attr      attribute of the entry, only requires LUDA_TYPE to
6588  *                      calculate the lu_dirent size.
6589  *
6590  * \retval      record size(in bytes & in memory) of the current lu_dirent
6591  *              entry.
6592  */
6593 static int osd_it_ea_rec_size(const struct lu_env *env, const struct dt_it *di,
6594                               __u32 attr)
6595 {
6596         struct osd_it_ea *it = (struct osd_it_ea *)di;
6597
6598         return lu_dirent_calc_size(it->oie_dirent->oied_namelen, attr);
6599 }
6600
6601 /**
6602  * Returns a cookie for current position of the iterator head, so that
6603  * user can use this cookie to load/start the iterator next time.
6604  *
6605  * \param di iterator's in memory structure
6606  *
6607  * \retval cookie for current position, on success
6608  */
6609 static __u64 osd_it_ea_store(const struct lu_env *env, const struct dt_it *di)
6610 {
6611         struct osd_it_ea *it = (struct osd_it_ea *)di;
6612
6613         return it->oie_dirent->oied_off;
6614 }
6615
6616 /**
6617  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
6618  * to load a directory entry at a time and stored it i inn,
6619  * in iterator's in-memory data structure.
6620  *
6621  * \param di struct osd_it_ea, iterator's in memory structure
6622  *
6623  * \retval +ve on success
6624  * \retval -ve on error
6625  */
6626 static int osd_it_ea_load(const struct lu_env *env,
6627                           const struct dt_it *di, __u64 hash)
6628 {
6629         struct osd_it_ea *it = (struct osd_it_ea *)di;
6630         int rc;
6631
6632         ENTRY;
6633         it->oie_file.f_pos = hash;
6634
6635         rc =  osd_ldiskfs_it_fill(env, di);
6636         if (rc > 0)
6637                 rc = -ENODATA;
6638
6639         if (rc == 0)
6640                 rc = +1;
6641
6642         RETURN(rc);
6643 }
6644
6645 /**
6646  * Index lookup function for interoperability mode (b11826).
6647  *
6648  * \param key,  key i.e. file name to be searched
6649  *
6650  * \retval +ve, on success
6651  * \retval -ve, on error
6652  */
6653 static int osd_index_ea_lookup(const struct lu_env *env, struct dt_object *dt,
6654                                struct dt_rec *rec, const struct dt_key *key)
6655 {
6656         struct osd_object *obj = osd_dt_obj(dt);
6657         int rc = 0;
6658
6659         ENTRY;
6660
6661         LASSERT(S_ISDIR(obj->oo_inode->i_mode));
6662         LINVRNT(osd_invariant(obj));
6663
6664         rc = osd_ea_lookup_rec(env, obj, rec, key);
6665         if (rc == 0)
6666                 rc = +1;
6667         RETURN(rc);
6668 }
6669
6670 /**
6671  * Index and Iterator operations for interoperability
6672  * mode (i.e. to run 2.0 mds on 1.8 disk) (b11826)
6673  */
6674 static const struct dt_index_operations osd_index_ea_ops = {
6675         .dio_lookup         = osd_index_ea_lookup,
6676         .dio_declare_insert = osd_index_declare_ea_insert,
6677         .dio_insert         = osd_index_ea_insert,
6678         .dio_declare_delete = osd_index_declare_ea_delete,
6679         .dio_delete         = osd_index_ea_delete,
6680         .dio_it     = {
6681                 .init     = osd_it_ea_init,
6682                 .fini     = osd_it_ea_fini,
6683                 .get      = osd_it_ea_get,
6684                 .put      = osd_it_ea_put,
6685                 .next     = osd_it_ea_next,
6686                 .key      = osd_it_ea_key,
6687                 .key_size = osd_it_ea_key_size,
6688                 .rec      = osd_it_ea_rec,
6689                 .rec_size = osd_it_ea_rec_size,
6690                 .store    = osd_it_ea_store,
6691                 .load     = osd_it_ea_load
6692         }
6693 };
6694
6695 static void *osd_key_init(const struct lu_context *ctx,
6696                           struct lu_context_key *key)
6697 {
6698         struct osd_thread_info *info;
6699
6700         OBD_ALLOC_PTR(info);
6701         if (info == NULL)
6702                 return ERR_PTR(-ENOMEM);
6703
6704         OBD_ALLOC(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
6705         if (info->oti_it_ea_buf == NULL)
6706                 goto out_free_info;
6707
6708         info->oti_env = container_of(ctx, struct lu_env, le_ctx);
6709
6710         info->oti_hlock = ldiskfs_htree_lock_alloc();
6711         if (info->oti_hlock == NULL)
6712                 goto out_free_ea;
6713
6714         return info;
6715
6716  out_free_ea:
6717         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
6718  out_free_info:
6719         OBD_FREE_PTR(info);
6720         return ERR_PTR(-ENOMEM);
6721 }
6722
6723 static void osd_key_fini(const struct lu_context *ctx,
6724                          struct lu_context_key *key, void* data)
6725 {
6726         struct osd_thread_info *info = data;
6727         struct ldiskfs_inode_info *lli = LDISKFS_I(info->oti_inode);
6728         struct osd_idmap_cache  *idc = info->oti_ins_cache;
6729
6730         if (info->oti_inode != NULL)
6731                 OBD_FREE_PTR(lli);
6732         if (info->oti_hlock != NULL)
6733                 ldiskfs_htree_lock_free(info->oti_hlock);
6734         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
6735         lu_buf_free(&info->oti_iobuf.dr_pg_buf);
6736         lu_buf_free(&info->oti_iobuf.dr_bl_buf);
6737         lu_buf_free(&info->oti_big_buf);
6738         if (idc != NULL) {
6739                 LASSERT(info->oti_ins_cache_size > 0);
6740                 OBD_FREE(idc, sizeof(*idc) * info->oti_ins_cache_size);
6741                 info->oti_ins_cache = NULL;
6742                 info->oti_ins_cache_size = 0;
6743         }
6744         OBD_FREE_PTR(info);
6745 }
6746
6747 static void osd_key_exit(const struct lu_context *ctx,
6748                          struct lu_context_key *key, void *data)
6749 {
6750         struct osd_thread_info *info = data;
6751
6752         LASSERT(info->oti_r_locks == 0);
6753         LASSERT(info->oti_w_locks == 0);
6754         LASSERT(info->oti_txns    == 0);
6755 }
6756
6757 /* type constructor/destructor: osd_type_init, osd_type_fini */
6758 LU_TYPE_INIT_FINI(osd, &osd_key);
6759
6760 struct lu_context_key osd_key = {
6761         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
6762         .lct_init = osd_key_init,
6763         .lct_fini = osd_key_fini,
6764         .lct_exit = osd_key_exit
6765 };
6766
6767
6768 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
6769                            const char *name, struct lu_device *next)
6770 {
6771         struct osd_device *osd = osd_dev(d);
6772
6773         if (strlcpy(osd->od_svname, name, sizeof(osd->od_svname))
6774             >= sizeof(osd->od_svname))
6775                 return -E2BIG;
6776         return osd_procfs_init(osd, name);
6777 }
6778
6779 static int osd_fid_init(const struct lu_env *env, struct osd_device *osd)
6780 {
6781         struct seq_server_site  *ss = osd_seq_site(osd);
6782         int                     rc;
6783         ENTRY;
6784
6785         if (osd->od_is_ost || osd->od_cl_seq != NULL)
6786                 RETURN(0);
6787
6788         if (unlikely(ss == NULL))
6789                 RETURN(-ENODEV);
6790
6791         OBD_ALLOC_PTR(osd->od_cl_seq);
6792         if (osd->od_cl_seq == NULL)
6793                 RETURN(-ENOMEM);
6794
6795         rc = seq_client_init(osd->od_cl_seq, NULL, LUSTRE_SEQ_METADATA,
6796                              osd->od_svname, ss->ss_server_seq);
6797         if (rc != 0) {
6798                 OBD_FREE_PTR(osd->od_cl_seq);
6799                 osd->od_cl_seq = NULL;
6800                 RETURN(rc);
6801         }
6802
6803         if (ss->ss_node_id == 0) {
6804                 /* If the OSD on the sequence controller(MDT0), then allocate
6805                  * sequence here, otherwise allocate sequence after connected
6806                  * to MDT0 (see mdt_register_lwp_callback()). */
6807                 rc = seq_server_alloc_meta(osd->od_cl_seq->lcs_srv,
6808                                    &osd->od_cl_seq->lcs_space, env);
6809         }
6810
6811         RETURN(rc);
6812 }
6813
6814 static void osd_fid_fini(const struct lu_env *env, struct osd_device *osd)
6815 {
6816         if (osd->od_cl_seq == NULL)
6817                 return;
6818
6819         seq_client_fini(osd->od_cl_seq);
6820         OBD_FREE_PTR(osd->od_cl_seq);
6821         osd->od_cl_seq = NULL;
6822 }
6823
6824 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
6825 {
6826         ENTRY;
6827
6828         /* shutdown quota slave instance associated with the device */
6829         if (o->od_quota_slave != NULL) {
6830                 qsd_fini(env, o->od_quota_slave);
6831                 o->od_quota_slave = NULL;
6832         }
6833
6834         osd_fid_fini(env, o);
6835
6836         RETURN(0);
6837 }
6838
6839 static void osd_umount(const struct lu_env *env, struct osd_device *o)
6840 {
6841         ENTRY;
6842
6843         if (o->od_mnt != NULL) {
6844                 shrink_dcache_sb(osd_sb(o));
6845                 osd_sync(env, &o->od_dt_dev);
6846
6847                 mntput(o->od_mnt);
6848                 o->od_mnt = NULL;
6849         }
6850
6851         EXIT;
6852 }
6853
6854 static int osd_mount(const struct lu_env *env,
6855                      struct osd_device *o, struct lustre_cfg *cfg)
6856 {
6857         const char              *name  = lustre_cfg_string(cfg, 0);
6858         const char              *dev  = lustre_cfg_string(cfg, 1);
6859         const char              *opts;
6860         unsigned long            page, s_flags, lmd_flags = 0;
6861         struct page             *__page;
6862         struct file_system_type *type;
6863         char                    *options = NULL;
6864         char                    *str;
6865         struct osd_thread_info  *info = osd_oti_get(env);
6866         struct lu_fid           *fid = &info->oti_fid;
6867         struct inode            *inode;
6868         int                      rc = 0, force_over_512tb = 0;
6869         ENTRY;
6870
6871         if (o->od_mnt != NULL)
6872                 RETURN(0);
6873
6874         if (strlen(dev) >= sizeof(o->od_mntdev))
6875                 RETURN(-E2BIG);
6876         strcpy(o->od_mntdev, dev);
6877
6878         str = lustre_cfg_string(cfg, 2);
6879         s_flags = simple_strtoul(str, NULL, 0);
6880         str = strstr(str, ":");
6881         if (str)
6882                 lmd_flags = simple_strtoul(str + 1, NULL, 0);
6883         opts = lustre_cfg_string(cfg, 3);
6884 #ifdef __BIG_ENDIAN
6885         if (opts == NULL || strstr(opts, "bigendian_extents") == NULL) {
6886                 CERROR("%s: device %s extents feature is not guaranteed to "
6887                        "work on big-endian systems. Use \"bigendian_extents\" "
6888                        "mount option to override.\n", name, dev);
6889                 RETURN(-EINVAL);
6890         }
6891 #endif
6892 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
6893         if (opts != NULL && strstr(opts, "force_over_128tb") != NULL) {
6894                 CWARN("force_over_128tb option is deprecated. "
6895                       "Filesystems less than 512TB can be created without any "
6896                       "force options. Use force_over_512tb option for "
6897                       "filesystems greater than 512TB.\n");
6898         }
6899 #endif
6900 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 1, 53, 0)
6901         if (opts != NULL && strstr(opts, "force_over_256tb") != NULL) {
6902                 CWARN("force_over_256tb option is deprecated. "
6903                       "Filesystems less than 512TB can be created without any "
6904                       "force options. Use force_over_512tb option for "
6905                       "filesystems greater than 512TB.\n");
6906         }
6907 #endif
6908
6909         if (opts != NULL && strstr(opts, "force_over_512tb") != NULL)
6910                 force_over_512tb = 1;
6911
6912         __page = alloc_page(GFP_KERNEL);
6913         if (__page == NULL)
6914                 GOTO(out, rc = -ENOMEM);
6915         page = (unsigned long)page_address(__page);
6916         options = (char *)page;
6917         *options = '\0';
6918         if (opts != NULL) {
6919                 /* strip out the options for back compatiblity */
6920                 static char *sout[] = {
6921                         "mballoc",
6922                         "iopen",
6923                         "noiopen",
6924                         "iopen_nopriv",
6925                         "extents",
6926                         "noextents",
6927                         /* strip out option we processed in osd */
6928                         "bigendian_extents",
6929                         "force_over_128tb",
6930                         "force_over_256tb",
6931                         "force_over_512tb",
6932                         NULL
6933                 };
6934                 strcat(options, opts);
6935                 for (rc = 0, str = options; sout[rc]; ) {
6936                         char *op = strstr(str, sout[rc]);
6937                         if (op == NULL) {
6938                                 rc++;
6939                                 str = options;
6940                                 continue;
6941                         }
6942                         if (op == options || *(op - 1) == ',') {
6943                                 str = op + strlen(sout[rc]);
6944                                 if (*str == ',' || *str == '\0') {
6945                                         *str == ',' ? str++ : str;
6946                                         memmove(op, str, strlen(str) + 1);
6947                                 }
6948                         }
6949                         for (str = op; *str != ',' && *str != '\0'; str++)
6950                                 ;
6951                 }
6952         } else {
6953                 strncat(options, "user_xattr,acl", 14);
6954         }
6955
6956         /* Glom up mount options */
6957         if (*options != '\0')
6958                 strcat(options, ",");
6959         strlcat(options, "no_mbcache,nodelalloc", PAGE_SIZE);
6960
6961         type = get_fs_type("ldiskfs");
6962         if (!type) {
6963                 CERROR("%s: cannot find ldiskfs module\n", name);
6964                 GOTO(out, rc = -ENODEV);
6965         }
6966
6967         o->od_mnt = vfs_kern_mount(type, s_flags, dev, options);
6968         module_put(type->owner);
6969
6970         if (IS_ERR(o->od_mnt)) {
6971                 rc = PTR_ERR(o->od_mnt);
6972                 o->od_mnt = NULL;
6973                 CERROR("%s: can't mount %s: %d\n", name, dev, rc);
6974                 GOTO(out, rc);
6975         }
6976
6977         if (ldiskfs_blocks_count(LDISKFS_SB(osd_sb(o))->s_es) <<
6978                                  osd_sb(o)->s_blocksize_bits > 512ULL << 40 &&
6979                                  force_over_512tb == 0) {
6980                 CERROR("%s: device %s LDISKFS does not support filesystems "
6981                        "greater than 512TB and can cause data corruption. "
6982                        "Use \"force_over_512tb\" mount option to override.\n",
6983                        name, dev);
6984                 GOTO(out_mnt, rc = -EINVAL);
6985         }
6986
6987         if (lmd_flags & LMD_FLG_DEV_RDONLY) {
6988                 if (priv_dev_set_rdonly) {
6989                         priv_dev_set_rdonly(osd_sb(o)->s_bdev);
6990                         o->od_dt_dev.dd_rdonly = 1;
6991                         LCONSOLE_WARN("%s: set dev_rdonly on this device\n",
6992                                       name);
6993                 } else {
6994                         LCONSOLE_WARN("%s: not support dev_rdonly on this device",
6995                                       name);
6996
6997                         GOTO(out_mnt, rc = -EOPNOTSUPP);
6998                 }
6999         } else if (priv_dev_check_rdonly &&
7000                    priv_dev_check_rdonly(osd_sb(o)->s_bdev)) {
7001                 CERROR("%s: underlying device %s is marked as "
7002                        "read-only. Setup failed\n", name, dev);
7003
7004                 GOTO(out_mnt, rc = -EROFS);
7005         }
7006
7007         if (!LDISKFS_HAS_COMPAT_FEATURE(o->od_mnt->mnt_sb,
7008                                         LDISKFS_FEATURE_COMPAT_HAS_JOURNAL)) {
7009                 CERROR("%s: device %s is mounted w/o journal\n", name, dev);
7010                 GOTO(out_mnt, rc = -EINVAL);
7011         }
7012
7013 #ifdef LDISKFS_MOUNT_DIRDATA
7014         if (LDISKFS_HAS_INCOMPAT_FEATURE(o->od_mnt->mnt_sb,
7015                                          LDISKFS_FEATURE_INCOMPAT_DIRDATA))
7016                 LDISKFS_SB(osd_sb(o))->s_mount_opt |= LDISKFS_MOUNT_DIRDATA;
7017         else if (strstr(name, "MDT")) /* don't complain for MGT or OSTs */
7018                 CWARN("%s: device %s was upgraded from Lustre-1.x without "
7019                       "enabling the dirdata feature. If you do not want to "
7020                       "downgrade to Lustre-1.x again, you can enable it via "
7021                       "'tune2fs -O dirdata device'\n", name, dev);
7022 #endif
7023         inode = osd_sb(o)->s_root->d_inode;
7024         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
7025         rc = osd_ea_fid_set(info, inode, fid, LMAC_NOT_IN_OI, 0);
7026         if (rc != 0) {
7027                 CERROR("%s: failed to set lma on %s root inode\n", name, dev);
7028                 GOTO(out_mnt, rc);
7029         }
7030
7031         if (lmd_flags & LMD_FLG_NOSCRUB)
7032                 o->od_noscrub = 1;
7033
7034         GOTO(out, rc = 0);
7035
7036 out_mnt:
7037         mntput(o->od_mnt);
7038         o->od_mnt = NULL;
7039
7040 out:
7041         if (__page)
7042                 __free_page(__page);
7043
7044         return rc;
7045 }
7046
7047 static struct lu_device *osd_device_fini(const struct lu_env *env,
7048                                          struct lu_device *d)
7049 {
7050         struct osd_device *o = osd_dev(d);
7051         ENTRY;
7052
7053         osd_shutdown(env, o);
7054         osd_procfs_fini(o);
7055         osd_scrub_cleanup(env, o);
7056         osd_obj_map_fini(o);
7057         osd_umount(env, o);
7058
7059         RETURN(NULL);
7060 }
7061
7062 static int osd_device_init0(const struct lu_env *env,
7063                             struct osd_device *o,
7064                             struct lustre_cfg *cfg)
7065 {
7066         struct lu_device        *l = osd2lu_dev(o);
7067         struct osd_thread_info *info;
7068         int                     rc;
7069         int                     cplen = 0;
7070
7071         /* if the module was re-loaded, env can loose its keys */
7072         rc = lu_env_refill((struct lu_env *) env);
7073         if (rc)
7074                 GOTO(out, rc);
7075         info = osd_oti_get(env);
7076         LASSERT(info);
7077
7078         l->ld_ops = &osd_lu_ops;
7079         o->od_dt_dev.dd_ops = &osd_dt_ops;
7080
7081         spin_lock_init(&o->od_osfs_lock);
7082         mutex_init(&o->od_otable_mutex);
7083         INIT_LIST_HEAD(&o->od_orphan_list);
7084
7085         o->od_read_cache = 1;
7086         o->od_writethrough_cache = 1;
7087         o->od_readcache_max_filesize = OSD_MAX_CACHE_SIZE;
7088
7089         cplen = strlcpy(o->od_svname, lustre_cfg_string(cfg, 4),
7090                         sizeof(o->od_svname));
7091         if (cplen >= sizeof(o->od_svname)) {
7092                 rc = -E2BIG;
7093                 GOTO(out, rc);
7094         }
7095
7096         o->od_index = -1; /* -1 means index is invalid */
7097         rc = server_name2index(o->od_svname, &o->od_index, NULL);
7098         if (rc == LDD_F_SV_TYPE_OST)
7099                 o->od_is_ost = 1;
7100
7101         o->od_full_scrub_ratio = OFSR_DEFAULT;
7102         o->od_full_scrub_threshold_rate = FULL_SCRUB_THRESHOLD_RATE_DEFAULT;
7103         rc = osd_mount(env, o, cfg);
7104         if (rc != 0)
7105                 GOTO(out, rc);
7106
7107         rc = osd_obj_map_init(env, o);
7108         if (rc != 0)
7109                 GOTO(out_mnt, rc);
7110
7111         rc = lu_site_init(&o->od_site, l);
7112         if (rc != 0)
7113                 GOTO(out_compat, rc);
7114         o->od_site.ls_bottom_dev = l;
7115
7116         rc = lu_site_init_finish(&o->od_site);
7117         if (rc != 0)
7118                 GOTO(out_site, rc);
7119
7120         INIT_LIST_HEAD(&o->od_ios_list);
7121         /* setup scrub, including OI files initialization */
7122         rc = osd_scrub_setup(env, o);
7123         if (rc < 0)
7124                 GOTO(out_site, rc);
7125
7126         rc = osd_procfs_init(o, o->od_svname);
7127         if (rc != 0) {
7128                 CERROR("%s: can't initialize procfs: rc = %d\n",
7129                        o->od_svname, rc);
7130                 GOTO(out_scrub, rc);
7131         }
7132
7133         LASSERT(l->ld_site->ls_linkage.next != NULL);
7134         LASSERT(l->ld_site->ls_linkage.prev != NULL);
7135
7136         /* initialize quota slave instance */
7137         o->od_quota_slave = qsd_init(env, o->od_svname, &o->od_dt_dev,
7138                                      o->od_proc_entry);
7139         if (IS_ERR(o->od_quota_slave)) {
7140                 rc = PTR_ERR(o->od_quota_slave);
7141                 o->od_quota_slave = NULL;
7142                 GOTO(out_procfs, rc);
7143         }
7144
7145         RETURN(0);
7146
7147 out_procfs:
7148         osd_procfs_fini(o);
7149 out_scrub:
7150         osd_scrub_cleanup(env, o);
7151 out_site:
7152         lu_site_fini(&o->od_site);
7153 out_compat:
7154         osd_obj_map_fini(o);
7155 out_mnt:
7156         osd_umount(env, o);
7157 out:
7158         return rc;
7159 }
7160
7161 static struct lu_device *osd_device_alloc(const struct lu_env *env,
7162                                           struct lu_device_type *t,
7163                                           struct lustre_cfg *cfg)
7164 {
7165         struct osd_device *o;
7166         int                rc;
7167
7168         OBD_ALLOC_PTR(o);
7169         if (o == NULL)
7170                 return ERR_PTR(-ENOMEM);
7171
7172         rc = dt_device_init(&o->od_dt_dev, t);
7173         if (rc == 0) {
7174                 /* Because the ctx might be revived in dt_device_init,
7175                  * refill the env here */
7176                 lu_env_refill((struct lu_env *)env);
7177                 rc = osd_device_init0(env, o, cfg);
7178                 if (rc)
7179                         dt_device_fini(&o->od_dt_dev);
7180         }
7181
7182         if (unlikely(rc != 0))
7183                 OBD_FREE_PTR(o);
7184
7185         return rc == 0 ? osd2lu_dev(o) : ERR_PTR(rc);
7186 }
7187
7188 static struct lu_device *osd_device_free(const struct lu_env *env,
7189                                          struct lu_device *d)
7190 {
7191         struct osd_device *o = osd_dev(d);
7192         ENTRY;
7193
7194         /* XXX: make osd top device in order to release reference */
7195         d->ld_site->ls_top_dev = d;
7196         lu_site_purge(env, d->ld_site, -1);
7197         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
7198                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
7199                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
7200         }
7201         lu_site_fini(&o->od_site);
7202         dt_device_fini(&o->od_dt_dev);
7203         OBD_FREE_PTR(o);
7204         RETURN(NULL);
7205 }
7206
7207 static int osd_process_config(const struct lu_env *env,
7208                               struct lu_device *d, struct lustre_cfg *cfg)
7209 {
7210         struct osd_device               *o = osd_dev(d);
7211         int                             rc;
7212         ENTRY;
7213
7214         switch (cfg->lcfg_command) {
7215         case LCFG_SETUP:
7216                 rc = osd_mount(env, o, cfg);
7217                 break;
7218         case LCFG_CLEANUP:
7219                 lu_dev_del_linkage(d->ld_site, d);
7220                 rc = osd_shutdown(env, o);
7221                 break;
7222         case LCFG_PARAM:
7223                 LASSERT(&o->od_dt_dev);
7224                 rc = class_process_proc_param(PARAM_OSD, lprocfs_osd_obd_vars,
7225                                               cfg, &o->od_dt_dev);
7226                 if (rc > 0 || rc == -ENOSYS) {
7227                         rc = class_process_proc_param(PARAM_OST,
7228                                                       lprocfs_osd_obd_vars,
7229                                                       cfg, &o->od_dt_dev);
7230                         if (rc > 0)
7231                                 rc = 0;
7232                 }
7233                 break;
7234         default:
7235                 rc = -ENOSYS;
7236         }
7237
7238         RETURN(rc);
7239 }
7240
7241 static int osd_recovery_complete(const struct lu_env *env,
7242                                  struct lu_device *d)
7243 {
7244         struct osd_device       *osd = osd_dev(d);
7245         int                      rc = 0;
7246         ENTRY;
7247
7248         if (osd->od_quota_slave == NULL)
7249                 RETURN(0);
7250
7251         /* start qsd instance on recovery completion, this notifies the quota
7252          * slave code that we are about to process new requests now */
7253         rc = qsd_start(env, osd->od_quota_slave);
7254         RETURN(rc);
7255 }
7256
7257 /*
7258  * we use exports to track all osd users
7259  */
7260 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
7261                            struct obd_device *obd, struct obd_uuid *cluuid,
7262                            struct obd_connect_data *data, void *localdata)
7263 {
7264         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
7265         struct lustre_handle  conn;
7266         int                   rc;
7267         ENTRY;
7268
7269         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
7270
7271         rc = class_connect(&conn, obd, cluuid);
7272         if (rc)
7273                 RETURN(rc);
7274
7275         *exp = class_conn2export(&conn);
7276
7277         spin_lock(&osd->od_osfs_lock);
7278         osd->od_connects++;
7279         spin_unlock(&osd->od_osfs_lock);
7280
7281         RETURN(0);
7282 }
7283
7284 /*
7285  * once last export (we don't count self-export) disappeared
7286  * osd can be released
7287  */
7288 static int osd_obd_disconnect(struct obd_export *exp)
7289 {
7290         struct obd_device *obd = exp->exp_obd;
7291         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
7292         int                rc, release = 0;
7293         ENTRY;
7294
7295         /* Only disconnect the underlying layers on the final disconnect. */
7296         spin_lock(&osd->od_osfs_lock);
7297         osd->od_connects--;
7298         if (osd->od_connects == 0)
7299                 release = 1;
7300         spin_unlock(&osd->od_osfs_lock);
7301
7302         rc = class_disconnect(exp); /* bz 9811 */
7303
7304         if (rc == 0 && release)
7305                 class_manual_cleanup(obd);
7306         RETURN(rc);
7307 }
7308
7309 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
7310                        struct lu_device *dev)
7311 {
7312         struct osd_device       *osd    = osd_dev(dev);
7313         struct lr_server_data   *lsd    =
7314                         &osd->od_dt_dev.dd_lu_dev.ld_site->ls_tgt->lut_lsd;
7315         int                      result = 0;
7316         ENTRY;
7317
7318         if (osd->od_quota_slave != NULL) {
7319                 /* set up quota slave objects */
7320                 result = qsd_prepare(env, osd->od_quota_slave);
7321                 if (result != 0)
7322                         RETURN(result);
7323         }
7324
7325         if (lsd->lsd_feature_incompat & OBD_COMPAT_OST) {
7326 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 52, 0)
7327                 if (lsd->lsd_feature_rocompat & OBD_ROCOMPAT_IDX_IN_IDIF) {
7328                         osd->od_index_in_idif = 1;
7329                 } else {
7330                         osd->od_index_in_idif = 0;
7331                         result = osd_register_proc_index_in_idif(osd);
7332                         if (result != 0)
7333                                 RETURN(result);
7334                 }
7335 #else
7336                 osd->od_index_in_idif = 1;
7337 #endif
7338         }
7339
7340         result = osd_fid_init(env, osd);
7341
7342         RETURN(result);
7343 }
7344
7345 static int osd_fid_alloc(const struct lu_env *env, struct obd_export *exp,
7346                          struct lu_fid *fid, struct md_op_data *op_data)
7347 {
7348         struct osd_device *osd = osd_dev(exp->exp_obd->obd_lu_dev);
7349
7350         return seq_client_alloc_fid(env, osd->od_cl_seq, fid);
7351 }
7352
7353 static const struct lu_object_operations osd_lu_obj_ops = {
7354         .loo_object_init      = osd_object_init,
7355         .loo_object_delete    = osd_object_delete,
7356         .loo_object_release   = osd_object_release,
7357         .loo_object_free      = osd_object_free,
7358         .loo_object_print     = osd_object_print,
7359         .loo_object_invariant = osd_object_invariant
7360 };
7361
7362 const struct lu_device_operations osd_lu_ops = {
7363         .ldo_object_alloc      = osd_object_alloc,
7364         .ldo_process_config    = osd_process_config,
7365         .ldo_recovery_complete = osd_recovery_complete,
7366         .ldo_prepare           = osd_prepare,
7367 };
7368
7369 static const struct lu_device_type_operations osd_device_type_ops = {
7370         .ldto_init = osd_type_init,
7371         .ldto_fini = osd_type_fini,
7372
7373         .ldto_start = osd_type_start,
7374         .ldto_stop  = osd_type_stop,
7375
7376         .ldto_device_alloc = osd_device_alloc,
7377         .ldto_device_free  = osd_device_free,
7378
7379         .ldto_device_init    = osd_device_init,
7380         .ldto_device_fini    = osd_device_fini
7381 };
7382
7383 static struct lu_device_type osd_device_type = {
7384         .ldt_tags     = LU_DEVICE_DT,
7385         .ldt_name     = LUSTRE_OSD_LDISKFS_NAME,
7386         .ldt_ops      = &osd_device_type_ops,
7387         .ldt_ctx_tags = LCT_LOCAL,
7388 };
7389
7390 static int osd_health_check(const struct lu_env *env, struct obd_device *obd)
7391 {
7392         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
7393         struct super_block *sb = osd_sb(osd);
7394
7395         return (osd->od_mnt == NULL || sb->s_flags & MS_RDONLY);
7396 }
7397
7398 /*
7399  * lprocfs legacy support.
7400  */
7401 static struct obd_ops osd_obd_device_ops = {
7402         .o_owner = THIS_MODULE,
7403         .o_connect      = osd_obd_connect,
7404         .o_disconnect   = osd_obd_disconnect,
7405         .o_fid_alloc    = osd_fid_alloc,
7406         .o_health_check = osd_health_check,
7407 };
7408
7409 static int __init osd_init(void)
7410 {
7411         int rc;
7412
7413         CLASSERT(BH_DXLock < sizeof(((struct buffer_head *)0)->b_state) * 8);
7414 #if !defined(CONFIG_DEBUG_MUTEXES) && !defined(CONFIG_DEBUG_SPINLOCK)
7415         /* please, try to keep osd_thread_info smaller than a page */
7416         CLASSERT(sizeof(struct osd_thread_info) <= PAGE_SIZE);
7417 #endif
7418
7419         osd_oi_mod_init();
7420
7421         rc = lu_kmem_init(ldiskfs_caches);
7422         if (rc)
7423                 return rc;
7424
7425 #ifdef CONFIG_KALLSYMS
7426         priv_dev_set_rdonly = (void *)kallsyms_lookup_name("dev_set_rdonly");
7427         priv_dev_check_rdonly = (void *)kallsyms_lookup_name("dev_check_rdonly");
7428         /* Clear readonly is unused at this time */
7429         /*priv_dev_clear_rdonly = (void *)kallsyms_lookup_name("dev_clear_rdonly");*/
7430 #endif
7431
7432         rc = class_register_type(&osd_obd_device_ops, NULL, true,
7433                                  lprocfs_osd_module_vars,
7434                                  LUSTRE_OSD_LDISKFS_NAME, &osd_device_type);
7435         if (rc)
7436                 lu_kmem_fini(ldiskfs_caches);
7437         return rc;
7438 }
7439
7440 static void __exit osd_exit(void)
7441 {
7442         class_unregister_type(LUSTRE_OSD_LDISKFS_NAME);
7443         lu_kmem_fini(ldiskfs_caches);
7444 }
7445
7446 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
7447 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_LDISKFS_NAME")");
7448 MODULE_VERSION(LUSTRE_VERSION_STRING);
7449 MODULE_LICENSE("GPL");
7450
7451 module_init(osd_init);
7452 module_exit(osd_exit);