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