Whamcloud - gitweb
377f5a8defcd5d801fd0c248397e6bf5c89797e9
[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_feature_extents(sb))
2038                 sfs->os_maxbytes = sb->s_maxbytes;
2039         else
2040                 sfs->os_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2041
2042         /*
2043          * Reserve some space so to avoid fragmenting the filesystem too much.
2044          * Fragmentation not only impacts performance, but can also increase
2045          * metadata overhead significantly, causing grant calculation to be
2046          * wrong.
2047          *
2048          * Reserve 0.78% of total space, at least 8MB for small filesystems.
2049          */
2050         CLASSERT(OSD_STATFS_RESERVED > LDISKFS_MAX_BLOCK_SIZE);
2051         reserved = OSD_STATFS_RESERVED >> sb->s_blocksize_bits;
2052         if (likely(sfs->os_blocks >= reserved << OSD_STATFS_RESERVED_SHIFT))
2053                 reserved = sfs->os_blocks >> OSD_STATFS_RESERVED_SHIFT;
2054
2055         sfs->os_blocks -= reserved;
2056         sfs->os_bfree  -= min(reserved, sfs->os_bfree);
2057         sfs->os_bavail -= min(reserved, sfs->os_bavail);
2058
2059 out:
2060         if (unlikely(env == NULL))
2061                 OBD_FREE_PTR(ksfs);
2062         return result;
2063 }
2064
2065 /**
2066  * Estimate space needed for file creations. We assume the largest filename
2067  * which is 2^64 - 1, hence a filename of 20 chars.
2068  * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
2069  */
2070 #ifdef __LDISKFS_DIR_REC_LEN
2071 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
2072 #else
2073 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
2074 #endif
2075
2076 /*
2077  * Concurrency: doesn't access mutable data.
2078  */
2079 static void osd_conf_get(const struct lu_env *env,
2080                          const struct dt_device *dev,
2081                          struct dt_device_param *param)
2082 {
2083         struct super_block *sb = osd_sb(osd_dt_dev(dev));
2084         int                ea_overhead;
2085
2086         /*
2087          * XXX should be taken from not-yet-existing fs abstraction layer.
2088          */
2089         param->ddp_max_name_len = LDISKFS_NAME_LEN;
2090         param->ddp_max_nlink    = LDISKFS_LINK_MAX;
2091         param->ddp_symlink_max  = sb->s_blocksize;
2092         param->ddp_mount_type     = LDD_MT_LDISKFS;
2093         if (ldiskfs_has_feature_extents(sb))
2094                 param->ddp_maxbytes = sb->s_maxbytes;
2095         else
2096                 param->ddp_maxbytes = LDISKFS_SB(sb)->s_bitmap_maxbytes;
2097         /* inode are statically allocated, so per-inode space consumption
2098          * is the space consumed by the directory entry */
2099         param->ddp_inodespace     = PER_OBJ_USAGE;
2100         /* EXT_INIT_MAX_LEN is the theoretical maximum extent size  (32k blocks
2101          * = 128MB) which is unlikely to be hit in real life. Report a smaller
2102          * maximum length to not under count the actual number of extents
2103          * needed for writing a file. */
2104         param->ddp_max_extent_blks = EXT_INIT_MAX_LEN >> 2;
2105         /* worst-case extent insertion metadata overhead */
2106         param->ddp_extent_tax = 6 * LDISKFS_BLOCK_SIZE(sb);
2107         param->ddp_mntopts      = 0;
2108         if (test_opt(sb, XATTR_USER))
2109                 param->ddp_mntopts |= MNTOPT_USERXATTR;
2110         if (test_opt(sb, POSIX_ACL))
2111                 param->ddp_mntopts |= MNTOPT_ACL;
2112
2113         /* LOD might calculate the max stripe count based on max_ea_size,
2114          * so we need take account in the overhead as well,
2115          * xattr_header + magic + xattr_entry_head */
2116         ea_overhead = sizeof(struct ldiskfs_xattr_header) + sizeof(__u32) +
2117                       LDISKFS_XATTR_LEN(XATTR_NAME_MAX_LEN);
2118
2119 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
2120         if (ldiskfs_has_feature_ea_inode(sb))
2121                 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE -
2122                                                                 ea_overhead;
2123         else
2124 #endif
2125                 param->ddp_max_ea_size = sb->s_blocksize - ea_overhead;
2126
2127         /* Preferred RPC size for efficient disk IO.  4MB shows good
2128          * all-around performance for ldiskfs, but use bigalloc chunk size
2129          * by default if larger. */
2130 #if defined(LDISKFS_CLUSTER_SIZE)
2131         if (LDISKFS_CLUSTER_SIZE(sb) > DT_DEF_BRW_SIZE)
2132                 param->ddp_brw_size = LDISKFS_CLUSTER_SIZE(sb);
2133         else
2134 #endif
2135                 param->ddp_brw_size = DT_DEF_BRW_SIZE;
2136 }
2137
2138 /*
2139  * Concurrency: shouldn't matter.
2140  */
2141 static int osd_sync(const struct lu_env *env, struct dt_device *d)
2142 {
2143         int rc;
2144
2145         CDEBUG(D_CACHE, "%s: syncing OSD\n", osd_dt_dev(d)->od_svname);
2146
2147         rc = ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
2148
2149         CDEBUG(D_CACHE, "%s: synced OSD: rc = %d\n", osd_dt_dev(d)->od_svname,
2150                rc);
2151
2152         return rc;
2153 }
2154
2155 /**
2156  * Start commit for OSD device.
2157  *
2158  * An implementation of dt_commit_async method for OSD device.
2159  * Asychronously starts underlayng fs sync and thereby a transaction
2160  * commit.
2161  *
2162  * \param env environment
2163  * \param d dt device
2164  *
2165  * \see dt_device_operations
2166  */
2167 static int osd_commit_async(const struct lu_env *env,
2168                             struct dt_device *d)
2169 {
2170         struct super_block *s = osd_sb(osd_dt_dev(d));
2171         ENTRY;
2172
2173         CDEBUG(D_HA, "%s: async commit OSD\n", osd_dt_dev(d)->od_svname);
2174         RETURN(s->s_op->sync_fs(s, 0));
2175 }
2176
2177 /* Our own copy of the set readonly functions if present, or NU if not. */
2178 static int (*priv_dev_set_rdonly)(struct block_device *bdev);
2179 static int (*priv_dev_check_rdonly)(struct block_device *bdev);
2180 /* static int (*priv_dev_clear_rdonly)(struct block_device *bdev); */
2181
2182 /*
2183  * Concurrency: shouldn't matter.
2184  */
2185 static int osd_ro(const struct lu_env *env, struct dt_device *d)
2186 {
2187         struct super_block *sb = osd_sb(osd_dt_dev(d));
2188         struct block_device *dev = sb->s_bdev;
2189         int rc = -EOPNOTSUPP;
2190         ENTRY;
2191
2192         if (priv_dev_set_rdonly) {
2193                 struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
2194
2195                 rc = 0;
2196                 CERROR("*** setting %s read-only ***\n",
2197                        osd_dt_dev(d)->od_svname);
2198
2199                 if (sb->s_op->freeze_fs) {
2200                         rc = sb->s_op->freeze_fs(sb);
2201                         if (rc)
2202                                 goto out;
2203                 }
2204
2205                 if (jdev && (jdev != dev)) {
2206                         CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
2207                                (long)jdev);
2208                         priv_dev_set_rdonly(jdev);
2209                 }
2210                 CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
2211                 priv_dev_set_rdonly(dev);
2212
2213                 if (sb->s_op->unfreeze_fs)
2214                         sb->s_op->unfreeze_fs(sb);
2215         }
2216
2217 out:
2218         if (rc)
2219                 CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
2220                        osd_dt_dev(d)->od_svname, (long)dev, rc);
2221
2222         RETURN(rc);
2223 }
2224
2225 /**
2226  * Note: we do not count into QUOTA here.
2227  * If we mount with --data_journal we may need more.
2228  */
2229 const int osd_dto_credits_noquota[DTO_NR] = {
2230         /**
2231          * Insert.
2232          * INDEX_EXTRA_TRANS_BLOCKS(8) +
2233          * SINGLEDATA_TRANS_BLOCKS(8)
2234          * XXX Note: maybe iam need more, since iam have more level than
2235          *           EXT3 htree.
2236          */
2237         [DTO_INDEX_INSERT]  = 16,
2238         /**
2239          * Delete
2240          * just modify a single entry, probably merge few within a block
2241          */
2242         [DTO_INDEX_DELETE]  = 1,
2243         /**
2244          * Used for OI scrub
2245          */
2246         [DTO_INDEX_UPDATE]  = 16,
2247         /**
2248          * 4(inode, inode bits, groups, GDT)
2249          *   notice: OI updates are counted separately with DTO_INDEX_INSERT
2250          */
2251         [DTO_OBJECT_CREATE] = 4,
2252         /**
2253          * 4(inode, inode bits, groups, GDT)
2254          *   notice: OI updates are counted separately with DTO_INDEX_DELETE
2255          */
2256         [DTO_OBJECT_DELETE] = 4,
2257         /**
2258          * Attr set credits (inode)
2259          */
2260         [DTO_ATTR_SET_BASE] = 1,
2261         /**
2262          * Xattr set. The same as xattr of EXT3.
2263          * DATA_TRANS_BLOCKS(14)
2264          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
2265          * are also counted in. Do not know why?
2266          */
2267         [DTO_XATTR_SET]     = 14,
2268         /**
2269          * credits for inode change during write.
2270          */
2271         [DTO_WRITE_BASE]    = 3,
2272         /**
2273          * credits for single block write.
2274          */
2275         [DTO_WRITE_BLOCK]   = 14,
2276         /**
2277          * Attr set credits for chown.
2278          * This is extra credits for setattr, and it is null without quota
2279          */
2280         [DTO_ATTR_SET_CHOWN] = 0
2281 };
2282
2283 static const struct dt_device_operations osd_dt_ops = {
2284         .dt_root_get       = osd_root_get,
2285         .dt_statfs         = osd_statfs,
2286         .dt_trans_create   = osd_trans_create,
2287         .dt_trans_start    = osd_trans_start,
2288         .dt_trans_stop     = osd_trans_stop,
2289         .dt_trans_cb_add   = osd_trans_cb_add,
2290         .dt_conf_get       = osd_conf_get,
2291         .dt_sync           = osd_sync,
2292         .dt_ro             = osd_ro,
2293         .dt_commit_async   = osd_commit_async,
2294 };
2295
2296 static void osd_read_lock(const struct lu_env *env, struct dt_object *dt,
2297                           unsigned role)
2298 {
2299         struct osd_object *obj = osd_dt_obj(dt);
2300         struct osd_thread_info *oti = osd_oti_get(env);
2301
2302         LINVRNT(osd_invariant(obj));
2303
2304         LASSERT(obj->oo_owner != env);
2305         down_read_nested(&obj->oo_sem, role);
2306
2307         LASSERT(obj->oo_owner == NULL);
2308         oti->oti_r_locks++;
2309 }
2310
2311 static void osd_write_lock(const struct lu_env *env, struct dt_object *dt,
2312                            unsigned role)
2313 {
2314         struct osd_object *obj = osd_dt_obj(dt);
2315         struct osd_thread_info *oti = osd_oti_get(env);
2316
2317         LINVRNT(osd_invariant(obj));
2318
2319         LASSERT(obj->oo_owner != env);
2320         down_write_nested(&obj->oo_sem, role);
2321
2322         LASSERT(obj->oo_owner == NULL);
2323         obj->oo_owner = env;
2324         oti->oti_w_locks++;
2325 }
2326
2327 static void osd_read_unlock(const struct lu_env *env, struct dt_object *dt)
2328 {
2329         struct osd_object *obj = osd_dt_obj(dt);
2330         struct osd_thread_info *oti = osd_oti_get(env);
2331
2332         LINVRNT(osd_invariant(obj));
2333
2334         LASSERT(oti->oti_r_locks > 0);
2335         oti->oti_r_locks--;
2336         up_read(&obj->oo_sem);
2337 }
2338
2339 static void osd_write_unlock(const struct lu_env *env, struct dt_object *dt)
2340 {
2341         struct osd_object *obj = osd_dt_obj(dt);
2342         struct osd_thread_info *oti = osd_oti_get(env);
2343
2344         LINVRNT(osd_invariant(obj));
2345
2346         LASSERT(obj->oo_owner == env);
2347         LASSERT(oti->oti_w_locks > 0);
2348         oti->oti_w_locks--;
2349         obj->oo_owner = NULL;
2350         up_write(&obj->oo_sem);
2351 }
2352
2353 static int osd_write_locked(const struct lu_env *env, struct dt_object *dt)
2354 {
2355         struct osd_object *obj = osd_dt_obj(dt);
2356
2357         LINVRNT(osd_invariant(obj));
2358
2359         return obj->oo_owner == env;
2360 }
2361
2362 static struct timespec *osd_inode_time(const struct lu_env *env,
2363                                        struct inode *inode, __u64 seconds)
2364 {
2365         struct osd_thread_info  *oti = osd_oti_get(env);
2366         struct timespec         *t   = &oti->oti_time;
2367
2368         t->tv_sec = seconds;
2369         t->tv_nsec = 0;
2370         *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
2371         return t;
2372 }
2373
2374 static void osd_inode_getattr(const struct lu_env *env,
2375                               struct inode *inode, struct lu_attr *attr)
2376 {
2377         attr->la_valid  |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
2378                            LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
2379                            LA_PROJID | LA_FLAGS | LA_NLINK | LA_RDEV |
2380                            LA_BLKSIZE | LA_TYPE;
2381
2382         attr->la_atime   = LTIME_S(inode->i_atime);
2383         attr->la_mtime   = LTIME_S(inode->i_mtime);
2384         attr->la_ctime   = LTIME_S(inode->i_ctime);
2385         attr->la_mode    = inode->i_mode;
2386         attr->la_size    = i_size_read(inode);
2387         attr->la_blocks  = inode->i_blocks;
2388         attr->la_uid     = i_uid_read(inode);
2389         attr->la_gid     = i_gid_read(inode);
2390         attr->la_projid  = i_projid_read(inode);
2391         attr->la_flags   = ll_inode_to_ext_flags(inode->i_flags);
2392         attr->la_nlink   = inode->i_nlink;
2393         attr->la_rdev    = inode->i_rdev;
2394         attr->la_blksize = 1 << inode->i_blkbits;
2395         attr->la_blkbits = inode->i_blkbits;
2396         /*
2397          * Ext4 did not transfer inherit flags from raw inode
2398          * to inode flags, and ext4 internally test raw inode
2399          * @i_flags directly. Instead of patching ext4, we do it here.
2400          */
2401         if (LDISKFS_I(inode)->i_flags & LUSTRE_PROJINHERIT_FL)
2402                 attr->la_flags |= LUSTRE_PROJINHERIT_FL;
2403 }
2404
2405 static int osd_attr_get(const struct lu_env *env,
2406                         struct dt_object *dt,
2407                         struct lu_attr *attr)
2408 {
2409         struct osd_object *obj = osd_dt_obj(dt);
2410
2411         if (unlikely(!dt_object_exists(dt)))
2412                 return -ENOENT;
2413         if (unlikely(obj->oo_destroyed))
2414                 return -ENOENT;
2415
2416         LASSERT(!dt_object_remote(dt));
2417         LINVRNT(osd_invariant(obj));
2418
2419         spin_lock(&obj->oo_guard);
2420         osd_inode_getattr(env, obj->oo_inode, attr);
2421         if (obj->oo_lma_flags & LUSTRE_ORPHAN_FL)
2422                 attr->la_flags |= LUSTRE_ORPHAN_FL;
2423         spin_unlock(&obj->oo_guard);
2424
2425         return 0;
2426 }
2427
2428 static int osd_declare_attr_qid(const struct lu_env *env,
2429                                 struct osd_object *obj,
2430                                 struct osd_thandle *oh, long long bspace,
2431                                 qid_t old_id, qid_t new_id, bool enforce,
2432                                 unsigned type)
2433 {
2434         int rc;
2435         struct osd_thread_info *info = osd_oti_get(env);
2436         struct lquota_id_info  *qi = &info->oti_qi;
2437
2438         qi->lqi_type = type;
2439         /* inode accounting */
2440         qi->lqi_is_blk = false;
2441
2442         /* one more inode for the new id ... */
2443         qi->lqi_id.qid_uid = new_id;
2444         qi->lqi_space      = 1;
2445         /* Reserve credits for the new id */
2446         rc = osd_declare_qid(env, oh, qi, NULL, enforce, NULL);
2447         if (rc == -EDQUOT || rc == -EINPROGRESS)
2448                 rc = 0;
2449         if (rc)
2450                 RETURN(rc);
2451
2452         /* and one less inode for the current id */
2453         qi->lqi_id.qid_uid = old_id;
2454         qi->lqi_space      = -1;
2455         rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2456         if (rc == -EDQUOT || rc == -EINPROGRESS)
2457                 rc = 0;
2458         if (rc)
2459                 RETURN(rc);
2460
2461         /* block accounting */
2462         qi->lqi_is_blk = true;
2463
2464         /* more blocks for the new id ... */
2465         qi->lqi_id.qid_uid = new_id;
2466         qi->lqi_space      = bspace;
2467         /*
2468          * Credits for the new uid has been reserved, re-use "obj"
2469          * to save credit reservation.
2470          */
2471         rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2472         if (rc == -EDQUOT || rc == -EINPROGRESS)
2473                 rc = 0;
2474         if (rc)
2475                 RETURN(rc);
2476
2477         /* and finally less blocks for the current uid */
2478         qi->lqi_id.qid_uid = old_id;
2479         qi->lqi_space      = -bspace;
2480         rc = osd_declare_qid(env, oh, qi, obj, enforce, NULL);
2481         if (rc == -EDQUOT || rc == -EINPROGRESS)
2482                 rc = 0;
2483
2484         RETURN(rc);
2485 }
2486
2487 static int osd_declare_attr_set(const struct lu_env *env,
2488                                 struct dt_object *dt,
2489                                 const struct lu_attr *attr,
2490                                 struct thandle *handle)
2491 {
2492         struct osd_thandle     *oh;
2493         struct osd_object      *obj;
2494         qid_t                   uid;
2495         qid_t                   gid;
2496         long long               bspace;
2497         int                     rc = 0;
2498         bool                    enforce;
2499         ENTRY;
2500
2501         LASSERT(dt != NULL);
2502         LASSERT(handle != NULL);
2503
2504         obj = osd_dt_obj(dt);
2505         LASSERT(osd_invariant(obj));
2506
2507         oh = container_of0(handle, struct osd_thandle, ot_super);
2508         LASSERT(oh->ot_handle == NULL);
2509
2510         osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
2511                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2512
2513         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2514                              osd_dto_credits_noquota[DTO_XATTR_SET]);
2515
2516         if (attr == NULL || obj->oo_inode == NULL)
2517                 RETURN(rc);
2518
2519         bspace   = obj->oo_inode->i_blocks;
2520         bspace <<= obj->oo_inode->i_sb->s_blocksize_bits;
2521         bspace   = toqb(bspace);
2522
2523         /* Changing ownership is always preformed by super user, it should not
2524          * fail with EDQUOT.
2525          *
2526          * We still need to call the osd_declare_qid() to calculate the journal
2527          * credits for updating quota accounting files and to trigger quota
2528          * space adjustment once the operation is completed.*/
2529         if (attr->la_valid & LA_UID || attr->la_valid & LA_GID) {
2530                 /* USERQUOTA */
2531                 uid = i_uid_read(obj->oo_inode);
2532                 enforce = (attr->la_valid & LA_UID) && (attr->la_uid != uid);
2533                 rc = osd_declare_attr_qid(env, obj, oh, bspace, uid,
2534                                           attr->la_uid, enforce, USRQUOTA);
2535                 if (rc)
2536                         RETURN(rc);
2537
2538                 gid = i_gid_read(obj->oo_inode);
2539                 enforce = (attr->la_valid & LA_GID) && (attr->la_gid != gid);
2540                 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2541                                           i_gid_read(obj->oo_inode),
2542                                           attr->la_gid, enforce, GRPQUOTA);
2543                 if (rc)
2544                         RETURN(rc);
2545
2546         }
2547 #ifdef HAVE_PROJECT_QUOTA
2548         if (attr->la_valid & LA_PROJID) {
2549                 __u32 projid = i_projid_read(obj->oo_inode);
2550                 enforce = (attr->la_valid & LA_PROJID) &&
2551                                         (attr->la_projid != projid);
2552                 rc = osd_declare_attr_qid(env, obj, oh, bspace,
2553                                           (qid_t)projid, (qid_t)attr->la_projid,
2554                                           enforce, PRJQUOTA);
2555                 if (rc)
2556                         RETURN(rc);
2557         }
2558 #endif
2559         RETURN(rc);
2560 }
2561
2562 static int osd_inode_setattr(const struct lu_env *env,
2563                              struct inode *inode, const struct lu_attr *attr)
2564 {
2565         __u64 bits = attr->la_valid;
2566
2567         /* Only allow set size for regular file */
2568         if (!S_ISREG(inode->i_mode))
2569                 bits &= ~(LA_SIZE | LA_BLOCKS);
2570
2571         if (bits == 0)
2572                 return 0;
2573
2574         if (bits & LA_ATIME)
2575                 inode->i_atime  = *osd_inode_time(env, inode, attr->la_atime);
2576         if (bits & LA_CTIME)
2577                 inode->i_ctime  = *osd_inode_time(env, inode, attr->la_ctime);
2578         if (bits & LA_MTIME)
2579                 inode->i_mtime  = *osd_inode_time(env, inode, attr->la_mtime);
2580         if (bits & LA_SIZE) {
2581                 spin_lock(&inode->i_lock);
2582                 LDISKFS_I(inode)->i_disksize = attr->la_size;
2583                 i_size_write(inode, attr->la_size);
2584                 spin_unlock(&inode->i_lock);
2585         }
2586
2587         /* OSD should not change "i_blocks" which is used by quota.
2588          * "i_blocks" should be changed by ldiskfs only. */
2589         if (bits & LA_MODE)
2590                 inode->i_mode = (inode->i_mode & S_IFMT) |
2591                                 (attr->la_mode & ~S_IFMT);
2592         if (bits & LA_UID)
2593                 i_uid_write(inode, attr->la_uid);
2594         if (bits & LA_GID)
2595                 i_gid_write(inode, attr->la_gid);
2596         if (bits & LA_PROJID)
2597                 i_projid_write(inode, attr->la_projid);
2598         if (bits & LA_NLINK)
2599                 set_nlink(inode, attr->la_nlink);
2600         if (bits & LA_RDEV)
2601                 inode->i_rdev = attr->la_rdev;
2602
2603         if (bits & LA_FLAGS) {
2604                 /* always keep S_NOCMTIME */
2605                 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
2606                                  S_NOCMTIME;
2607                 /*
2608                  * Ext4 did not transfer inherit flags from
2609                  * @inode->i_flags to raw inode i_flags when writing
2610                  * flags, we do it explictly here.
2611                  */
2612                 if (attr->la_flags & LUSTRE_PROJINHERIT_FL)
2613                         LDISKFS_I(inode)->i_flags |= LUSTRE_PROJINHERIT_FL;
2614                 else
2615                         LDISKFS_I(inode)->i_flags &= ~LUSTRE_PROJINHERIT_FL;
2616         }
2617         return 0;
2618 }
2619
2620 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
2621 {
2622         int rc;
2623
2624         if ((attr->la_valid & LA_UID && attr->la_uid != i_uid_read(inode)) ||
2625             (attr->la_valid & LA_GID && attr->la_gid != i_gid_read(inode))) {
2626                 struct iattr    iattr;
2627
2628                 ll_vfs_dq_init(inode);
2629                 iattr.ia_valid = 0;
2630                 if (attr->la_valid & LA_UID)
2631                         iattr.ia_valid |= ATTR_UID;
2632                 if (attr->la_valid & LA_GID)
2633                         iattr.ia_valid |= ATTR_GID;
2634                 iattr.ia_uid = make_kuid(&init_user_ns, attr->la_uid);
2635                 iattr.ia_gid = make_kgid(&init_user_ns, attr->la_gid);
2636
2637                 rc = ll_vfs_dq_transfer(inode, &iattr);
2638                 if (rc) {
2639                         CERROR("%s: quota transfer failed: rc = %d. Is quota "
2640                                "enforcement enabled on the ldiskfs "
2641                                "filesystem?\n", inode->i_sb->s_id, rc);
2642                         return rc;
2643                 }
2644         }
2645
2646         /* Handle project id transfer here properly */
2647         if (attr->la_valid & LA_PROJID &&
2648             attr->la_projid != i_projid_read(inode)) {
2649 #ifdef HAVE_PROJECT_QUOTA
2650                 rc = ldiskfs_transfer_project(inode, attr->la_projid);
2651 #else
2652                 rc = -ENOTSUPP;
2653 #endif
2654                 if (rc) {
2655                         CERROR("%s: quota transfer failed: rc = %d. Is project "
2656                                "enforcement enabled on the ldiskfs "
2657                                "filesystem?\n", inode->i_sb->s_id, rc);
2658                         return rc;
2659                 }
2660         }
2661         return 0;
2662 }
2663
2664 static int osd_attr_set(const struct lu_env *env,
2665                         struct dt_object *dt,
2666                         const struct lu_attr *attr,
2667                         struct thandle *handle)
2668 {
2669         struct osd_object *obj = osd_dt_obj(dt);
2670         struct inode      *inode;
2671         int rc;
2672
2673         if (!dt_object_exists(dt))
2674                 return -ENOENT;
2675
2676         LASSERT(handle != NULL);
2677         LASSERT(!dt_object_remote(dt));
2678         LASSERT(osd_invariant(obj));
2679
2680         osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
2681
2682         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING)) {
2683                 struct osd_thread_info  *oti  = osd_oti_get(env);
2684                 const struct lu_fid     *fid0 = lu_object_fid(&dt->do_lu);
2685                 struct lu_fid           *fid1 = &oti->oti_fid;
2686                 struct osd_inode_id     *id   = &oti->oti_id;
2687                 struct iam_path_descr   *ipd;
2688                 struct iam_container    *bag;
2689                 struct osd_thandle      *oh;
2690                 int                      rc;
2691
2692                 fid_cpu_to_be(fid1, fid0);
2693                 memset(id, 1, sizeof(*id));
2694                 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
2695                                   fid0)->oi_dir.od_container;
2696                 ipd = osd_idx_ipd_get(env, bag);
2697                 if (unlikely(ipd == NULL))
2698                         RETURN(-ENOMEM);
2699
2700                 oh = container_of0(handle, struct osd_thandle, ot_super);
2701                 rc = iam_update(oh->ot_handle, bag, (const struct iam_key *)fid1,
2702                                 (const struct iam_rec *)id, ipd);
2703                 osd_ipd_put(env, bag, ipd);
2704                 return(rc > 0 ? 0 : rc);
2705         }
2706
2707         inode = obj->oo_inode;
2708
2709         rc = osd_quota_transfer(inode, attr);
2710         if (rc)
2711                 return rc;
2712
2713         spin_lock(&obj->oo_guard);
2714         rc = osd_inode_setattr(env, inode, attr);
2715         spin_unlock(&obj->oo_guard);
2716         if (rc != 0)
2717                 GOTO(out, rc);
2718
2719         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2720
2721         if (!(attr->la_valid & LA_FLAGS))
2722                 GOTO(out, rc);
2723
2724         /* Let's check if there are extra flags need to be set into LMA */
2725         if (attr->la_flags & LUSTRE_LMA_FL_MASKS) {
2726                 struct osd_thread_info *info = osd_oti_get(env);
2727                 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
2728
2729                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry,
2730                                  &info->oti_ost_attrs);
2731                 if (rc)
2732                         GOTO(out, rc);
2733
2734                 lma->lma_incompat |=
2735                         lustre_to_lma_flags(attr->la_flags);
2736                 lustre_lma_swab(lma);
2737                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA,
2738                                      lma, sizeof(*lma), XATTR_REPLACE);
2739                 if (rc != 0) {
2740                         struct osd_device *osd = osd_obj2dev(obj);
2741
2742                         CWARN("%s: set "DFID" lma flags %u failed: rc = %d\n",
2743                               osd_name(osd), PFID(lu_object_fid(&dt->do_lu)),
2744                               lma->lma_incompat, rc);
2745                 } else {
2746                         obj->oo_lma_flags =
2747                                 attr->la_flags & LUSTRE_LMA_FL_MASKS;
2748                 }
2749                 osd_trans_exec_check(env, handle, OSD_OT_XATTR_SET);
2750         }
2751 out:
2752         osd_trans_exec_check(env, handle, OSD_OT_ATTR_SET);
2753
2754         return rc;
2755 }
2756
2757 static struct dentry *osd_child_dentry_get(const struct lu_env *env,
2758                                            struct osd_object *obj,
2759                                            const char *name, const int namelen)
2760 {
2761         return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
2762 }
2763
2764 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
2765                       umode_t mode, struct dt_allocation_hint *hint,
2766                       struct thandle *th)
2767 {
2768         int result;
2769         struct osd_device  *osd = osd_obj2dev(obj);
2770         struct osd_thandle *oth;
2771         struct dt_object   *parent = NULL;
2772         struct inode       *inode;
2773
2774         LINVRNT(osd_invariant(obj));
2775         LASSERT(obj->oo_inode == NULL);
2776         LASSERT(obj->oo_hl_head == NULL);
2777
2778         if (S_ISDIR(mode) && ldiskfs_pdo) {
2779                 obj->oo_hl_head =ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
2780                 if (obj->oo_hl_head == NULL)
2781                         return -ENOMEM;
2782         }
2783
2784         oth = container_of(th, struct osd_thandle, ot_super);
2785         LASSERT(oth->ot_handle->h_transaction != NULL);
2786
2787         if (hint != NULL && hint->dah_parent != NULL &&
2788             !dt_object_remote(hint->dah_parent))
2789                 parent = hint->dah_parent;
2790
2791         inode = ldiskfs_create_inode(oth->ot_handle,
2792                                      parent ? osd_dt_obj(parent)->oo_inode :
2793                                               osd_sb(osd)->s_root->d_inode,
2794                                      mode);
2795         if (!IS_ERR(inode)) {
2796                 /* Do not update file c/mtime in ldiskfs. */
2797                 inode->i_flags |= S_NOCMTIME;
2798
2799                 /* For new created object, it must be consistent,
2800                  * and it is unnecessary to scrub against it. */
2801                 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
2802
2803                 obj->oo_inode = inode;
2804                 result = 0;
2805         } else {
2806                 if (obj->oo_hl_head != NULL) {
2807                         ldiskfs_htree_lock_head_free(obj->oo_hl_head);
2808                         obj->oo_hl_head = NULL;
2809                 }
2810                 result = PTR_ERR(inode);
2811         }
2812         LINVRNT(osd_invariant(obj));
2813         return result;
2814 }
2815
2816 enum {
2817         OSD_NAME_LEN = 255
2818 };
2819
2820 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
2821                      struct lu_attr *attr,
2822                      struct dt_allocation_hint *hint,
2823                      struct dt_object_format *dof,
2824                      struct thandle *th)
2825 {
2826         int result;
2827         struct osd_thandle *oth;
2828         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX | S_ISGID));
2829
2830         LASSERT(S_ISDIR(attr->la_mode));
2831
2832         oth = container_of(th, struct osd_thandle, ot_super);
2833         LASSERT(oth->ot_handle->h_transaction != NULL);
2834         result = osd_mkfile(info, obj, mode, hint, th);
2835
2836         return result;
2837 }
2838
2839 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
2840                         struct lu_attr *attr,
2841                         struct dt_allocation_hint *hint,
2842                         struct dt_object_format *dof,
2843                         struct thandle *th)
2844 {
2845         int result;
2846         struct osd_thandle *oth;
2847         const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
2848
2849         __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
2850
2851         LASSERT(S_ISREG(attr->la_mode));
2852
2853         oth = container_of(th, struct osd_thandle, ot_super);
2854         LASSERT(oth->ot_handle->h_transaction != NULL);
2855
2856         result = osd_mkfile(info, obj, mode, hint, th);
2857         if (result == 0) {
2858                 LASSERT(obj->oo_inode != NULL);
2859                 if (feat->dif_flags & DT_IND_VARKEY)
2860                         result = iam_lvar_create(obj->oo_inode,
2861                                                  feat->dif_keysize_max,
2862                                                  feat->dif_ptrsize,
2863                                                  feat->dif_recsize_max,
2864                                                  oth->ot_handle);
2865                 else
2866                         result = iam_lfix_create(obj->oo_inode,
2867                                                  feat->dif_keysize_max,
2868                                                  feat->dif_ptrsize,
2869                                                  feat->dif_recsize_max,
2870                                                  oth->ot_handle);
2871
2872         }
2873         return result;
2874 }
2875
2876 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
2877                      struct lu_attr *attr,
2878                      struct dt_allocation_hint *hint,
2879                      struct dt_object_format *dof,
2880                      struct thandle *th)
2881 {
2882         LASSERT(S_ISREG(attr->la_mode));
2883         return osd_mkfile(info, obj, (attr->la_mode &
2884                                (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2885 }
2886
2887 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
2888                      struct lu_attr *attr,
2889                      struct dt_allocation_hint *hint,
2890                      struct dt_object_format *dof,
2891                      struct thandle *th)
2892 {
2893         LASSERT(S_ISLNK(attr->la_mode));
2894         return osd_mkfile(info, obj, (attr->la_mode &
2895                               (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
2896 }
2897
2898 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
2899                      struct lu_attr *attr,
2900                      struct dt_allocation_hint *hint,
2901                      struct dt_object_format *dof,
2902                      struct thandle *th)
2903 {
2904         umode_t mode = attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX);
2905         int result;
2906
2907         LINVRNT(osd_invariant(obj));
2908         LASSERT(obj->oo_inode == NULL);
2909         LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
2910                 S_ISFIFO(mode) || S_ISSOCK(mode));
2911
2912         result = osd_mkfile(info, obj, mode, hint, th);
2913         if (result == 0) {
2914                 LASSERT(obj->oo_inode != NULL);
2915                 /*
2916                  * This inode should be marked dirty for i_rdev.  Currently
2917                  * that is done in the osd_attr_init().
2918                  */
2919                 init_special_inode(obj->oo_inode, obj->oo_inode->i_mode,
2920                                    attr->la_rdev);
2921         }
2922         LINVRNT(osd_invariant(obj));
2923         return result;
2924 }
2925
2926 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
2927                               struct lu_attr *,
2928                               struct dt_allocation_hint *hint,
2929                               struct dt_object_format *dof,
2930                               struct thandle *);
2931
2932 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
2933 {
2934         osd_obj_type_f result;
2935
2936         switch (type) {
2937         case DFT_DIR:
2938                 result = osd_mkdir;
2939                 break;
2940         case DFT_REGULAR:
2941                 result = osd_mkreg;
2942                 break;
2943         case DFT_SYM:
2944                 result = osd_mksym;
2945                 break;
2946         case DFT_NODE:
2947                 result = osd_mknod;
2948                 break;
2949         case DFT_INDEX:
2950                 result = osd_mk_index;
2951                 break;
2952
2953         default:
2954                 LBUG();
2955                 break;
2956         }
2957         return result;
2958 }
2959
2960
2961 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
2962                         struct dt_object *parent, struct dt_object *child,
2963                         umode_t child_mode)
2964 {
2965         LASSERT(ah);
2966
2967         ah->dah_parent = parent;
2968         ah->dah_mode = child_mode;
2969
2970         if (parent != NULL && !dt_object_remote(parent)) {
2971                 /* will help to find FID->ino at dt_insert("..") */
2972                 struct osd_object *pobj = osd_dt_obj(parent);
2973                 osd_idc_find_and_init(env, osd_obj2dev(pobj), pobj);
2974         }
2975 }
2976
2977 static void osd_attr_init(struct osd_thread_info *info, struct osd_object *obj,
2978                           struct lu_attr *attr, struct dt_object_format *dof)
2979 {
2980         struct inode   *inode = obj->oo_inode;
2981         __u64           valid = attr->la_valid;
2982         int             result;
2983
2984         attr->la_valid &= ~(LA_TYPE | LA_MODE);
2985
2986         if (dof->dof_type != DFT_NODE)
2987                 attr->la_valid &= ~LA_RDEV;
2988         if ((valid & LA_ATIME) && (attr->la_atime == LTIME_S(inode->i_atime)))
2989                 attr->la_valid &= ~LA_ATIME;
2990         if ((valid & LA_CTIME) && (attr->la_ctime == LTIME_S(inode->i_ctime)))
2991                 attr->la_valid &= ~LA_CTIME;
2992         if ((valid & LA_MTIME) && (attr->la_mtime == LTIME_S(inode->i_mtime)))
2993                 attr->la_valid &= ~LA_MTIME;
2994
2995         result = osd_quota_transfer(inode, attr);
2996         if (result)
2997                 return;
2998
2999         if (attr->la_valid != 0) {
3000                 result = osd_inode_setattr(info->oti_env, inode, attr);
3001                 /*
3002                  * The osd_inode_setattr() should always succeed here.  The
3003                  * only error that could be returned is EDQUOT when we are
3004                  * trying to change the UID or GID of the inode. However, this
3005                  * should not happen since quota enforcement is no longer
3006                  * enabled on ldiskfs (lquota takes care of it).
3007                  */
3008                 LASSERTF(result == 0, "%d\n", result);
3009                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3010         }
3011
3012         attr->la_valid = valid;
3013 }
3014
3015 /**
3016  * Helper function for osd_create()
3017  *
3018  * \retval 0, on success
3019  */
3020 static int __osd_create(struct osd_thread_info *info, struct osd_object *obj,
3021                         struct lu_attr *attr, struct dt_allocation_hint *hint,
3022                         struct dt_object_format *dof, struct thandle *th)
3023 {
3024         int     result;
3025         __u32   umask;
3026
3027         osd_trans_exec_op(info->oti_env, th, OSD_OT_CREATE);
3028
3029         /* we drop umask so that permissions we pass are not affected */
3030         umask = current->fs->umask;
3031         current->fs->umask = 0;
3032
3033         result = osd_create_type_f(dof->dof_type)(info, obj, attr, hint, dof,
3034                                                   th);
3035         if (likely(obj->oo_inode != NULL)) {
3036                 LASSERT(obj->oo_inode->i_state & I_NEW);
3037
3038                 /* Unlock the inode before attr initialization to avoid
3039                  * unnecessary dqget operations. LU-6378 */
3040                 unlock_new_inode(obj->oo_inode);
3041         }
3042
3043         if (likely(result == 0)) {
3044                 osd_attr_init(info, obj, attr, dof);
3045                 osd_object_init0(obj);
3046         }
3047
3048         /* restore previous umask value */
3049         current->fs->umask = umask;
3050
3051         osd_trans_exec_check(info->oti_env, th, OSD_OT_CREATE);
3052
3053         return result;
3054 }
3055
3056 /**
3057  * Helper function for osd_create()
3058  *
3059  * \retval 0, on success
3060  */
3061 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
3062                            const struct lu_fid *fid, struct thandle *th)
3063 {
3064         struct osd_thread_info *info = osd_oti_get(env);
3065         struct osd_inode_id    *id   = &info->oti_id;
3066         struct osd_device      *osd  = osd_obj2dev(obj);
3067         struct osd_thandle     *oh;
3068         int                     rc;
3069
3070         LASSERT(obj->oo_inode != NULL);
3071
3072         oh = container_of0(th, struct osd_thandle, ot_super);
3073         LASSERT(oh->ot_handle);
3074         osd_trans_exec_op(env, th, OSD_OT_INSERT);
3075
3076         osd_id_gen(id, obj->oo_inode->i_ino, obj->oo_inode->i_generation);
3077         rc = osd_oi_insert(info, osd, fid, id, oh->ot_handle,
3078                            OI_CHECK_FLD, NULL);
3079         osd_trans_exec_check(env, th, OSD_OT_INSERT);
3080
3081         return rc;
3082 }
3083
3084 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
3085                    u64 seq, struct lu_seq_range *range)
3086 {
3087         struct seq_server_site  *ss = osd_seq_site(osd);
3088
3089         if (fid_seq_is_idif(seq)) {
3090                 fld_range_set_ost(range);
3091                 range->lsr_index = idif_ost_idx(seq);
3092                 return 0;
3093         }
3094
3095         if (!fid_seq_in_fldb(seq)) {
3096                 fld_range_set_mdt(range);
3097                 if (ss != NULL)
3098                         /* FIXME: If ss is NULL, it suppose not get lsr_index
3099                          * at all */
3100                         range->lsr_index = ss->ss_node_id;
3101                 return 0;
3102         }
3103
3104         LASSERT(ss != NULL);
3105         fld_range_set_any(range);
3106         /* OSD will only do local fld lookup */
3107         return fld_local_lookup(env, ss->ss_server_fld, seq, range);
3108 }
3109
3110 static int osd_declare_create(const struct lu_env *env, struct dt_object *dt,
3111                               struct lu_attr *attr,
3112                               struct dt_allocation_hint *hint,
3113                               struct dt_object_format *dof,
3114                               struct thandle *handle)
3115 {
3116         struct osd_thandle *oh;
3117         int rc;
3118         ENTRY;
3119
3120         LASSERT(handle != NULL);
3121
3122         oh = container_of0(handle, struct osd_thandle, ot_super);
3123         LASSERT(oh->ot_handle == NULL);
3124
3125         /* EA object consumes more credits than regular object: osd_mk_index
3126          * vs. osd_mkreg: osd_mk_index will create 2 blocks for root_node and
3127          * leaf_node, could involves the block, block bitmap, groups, GDT
3128          * change for each block, so add 4 * 2 credits in that case. */
3129         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
3130                              osd_dto_credits_noquota[DTO_OBJECT_CREATE] +
3131                              (dof->dof_type == DFT_INDEX) ? 4 * 2 : 0);
3132         /* Reuse idle OI block may cause additional one OI block
3133          * to be changed. */
3134         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
3135                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
3136
3137         if (!attr)
3138                 RETURN(0);
3139
3140         rc = osd_declare_inode_qid(env, attr->la_uid, attr->la_gid,
3141                                    attr->la_projid, 1, oh, osd_dt_obj(dt),
3142                                    NULL, OSD_QID_INODE);
3143         if (rc != 0)
3144                 RETURN(rc);
3145
3146         /* will help to find FID->ino mapping at dt_insert() */
3147         rc = osd_idc_find_and_init(env, osd_obj2dev(osd_dt_obj(dt)),
3148                                    osd_dt_obj(dt));
3149
3150         RETURN(rc);
3151 }
3152
3153 /**
3154  * Called to destroy on-disk representation of the object
3155  *
3156  * Concurrency: must be locked
3157  */
3158 static int osd_declare_destroy(const struct lu_env *env, struct dt_object *dt,
3159                                struct thandle *th)
3160 {
3161         struct osd_object  *obj = osd_dt_obj(dt);
3162         struct inode       *inode = obj->oo_inode;
3163         struct osd_thandle *oh;
3164         int                 rc;
3165         ENTRY;
3166
3167         if (inode == NULL)
3168                 RETURN(-ENOENT);
3169
3170         oh = container_of0(th, struct osd_thandle, ot_super);
3171         LASSERT(oh->ot_handle == NULL);
3172
3173         osd_trans_declare_op(env, oh, OSD_OT_DESTROY,
3174                              osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
3175         /* Recycle idle OI leaf may cause additional three OI blocks
3176          * to be changed. */
3177         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
3178                 osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3179                              osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
3180         /* one less inode */
3181         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
3182                                    i_projid_read(inode), -1, oh, obj, NULL,
3183                                    OSD_QID_INODE);
3184         if (rc)
3185                 RETURN(rc);
3186         /* data to be truncated */
3187         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
3188                                    i_projid_read(inode), 0, oh, obj, NULL,
3189                                    OSD_QID_BLK);
3190         if (rc)
3191                 RETURN(rc);
3192
3193         /* will help to find FID->ino when this object is being
3194          * added to PENDING/ */
3195         rc = osd_idc_find_and_init(env, osd_obj2dev(obj), obj);
3196
3197         RETURN(rc);
3198 }
3199
3200 static int osd_destroy(const struct lu_env *env, struct dt_object *dt,
3201                        struct thandle *th)
3202 {
3203         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
3204         struct osd_object *obj = osd_dt_obj(dt);
3205         struct inode *inode = obj->oo_inode;
3206         struct osd_device *osd = osd_obj2dev(obj);
3207         struct osd_thandle *oh;
3208         int result;
3209         ENTRY;
3210
3211         oh = container_of0(th, struct osd_thandle, ot_super);
3212         LASSERT(oh->ot_handle);
3213         LASSERT(inode);
3214         LASSERT(!lu_object_is_dying(dt->do_lu.lo_header));
3215
3216         if (unlikely(fid_is_acct(fid)))
3217                 RETURN(-EPERM);
3218
3219         if (S_ISDIR(inode->i_mode)) {
3220                 LASSERT(osd_inode_unlinked(inode) || inode->i_nlink == 1 ||
3221                         inode->i_nlink == 2);
3222                 /* it will check/delete the inode from remote parent,
3223                  * how to optimize it? unlink performance impaction XXX */
3224                 result = osd_delete_from_remote_parent(env, osd, obj, oh);
3225                 if (result != 0)
3226                         CERROR("%s: delete inode "DFID": rc = %d\n",
3227                                osd_name(osd), PFID(fid), result);
3228
3229                 spin_lock(&obj->oo_guard);
3230                 clear_nlink(inode);
3231                 spin_unlock(&obj->oo_guard);
3232                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3233         }
3234
3235         osd_trans_exec_op(env, th, OSD_OT_DESTROY);
3236
3237         ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_DESTROY);
3238
3239         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LOST_MDTOBJ2))
3240                 result = osd_oi_delete(osd_oti_get(env), osd, fid,
3241                                        oh->ot_handle, OI_CHECK_FLD);
3242
3243         osd_trans_exec_check(env, th, OSD_OT_DESTROY);
3244         /* XXX: add to ext3 orphan list */
3245         /* rc = ext3_orphan_add(handle_t *handle, struct inode *inode) */
3246
3247         /* not needed in the cache anymore */
3248         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
3249         obj->oo_destroyed = 1;
3250
3251         RETURN(0);
3252 }
3253
3254 /**
3255  * Put the fid into lustre_mdt_attrs, and then place the structure
3256  * inode's ea. This fid should not be altered during the life time
3257  * of the inode.
3258  *
3259  * \retval +ve, on success
3260  * \retval -ve, on error
3261  *
3262  * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
3263  */
3264 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
3265                    const struct lu_fid *fid, __u32 compat, __u32 incompat)
3266 {
3267         struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
3268         struct lustre_mdt_attrs *lma = &loa->loa_lma;
3269         int rc;
3270         ENTRY;
3271
3272         if (OBD_FAIL_CHECK(OBD_FAIL_FID_INLMA))
3273                 RETURN(0);
3274
3275         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_OST_EA_FID_SET))
3276                 rc = -ENOMEM;
3277
3278         lustre_loa_init(loa, fid, compat, incompat);
3279         lustre_loa_swab(loa, false);
3280
3281         /* For the OST device with 256 bytes inode size by default,
3282          * the PFID EA will be stored together with LMA EA to avoid
3283          * performance trouble. Otherwise the PFID EA can be stored
3284          * independently. LU-8998 */
3285         if ((compat & LMAC_FID_ON_OST) &&
3286             LDISKFS_INODE_SIZE(inode->i_sb) <= 256)
3287                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, loa,
3288                                      sizeof(*loa), XATTR_CREATE);
3289         else
3290                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
3291                                      sizeof(*lma), XATTR_CREATE);
3292         /* LMA may already exist, but we need to check that all the
3293          * desired compat/incompat flags have been added. */
3294         if (unlikely(rc == -EEXIST)) {
3295                 rc = __osd_xattr_get(inode, &info->oti_obj_dentry,
3296                                      XATTR_NAME_LMA, (void *)loa, sizeof(*loa));
3297                 if (rc < 0)
3298                         RETURN(rc);
3299
3300                 if (rc < sizeof(*lma))
3301                         RETURN(-EINVAL);
3302
3303                 lustre_loa_swab(loa, true);
3304                 if (lu_fid_eq(fid, &lma->lma_self_fid) &&
3305                     ((compat == 0 && incompat == 0) ||
3306                      (!(~lma->lma_compat & compat) &&
3307                       !(~lma->lma_incompat & incompat))))
3308                         RETURN(0);
3309
3310                 lma->lma_self_fid = *fid;
3311                 lma->lma_compat |= compat;
3312                 lma->lma_incompat |= incompat;
3313                 if (rc == sizeof(*lma)) {
3314                         lustre_lma_swab(lma);
3315                         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
3316                                              sizeof(*lma), XATTR_REPLACE);
3317                 } else {
3318                         lustre_loa_swab(loa, false);
3319                         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, loa,
3320                                              sizeof(*loa), XATTR_REPLACE);
3321                 }
3322         }
3323
3324         RETURN(rc);
3325 }
3326
3327 /**
3328  * ldiskfs supports fid in dirent, it is passed in dentry->d_fsdata.
3329  * lustre 1.8 also uses d_fsdata for passing other info to ldiskfs.
3330  * To have compatilibility with 1.8 ldiskfs driver we need to have
3331  * magic number at start of fid data.
3332  * \ldiskfs_dentry_param is used only to pass fid from osd to ldiskfs.
3333  * its inmemory API.
3334  */
3335 static void osd_get_ldiskfs_dirent_param(struct ldiskfs_dentry_param *param,
3336                                          const struct lu_fid *fid)
3337 {
3338         if (!fid_is_namespace_visible(fid) ||
3339             OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF)) {
3340                 param->edp_magic = 0;
3341                 return;
3342         }
3343
3344         param->edp_magic = LDISKFS_LUFID_MAGIC;
3345         param->edp_len =  sizeof(struct lu_fid) + 1;
3346         fid_cpu_to_be((struct lu_fid *)param->edp_data, (struct lu_fid *)fid);
3347 }
3348
3349 /**
3350  * Try to read the fid from inode ea into dt_rec.
3351  *
3352  * \param fid object fid.
3353  *
3354  * \retval 0 on success
3355  */
3356 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
3357                           __u32 ino, struct lu_fid *fid,
3358                           struct osd_inode_id *id)
3359 {
3360         struct osd_thread_info *info  = osd_oti_get(env);
3361         struct inode           *inode;
3362         ENTRY;
3363
3364         osd_id_gen(id, ino, OSD_OII_NOGEN);
3365         inode = osd_iget_fid(info, osd_obj2dev(obj), id, fid);
3366         if (IS_ERR(inode))
3367                 RETURN(PTR_ERR(inode));
3368
3369         iput(inode);
3370         RETURN(0);
3371 }
3372
3373 static int osd_add_dot_dotdot_internal(struct osd_thread_info *info,
3374                                         struct inode *dir,
3375                                         struct inode *parent_dir,
3376                                         const struct lu_fid *dot_fid,
3377                                         const struct lu_fid *dot_dot_fid,
3378                                         struct osd_thandle *oth)
3379 {
3380         struct ldiskfs_dentry_param *dot_ldp;
3381         struct ldiskfs_dentry_param *dot_dot_ldp;
3382         __u32 saved_nlink = dir->i_nlink;
3383         int rc;
3384
3385         dot_dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp2;
3386         osd_get_ldiskfs_dirent_param(dot_dot_ldp, dot_dot_fid);
3387
3388         dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
3389         dot_ldp->edp_magic = 0;
3390
3391         rc = ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir,
3392                                     dir, dot_ldp, dot_dot_ldp);
3393         /* The ldiskfs_add_dot_dotdot() may dir->i_nlink as 2, then
3394          * the subseqent ref_add() will increase the dir->i_nlink
3395          * as 3. That is incorrect for new created directory.
3396          *
3397          * It looks like hack, because we want to make the OSD API
3398          * to be order-independent for new created directory object
3399          * between dt_insert(..) and ref_add() operations.
3400          *
3401          * Here, we only restore the in-RAM dir-inode's nlink attr,
3402          * becuase if the nlink attr is not 2, then there will be
3403          * ref_add() called following the dt_insert(..), such call
3404          * will make both the in-RAM and on-disk dir-inode's nlink
3405          * attr to be set as 2. LU-7447 */
3406         set_nlink(dir, saved_nlink);
3407         return rc;
3408 }
3409
3410 /**
3411  * Create an local agent inode for remote entry
3412  */
3413 static struct inode *osd_create_local_agent_inode(const struct lu_env *env,
3414                                                   struct osd_device *osd,
3415                                                   struct osd_object *pobj,
3416                                                   const struct lu_fid *fid,
3417                                                   __u32 type,
3418                                                   struct thandle *th)
3419 {
3420         struct osd_thread_info  *info = osd_oti_get(env);
3421         struct inode            *local;
3422         struct osd_thandle      *oh;
3423         int                     rc;
3424         ENTRY;
3425
3426         LASSERT(th);
3427         oh = container_of(th, struct osd_thandle, ot_super);
3428         LASSERT(oh->ot_handle->h_transaction != NULL);
3429
3430         local = ldiskfs_create_inode(oh->ot_handle, pobj->oo_inode, type);
3431         if (IS_ERR(local)) {
3432                 CERROR("%s: create local error %d\n", osd_name(osd),
3433                        (int)PTR_ERR(local));
3434                 RETURN(local);
3435         }
3436
3437         /* restore i_gid in case S_ISGID is set, we will inherit S_ISGID and set
3438          * correct gid on remote file, not agent here */
3439         local->i_gid = current_fsgid();
3440         ldiskfs_set_inode_state(local, LDISKFS_STATE_LUSTRE_NOSCRUB);
3441         unlock_new_inode(local);
3442
3443         /* Agent inode should not have project ID */
3444 #ifdef  HAVE_PROJECT_QUOTA
3445         if (LDISKFS_I(pobj->oo_inode)->i_flags & LUSTRE_PROJINHERIT_FL &&
3446             i_projid_read(pobj->oo_inode) != 0) {
3447                 rc = ldiskfs_transfer_project(local, 0);
3448                 if (rc) {
3449                         CERROR("%s: quota transfer failed: rc = %d. Is project "
3450                                "quota enforcement enabled on the ldiskfs "
3451                                "filesystem?\n", local->i_sb->s_id, rc);
3452                         RETURN(ERR_PTR(rc));
3453                 }
3454         }
3455 #endif
3456         /* Set special LMA flag for local agent inode */
3457         rc = osd_ea_fid_set(info, local, fid, 0, LMAI_AGENT);
3458         if (rc != 0) {
3459                 CERROR("%s: set LMA for "DFID" remote inode failed: rc = %d\n",
3460                        osd_name(osd), PFID(fid), rc);
3461                 RETURN(ERR_PTR(rc));
3462         }
3463
3464         if (!S_ISDIR(type))
3465                 RETURN(local);
3466
3467         rc = osd_add_dot_dotdot_internal(info, local, pobj->oo_inode,
3468                                          lu_object_fid(&pobj->oo_dt.do_lu),
3469                                          fid, oh);
3470         if (rc != 0) {
3471                 CERROR("%s: "DFID" add dot dotdot error: rc = %d\n",
3472                         osd_name(osd), PFID(fid), rc);
3473                 RETURN(ERR_PTR(rc));
3474         }
3475
3476         RETURN(local);
3477 }
3478
3479 /**
3480  * when direntry is deleted, we have to take care of possible agent inode
3481  * referenced by that. unfortunately we can't do this at that point:
3482  * iget() within a running transaction leads to deadlock and we better do
3483  * not call that every delete declaration to save performance. so we put
3484  * a potention agent inode on a list and process that once the transaction
3485  * is over. Notice it's not any worse in terms of real orphans as regular
3486  * object destroy doesn't put inodes on the on-disk orphan list. this should
3487  * be addressed separately
3488  */
3489 static int osd_schedule_agent_inode_removal(const struct lu_env *env,
3490                                             struct osd_thandle *oh,
3491                                             __u32 ino)
3492 {
3493         struct osd_device      *osd = osd_dt_dev(oh->ot_super.th_dev);
3494         struct osd_obj_orphan *oor;
3495
3496         OBD_ALLOC_PTR(oor);
3497         if (oor == NULL)
3498                 return -ENOMEM;
3499
3500         oor->oor_ino = ino;
3501         oor->oor_env = (struct lu_env *)env;
3502         spin_lock(&osd->od_osfs_lock);
3503         list_add(&oor->oor_list, &osd->od_orphan_list);
3504         spin_unlock(&osd->od_osfs_lock);
3505
3506         oh->ot_remove_agents = 1;
3507
3508         return 0;
3509
3510 }
3511
3512 static int osd_process_scheduled_agent_removals(const struct lu_env *env,
3513                                                 struct osd_device *osd)
3514 {
3515         struct osd_thread_info *info = osd_oti_get(env);
3516         struct osd_obj_orphan *oor, *tmp;
3517         struct osd_inode_id id;
3518         struct list_head list;
3519         struct inode *inode;
3520         struct lu_fid fid;
3521         handle_t *jh;
3522         __u32 ino;
3523
3524         INIT_LIST_HEAD(&list);
3525
3526         spin_lock(&osd->od_osfs_lock);
3527         list_for_each_entry_safe(oor, tmp, &osd->od_orphan_list, oor_list) {
3528                 if (oor->oor_env == env) {
3529                         list_del(&oor->oor_list);
3530                         list_add(&oor->oor_list, &list);
3531                 }
3532         }
3533         spin_unlock(&osd->od_osfs_lock);
3534
3535         list_for_each_entry_safe(oor, tmp, &list, oor_list) {
3536
3537                 ino = oor->oor_ino;
3538
3539                 list_del(&oor->oor_list);
3540                 OBD_FREE_PTR(oor);
3541
3542                 osd_id_gen(&id, ino, OSD_OII_NOGEN);
3543                 inode = osd_iget_fid(info, osd, &id, &fid);
3544                 if (IS_ERR(inode))
3545                         continue;
3546
3547                 if (!osd_remote_fid(env, osd, &fid)) {
3548                         iput(inode);
3549                         continue;
3550                 }
3551
3552                 jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC, 1);
3553                 clear_nlink(inode);
3554                 mark_inode_dirty(inode);
3555                 ldiskfs_journal_stop(jh);
3556                 iput(inode);
3557         }
3558
3559         return 0;
3560 }
3561
3562 /**
3563  * OSD layer object create function for OST objects (b=11826).
3564  *
3565  * The FID is inserted into inode xattr here.
3566  *
3567  * \retval   0, on success
3568  * \retval -ve, on error
3569  */
3570 static int osd_create(const struct lu_env *env, struct dt_object *dt,
3571                       struct lu_attr *attr, struct dt_allocation_hint *hint,
3572                       struct dt_object_format *dof, struct thandle *th)
3573 {
3574         const struct lu_fid     *fid    = lu_object_fid(&dt->do_lu);
3575         struct osd_object       *obj    = osd_dt_obj(dt);
3576         struct osd_thread_info  *info   = osd_oti_get(env);
3577         int                      result, on_ost = 0;
3578
3579         ENTRY;
3580
3581         if (dt_object_exists(dt))
3582                 RETURN(-EEXIST);
3583
3584         LINVRNT(osd_invariant(obj));
3585         LASSERT(!dt_object_remote(dt));
3586         LASSERT(osd_is_write_locked(env, obj));
3587         LASSERT(th != NULL);
3588
3589         if (unlikely(fid_is_acct(fid)))
3590                 /* Quota files can't be created from the kernel any more,
3591                  * 'tune2fs -O quota' will take care of creating them */
3592                 RETURN(-EPERM);
3593
3594         result = __osd_create(info, obj, attr, hint, dof, th);
3595         if (result == 0) {
3596                 if (fid_is_idif(fid) &&
3597                     !osd_dev(dt->do_lu.lo_dev)->od_index_in_idif) {
3598                         struct lu_fid *tfid = &info->oti_fid;
3599                         struct ost_id *oi   = &info->oti_ostid;
3600
3601                         fid_to_ostid(fid, oi);
3602                         ostid_to_fid(tfid, oi, 0);
3603                         on_ost = 1;
3604                         result = osd_ea_fid_set(info, obj->oo_inode, tfid,
3605                                                 LMAC_FID_ON_OST, 0);
3606                 } else {
3607                         on_ost = fid_is_on_ost(info, osd_obj2dev(obj),
3608                                                fid, OI_CHECK_FLD);
3609                         result = osd_ea_fid_set(info, obj->oo_inode, fid,
3610                                                 on_ost ? LMAC_FID_ON_OST : 0,
3611                                                 0);
3612                 }
3613                 if (obj->oo_dt.do_body_ops == &osd_body_ops_new)
3614                         obj->oo_dt.do_body_ops = &osd_body_ops;
3615         }
3616
3617         if (result == 0)
3618                 result = __osd_oi_insert(env, obj, fid, th);
3619
3620         /* a small optimization - dt_insert() isn't usually applied
3621          * to OST objects, so we don't need to cache OI mapping for
3622          * OST objects */
3623         if (result == 0 && on_ost == 0) {
3624                 struct osd_device *osd = osd_dev(dt->do_lu.lo_dev);
3625                 result = osd_idc_find_and_init(env, osd, obj);
3626                 LASSERT(result == 0);
3627         }
3628
3629         LASSERT(ergo(result == 0,
3630                      dt_object_exists(dt) && !dt_object_remote(dt)));
3631         LINVRNT(osd_invariant(obj));
3632         RETURN(result);
3633 }
3634
3635 static int osd_declare_ref_add(const struct lu_env *env, struct dt_object *dt,
3636                                struct thandle *handle)
3637 {
3638         struct osd_thandle *oh;
3639
3640         /* it's possible that object doesn't exist yet */
3641         LASSERT(handle != NULL);
3642
3643         oh = container_of0(handle, struct osd_thandle, ot_super);
3644         LASSERT(oh->ot_handle == NULL);
3645
3646         osd_trans_declare_op(env, oh, OSD_OT_REF_ADD,
3647                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
3648
3649         osd_idc_find_and_init(env, osd_dev(dt->do_lu.lo_dev), osd_dt_obj(dt));
3650
3651         return 0;
3652 }
3653
3654 /*
3655  * Concurrency: @dt is write locked.
3656  */
3657 static int osd_ref_add(const struct lu_env *env, struct dt_object *dt,
3658                        struct thandle *th)
3659 {
3660         struct osd_object  *obj = osd_dt_obj(dt);
3661         struct inode       *inode = obj->oo_inode;
3662         struct osd_thandle *oh;
3663         int                 rc = 0;
3664
3665         if (!dt_object_exists(dt) || obj->oo_destroyed)
3666                 return -ENOENT;
3667
3668         LINVRNT(osd_invariant(obj));
3669         LASSERT(!dt_object_remote(dt));
3670         LASSERT(osd_is_write_locked(env, obj));
3671         LASSERT(th != NULL);
3672
3673         oh = container_of0(th, struct osd_thandle, ot_super);
3674         LASSERT(oh->ot_handle != NULL);
3675
3676         osd_trans_exec_op(env, th, OSD_OT_REF_ADD);
3677
3678         CDEBUG(D_INODE, DFID" increase nlink %d\n",
3679                PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
3680         /*
3681          * The DIR_NLINK feature allows directories to exceed LDISKFS_LINK_MAX
3682          * (65000) subdirectories by storing "1" in i_nlink if the link count
3683          * would otherwise overflow. Directory tranversal tools understand
3684          * that (st_nlink == 1) indicates that the filesystem dose not track
3685          * hard links count on the directory, and will not abort subdirectory
3686          * scanning early once (st_nlink - 2) subdirs have been found.
3687          *
3688          * This also has to properly handle the case of inodes with nlink == 0
3689          * in case they are being linked into the PENDING directory
3690          */
3691         spin_lock(&obj->oo_guard);
3692         if (unlikely(inode->i_nlink == 0))
3693                 /* inc_nlink from 0 may cause WARN_ON */
3694                 set_nlink(inode, 1);
3695         else {
3696                 ldiskfs_inc_count(oh->ot_handle, inode);
3697                 if (!S_ISDIR(inode->i_mode))
3698                         LASSERT(inode->i_nlink <= LDISKFS_LINK_MAX);
3699         }
3700         spin_unlock(&obj->oo_guard);
3701
3702         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3703         LINVRNT(osd_invariant(obj));
3704
3705         osd_trans_exec_check(env, th, OSD_OT_REF_ADD);
3706
3707         return rc;
3708 }
3709
3710 static int osd_declare_ref_del(const struct lu_env *env, struct dt_object *dt,
3711                                struct thandle *handle)
3712 {
3713         struct osd_thandle *oh;
3714
3715         if (!dt_object_exists(dt))
3716                 return -ENOENT;
3717
3718         LASSERT(!dt_object_remote(dt));
3719         LASSERT(handle != NULL);
3720
3721         oh = container_of0(handle, struct osd_thandle, ot_super);
3722         LASSERT(oh->ot_handle == NULL);
3723
3724         osd_trans_declare_op(env, oh, OSD_OT_REF_DEL,
3725                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
3726
3727         return 0;
3728 }
3729
3730 /*
3731  * Concurrency: @dt is write locked.
3732  */
3733 static int osd_ref_del(const struct lu_env *env, struct dt_object *dt,
3734                        struct thandle *th)
3735 {
3736         struct osd_object       *obj = osd_dt_obj(dt);
3737         struct inode            *inode = obj->oo_inode;
3738         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
3739         struct osd_thandle      *oh;
3740
3741         if (!dt_object_exists(dt))
3742                 return -ENOENT;
3743
3744         LINVRNT(osd_invariant(obj));
3745         LASSERT(!dt_object_remote(dt));
3746         LASSERT(osd_is_write_locked(env, obj));
3747         LASSERT(th != NULL);
3748
3749         oh = container_of0(th, struct osd_thandle, ot_super);
3750         LASSERT(oh->ot_handle != NULL);
3751
3752         osd_trans_exec_op(env, th, OSD_OT_REF_DEL);
3753
3754         spin_lock(&obj->oo_guard);
3755         /* That can be result of upgrade from old Lustre version and
3756          * applied only to local files.  Just skip this ref_del call.
3757          * ext4_unlink() only treats this as a warning, don't LASSERT here.*/
3758         if (inode->i_nlink == 0) {
3759                 CDEBUG_LIMIT(fid_is_norm(lu_object_fid(&dt->do_lu)) ?
3760                              D_ERROR : D_INODE, "%s: nlink == 0 on "DFID
3761                              ", maybe an upgraded file? (LU-3915)\n",
3762                              osd_name(osd), PFID(lu_object_fid(&dt->do_lu)));
3763                 spin_unlock(&obj->oo_guard);
3764                 return 0;
3765         }
3766
3767         CDEBUG(D_INODE, DFID" decrease nlink %d\n",
3768                PFID(lu_object_fid(&dt->do_lu)), inode->i_nlink);
3769
3770         ldiskfs_dec_count(oh->ot_handle, inode);
3771         spin_unlock(&obj->oo_guard);
3772
3773         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3774         LINVRNT(osd_invariant(obj));
3775
3776         osd_trans_exec_check(env, th, OSD_OT_REF_DEL);
3777
3778         return 0;
3779 }
3780
3781 /*
3782  * Concurrency: @dt is read locked.
3783  */
3784 static int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
3785                          struct lu_buf *buf, const char *name)
3786 {
3787         struct osd_object      *obj    = osd_dt_obj(dt);
3788         struct inode           *inode  = obj->oo_inode;
3789         struct osd_thread_info *info   = osd_oti_get(env);
3790         struct dentry          *dentry = &info->oti_obj_dentry;
3791         bool                    cache_xattr = false;
3792         int                     rc;
3793
3794         LASSERT(buf);
3795
3796         /* version get is not real XATTR but uses xattr API */
3797         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
3798                 dt_obj_version_t *ver = buf->lb_buf;
3799
3800                 /* for version we are just using xattr API but change inode
3801                  * field instead */
3802                 if (buf->lb_len == 0)
3803                         return sizeof(dt_obj_version_t);
3804
3805                 if (buf->lb_len < sizeof(dt_obj_version_t))
3806                         return -ERANGE;
3807
3808                 CDEBUG(D_INODE, "Get version %#llx for inode %lu\n",
3809                        LDISKFS_I(inode)->i_fs_version, inode->i_ino);
3810
3811                 *ver = LDISKFS_I(inode)->i_fs_version;
3812
3813                 return sizeof(dt_obj_version_t);
3814         }
3815
3816         if (!dt_object_exists(dt))
3817                 return -ENOENT;
3818
3819         LASSERT(!dt_object_remote(dt));
3820         LASSERT(inode->i_op != NULL);
3821 #ifdef HAVE_IOP_XATTR
3822         LASSERT(inode->i_op->getxattr != NULL);
3823 #endif
3824
3825         if (strcmp(name, XATTR_NAME_LOV) == 0 ||
3826             strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0)
3827                 cache_xattr = true;
3828
3829         if (cache_xattr) {
3830                 rc = osd_oxc_get(obj, name, buf);
3831                 if (rc != -ENOENT)
3832                         return rc;
3833         }
3834
3835         rc = __osd_xattr_get(inode, dentry, name, buf->lb_buf, buf->lb_len);
3836         if (rc == -ENODATA && strcmp(name, XATTR_NAME_FID) == 0) {
3837                 struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
3838                 struct lustre_mdt_attrs *lma = &loa->loa_lma;
3839                 struct filter_fid *ff;
3840                 struct ost_layout *ol;
3841
3842                 if (!osd_dev(dt->do_lu.lo_dev)->od_is_ost)
3843                         goto cache;
3844
3845                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
3846                 if (rc)
3847                         return rc;
3848
3849                 if (!(lma->lma_compat & LMAC_STRIPE_INFO)) {
3850                         rc = -ENODATA;
3851                         goto cache;
3852                 }
3853
3854                 rc = sizeof(*ff);
3855                 if (buf->lb_len == 0 || !buf->lb_buf)
3856                         return rc;
3857
3858                 if (buf->lb_len < rc)
3859                         return -ERANGE;
3860
3861                 ff = buf->lb_buf;
3862                 ol = &ff->ff_layout;
3863                 ol->ol_stripe_count = cpu_to_le32(loa->loa_parent_fid.f_ver >>
3864                                                   PFID_STRIPE_IDX_BITS);
3865                 ol->ol_stripe_size = cpu_to_le32(loa->loa_stripe_size);
3866                 loa->loa_parent_fid.f_ver &= PFID_STRIPE_COUNT_MASK;
3867                 fid_cpu_to_le(&ff->ff_parent, &loa->loa_parent_fid);
3868                 if (lma->lma_compat & LMAC_COMP_INFO) {
3869                         ol->ol_comp_start = cpu_to_le64(loa->loa_comp_start);
3870                         ol->ol_comp_end = cpu_to_le64(loa->loa_comp_end);
3871                         ol->ol_comp_id = cpu_to_le32(loa->loa_comp_id);
3872                 } else {
3873                         ol->ol_comp_start = 0;
3874                         ol->ol_comp_end = 0;
3875                         ol->ol_comp_id = 0;
3876                 }
3877         }
3878
3879 cache:
3880         if (cache_xattr) {
3881                 if (rc == -ENOENT || rc == -ENODATA)
3882                         osd_oxc_add(obj, name, NULL, 0);
3883                 else if (rc > 0 && buf->lb_buf != NULL)
3884                         osd_oxc_add(obj, name, buf->lb_buf, rc);
3885         }
3886
3887         return rc;
3888 }
3889
3890 static int osd_declare_xattr_set(const struct lu_env *env,
3891                                  struct dt_object *dt,
3892                                  const struct lu_buf *buf, const char *name,
3893                                  int fl, struct thandle *handle)
3894 {
3895         struct osd_thandle *oh;
3896         int credits = 0;
3897         struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
3898
3899         LASSERT(handle != NULL);
3900
3901         oh = container_of0(handle, struct osd_thandle, ot_super);
3902         LASSERT(oh->ot_handle == NULL);
3903
3904         if (strcmp(name, XATTR_NAME_LMA) == 0) {
3905                 /* For non-upgrading case, the LMA is set first and
3906                  * usually fit inode. But for upgrade case, the LMA
3907                  * may be in another separated EA block. */
3908                 if (dt_object_exists(dt)) {
3909                         if (fl == LU_XATTR_REPLACE)
3910                                 credits = 1;
3911                         else
3912                                 goto upgrade;
3913                 }
3914         } else if (strcmp(name, XATTR_NAME_VERSION) == 0) {
3915                 credits = 1;
3916         } else if (strcmp(name, XATTR_NAME_FID) == 0) {
3917                 /* We may need to delete the old PFID EA. */
3918                 credits = LDISKFS_MAXQUOTAS_DEL_BLOCKS(sb);
3919                 if (fl == LU_XATTR_REPLACE)
3920                         credits += 1;
3921                 else
3922                         goto upgrade;
3923         } else {
3924
3925 upgrade:
3926                 credits += osd_dto_credits_noquota[DTO_XATTR_SET];
3927
3928                 if (buf != NULL) {
3929                         ssize_t buflen;
3930
3931                         if (buf->lb_buf == NULL && dt_object_exists(dt)) {
3932                                 /* learn xattr size from osd_xattr_get if
3933                                    attribute has not been read yet */
3934                                 buflen = __osd_xattr_get(
3935                                     osd_dt_obj(dt)->oo_inode,
3936                                     &osd_oti_get(env)->oti_obj_dentry,
3937                                     name, NULL, 0);
3938                                 if (buflen < 0)
3939                                         buflen = 0;
3940                         } else {
3941                                 buflen = buf->lb_len;
3942                         }
3943
3944                         if (buflen > sb->s_blocksize) {
3945                                 credits += osd_calc_bkmap_credits(
3946                                     sb, NULL, 0, -1,
3947                                     (buflen + sb->s_blocksize - 1) >>
3948                                     sb->s_blocksize_bits);
3949                         }
3950                 }
3951                 /*
3952                  * xattr set may involve inode quota change, reserve credits for
3953                  * dquot_initialize()
3954                  */
3955                 credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
3956         }
3957
3958         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET, credits);
3959
3960         return 0;
3961 }
3962
3963 /*
3964  * Concurrency: @dt is write locked.
3965  */
3966 static int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
3967                          const struct lu_buf *buf, const char *name, int fl,
3968                          struct thandle *handle)
3969 {
3970         struct osd_object *obj = osd_dt_obj(dt);
3971         struct inode *inode = obj->oo_inode;
3972         struct osd_thread_info *info = osd_oti_get(env);
3973         struct lustre_ost_attrs *loa = &info->oti_ost_attrs;
3974         struct lustre_mdt_attrs *lma = &loa->loa_lma;
3975         int fs_flags = 0;
3976         int len;
3977         int rc;
3978         ENTRY;
3979
3980         LASSERT(handle);
3981         LASSERT(buf);
3982
3983         /* version set is not real XATTR */
3984         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
3985                 dt_obj_version_t *version = buf->lb_buf;
3986
3987                 /* for version we are just using xattr API but change inode
3988                  * field instead */
3989                 LASSERT(buf->lb_len == sizeof(dt_obj_version_t));
3990
3991                 CDEBUG(D_INODE, "Set version %#llx (old %#llx) for inode %lu\n",
3992                        *version, LDISKFS_I(inode)->i_fs_version, inode->i_ino);
3993
3994                 LDISKFS_I(inode)->i_fs_version = *version;
3995                 /* Version is set after all inode operations are finished,
3996                  * so we should mark it dirty here */
3997                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
3998
3999                 RETURN(0);
4000         }
4001
4002         CDEBUG(D_INODE, DFID" set xattr '%s' with size %zu\n",
4003                PFID(lu_object_fid(&dt->do_lu)), name, buf->lb_len);
4004
4005         len = buf->lb_len;
4006         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
4007         if (fl & LU_XATTR_REPLACE)
4008                 fs_flags |= XATTR_REPLACE;
4009
4010         if (fl & LU_XATTR_CREATE)
4011                 fs_flags |= XATTR_CREATE;
4012
4013         /* For the OST device with 256 bytes inode size by default,
4014          * the PFID EA will be stored together with LMA EA to avoid
4015          * performance trouble. Otherwise the PFID EA can be stored
4016          * independently. LU-8998 */
4017         if (strcmp(name, XATTR_NAME_FID) == 0 &&
4018             LDISKFS_INODE_SIZE(inode->i_sb) <= 256) {
4019                 struct dentry *dentry = &info->oti_obj_dentry;
4020                 struct filter_fid *ff;
4021                 struct ost_layout *ol;
4022                 int fl;
4023
4024                 LASSERT(osd_dev(dt->do_lu.lo_dev)->od_is_ost);
4025
4026                 ff = buf->lb_buf;
4027                 ol = &ff->ff_layout;
4028                 /* Old client does not send stripe information, store
4029                  * the PFID EA on disk directly. */
4030                 if (buf->lb_len == sizeof(struct lu_fid) ||
4031                     ol->ol_stripe_size == 0) {
4032                         len = sizeof(struct lu_fid);
4033                         goto set;
4034                 }
4035
4036                 if (buf->lb_len != sizeof(*ff))
4037                         RETURN(-EINVAL);
4038
4039                 rc = osd_get_lma(info, inode, dentry, loa);
4040                 if (unlikely(rc == -ENODATA)) {
4041                         /* Usually for upgarding from old device */
4042                         lustre_loa_init(loa, lu_object_fid(&dt->do_lu),
4043                                         LMAC_FID_ON_OST, 0);
4044                         fl = XATTR_CREATE;
4045                 } else if (rc) {
4046                         RETURN(rc);
4047                 } else {
4048                         fl = XATTR_REPLACE;
4049                 }
4050
4051                 fid_le_to_cpu(&loa->loa_parent_fid, &ff->ff_parent);
4052                 loa->loa_parent_fid.f_ver |= le32_to_cpu(ol->ol_stripe_count) <<
4053                                              PFID_STRIPE_IDX_BITS;
4054                 loa->loa_stripe_size = le32_to_cpu(ol->ol_stripe_size);
4055                 lma->lma_compat |= LMAC_STRIPE_INFO;
4056                 if (ol->ol_comp_id != 0) {
4057                         loa->loa_comp_id = le32_to_cpu(ol->ol_comp_id);
4058                         loa->loa_comp_start = le64_to_cpu(ol->ol_comp_start);
4059                         loa->loa_comp_end = le64_to_cpu(ol->ol_comp_end);
4060                         lma->lma_compat |= LMAC_COMP_INFO;
4061                 }
4062
4063                 lustre_loa_swab(loa, false);
4064
4065                 /* Remove old PFID EA entry firstly. */
4066                 ll_vfs_dq_init(inode);
4067                 rc = inode->i_op->removexattr(dentry, name);
4068                 if (rc && rc != -ENODATA)
4069                         RETURN(rc);
4070
4071                 /* Store the PFID EA inside the LMA EA. */
4072                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, loa,
4073                                      sizeof(*loa), fl);
4074
4075                 RETURN(rc);
4076         } else if (strcmp(name, XATTR_NAME_LMV) == 0) {
4077                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry, loa);
4078                 if (rc)
4079                         RETURN(rc);
4080
4081                 lma->lma_incompat |= LMAI_STRIPED;
4082                 lustre_lma_swab(lma);
4083                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
4084                                      sizeof(*lma), XATTR_REPLACE);
4085                 if (rc != 0)
4086                         RETURN(rc);
4087         }
4088
4089 set:
4090         rc = __osd_xattr_set(info, inode, name, buf->lb_buf, len, fs_flags);
4091         osd_trans_exec_check(env, handle, OSD_OT_XATTR_SET);
4092
4093         if (rc == 0 &&
4094             (strcmp(name, XATTR_NAME_LOV) == 0 ||
4095              strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0))
4096                 osd_oxc_add(obj, name, buf->lb_buf, buf->lb_len);
4097
4098         return rc;
4099 }
4100
4101 /*
4102  * Concurrency: @dt is read locked.
4103  */
4104 static int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
4105                           const struct lu_buf *buf)
4106 {
4107         struct osd_object      *obj    = osd_dt_obj(dt);
4108         struct inode           *inode  = obj->oo_inode;
4109         struct osd_thread_info *info   = osd_oti_get(env);
4110         struct dentry          *dentry = &info->oti_obj_dentry;
4111
4112         if (!dt_object_exists(dt))
4113                 return -ENOENT;
4114
4115         LASSERT(!dt_object_remote(dt));
4116         LASSERT(inode->i_op != NULL);
4117         LASSERT(inode->i_op->listxattr != NULL);
4118
4119         dentry->d_inode = inode;
4120         dentry->d_sb = inode->i_sb;
4121         return inode->i_op->listxattr(dentry, buf->lb_buf, buf->lb_len);
4122 }
4123
4124 static int osd_declare_xattr_del(const struct lu_env *env,
4125                                  struct dt_object *dt, const char *name,
4126                                  struct thandle *handle)
4127 {
4128         struct osd_thandle *oh;
4129         struct super_block *sb = osd_sb(osd_dev(dt->do_lu.lo_dev));
4130
4131         LASSERT(!dt_object_remote(dt));
4132         LASSERT(handle != NULL);
4133
4134         oh = container_of0(handle, struct osd_thandle, ot_super);
4135         LASSERT(oh->ot_handle == NULL);
4136
4137         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
4138                              osd_dto_credits_noquota[DTO_XATTR_SET]);
4139         /*
4140          * xattr del may involve inode quota change, reserve credits for
4141          * dquot_initialize()
4142          */
4143         oh->ot_credits += LDISKFS_MAXQUOTAS_INIT_BLOCKS(sb);
4144
4145         return 0;
4146 }
4147
4148 /*
4149  * Concurrency: @dt is write locked.
4150  */
4151 static int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
4152                          const char *name, struct thandle *handle)
4153 {
4154         struct osd_object      *obj    = osd_dt_obj(dt);
4155         struct inode           *inode  = obj->oo_inode;
4156         struct osd_thread_info *info   = osd_oti_get(env);
4157         struct dentry          *dentry = &info->oti_obj_dentry;
4158         int                     rc;
4159
4160         if (!dt_object_exists(dt))
4161                 return -ENOENT;
4162
4163         LASSERT(!dt_object_remote(dt));
4164         LASSERT(inode->i_op != NULL);
4165         LASSERT(handle != NULL);
4166 #ifdef HAVE_IOP_XATTR
4167         LASSERT(inode->i_op->removexattr != NULL);
4168 #endif
4169
4170         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
4171
4172         ll_vfs_dq_init(inode);
4173         dentry->d_inode = inode;
4174         dentry->d_sb = inode->i_sb;
4175         rc = inode->i_op->removexattr(dentry, name);
4176         if (rc == -ENODATA && strcmp(name, XATTR_NAME_FID) == 0) {
4177                 struct lustre_mdt_attrs *lma = &info->oti_ost_attrs.loa_lma;
4178
4179                 LASSERT(osd_dev(dt->do_lu.lo_dev)->od_is_ost);
4180
4181                 rc = osd_get_lma(info, inode, &info->oti_obj_dentry,
4182                                  &info->oti_ost_attrs);
4183                 if (!rc) {
4184                         if (!(lma->lma_compat & LMAC_STRIPE_INFO)) {
4185                                 rc = -ENODATA;
4186                                 goto out;
4187                         }
4188
4189                         lma->lma_compat &= ~(LMAC_STRIPE_INFO | LMAC_COMP_INFO);
4190                         lustre_lma_swab(lma);
4191                         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
4192                                              sizeof(*lma), XATTR_REPLACE);
4193                 }
4194         }
4195
4196 out:
4197         osd_trans_exec_check(env, handle, OSD_OT_XATTR_SET);
4198
4199         if (rc == 0 &&
4200             (strcmp(name, XATTR_NAME_LOV) == 0 ||
4201              strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0))
4202                 osd_oxc_del(obj, name);
4203
4204         return rc;
4205 }
4206
4207 static int osd_object_sync(const struct lu_env *env, struct dt_object *dt,
4208                            __u64 start, __u64 end)
4209 {
4210         struct osd_object       *obj    = osd_dt_obj(dt);
4211         struct inode            *inode  = obj->oo_inode;
4212         struct osd_thread_info  *info   = osd_oti_get(env);
4213         struct dentry           *dentry = &info->oti_obj_dentry;
4214         struct file             *file   = &info->oti_file;
4215         int                     rc;
4216
4217         ENTRY;
4218
4219         dentry->d_inode = inode;
4220         dentry->d_sb = inode->i_sb;
4221         file->f_path.dentry = dentry;
4222         file->f_mapping = inode->i_mapping;
4223         file->f_op = inode->i_fop;
4224         set_file_inode(file, inode);
4225
4226         rc = ll_vfs_fsync_range(file, start, end, 0);
4227
4228         RETURN(rc);
4229 }
4230
4231 static int osd_invalidate(const struct lu_env *env, struct dt_object *dt)
4232 {
4233         return 0;
4234 }
4235
4236 /*
4237  * Index operations.
4238  */
4239
4240 static int osd_iam_index_probe(const struct lu_env *env, struct osd_object *o,
4241                            const struct dt_index_features *feat)
4242 {
4243         struct iam_descr *descr;
4244
4245         if (osd_object_is_root(o))
4246                 return feat == &dt_directory_features;
4247
4248         LASSERT(o->oo_dir != NULL);
4249
4250         descr = o->oo_dir->od_container.ic_descr;
4251         if (feat == &dt_directory_features) {
4252                 if (descr->id_rec_size == sizeof(struct osd_fid_pack))
4253                         return 1;
4254                 else
4255                         return 0;
4256         } else {
4257                 return
4258                         feat->dif_keysize_min <= descr->id_key_size &&
4259                         descr->id_key_size <= feat->dif_keysize_max &&
4260                         feat->dif_recsize_min <= descr->id_rec_size &&
4261                         descr->id_rec_size <= feat->dif_recsize_max &&
4262                         !(feat->dif_flags & (DT_IND_VARKEY |
4263                                              DT_IND_VARREC | DT_IND_NONUNQ)) &&
4264                         ergo(feat->dif_flags & DT_IND_UPDATE,
4265                              1 /* XXX check that object (and file system) is
4266                                 * writable */);
4267         }
4268 }
4269
4270 static int osd_iam_container_init(const struct lu_env *env,
4271                                   struct osd_object *obj,
4272                                   struct osd_directory *dir)
4273 {
4274         struct iam_container *bag = &dir->od_container;
4275         int result;
4276
4277         result = iam_container_init(bag, &dir->od_descr, obj->oo_inode);
4278         if (result != 0)
4279                 return result;
4280
4281         result = iam_container_setup(bag);
4282         if (result == 0)
4283                 obj->oo_dt.do_index_ops = &osd_index_iam_ops;
4284         else
4285                 iam_container_fini(bag);
4286
4287         return result;
4288 }
4289
4290
4291 /*
4292  * Concurrency: no external locking is necessary.
4293  */
4294 static int osd_index_try(const struct lu_env *env, struct dt_object *dt,
4295                          const struct dt_index_features *feat)
4296 {
4297         int                      result;
4298         int                      skip_iam = 0;
4299         struct osd_object       *obj = osd_dt_obj(dt);
4300
4301         LINVRNT(osd_invariant(obj));
4302
4303         if (osd_object_is_root(obj)) {
4304                 dt->do_index_ops = &osd_index_ea_ops;
4305                 result = 0;
4306         } else if (feat == &dt_directory_features) {
4307                 dt->do_index_ops = &osd_index_ea_ops;
4308                 if (obj->oo_inode == NULL || S_ISDIR(obj->oo_inode->i_mode))
4309                         result = 0;
4310                 else
4311                         result = -ENOTDIR;
4312                 skip_iam = 1;
4313         } else if (unlikely(feat == &dt_otable_features)) {
4314                 dt->do_index_ops = &osd_otable_ops;
4315                 return 0;
4316         } else if (unlikely(feat == &dt_acct_features)) {
4317                 dt->do_index_ops = &osd_acct_index_ops;
4318                 result = 0;
4319                 skip_iam = 1;
4320         } else if (!osd_has_index(obj)) {
4321                 struct osd_directory *dir;
4322
4323                 OBD_ALLOC_PTR(dir);
4324                 if (dir != NULL) {
4325
4326                         spin_lock(&obj->oo_guard);
4327                         if (obj->oo_dir == NULL)
4328                                 obj->oo_dir = dir;
4329                         else
4330                                 /*
4331                                  * Concurrent thread allocated container data.
4332                                  */
4333                                 OBD_FREE_PTR(dir);
4334                         spin_unlock(&obj->oo_guard);
4335                         /*
4336                          * Now, that we have container data, serialize its
4337                          * initialization.
4338                          */
4339                         down_write(&obj->oo_ext_idx_sem);
4340                         /*
4341                          * recheck under lock.
4342                          */
4343                         if (!osd_has_index(obj))
4344                                 result = osd_iam_container_init(env, obj,
4345                                                                 obj->oo_dir);
4346                         else
4347                                 result = 0;
4348                         up_write(&obj->oo_ext_idx_sem);
4349                 } else {
4350                         result = -ENOMEM;
4351                 }
4352         } else {
4353                 result = 0;
4354         }
4355
4356         if (result == 0 && skip_iam == 0) {
4357                 if (!osd_iam_index_probe(env, obj, feat))
4358                         result = -ENOTDIR;
4359         }
4360         LINVRNT(osd_invariant(obj));
4361
4362         return result;
4363 }
4364
4365 static int osd_otable_it_attr_get(const struct lu_env *env,
4366                                  struct dt_object *dt,
4367                                  struct lu_attr *attr)
4368 {
4369         attr->la_valid = 0;
4370         return 0;
4371 }
4372
4373 static const struct dt_object_operations osd_obj_ops = {
4374         .do_read_lock           = osd_read_lock,
4375         .do_write_lock          = osd_write_lock,
4376         .do_read_unlock         = osd_read_unlock,
4377         .do_write_unlock        = osd_write_unlock,
4378         .do_write_locked        = osd_write_locked,
4379         .do_attr_get            = osd_attr_get,
4380         .do_declare_attr_set    = osd_declare_attr_set,
4381         .do_attr_set            = osd_attr_set,
4382         .do_ah_init             = osd_ah_init,
4383         .do_declare_create      = osd_declare_create,
4384         .do_create              = osd_create,
4385         .do_declare_destroy     = osd_declare_destroy,
4386         .do_destroy             = osd_destroy,
4387         .do_index_try           = osd_index_try,
4388         .do_declare_ref_add     = osd_declare_ref_add,
4389         .do_ref_add             = osd_ref_add,
4390         .do_declare_ref_del     = osd_declare_ref_del,
4391         .do_ref_del             = osd_ref_del,
4392         .do_xattr_get           = osd_xattr_get,
4393         .do_declare_xattr_set   = osd_declare_xattr_set,
4394         .do_xattr_set           = osd_xattr_set,
4395         .do_declare_xattr_del   = osd_declare_xattr_del,
4396         .do_xattr_del           = osd_xattr_del,
4397         .do_xattr_list          = osd_xattr_list,
4398         .do_object_sync         = osd_object_sync,
4399         .do_invalidate          = osd_invalidate,
4400 };
4401
4402 static const struct dt_object_operations osd_obj_otable_it_ops = {
4403         .do_attr_get    = osd_otable_it_attr_get,
4404         .do_index_try   = osd_index_try,
4405 };
4406
4407 static int osd_index_declare_iam_delete(const struct lu_env *env,
4408                                         struct dt_object *dt,
4409                                         const struct dt_key *key,
4410                                         struct thandle *handle)
4411 {
4412         struct osd_thandle    *oh;
4413
4414         oh = container_of0(handle, struct osd_thandle, ot_super);
4415         LASSERT(oh->ot_handle == NULL);
4416
4417         /* Recycle  may cause additional three blocks to be changed. */
4418         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
4419                              osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
4420
4421         return 0;
4422 }
4423
4424 /**
4425  *      delete a (key, value) pair from index \a dt specified by \a key
4426  *
4427  *      \param  dt      osd index object
4428  *      \param  key     key for index
4429  *      \param  rec     record reference
4430  *      \param  handle  transaction handler
4431  *
4432  *      \retval  0  success
4433  *      \retval -ve   failure
4434  */
4435 static int osd_index_iam_delete(const struct lu_env *env, struct dt_object *dt,
4436                                 const struct dt_key *key,
4437                                 struct thandle *handle)
4438 {
4439         struct osd_thread_info *oti = osd_oti_get(env);
4440         struct osd_object      *obj = osd_dt_obj(dt);
4441         struct osd_thandle     *oh;
4442         struct iam_path_descr  *ipd;
4443         struct iam_container   *bag = &obj->oo_dir->od_container;
4444         int                     rc;
4445         ENTRY;
4446
4447         if (!dt_object_exists(dt))
4448                 RETURN(-ENOENT);
4449
4450         LINVRNT(osd_invariant(obj));
4451         LASSERT(!dt_object_remote(dt));
4452         LASSERT(bag->ic_object == obj->oo_inode);
4453         LASSERT(handle != NULL);
4454
4455         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
4456
4457         ipd = osd_idx_ipd_get(env, bag);
4458         if (unlikely(ipd == NULL))
4459                 RETURN(-ENOMEM);
4460
4461         oh = container_of0(handle, struct osd_thandle, ot_super);
4462         LASSERT(oh->ot_handle != NULL);
4463         LASSERT(oh->ot_handle->h_transaction != NULL);
4464
4465         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
4466                 /* swab quota uid/gid provided by caller */
4467                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
4468                 key = (const struct dt_key *)&oti->oti_quota_id;
4469         }
4470
4471         rc = iam_delete(oh->ot_handle, bag, (const struct iam_key *)key, ipd);
4472         osd_ipd_put(env, bag, ipd);
4473         LINVRNT(osd_invariant(obj));
4474         osd_trans_exec_check(env, handle, OSD_OT_DELETE);
4475         RETURN(rc);
4476 }
4477
4478 static int osd_index_declare_ea_delete(const struct lu_env *env,
4479                                        struct dt_object *dt,
4480                                        const struct dt_key *key,
4481                                        struct thandle *handle)
4482 {
4483         struct osd_thandle *oh;
4484         struct inode       *inode;
4485         int                 rc, credits;
4486         ENTRY;
4487
4488         LASSERT(!dt_object_remote(dt));
4489         LASSERT(handle != NULL);
4490
4491         oh = container_of0(handle, struct osd_thandle, ot_super);
4492         LASSERT(oh->ot_handle == NULL);
4493
4494         credits = osd_dto_credits_noquota[DTO_INDEX_DELETE];
4495         if (key != NULL && unlikely(strcmp((char *)key, dotdot) == 0)) {
4496                 /* '..' to a remote object has a local representative */
4497                 credits += osd_dto_credits_noquota[DTO_INDEX_DELETE];
4498                 /* to reset LMAI_REMOTE_PARENT */
4499                 credits += 1;
4500         }
4501         osd_trans_declare_op(env, oh, OSD_OT_DELETE, credits);
4502
4503         inode = osd_dt_obj(dt)->oo_inode;
4504         if (inode == NULL)
4505                 RETURN(-ENOENT);
4506
4507         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
4508                                    i_projid_read(inode), 0, oh, osd_dt_obj(dt),
4509                                    NULL, OSD_QID_BLK);
4510         RETURN(rc);
4511 }
4512
4513 static inline int osd_get_fid_from_dentry(struct ldiskfs_dir_entry_2 *de,
4514                                           struct dt_rec *fid)
4515 {
4516         struct osd_fid_pack *rec;
4517         int                  rc = -ENODATA;
4518
4519         if (de->file_type & LDISKFS_DIRENT_LUFID) {
4520                 rec = (struct osd_fid_pack *) (de->name + de->name_len + 1);
4521                 rc = osd_fid_unpack((struct lu_fid *)fid, rec);
4522                 if (rc == 0 && unlikely(!fid_is_sane((struct lu_fid *)fid)))
4523                         rc = -EINVAL;
4524         }
4525         return rc;
4526 }
4527
4528 static int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
4529                           const struct lu_fid *fid)
4530 {
4531         struct seq_server_site  *ss = osd_seq_site(osd);
4532         ENTRY;
4533
4534         /* FID seqs not in FLDB, must be local seq */
4535         if (unlikely(!fid_seq_in_fldb(fid_seq(fid))))
4536                 RETURN(0);
4537
4538         /* If FLD is not being initialized yet, it only happens during the
4539          * initialization, likely during mgs initialization, and we assume
4540          * this is local FID. */
4541         if (ss == NULL || ss->ss_server_fld == NULL)
4542                 RETURN(0);
4543
4544         /* Only check the local FLDB here */
4545         if (osd_seq_exists(env, osd, fid_seq(fid)))
4546                 RETURN(0);
4547
4548         RETURN(1);
4549 }
4550
4551 static void osd_take_care_of_agent(const struct lu_env *env,
4552                                    struct osd_device *osd,
4553                                    struct osd_thandle *oh,
4554                                    struct ldiskfs_dir_entry_2 *de)
4555 {
4556         struct lu_fid *fid = &osd_oti_get(env)->oti_fid;
4557         struct osd_idmap_cache *idc;
4558         int rc, schedule = 0;
4559
4560         LASSERT(de != NULL);
4561
4562         rc = osd_get_fid_from_dentry(de, (struct dt_rec *)fid);
4563         if (likely(rc == 0)) {
4564                 idc = osd_idc_find_or_init(env, osd, fid);
4565                 if (IS_ERR(idc) || idc->oic_remote)
4566                         schedule = 1;
4567         } else if (rc == -ENODATA) {
4568                 /* can't get FID, postpone to the end of the
4569                  * transaction when iget() is safe */
4570                 schedule = 1;
4571         } else {
4572                 CERROR("%s: can't get FID: rc = %d\n", osd_name(osd), rc);
4573         }
4574         if (schedule)
4575                 osd_schedule_agent_inode_removal(env, oh,
4576                                                  le32_to_cpu(de->inode));
4577 }
4578
4579 /**
4580  * Index delete function for interoperability mode (b11826).
4581  * It will remove the directory entry added by osd_index_ea_insert().
4582  * This entry is needed to maintain name->fid mapping.
4583  *
4584  * \param key,  key i.e. file entry to be deleted
4585  *
4586  * \retval   0, on success
4587  * \retval -ve, on error
4588  */
4589 static int osd_index_ea_delete(const struct lu_env *env, struct dt_object *dt,
4590                                const struct dt_key *key, struct thandle *handle)
4591 {
4592         struct osd_object          *obj = osd_dt_obj(dt);
4593         struct inode               *dir = obj->oo_inode;
4594         struct dentry              *dentry;
4595         struct osd_thandle         *oh;
4596         struct ldiskfs_dir_entry_2 *de = NULL;
4597         struct buffer_head         *bh;
4598         struct htree_lock          *hlock = NULL;
4599         struct lu_fid              *fid = &osd_oti_get(env)->oti_fid;
4600         struct osd_device          *osd = osd_dev(dt->do_lu.lo_dev);
4601         int                        rc;
4602         ENTRY;
4603
4604         if (!dt_object_exists(dt))
4605                 RETURN(-ENOENT);
4606
4607         LINVRNT(osd_invariant(obj));
4608         LASSERT(!dt_object_remote(dt));
4609         LASSERT(handle != NULL);
4610
4611         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
4612
4613         oh = container_of(handle, struct osd_thandle, ot_super);
4614         LASSERT(oh->ot_handle != NULL);
4615         LASSERT(oh->ot_handle->h_transaction != NULL);
4616
4617         ll_vfs_dq_init(dir);
4618         dentry = osd_child_dentry_get(env, obj,
4619                                       (char *)key, strlen((char *)key));
4620
4621         if (obj->oo_hl_head != NULL) {
4622                 hlock = osd_oti_get(env)->oti_hlock;
4623                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
4624                                    dir, LDISKFS_HLOCK_DEL);
4625         } else {
4626                 down_write(&obj->oo_ext_idx_sem);
4627         }
4628
4629         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
4630         if (!IS_ERR(bh)) {
4631                 /* If this is not the ".." entry, it might be a remote DNE
4632                  * entry and  we need to check if the FID is for a remote
4633                  * MDT.  If the FID is  not in the directory entry (e.g.
4634                  * upgraded 1.8 filesystem without dirdata enabled) then
4635                  * we need to get the FID from the LMA. For a remote directory
4636                  * there HAS to be an LMA, it cannot be an IGIF inode in this
4637                  * case.
4638                  *
4639                  * Delete the entry before the agent inode in order to
4640                  * simplify error handling.  At worst an error after deleting
4641                  * the entry first might leak the agent inode afterward. The
4642                  * reverse would need filesystem abort in case of error deleting
4643                  * the entry after the agent had been removed, or leave a
4644                  * dangling entry pointing at a random inode. */
4645                 if (strcmp((char *)key, dotdot) != 0)
4646                         osd_take_care_of_agent(env, osd, oh, de);
4647                 rc = ldiskfs_delete_entry(oh->ot_handle, dir, de, bh);
4648                 brelse(bh);
4649         } else {
4650                 rc = PTR_ERR(bh);
4651         }
4652         if (hlock != NULL)
4653                 ldiskfs_htree_unlock(hlock);
4654         else
4655                 up_write(&obj->oo_ext_idx_sem);
4656
4657         if (rc != 0)
4658                 GOTO(out, rc);
4659
4660         /* For inode on the remote MDT, .. will point to
4661          * /Agent directory, Check whether it needs to delete
4662          * from agent directory */
4663         if (unlikely(strcmp((char *)key, dotdot) == 0)) {
4664                 int ret;
4665
4666                 ret = osd_delete_from_remote_parent(env, osd_obj2dev(obj),
4667                                                     obj, oh);
4668                 if (ret != 0)
4669                         /* Sigh, the entry has been deleted, and
4670                          * it is not easy to revert it back, so
4671                          * let's keep this error private, and let
4672                          * LFSCK fix it. XXX */
4673                         CERROR("%s: delete remote parent "DFID": rc = %d\n",
4674                                osd_name(osd), PFID(fid), ret);
4675         }
4676 out:
4677         LASSERT(osd_invariant(obj));
4678         osd_trans_exec_check(env, handle, OSD_OT_DELETE);
4679         RETURN(rc);
4680 }
4681
4682 /**
4683  *      Lookup index for \a key and copy record to \a rec.
4684  *
4685  *      \param  dt      osd index object
4686  *      \param  key     key for index
4687  *      \param  rec     record reference
4688  *
4689  *      \retval  +ve  success : exact mach
4690  *      \retval  0    return record with key not greater than \a key
4691  *      \retval -ve   failure
4692  */
4693 static int osd_index_iam_lookup(const struct lu_env *env, struct dt_object *dt,
4694                                 struct dt_rec *rec, const struct dt_key *key)
4695 {
4696         struct osd_object      *obj = osd_dt_obj(dt);
4697         struct iam_path_descr  *ipd;
4698         struct iam_container   *bag = &obj->oo_dir->od_container;
4699         struct osd_thread_info *oti = osd_oti_get(env);
4700         struct iam_iterator    *it = &oti->oti_idx_it;
4701         struct iam_rec         *iam_rec;
4702         int                     rc;
4703         ENTRY;
4704
4705         if (!dt_object_exists(dt))
4706                 RETURN(-ENOENT);
4707
4708         LASSERT(osd_invariant(obj));
4709         LASSERT(!dt_object_remote(dt));
4710         LASSERT(bag->ic_object == obj->oo_inode);
4711
4712         ipd = osd_idx_ipd_get(env, bag);
4713         if (IS_ERR(ipd))
4714                 RETURN(-ENOMEM);
4715
4716         /* got ipd now we can start iterator. */
4717         iam_it_init(it, bag, 0, ipd);
4718
4719         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
4720                 /* swab quota uid/gid provided by caller */
4721                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
4722                 key = (const struct dt_key *)&oti->oti_quota_id;
4723         }
4724
4725         rc = iam_it_get(it, (struct iam_key *)key);
4726         if (rc >= 0) {
4727                 if (S_ISDIR(obj->oo_inode->i_mode))
4728                         iam_rec = (struct iam_rec *)oti->oti_ldp;
4729                 else
4730                         iam_rec = (struct iam_rec *) rec;
4731
4732                 iam_reccpy(&it->ii_path.ip_leaf, (struct iam_rec *)iam_rec);
4733
4734                 if (S_ISDIR(obj->oo_inode->i_mode))
4735                         osd_fid_unpack((struct lu_fid *) rec,
4736                                        (struct osd_fid_pack *)iam_rec);
4737                 else if (fid_is_quota(lu_object_fid(&dt->do_lu)))
4738                         osd_quota_unpack(obj, rec);
4739         }
4740
4741         iam_it_put(it);
4742         iam_it_fini(it);
4743         osd_ipd_put(env, bag, ipd);
4744
4745         LINVRNT(osd_invariant(obj));
4746
4747         RETURN(rc);
4748 }
4749
4750 static int osd_index_declare_iam_insert(const struct lu_env *env,
4751                                         struct dt_object *dt,
4752                                         const struct dt_rec *rec,
4753                                         const struct dt_key *key,
4754                                         struct thandle *handle)
4755 {
4756         struct osd_thandle *oh;
4757
4758         LASSERT(handle != NULL);
4759
4760         oh = container_of0(handle, struct osd_thandle, ot_super);
4761         LASSERT(oh->ot_handle == NULL);
4762
4763         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4764                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
4765
4766         return 0;
4767 }
4768
4769 /**
4770  *      Inserts (key, value) pair in \a dt index object.
4771  *
4772  *      \param  dt      osd index object
4773  *      \param  key     key for index
4774  *      \param  rec     record reference
4775  *      \param  th      transaction handler
4776  *
4777  *      \retval  0  success
4778  *      \retval -ve failure
4779  */
4780 static int osd_index_iam_insert(const struct lu_env *env, struct dt_object *dt,
4781                                 const struct dt_rec *rec,
4782                                 const struct dt_key *key, struct thandle *th,
4783                                 int ignore_quota)
4784 {
4785         struct osd_object     *obj = osd_dt_obj(dt);
4786         struct iam_path_descr *ipd;
4787         struct osd_thandle    *oh;
4788         struct iam_container  *bag;
4789         struct osd_thread_info *oti = osd_oti_get(env);
4790         struct iam_rec         *iam_rec;
4791         int                     rc;
4792         ENTRY;
4793
4794         if (!dt_object_exists(dt))
4795                 RETURN(-ENOENT);
4796
4797         LINVRNT(osd_invariant(obj));
4798         LASSERT(!dt_object_remote(dt));
4799
4800         bag = &obj->oo_dir->od_container;
4801         LASSERT(bag->ic_object == obj->oo_inode);
4802         LASSERT(th != NULL);
4803
4804         osd_trans_exec_op(env, th, OSD_OT_INSERT);
4805
4806         ipd = osd_idx_ipd_get(env, bag);
4807         if (unlikely(ipd == NULL))
4808                 RETURN(-ENOMEM);
4809
4810         oh = container_of0(th, struct osd_thandle, ot_super);
4811         LASSERT(oh->ot_handle != NULL);
4812         LASSERT(oh->ot_handle->h_transaction != NULL);
4813         if (S_ISDIR(obj->oo_inode->i_mode)) {
4814                 iam_rec = (struct iam_rec *)oti->oti_ldp;
4815                 osd_fid_pack((struct osd_fid_pack *)iam_rec, rec, &oti->oti_fid);
4816         } else if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
4817                 /* pack quota uid/gid */
4818                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
4819                 key = (const struct dt_key *)&oti->oti_quota_id;
4820                 /* pack quota record */
4821                 rec = osd_quota_pack(obj, rec, &oti->oti_quota_rec);
4822                 iam_rec = (struct iam_rec *)rec;
4823         } else {
4824                 iam_rec = (struct iam_rec *)rec;
4825         }
4826
4827         rc = iam_insert(oh->ot_handle, bag, (const struct iam_key *)key,
4828                         iam_rec, ipd);
4829         osd_ipd_put(env, bag, ipd);
4830         LINVRNT(osd_invariant(obj));
4831         osd_trans_exec_check(env, th, OSD_OT_INSERT);
4832         RETURN(rc);
4833 }
4834
4835 /**
4836  * Calls ldiskfs_add_entry() to add directory entry
4837  * into the directory. This is required for
4838  * interoperability mode (b11826)
4839  *
4840  * \retval   0, on success
4841  * \retval -ve, on error
4842  */
4843 static int __osd_ea_add_rec(struct osd_thread_info *info,
4844                             struct osd_object *pobj, struct inode  *cinode,
4845                             const char *name, const struct lu_fid *fid,
4846                             struct htree_lock *hlock, struct thandle *th)
4847 {
4848         struct ldiskfs_dentry_param *ldp;
4849         struct dentry               *child;
4850         struct osd_thandle          *oth;
4851         int                          rc;
4852
4853         oth = container_of(th, struct osd_thandle, ot_super);
4854         LASSERT(oth->ot_handle != NULL);
4855         LASSERT(oth->ot_handle->h_transaction != NULL);
4856         LASSERT(pobj->oo_inode);
4857
4858         ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
4859         if (unlikely(pobj->oo_inode ==
4860                      osd_sb(osd_obj2dev(pobj))->s_root->d_inode))
4861                 ldp->edp_magic = 0;
4862         else
4863                 osd_get_ldiskfs_dirent_param(ldp, fid);
4864         child = osd_child_dentry_get(info->oti_env, pobj, name, strlen(name));
4865         child->d_fsdata = (void *)ldp;
4866         ll_vfs_dq_init(pobj->oo_inode);
4867         rc = osd_ldiskfs_add_entry(info, osd_obj2dev(pobj), oth->ot_handle,
4868                                    child, cinode, hlock);
4869         if (rc == 0 && OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_TYPE)) {
4870                 struct ldiskfs_dir_entry_2      *de;
4871                 struct buffer_head              *bh;
4872                 int                              rc1;
4873
4874                 bh = osd_ldiskfs_find_entry(pobj->oo_inode, &child->d_name, &de,
4875                                             NULL, hlock);
4876                 if (!IS_ERR(bh)) {
4877                         rc1 = ldiskfs_journal_get_write_access(oth->ot_handle,
4878                                                                bh);
4879                         if (rc1 == 0) {
4880                                 if (S_ISDIR(cinode->i_mode))
4881                                         de->file_type = LDISKFS_DIRENT_LUFID |
4882                                                         LDISKFS_FT_REG_FILE;
4883                                 else
4884                                         de->file_type = LDISKFS_DIRENT_LUFID |
4885                                                         LDISKFS_FT_DIR;
4886                                 ldiskfs_handle_dirty_metadata(oth->ot_handle,
4887                                                               NULL, bh);
4888                         }
4889                         brelse(bh);
4890                 }
4891         }
4892
4893         RETURN(rc);
4894 }
4895
4896 /**
4897  * Calls ldiskfs_add_dot_dotdot() to add dot and dotdot entries
4898  * into the directory.Also sets flags into osd object to
4899  * indicate dot and dotdot are created. This is required for
4900  * interoperability mode (b11826)
4901  *
4902  * \param dir   directory for dot and dotdot fixup.
4903  * \param obj   child object for linking
4904  *
4905  * \retval   0, on success
4906  * \retval -ve, on error
4907  */
4908 static int osd_add_dot_dotdot(struct osd_thread_info *info,
4909                               struct osd_object *dir,
4910                               struct inode *parent_dir, const char *name,
4911                               const struct lu_fid *dot_fid,
4912                               const struct lu_fid *dot_dot_fid,
4913                               struct thandle *th)
4914 {
4915         struct inode                *inode = dir->oo_inode;
4916         struct osd_thandle          *oth;
4917         int result = 0;
4918
4919         oth = container_of(th, struct osd_thandle, ot_super);
4920         LASSERT(oth->ot_handle->h_transaction != NULL);
4921         LASSERT(S_ISDIR(dir->oo_inode->i_mode));
4922
4923         if (strcmp(name, dot) == 0) {
4924                 if (dir->oo_compat_dot_created) {
4925                         result = -EEXIST;
4926                 } else {
4927                         LASSERT(inode->i_ino == parent_dir->i_ino);
4928                         dir->oo_compat_dot_created = 1;
4929                         result = 0;
4930                 }
4931         } else if (strcmp(name, dotdot) == 0) {
4932                 if (!dir->oo_compat_dot_created)
4933                         return -EINVAL;
4934                 /* in case of rename, dotdot is already created */
4935                 if (dir->oo_compat_dotdot_created) {
4936                         return __osd_ea_add_rec(info, dir, parent_dir, name,
4937                                                 dot_dot_fid, NULL, th);
4938                 }
4939
4940                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT)) {
4941                         struct lu_fid tfid = *dot_dot_fid;
4942
4943                         tfid.f_oid--;
4944                         result = osd_add_dot_dotdot_internal(info,
4945                                         dir->oo_inode, parent_dir, dot_fid,
4946                                         &tfid, oth);
4947                 } else {
4948                         result = osd_add_dot_dotdot_internal(info,
4949                                         dir->oo_inode, parent_dir, dot_fid,
4950                                         dot_dot_fid, oth);
4951                 }
4952
4953                 if (result == 0)
4954                         dir->oo_compat_dotdot_created = 1;
4955         }
4956
4957         return result;
4958 }
4959
4960
4961 /**
4962  * It will call the appropriate osd_add* function and return the
4963  * value, return by respective functions.
4964  */
4965 static int osd_ea_add_rec(const struct lu_env *env, struct osd_object *pobj,
4966                           struct inode *cinode, const char *name,
4967                           const struct lu_fid *fid, struct thandle *th)
4968 {
4969         struct osd_thread_info *info   = osd_oti_get(env);
4970         struct htree_lock      *hlock;
4971         int                     rc;
4972
4973         hlock = pobj->oo_hl_head != NULL ? info->oti_hlock : NULL;
4974
4975         if (name[0] == '.' && (name[1] == '\0' || (name[1] == '.' &&
4976                                                    name[2] =='\0'))) {
4977                 if (hlock != NULL) {
4978                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
4979                                            pobj->oo_inode, 0);
4980                 } else {
4981                         down_write(&pobj->oo_ext_idx_sem);
4982                 }
4983
4984                 rc = osd_add_dot_dotdot(info, pobj, cinode, name,
4985                                         lu_object_fid(&pobj->oo_dt.do_lu),
4986                                         fid, th);
4987         } else {
4988                 if (hlock != NULL) {
4989                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
4990                                            pobj->oo_inode, LDISKFS_HLOCK_ADD);
4991                 } else {
4992                         down_write(&pobj->oo_ext_idx_sem);
4993                 }
4994
4995                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_INDIR)) {
4996                         struct lu_fid *tfid = &info->oti_fid;
4997
4998                         *tfid = *fid;
4999                         tfid->f_ver = ~0;
5000                         rc = __osd_ea_add_rec(info, pobj, cinode, name,
5001                                               tfid, hlock, th);
5002                 } else {
5003                         rc = __osd_ea_add_rec(info, pobj, cinode, name, fid,
5004                                               hlock, th);
5005                 }
5006         }
5007         if (hlock != NULL)
5008                 ldiskfs_htree_unlock(hlock);
5009         else
5010                 up_write(&pobj->oo_ext_idx_sem);
5011
5012         return rc;
5013 }
5014
5015 static int
5016 osd_consistency_check(struct osd_thread_info *oti, struct osd_device *dev,
5017                       struct osd_idmap_cache *oic)
5018 {
5019         struct osd_scrub *scrub = &dev->od_scrub;
5020         struct lu_fid *fid = &oic->oic_fid;
5021         struct osd_inode_id *id = &oic->oic_lid;
5022         struct inode *inode = NULL;
5023         int once  = 0;
5024         bool insert;
5025         int rc;
5026         ENTRY;
5027
5028         if (!fid_is_norm(fid) && !fid_is_igif(fid))
5029                 RETURN(0);
5030
5031         if (scrub->os_pos_current > id->oii_ino)
5032                 RETURN(0);
5033
5034 again:
5035         rc = osd_oi_lookup(oti, dev, fid, &oti->oti_id, 0);
5036         if (rc == -ENOENT) {
5037                 __u32 gen = id->oii_gen;
5038
5039                 insert = true;
5040                 if (inode != NULL)
5041                         goto trigger;
5042
5043                 inode = osd_iget(oti, dev, id);
5044                 /* The inode has been removed (by race maybe). */
5045                 if (IS_ERR(inode)) {
5046                         rc = PTR_ERR(inode);
5047
5048                         RETURN(rc == -ESTALE ? -ENOENT : rc);
5049                 }
5050
5051                 /* The OI mapping is lost. */
5052                 if (gen != OSD_OII_NOGEN)
5053                         goto trigger;
5054
5055                 /* The inode may has been reused by others, we do not know,
5056                  * leave it to be handled by subsequent osd_fid_lookup(). */
5057                 GOTO(out, rc = 0);
5058         } else if (rc || osd_id_eq(id, &oti->oti_id)) {
5059                 GOTO(out, rc);
5060         }
5061
5062         insert = false;
5063
5064 trigger:
5065         if (thread_is_running(&scrub->os_thread)) {
5066                 if (inode == NULL) {
5067                         inode = osd_iget(oti, dev, id);
5068                         /* The inode has been removed (by race maybe). */
5069                         if (IS_ERR(inode)) {
5070                                 rc = PTR_ERR(inode);
5071
5072                                 RETURN(rc == -ESTALE ? -ENOENT : rc);
5073                         }
5074                 }
5075
5076                 rc = osd_oii_insert(dev, oic, insert);
5077                 /* There is race condition between osd_oi_lookup and OI scrub.
5078                  * The OI scrub finished just after osd_oi_lookup() failure.
5079                  * Under such case, it is unnecessary to trigger OI scrub again,
5080                  * but try to call osd_oi_lookup() again. */
5081                 if (unlikely(rc == -EAGAIN))
5082                         goto again;
5083
5084                 if (!S_ISDIR(inode->i_mode))
5085                         rc = 0;
5086                 else
5087                         rc = osd_check_lmv(oti, dev, inode, oic);
5088
5089                 GOTO(out, rc);
5090         }
5091
5092         if (!dev->od_noscrub && ++once == 1) {
5093                 rc = osd_scrub_start(dev, SS_AUTO_PARTIAL | SS_CLEAR_DRYRUN |
5094                                      SS_CLEAR_FAILOUT);
5095                 CDEBUG(D_LFSCK | D_CONSOLE | D_WARNING,
5096                        "%s: trigger partial OI scrub for RPC inconsistency "
5097                        "checking FID "DFID": rc = %d\n",
5098                        osd_dev2name(dev), PFID(fid), rc);
5099                 if (rc == 0 || rc == -EALREADY)
5100                         goto again;
5101         }
5102
5103         GOTO(out, rc);
5104
5105 out:
5106         if (inode)
5107                 iput(inode);
5108
5109         RETURN(rc);
5110 }
5111
5112 static int osd_fail_fid_lookup(struct osd_thread_info *oti,
5113                                struct osd_device *dev,
5114                                struct osd_idmap_cache *oic,
5115                                struct lu_fid *fid, __u32 ino)
5116 {
5117         struct lustre_ost_attrs *loa = &oti->oti_ost_attrs;
5118         struct inode *inode;
5119         int rc;
5120
5121         osd_id_gen(&oic->oic_lid, ino, OSD_OII_NOGEN);
5122         inode = osd_iget(oti, dev, &oic->oic_lid);
5123         if (IS_ERR(inode)) {
5124                 fid_zero(&oic->oic_fid);
5125                 return PTR_ERR(inode);
5126         }
5127
5128         rc = osd_get_lma(oti, inode, &oti->oti_obj_dentry, loa);
5129         iput(inode);
5130         if (rc != 0)
5131                 fid_zero(&oic->oic_fid);
5132         else
5133                 *fid = oic->oic_fid = loa->loa_lma.lma_self_fid;
5134         return rc;
5135 }
5136
5137 void osd_add_oi_cache(struct osd_thread_info *info, struct osd_device *osd,
5138                       struct osd_inode_id *id, const struct lu_fid *fid)
5139 {
5140         CDEBUG(D_INODE, "add "DFID" %u:%u to info %p\n", PFID(fid),
5141                id->oii_ino, id->oii_gen, info);
5142         info->oti_cache.oic_lid = *id;
5143         info->oti_cache.oic_fid = *fid;
5144         info->oti_cache.oic_dev = osd;
5145 }
5146
5147 /**
5148  * Get parent FID from the linkEA.
5149  *
5150  * For a directory which parent resides on remote MDT, to satisfy the
5151  * local e2fsck, we insert it into the /REMOTE_PARENT_DIR locally. On
5152  * the other hand, to make the lookup(..) on the directory can return
5153  * the real parent FID, we append the real parent FID after its ".."
5154  * name entry in the /REMOTE_PARENT_DIR.
5155  *
5156  * Unfortunately, such PFID-in-dirent cannot be preserved via file-level
5157  * backup. So after the restore, we cannot get the right parent FID from
5158  * its ".." name entry in the /REMOTE_PARENT_DIR. Under such case, since
5159  * we have stored the real parent FID in the directory object's linkEA,
5160  * we can parse the linkEA for the real parent FID.
5161  *
5162  * \param[in] env       pointer to the thread context
5163  * \param[in] obj       pointer to the object to be handled
5164  * \param[out]fid       pointer to the buffer to hold the parent FID
5165  *
5166  * \retval              0 for getting the real parent FID successfully
5167  * \retval              negative error number on failure
5168  */
5169 static int osd_get_pfid_from_linkea(const struct lu_env *env,
5170                                     struct osd_object *obj,
5171                                     struct lu_fid *fid)
5172 {
5173         struct osd_thread_info  *oti    = osd_oti_get(env);
5174         struct lu_buf           *buf    = &oti->oti_big_buf;
5175         struct dentry           *dentry = &oti->oti_obj_dentry;
5176         struct inode            *inode  = obj->oo_inode;
5177         struct linkea_data       ldata  = { NULL };
5178         int                      rc;
5179         ENTRY;
5180
5181         fid_zero(fid);
5182         if (!S_ISDIR(inode->i_mode))
5183                 RETURN(-EIO);
5184
5185 again:
5186         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
5187                              buf->lb_buf, buf->lb_len);
5188         if (rc == -ERANGE) {
5189                 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
5190                                      NULL, 0);
5191                 if (rc > 0) {
5192                         lu_buf_realloc(buf, rc);
5193                         if (buf->lb_buf == NULL)
5194                                 RETURN(-ENOMEM);
5195
5196                         goto again;
5197                 }
5198         }
5199
5200         if (unlikely(rc == 0))
5201                 RETURN(-ENODATA);
5202
5203         if (rc < 0)
5204                 RETURN(rc);
5205
5206         if (unlikely(buf->lb_buf == NULL)) {
5207                 lu_buf_realloc(buf, rc);
5208                 if (buf->lb_buf == NULL)
5209                         RETURN(-ENOMEM);
5210
5211                 goto again;
5212         }
5213
5214         ldata.ld_buf = buf;
5215         rc = linkea_init_with_rec(&ldata);
5216         if (!rc) {
5217                 linkea_first_entry(&ldata);
5218                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, NULL, fid);
5219         }
5220
5221         RETURN(rc);
5222 }
5223
5224 static int osd_verify_ent_by_linkea(const struct lu_env *env,
5225                                     struct inode *inode,
5226                                     const struct lu_fid *pfid,
5227                                     const char *name, const int namelen)
5228 {
5229         struct osd_thread_info *oti = osd_oti_get(env);
5230         struct lu_buf *buf = &oti->oti_big_buf;
5231         struct dentry *dentry = &oti->oti_obj_dentry;
5232         struct linkea_data ldata = { NULL };
5233         struct lu_name cname = { .ln_name = name,
5234                                  .ln_namelen = namelen };
5235         int rc;
5236         ENTRY;
5237
5238 again:
5239         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK,
5240                              buf->lb_buf, buf->lb_len);
5241         if (rc == -ERANGE)
5242                 rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LINK, NULL, 0);
5243
5244         if (rc < 0)
5245                 RETURN(rc);
5246
5247         if (unlikely(rc == 0))
5248                 RETURN(-ENODATA);
5249
5250         if (buf->lb_len < rc) {
5251                 lu_buf_realloc(buf, rc);
5252                 if (buf->lb_buf == NULL)
5253                         RETURN(-ENOMEM);
5254
5255                 goto again;
5256         }
5257
5258         ldata.ld_buf = buf;
5259         rc = linkea_init_with_rec(&ldata);
5260         if (!rc)
5261                 rc = linkea_links_find(&ldata, &cname, pfid);
5262
5263         RETURN(rc);
5264 }
5265
5266 /**
5267  * Calls ->lookup() to find dentry. From dentry get inode and
5268  * read inode's ea to get fid. This is required for  interoperability
5269  * mode (b11826)
5270  *
5271  * \retval   0, on success
5272  * \retval -ve, on error
5273  */
5274 static int osd_ea_lookup_rec(const struct lu_env *env, struct osd_object *obj,
5275                              struct dt_rec *rec, const struct dt_key *key)
5276 {
5277         struct inode                    *dir    = obj->oo_inode;
5278         struct dentry                   *dentry;
5279         struct ldiskfs_dir_entry_2      *de;
5280         struct buffer_head              *bh;
5281         struct lu_fid                   *fid = (struct lu_fid *) rec;
5282         struct htree_lock               *hlock = NULL;
5283         int                             ino;
5284         int                             rc;
5285         ENTRY;
5286
5287         LASSERT(dir->i_op != NULL);
5288         LASSERT(dir->i_op->lookup != NULL);
5289
5290         dentry = osd_child_dentry_get(env, obj,
5291                                       (char *)key, strlen((char *)key));
5292
5293         if (obj->oo_hl_head != NULL) {
5294                 hlock = osd_oti_get(env)->oti_hlock;
5295                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
5296                                    dir, LDISKFS_HLOCK_LOOKUP);
5297         } else {
5298                 down_read(&obj->oo_ext_idx_sem);
5299         }
5300
5301         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
5302         if (!IS_ERR(bh)) {
5303                 struct osd_thread_info *oti = osd_oti_get(env);
5304                 struct osd_inode_id *id = &oti->oti_id;
5305                 struct osd_idmap_cache *oic = &oti->oti_cache;
5306                 struct osd_device *dev = osd_obj2dev(obj);
5307
5308                 ino = le32_to_cpu(de->inode);
5309                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP)) {
5310                         brelse(bh);
5311                         rc = osd_fail_fid_lookup(oti, dev, oic, fid, ino);
5312                         GOTO(out, rc);
5313                 }
5314
5315                 rc = osd_get_fid_from_dentry(de, rec);
5316
5317                 /* done with de, release bh */
5318                 brelse(bh);
5319                 if (rc != 0) {
5320                         if (unlikely(is_remote_parent_ino(dev, ino))) {
5321                                 const char *name = (const char *)key;
5322
5323                                 /* If the parent is on remote MDT, and there
5324                                  * is no FID-in-dirent, then we have to get
5325                                  * the parent FID from the linkEA.  */
5326                                 if (likely(strlen(name) == 2 &&
5327                                            name[0] == '.' && name[1] == '.'))
5328                                         rc = osd_get_pfid_from_linkea(env, obj,
5329                                                                       fid);
5330                         } else {
5331                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
5332                         }
5333                 } else {
5334                         osd_id_gen(id, ino, OSD_OII_NOGEN);
5335                 }
5336
5337                 if (rc != 0 || osd_remote_fid(env, dev, fid)) {
5338                         fid_zero(&oic->oic_fid);
5339
5340                         GOTO(out, rc);
5341                 }
5342
5343                 osd_add_oi_cache(osd_oti_get(env), osd_obj2dev(obj), id, fid);
5344                 rc = osd_consistency_check(oti, dev, oic);
5345                 if (rc != 0)
5346                         fid_zero(&oic->oic_fid);
5347         } else {
5348                 rc = PTR_ERR(bh);
5349         }
5350
5351         GOTO(out, rc);
5352
5353 out:
5354         if (hlock != NULL)
5355                 ldiskfs_htree_unlock(hlock);
5356         else
5357                 up_read(&obj->oo_ext_idx_sem);
5358         return rc;
5359 }
5360
5361 static int osd_index_declare_ea_insert(const struct lu_env *env,
5362                                        struct dt_object *dt,
5363                                        const struct dt_rec *rec,
5364                                        const struct dt_key *key,
5365                                        struct thandle *handle)
5366 {
5367         struct osd_thandle      *oh;
5368         struct osd_device       *osd   = osd_dev(dt->do_lu.lo_dev);
5369         struct dt_insert_rec    *rec1   = (struct dt_insert_rec *)rec;
5370         const struct lu_fid     *fid    = rec1->rec_fid;
5371         int                      credits, rc = 0;
5372         struct osd_idmap_cache  *idc;
5373         ENTRY;
5374
5375         LASSERT(!dt_object_remote(dt));
5376         LASSERT(handle != NULL);
5377         LASSERT(fid != NULL);
5378         LASSERT(rec1->rec_type != 0);
5379
5380         oh = container_of0(handle, struct osd_thandle, ot_super);
5381         LASSERT(oh->ot_handle == NULL);
5382
5383         credits = osd_dto_credits_noquota[DTO_INDEX_INSERT];
5384
5385         /* we can't call iget() while a transactions is running
5386          * (this can lead to a deadlock), but we need to know
5387          * inum and object type. so we find this information at
5388          * declaration and cache in per-thread info */
5389         idc = osd_idc_find_or_init(env, osd, fid);
5390         if (IS_ERR(idc))
5391                 RETURN(PTR_ERR(idc));
5392         if (idc->oic_remote) {
5393                 /* a reference to remote inode is represented by an
5394                  * agent inode which we have to create */
5395                 credits += osd_dto_credits_noquota[DTO_OBJECT_CREATE];
5396                 credits += osd_dto_credits_noquota[DTO_INDEX_INSERT];
5397         }
5398
5399         osd_trans_declare_op(env, oh, OSD_OT_INSERT, credits);
5400
5401         if (osd_dt_obj(dt)->oo_inode != NULL) {
5402                 struct inode *inode = osd_dt_obj(dt)->oo_inode;
5403
5404                 /* We ignore block quota on meta pool (MDTs), so needn't
5405                  * calculate how many blocks will be consumed by this index
5406                  * insert */
5407                 rc = osd_declare_inode_qid(env, i_uid_read(inode),
5408                                            i_gid_read(inode),
5409                                            i_projid_read(inode), 0,
5410                                            oh, osd_dt_obj(dt), NULL,
5411                                            OSD_QID_BLK);
5412                 if (rc)
5413                         RETURN(rc);
5414
5415 #ifdef HAVE_PROJECT_QUOTA
5416                 /* Reserve credits for local agent inode to transfer
5417                  * to 0, quota enforcement is ignored in this case.
5418                  */
5419                 if (idc->oic_remote &&
5420                     LDISKFS_I(inode)->i_flags & LUSTRE_PROJINHERIT_FL &&
5421                     i_projid_read(inode) != 0)
5422                         rc = osd_declare_attr_qid(env, osd_dt_obj(dt), oh,
5423                                                   0, i_projid_read(inode),
5424                                                   0, false, PRJQUOTA);
5425 #endif
5426         }
5427
5428
5429         RETURN(rc);
5430 }
5431
5432 /**
5433  * Index add function for interoperability mode (b11826).
5434  * It will add the directory entry.This entry is needed to
5435  * maintain name->fid mapping.
5436  *
5437  * \param key it is key i.e. file entry to be inserted
5438  * \param rec it is value of given key i.e. fid
5439  *
5440  * \retval   0, on success
5441  * \retval -ve, on error
5442  */
5443 static int osd_index_ea_insert(const struct lu_env *env, struct dt_object *dt,
5444                                const struct dt_rec *rec,
5445                                const struct dt_key *key, struct thandle *th,
5446                                int ignore_quota)
5447 {
5448         struct osd_object       *obj = osd_dt_obj(dt);
5449         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
5450         struct dt_insert_rec    *rec1   = (struct dt_insert_rec *)rec;
5451         const struct lu_fid     *fid    = rec1->rec_fid;
5452         const char              *name = (const char *)key;
5453         struct osd_thread_info  *oti   = osd_oti_get(env);
5454         struct inode            *child_inode = NULL;
5455         struct osd_idmap_cache  *idc;
5456         int                     rc;
5457         ENTRY;
5458
5459         if (!dt_object_exists(dt))
5460                 RETURN(-ENOENT);
5461
5462         LASSERT(osd_invariant(obj));
5463         LASSERT(!dt_object_remote(dt));
5464         LASSERT(th != NULL);
5465
5466         osd_trans_exec_op(env, th, OSD_OT_INSERT);
5467
5468         LASSERTF(fid_is_sane(fid), "fid"DFID" is insane!\n", PFID(fid));
5469
5470         idc = osd_idc_find(env, osd, fid);
5471         if (unlikely(idc == NULL)) {
5472                 /* this dt_insert() wasn't declared properly, so
5473                  * FID is missing in OI cache. we better do not
5474                  * lookup FID in FLDB/OI and don't risk to deadlock,
5475                  * but in some special cases (lfsck testing, etc)
5476                  * it's much simpler than fixing a caller */
5477                 CERROR("%s: "DFID" wasn't declared for insert\n",
5478                        osd_name(osd), PFID(fid));
5479                 dump_stack();
5480                 idc = osd_idc_find_or_init(env, osd, fid);
5481                 if (IS_ERR(idc))
5482                         RETURN(PTR_ERR(idc));
5483         }
5484
5485         if (idc->oic_remote) {
5486                 /* Insert remote entry */
5487                 if (strcmp(name, dotdot) == 0 && strlen(name) == 2) {
5488                         struct osd_mdobj_map    *omm = osd->od_mdt_map;
5489                         struct osd_thandle      *oh;
5490
5491                         /* If parent on remote MDT, we need put this object
5492                          * under AGENT */
5493                         oh = container_of(th, typeof(*oh), ot_super);
5494                         rc = osd_add_to_remote_parent(env, osd, obj, oh);
5495                         if (rc != 0) {
5496                                 CERROR("%s: add "DFID" error: rc = %d\n",
5497                                        osd_name(osd),
5498                                        PFID(lu_object_fid(&dt->do_lu)), rc);
5499                                 RETURN(rc);
5500                         }
5501
5502                         child_inode = igrab(omm->omm_remote_parent->d_inode);
5503                 } else {
5504                         child_inode = osd_create_local_agent_inode(env, osd,
5505                                         obj, fid, rec1->rec_type & S_IFMT, th);
5506                         if (IS_ERR(child_inode))
5507                                 RETURN(PTR_ERR(child_inode));
5508                 }
5509         } else {
5510                 /* Insert local entry */
5511                 if (unlikely(idc->oic_lid.oii_ino == 0)) {
5512                         /* for a reason OI cache wasn't filled properly */
5513                         CERROR("%s: OIC for "DFID" isn't filled\n",
5514                                osd_name(osd), PFID(fid));
5515                         RETURN(-EINVAL);
5516                 }
5517                 child_inode = oti->oti_inode;
5518                 if (unlikely(child_inode == NULL)) {
5519                         struct ldiskfs_inode_info *lii;
5520                         OBD_ALLOC_PTR(lii);
5521                         if (lii == NULL)
5522                                 RETURN(-ENOMEM);
5523                         child_inode = oti->oti_inode = &lii->vfs_inode;
5524                 }
5525                 child_inode->i_sb = osd_sb(osd);
5526                 child_inode->i_ino = idc->oic_lid.oii_ino;
5527                 child_inode->i_mode = rec1->rec_type & S_IFMT;
5528         }
5529
5530         rc = osd_ea_add_rec(env, obj, child_inode, name, fid, th);
5531
5532         CDEBUG(D_INODE, "parent %lu insert %s:%lu rc = %d\n",
5533                obj->oo_inode->i_ino, name, child_inode->i_ino, rc);
5534
5535         if (child_inode && child_inode != oti->oti_inode)
5536                 iput(child_inode);
5537         LASSERT(osd_invariant(obj));
5538         osd_trans_exec_check(env, th, OSD_OT_INSERT);
5539         RETURN(rc);
5540 }
5541
5542 /**
5543  *  Initialize osd Iterator for given osd index object.
5544  *
5545  *  \param  dt      osd index object
5546  */
5547
5548 static struct dt_it *osd_it_iam_init(const struct lu_env *env,
5549                                      struct dt_object *dt,
5550                                      __u32 unused)
5551 {
5552         struct osd_it_iam      *it;
5553         struct osd_object      *obj = osd_dt_obj(dt);
5554         struct lu_object       *lo  = &dt->do_lu;
5555         struct iam_path_descr  *ipd;
5556         struct iam_container   *bag = &obj->oo_dir->od_container;
5557
5558         if (!dt_object_exists(dt))
5559                 return ERR_PTR(-ENOENT);
5560
5561         OBD_ALLOC_PTR(it);
5562         if (it == NULL)
5563                 return ERR_PTR(-ENOMEM);
5564
5565         ipd = osd_it_ipd_get(env, bag);
5566         if (likely(ipd != NULL)) {
5567                 it->oi_obj = obj;
5568                 it->oi_ipd = ipd;
5569                 lu_object_get(lo);
5570                 iam_it_init(&it->oi_it, bag, IAM_IT_MOVE, ipd);
5571                 return (struct dt_it *)it;
5572         } else {
5573                 OBD_FREE_PTR(it);
5574                 return ERR_PTR(-ENOMEM);
5575         }
5576 }
5577
5578 /**
5579  * free given Iterator.
5580  */
5581 static void osd_it_iam_fini(const struct lu_env *env, struct dt_it *di)
5582 {
5583         struct osd_it_iam       *it  = (struct osd_it_iam *)di;
5584         struct osd_object       *obj = it->oi_obj;
5585
5586         iam_it_fini(&it->oi_it);
5587         osd_ipd_put(env, &obj->oo_dir->od_container, it->oi_ipd);
5588         osd_object_put(env, obj);
5589         OBD_FREE_PTR(it);
5590 }
5591
5592 /**
5593  *  Move Iterator to record specified by \a key
5594  *
5595  *  \param  di      osd iterator
5596  *  \param  key     key for index
5597  *
5598  *  \retval +ve  di points to record with least key not larger than key
5599  *  \retval  0   di points to exact matched key
5600  *  \retval -ve  failure
5601  */
5602
5603 static int osd_it_iam_get(const struct lu_env *env,
5604                           struct dt_it *di, const struct dt_key *key)
5605 {
5606         struct osd_thread_info  *oti = osd_oti_get(env);
5607         struct osd_it_iam       *it = (struct osd_it_iam *)di;
5608
5609         if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
5610                 /* swab quota uid/gid */
5611                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
5612                 key = (struct dt_key *)&oti->oti_quota_id;
5613         }
5614
5615         return iam_it_get(&it->oi_it, (const struct iam_key *)key);
5616 }
5617
5618 /**
5619  *  Release Iterator
5620  *
5621  *  \param  di      osd iterator
5622  */
5623 static void osd_it_iam_put(const struct lu_env *env, struct dt_it *di)
5624 {
5625         struct osd_it_iam *it = (struct osd_it_iam *)di;
5626
5627         iam_it_put(&it->oi_it);
5628 }
5629
5630 /**
5631  *  Move iterator by one record
5632  *
5633  *  \param  di      osd iterator
5634  *
5635  *  \retval +1   end of container reached
5636  *  \retval  0   success
5637  *  \retval -ve  failure
5638  */
5639
5640 static int osd_it_iam_next(const struct lu_env *env, struct dt_it *di)
5641 {
5642         struct osd_it_iam *it = (struct osd_it_iam *)di;
5643
5644         return iam_it_next(&it->oi_it);
5645 }
5646
5647 /**
5648  * Return pointer to the key under iterator.
5649  */
5650
5651 static struct dt_key *osd_it_iam_key(const struct lu_env *env,
5652                                  const struct dt_it *di)
5653 {
5654         struct osd_thread_info *oti = osd_oti_get(env);
5655         struct osd_it_iam      *it = (struct osd_it_iam *)di;
5656         struct osd_object      *obj = it->oi_obj;
5657         struct dt_key          *key;
5658
5659         key = (struct dt_key *)iam_it_key_get(&it->oi_it);
5660
5661         if (!IS_ERR(key) && fid_is_quota(lu_object_fid(&obj->oo_dt.do_lu))) {
5662                 /* swab quota uid/gid */
5663                 oti->oti_quota_id = le64_to_cpu(*((__u64 *)key));
5664                 key = (struct dt_key *)&oti->oti_quota_id;
5665         }
5666
5667         return key;
5668 }
5669
5670 /**
5671  * Return size of key under iterator (in bytes)
5672  */
5673
5674 static int osd_it_iam_key_size(const struct lu_env *env, const struct dt_it *di)
5675 {
5676         struct osd_it_iam *it = (struct osd_it_iam *)di;
5677
5678         return iam_it_key_size(&it->oi_it);
5679 }
5680
5681 static inline void
5682 osd_it_append_attrs(struct lu_dirent *ent, int len, __u16 type)
5683 {
5684         /* check if file type is required */
5685         if (ent->lde_attrs & LUDA_TYPE) {
5686                 struct luda_type *lt;
5687                 int align = sizeof(*lt) - 1;
5688
5689                 len = (len + align) & ~align;
5690                 lt = (struct luda_type *)(ent->lde_name + len);
5691                 lt->lt_type = cpu_to_le16(DTTOIF(type));
5692         }
5693
5694         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
5695 }
5696
5697 /**
5698  * build lu direct from backend fs dirent.
5699  */
5700
5701 static inline void
5702 osd_it_pack_dirent(struct lu_dirent *ent, struct lu_fid *fid, __u64 offset,
5703                    char *name, __u16 namelen, __u16 type, __u32 attr)
5704 {
5705         ent->lde_attrs = attr | LUDA_FID;
5706         fid_cpu_to_le(&ent->lde_fid, fid);
5707
5708         ent->lde_hash = cpu_to_le64(offset);
5709         ent->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
5710
5711         strncpy(ent->lde_name, name, namelen);
5712         ent->lde_name[namelen] = '\0';
5713         ent->lde_namelen = cpu_to_le16(namelen);
5714
5715         /* append lustre attributes */
5716         osd_it_append_attrs(ent, namelen, type);
5717 }
5718
5719 /**
5720  * Return pointer to the record under iterator.
5721  */
5722 static int osd_it_iam_rec(const struct lu_env *env,
5723                           const struct dt_it *di,
5724                           struct dt_rec *dtrec, __u32 attr)
5725 {
5726         struct osd_it_iam      *it   = (struct osd_it_iam *)di;
5727         struct osd_thread_info *info = osd_oti_get(env);
5728         ENTRY;
5729
5730         if (S_ISDIR(it->oi_obj->oo_inode->i_mode)) {
5731                 const struct osd_fid_pack *rec;
5732                 struct lu_fid             *fid = &info->oti_fid;
5733                 struct lu_dirent          *lde = (struct lu_dirent *)dtrec;
5734                 char                      *name;
5735                 int                        namelen;
5736                 __u64                      hash;
5737                 int                        rc;
5738
5739                 name = (char *)iam_it_key_get(&it->oi_it);
5740                 if (IS_ERR(name))
5741                         RETURN(PTR_ERR(name));
5742
5743                 namelen = iam_it_key_size(&it->oi_it);
5744
5745                 rec = (const struct osd_fid_pack *)iam_it_rec_get(&it->oi_it);
5746                 if (IS_ERR(rec))
5747                         RETURN(PTR_ERR(rec));
5748
5749                 rc = osd_fid_unpack(fid, rec);
5750                 if (rc)
5751                         RETURN(rc);
5752
5753                 hash = iam_it_store(&it->oi_it);
5754
5755                 /* IAM does not store object type in IAM index (dir) */
5756                 osd_it_pack_dirent(lde, fid, hash, name, namelen,
5757                                    0, LUDA_FID);
5758         } else if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
5759                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
5760                            (struct iam_rec *)dtrec);
5761                 osd_quota_unpack(it->oi_obj, dtrec);
5762         } else {
5763                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
5764                            (struct iam_rec *)dtrec);
5765         }
5766
5767         RETURN(0);
5768 }
5769
5770 /**
5771  * Returns cookie for current Iterator position.
5772  */
5773 static __u64 osd_it_iam_store(const struct lu_env *env, const struct dt_it *di)
5774 {
5775         struct osd_it_iam *it = (struct osd_it_iam *)di;
5776
5777         return iam_it_store(&it->oi_it);
5778 }
5779
5780 /**
5781  * Restore iterator from cookie.
5782  *
5783  * \param  di      osd iterator
5784  * \param  hash    Iterator location cookie
5785  *
5786  * \retval +ve  di points to record with least key not larger than key.
5787  * \retval  0   di points to exact matched key
5788  * \retval -ve  failure
5789  */
5790
5791 static int osd_it_iam_load(const struct lu_env *env,
5792                            const struct dt_it *di, __u64 hash)
5793 {
5794         struct osd_it_iam *it = (struct osd_it_iam *)di;
5795
5796         return iam_it_load(&it->oi_it, hash);
5797 }
5798
5799 static const struct dt_index_operations osd_index_iam_ops = {
5800         .dio_lookup         = osd_index_iam_lookup,
5801         .dio_declare_insert = osd_index_declare_iam_insert,
5802         .dio_insert         = osd_index_iam_insert,
5803         .dio_declare_delete = osd_index_declare_iam_delete,
5804         .dio_delete         = osd_index_iam_delete,
5805         .dio_it     = {
5806                 .init     = osd_it_iam_init,
5807                 .fini     = osd_it_iam_fini,
5808                 .get      = osd_it_iam_get,
5809                 .put      = osd_it_iam_put,
5810                 .next     = osd_it_iam_next,
5811                 .key      = osd_it_iam_key,
5812                 .key_size = osd_it_iam_key_size,
5813                 .rec      = osd_it_iam_rec,
5814                 .store    = osd_it_iam_store,
5815                 .load     = osd_it_iam_load
5816         }
5817 };
5818
5819
5820 /**
5821  * Creates or initializes iterator context.
5822  *
5823  * \retval struct osd_it_ea, iterator structure on success
5824  *
5825  */
5826 static struct dt_it *osd_it_ea_init(const struct lu_env *env,
5827                                     struct dt_object *dt,
5828                                     __u32 attr)
5829 {
5830         struct osd_object       *obj  = osd_dt_obj(dt);
5831         struct osd_thread_info  *info = osd_oti_get(env);
5832         struct osd_it_ea        *oie;
5833         struct file             *file;
5834         struct lu_object        *lo   = &dt->do_lu;
5835         struct dentry           *obj_dentry;
5836         ENTRY;
5837
5838         if (!dt_object_exists(dt) || obj->oo_destroyed)
5839                 RETURN(ERR_PTR(-ENOENT));
5840
5841         OBD_SLAB_ALLOC_PTR_GFP(oie, osd_itea_cachep, GFP_NOFS);
5842         if (oie == NULL)
5843                 RETURN(ERR_PTR(-ENOMEM));
5844         obj_dentry = &oie->oie_dentry;
5845
5846         obj_dentry->d_inode = obj->oo_inode;
5847         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
5848         obj_dentry->d_name.hash = 0;
5849
5850         oie->oie_rd_dirent       = 0;
5851         oie->oie_it_dirent       = 0;
5852         oie->oie_dirent          = NULL;
5853         if (unlikely(!info->oti_it_ea_buf_used)) {
5854                 oie->oie_buf = info->oti_it_ea_buf;
5855                 info->oti_it_ea_buf_used = 1;
5856         } else {
5857                 OBD_ALLOC(oie->oie_buf, OSD_IT_EA_BUFSIZE);
5858                 if (oie->oie_buf == NULL)
5859                         RETURN(ERR_PTR(-ENOMEM));
5860         }
5861         oie->oie_obj             = obj;
5862
5863         file = &oie->oie_file;
5864
5865         /* Only FMODE_64BITHASH or FMODE_32BITHASH should be set, NOT both. */
5866         if (attr & LUDA_64BITHASH)
5867                 file->f_mode    = FMODE_64BITHASH;
5868         else
5869                 file->f_mode    = FMODE_32BITHASH;
5870         file->f_path.dentry     = obj_dentry;
5871         file->f_mapping         = obj->oo_inode->i_mapping;
5872         file->f_op              = obj->oo_inode->i_fop;
5873         set_file_inode(file, obj->oo_inode);
5874
5875         lu_object_get(lo);
5876         RETURN((struct dt_it *) oie);
5877 }
5878
5879 /**
5880  * Destroy or finishes iterator context.
5881  *
5882  * \param di iterator structure to be destroyed
5883  */
5884 static void osd_it_ea_fini(const struct lu_env *env, struct dt_it *di)
5885 {
5886         struct osd_thread_info  *info = osd_oti_get(env);
5887         struct osd_it_ea        *oie    = (struct osd_it_ea *)di;
5888         struct osd_object       *obj    = oie->oie_obj;
5889         struct inode            *inode  = obj->oo_inode;
5890
5891         ENTRY;
5892         oie->oie_file.f_op->release(inode, &oie->oie_file);
5893         osd_object_put(env, obj);
5894         if (unlikely(oie->oie_buf != info->oti_it_ea_buf))
5895                 OBD_FREE(oie->oie_buf, OSD_IT_EA_BUFSIZE);
5896         else
5897                 info->oti_it_ea_buf_used = 0;
5898         OBD_SLAB_FREE_PTR(oie, osd_itea_cachep);
5899         EXIT;
5900 }
5901
5902 /**
5903  * It position the iterator at given key, so that next lookup continues from
5904  * that key Or it is similar to dio_it->load() but based on a key,
5905  * rather than file position.
5906  *
5907  * As a special convention, osd_it_ea_get(env, di, "") has to rewind iterator
5908  * to the beginning.
5909  *
5910  * TODO: Presently return +1 considering it is only used by mdd_dir_is_empty().
5911  */
5912 static int osd_it_ea_get(const struct lu_env *env,
5913                          struct dt_it *di, const struct dt_key *key)
5914 {
5915         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
5916
5917         ENTRY;
5918         LASSERT(((const char *)key)[0] == '\0');
5919         it->oie_file.f_pos      = 0;
5920         it->oie_rd_dirent       = 0;
5921         it->oie_it_dirent       = 0;
5922         it->oie_dirent          = NULL;
5923
5924         RETURN(+1);
5925 }
5926
5927 /**
5928  * Does nothing
5929  */
5930 static void osd_it_ea_put(const struct lu_env *env, struct dt_it *di)
5931 {
5932 }
5933
5934 struct osd_filldir_cbs {
5935 #ifdef HAVE_DIR_CONTEXT
5936         struct dir_context ctx;
5937 #endif
5938         struct osd_it_ea  *it;
5939 };
5940 /**
5941  * It is called internally by ->readdir(). It fills the
5942  * iterator's in-memory data structure with required
5943  * information i.e. name, namelen, rec_size etc.
5944  *
5945  * \param buf in which information to be filled in.
5946  * \param name name of the file in given dir
5947  *
5948  * \retval 0 on success
5949  * \retval 1 on buffer full
5950  */
5951 #ifdef HAVE_FILLDIR_USE_CTX
5952 static int osd_ldiskfs_filldir(struct dir_context *buf,
5953 #else
5954 static int osd_ldiskfs_filldir(void *buf,
5955 #endif
5956                                const char *name, int namelen,
5957                                loff_t offset, __u64 ino, unsigned d_type)
5958 {
5959         struct osd_it_ea        *it   =
5960                 ((struct osd_filldir_cbs *)buf)->it;
5961         struct osd_object       *obj  = it->oie_obj;
5962         struct osd_it_ea_dirent *ent  = it->oie_dirent;
5963         struct lu_fid           *fid  = &ent->oied_fid;
5964         struct osd_fid_pack     *rec;
5965         ENTRY;
5966
5967         /* this should never happen */
5968         if (unlikely(namelen == 0 || namelen > LDISKFS_NAME_LEN)) {
5969                 CERROR("ldiskfs return invalid namelen %d\n", namelen);
5970                 RETURN(-EIO);
5971         }
5972
5973         if ((void *) ent - it->oie_buf + sizeof(*ent) + namelen >
5974             OSD_IT_EA_BUFSIZE)
5975                 RETURN(1);
5976
5977         /* "." is just the object itself. */
5978         if (namelen == 1 && name[0] == '.') {
5979                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
5980         } else if (d_type & LDISKFS_DIRENT_LUFID) {
5981                 rec = (struct osd_fid_pack*) (name + namelen + 1);
5982                 if (osd_fid_unpack(fid, rec) != 0)
5983                         fid_zero(fid);
5984         } else {
5985                 fid_zero(fid);
5986         }
5987         d_type &= ~LDISKFS_DIRENT_LUFID;
5988
5989         /* NOT export local root. */
5990         if (unlikely(osd_sb(osd_obj2dev(obj))->s_root->d_inode->i_ino == ino)) {
5991                 ino = obj->oo_inode->i_ino;
5992                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
5993         }
5994
5995         ent->oied_ino     = ino;
5996         ent->oied_off     = offset;
5997         ent->oied_namelen = namelen;
5998         ent->oied_type    = d_type;
5999
6000         memcpy(ent->oied_name, name, namelen);
6001
6002         it->oie_rd_dirent++;
6003         it->oie_dirent = (void *) ent + cfs_size_round(sizeof(*ent) + namelen);
6004         RETURN(0);
6005 }
6006
6007 /**
6008  * Calls ->readdir() to load a directory entry at a time
6009  * and stored it in iterator's in-memory data structure.
6010  *
6011  * \param di iterator's in memory structure
6012  *
6013  * \retval   0 on success
6014  * \retval -ve on error
6015  * \retval +1 reach the end of entry
6016  */
6017 static int osd_ldiskfs_it_fill(const struct lu_env *env,
6018                                const struct dt_it *di)
6019 {
6020         struct osd_it_ea   *it    = (struct osd_it_ea *)di;
6021         struct osd_object  *obj   = it->oie_obj;
6022         struct inode       *inode = obj->oo_inode;
6023         struct htree_lock  *hlock = NULL;
6024         struct file        *filp  = &it->oie_file;
6025         int                 rc = 0;
6026         struct osd_filldir_cbs buf = {
6027 #ifdef HAVE_DIR_CONTEXT
6028                 .ctx.actor = osd_ldiskfs_filldir,
6029 #endif
6030                 .it = it
6031         };
6032
6033         ENTRY;
6034         it->oie_dirent = it->oie_buf;
6035         it->oie_rd_dirent = 0;
6036
6037         if (obj->oo_hl_head != NULL) {
6038                 hlock = osd_oti_get(env)->oti_hlock;
6039                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
6040                                    inode, LDISKFS_HLOCK_READDIR);
6041         } else {
6042                 down_read(&obj->oo_ext_idx_sem);
6043         }
6044
6045 #ifdef HAVE_DIR_CONTEXT
6046         buf.ctx.pos = filp->f_pos;
6047         rc = inode->i_fop->iterate(filp, &buf.ctx);
6048         filp->f_pos = buf.ctx.pos;
6049 #else
6050         rc = inode->i_fop->readdir(filp, &buf, osd_ldiskfs_filldir);
6051 #endif
6052
6053         if (hlock != NULL)
6054                 ldiskfs_htree_unlock(hlock);
6055         else
6056                 up_read(&obj->oo_ext_idx_sem);
6057
6058         if (it->oie_rd_dirent == 0) {
6059                 /*If it does not get any dirent, it means it has been reached
6060                  *to the end of the dir */
6061                 it->oie_file.f_pos = ldiskfs_get_htree_eof(&it->oie_file);
6062                 if (rc == 0)
6063                         rc = 1;
6064         } else {
6065                 it->oie_dirent = it->oie_buf;
6066                 it->oie_it_dirent = 1;
6067         }
6068
6069         RETURN(rc);
6070 }
6071
6072 /**
6073  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
6074  * to load a directory entry at a time and stored it in
6075  * iterator's in-memory data structure.
6076  *
6077  * \param di iterator's in memory structure
6078  *
6079  * \retval +ve iterator reached to end
6080  * \retval   0 iterator not reached to end
6081  * \retval -ve on error
6082  */
6083 static int osd_it_ea_next(const struct lu_env *env, struct dt_it *di)
6084 {
6085         struct osd_it_ea *it = (struct osd_it_ea *)di;
6086         int rc;
6087
6088         ENTRY;
6089
6090         if (it->oie_it_dirent < it->oie_rd_dirent) {
6091                 it->oie_dirent =
6092                         (void *) it->oie_dirent +
6093                         cfs_size_round(sizeof(struct osd_it_ea_dirent) +
6094                                        it->oie_dirent->oied_namelen);
6095                 it->oie_it_dirent++;
6096                 RETURN(0);
6097         } else {
6098                 if (it->oie_file.f_pos == ldiskfs_get_htree_eof(&it->oie_file))
6099                         rc = +1;
6100                 else
6101                         rc = osd_ldiskfs_it_fill(env, di);
6102         }
6103
6104         RETURN(rc);
6105 }
6106
6107 /**
6108  * Returns the key at current position from iterator's in memory structure.
6109  *
6110  * \param di iterator's in memory structure
6111  *
6112  * \retval key i.e. struct dt_key on success
6113  */
6114 static struct dt_key *osd_it_ea_key(const struct lu_env *env,
6115                                     const struct dt_it *di)
6116 {
6117         struct osd_it_ea *it = (struct osd_it_ea *)di;
6118
6119         return (struct dt_key *)it->oie_dirent->oied_name;
6120 }
6121
6122 /**
6123  * Returns the key's size at current position from iterator's in memory structure.
6124  *
6125  * \param di iterator's in memory structure
6126  *
6127  * \retval key_size i.e. struct dt_key on success
6128  */
6129 static int osd_it_ea_key_size(const struct lu_env *env, const struct dt_it *di)
6130 {
6131         struct osd_it_ea *it = (struct osd_it_ea *)di;
6132
6133         return it->oie_dirent->oied_namelen;
6134 }
6135
6136 static inline bool osd_dotdot_has_space(struct ldiskfs_dir_entry_2 *de)
6137 {
6138         if (LDISKFS_DIR_REC_LEN(de) >=
6139             __LDISKFS_DIR_REC_LEN(2 + 1 + sizeof(struct osd_fid_pack)))
6140                 return true;
6141
6142         return false;
6143 }
6144
6145 static inline bool
6146 osd_dirent_has_space(struct ldiskfs_dir_entry_2 *de, __u16 namelen,
6147                      unsigned blocksize, bool dotdot)
6148 {
6149         if (dotdot)
6150                 return osd_dotdot_has_space(de);
6151
6152         if (ldiskfs_rec_len_from_disk(de->rec_len, blocksize) >=
6153             __LDISKFS_DIR_REC_LEN(namelen + 1 + sizeof(struct osd_fid_pack)))
6154                 return true;
6155
6156         return false;
6157 }
6158
6159 static int
6160 osd_dirent_reinsert(const struct lu_env *env, struct osd_device *dev,
6161                     handle_t *jh, struct dentry *dentry,
6162                     const struct lu_fid *fid, struct buffer_head *bh,
6163                     struct ldiskfs_dir_entry_2 *de, struct htree_lock *hlock,
6164                     bool dotdot)
6165 {
6166         struct inode                *dir        = dentry->d_parent->d_inode;
6167         struct inode                *inode      = dentry->d_inode;
6168         struct osd_fid_pack         *rec;
6169         struct ldiskfs_dentry_param *ldp;
6170         int                          namelen    = dentry->d_name.len;
6171         int                          rc;
6172         struct osd_thread_info     *info        = osd_oti_get(env);
6173         ENTRY;
6174
6175         if (!ldiskfs_has_feature_dirdata(inode->i_sb))
6176                 RETURN(0);
6177
6178         /* There is enough space to hold the FID-in-dirent. */
6179         if (osd_dirent_has_space(de, namelen, dir->i_sb->s_blocksize, dotdot)) {
6180                 rc = ldiskfs_journal_get_write_access(jh, bh);
6181                 if (rc != 0)
6182                         RETURN(rc);
6183
6184                 de->name[namelen] = 0;
6185                 rec = (struct osd_fid_pack *)(de->name + namelen + 1);
6186                 rec->fp_len = sizeof(struct lu_fid) + 1;
6187                 fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
6188                 de->file_type |= LDISKFS_DIRENT_LUFID;
6189                 rc = ldiskfs_handle_dirty_metadata(jh, NULL, bh);
6190
6191                 RETURN(rc);
6192         }
6193
6194         LASSERT(!dotdot);
6195
6196         rc = ldiskfs_delete_entry(jh, dir, de, bh);
6197         if (rc != 0)
6198                 RETURN(rc);
6199
6200         ldp = (struct ldiskfs_dentry_param *)osd_oti_get(env)->oti_ldp;
6201         osd_get_ldiskfs_dirent_param(ldp, fid);
6202         dentry->d_fsdata = (void *)ldp;
6203         ll_vfs_dq_init(dir);
6204         rc = osd_ldiskfs_add_entry(info, dev, jh, dentry, inode, hlock);
6205         /* It is too bad, we cannot reinsert the name entry back.
6206          * That means we lose it! */
6207         if (rc != 0)
6208                 CDEBUG(D_LFSCK, "%s: fail to reinsert the dirent, "
6209                        "dir = %lu/%u, name = %.*s, "DFID": rc = %d\n",
6210                        osd_ino2name(inode),
6211                        dir->i_ino, dir->i_generation, namelen,
6212                        dentry->d_name.name, PFID(fid), rc);
6213
6214         RETURN(rc);
6215 }
6216
6217 static int
6218 osd_dirent_check_repair(const struct lu_env *env, struct osd_object *obj,
6219                         struct osd_it_ea *it, struct lu_fid *fid,
6220                         struct osd_inode_id *id, __u32 *attr)
6221 {
6222         struct osd_thread_info     *info        = osd_oti_get(env);
6223         struct lustre_mdt_attrs    *lma         = &info->oti_ost_attrs.loa_lma;
6224         struct osd_device          *dev         = osd_obj2dev(obj);
6225         struct super_block         *sb          = osd_sb(dev);
6226         const char                 *devname     = osd_name(dev);
6227         struct osd_it_ea_dirent    *ent         = it->oie_dirent;
6228         struct inode               *dir         = obj->oo_inode;
6229         struct htree_lock          *hlock       = NULL;
6230         struct buffer_head         *bh          = NULL;
6231         handle_t                   *jh          = NULL;
6232         struct ldiskfs_dir_entry_2 *de;
6233         struct dentry              *dentry;
6234         struct inode               *inode;
6235         const struct lu_fid *pfid = lu_object_fid(&obj->oo_dt.do_lu);
6236         int                         credits;
6237         int                         rc;
6238         bool                        dotdot      = false;
6239         bool                        dirty       = false;
6240         ENTRY;
6241
6242         if (ent->oied_name[0] == '.') {
6243                 if (ent->oied_namelen == 1)
6244                         RETURN(0);
6245
6246                 if (ent->oied_namelen == 2 && ent->oied_name[1] == '.')
6247                         dotdot = true;
6248         }
6249
6250         osd_id_gen(id, ent->oied_ino, OSD_OII_NOGEN);
6251         inode = osd_iget(info, dev, id);
6252         if (IS_ERR(inode)) {
6253                 rc = PTR_ERR(inode);
6254                 if (rc == -ENOENT || rc == -ESTALE) {
6255                         /* Maybe dangling name entry, or
6256                          * corrupted directory entry. */
6257                         *attr |= LUDA_UNKNOWN;
6258                         rc = 0;
6259                 } else {
6260                         CDEBUG(D_LFSCK, "%s: fail to iget() for dirent "
6261                                "check_repair, dir = %lu/%u, name = %.*s, "
6262                                "ino = %llu, rc = %d\n",
6263                                devname, dir->i_ino, dir->i_generation,
6264                                ent->oied_namelen, ent->oied_name,
6265                                ent->oied_ino, rc);
6266                 }
6267
6268                 RETURN(rc);
6269         }
6270
6271         dentry = osd_child_dentry_by_inode(env, dir, ent->oied_name,
6272                                            ent->oied_namelen);
6273         rc = osd_get_lma(info, inode, dentry, &info->oti_ost_attrs);
6274         if (rc == -ENODATA || !fid_is_sane(&lma->lma_self_fid))
6275                 lma = NULL;
6276         else if (rc != 0)
6277                 GOTO(out, rc);
6278
6279         /* We need to ensure that the name entry is still valid.
6280          * Because it may be removed or renamed by other already.
6281          *
6282          * The unlink or rename operation will start journal before PDO lock,
6283          * so to avoid deadlock, here we need to start journal handle before
6284          * related PDO lock also. But because we do not know whether there
6285          * will be something to be repaired before PDO lock, we just start
6286          * journal without conditions.
6287          *
6288          * We may need to remove the name entry firstly, then insert back.
6289          * One credit is for user quota file update.
6290          * One credit is for group quota file update.
6291          * Two credits are for dirty inode. */
6292         credits = osd_dto_credits_noquota[DTO_INDEX_DELETE] +
6293                   osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1 + 1 + 2;
6294
6295         if (dev->od_dirent_journal != 0) {
6296
6297 again:
6298                 jh = osd_journal_start_sb(sb, LDISKFS_HT_MISC, credits);
6299                 if (IS_ERR(jh)) {
6300                         rc = PTR_ERR(jh);
6301                         CDEBUG(D_LFSCK, "%s: fail to start trans for dirent "
6302                                "check_repair, dir = %lu/%u, credits = %d, "
6303                                "name = %.*s, ino = %llu: rc = %d\n",
6304                                devname, dir->i_ino, dir->i_generation, credits,
6305                                ent->oied_namelen, ent->oied_name,
6306                                ent->oied_ino, rc);
6307
6308                         GOTO(out_inode, rc);
6309                 }
6310
6311                 if (obj->oo_hl_head != NULL) {
6312                         hlock = osd_oti_get(env)->oti_hlock;
6313                         /* "0" means exclusive lock for the whole directory.
6314                          * We need to prevent others access such name entry
6315                          * during the delete + insert. Neither HLOCK_ADD nor
6316                          * HLOCK_DEL cannot guarantee the atomicity. */
6317                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir, 0);
6318                 } else {
6319                         down_write(&obj->oo_ext_idx_sem);
6320                 }
6321         } else {
6322                 if (obj->oo_hl_head != NULL) {
6323                         hlock = osd_oti_get(env)->oti_hlock;
6324                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir,
6325                                            LDISKFS_HLOCK_LOOKUP);
6326                 } else {
6327                         down_read(&obj->oo_ext_idx_sem);
6328                 }
6329         }
6330
6331         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
6332         if (IS_ERR(bh) || le32_to_cpu(de->inode) != inode->i_ino) {
6333                 *attr |= LUDA_IGNORE;
6334
6335                 GOTO(out, rc = 0);
6336         }
6337
6338         /* For dotdot entry, if there is not enough space to hold the
6339          * FID-in-dirent, just keep them there. It only happens when the
6340          * device upgraded from 1.8 or restored from MDT file-level backup.
6341          * For the whole directory, only dotdot entry have no FID-in-dirent
6342          * and needs to get FID from LMA when readdir, it will not affect the
6343          * performance much. */
6344         if (dotdot && !osd_dotdot_has_space(de)) {
6345                 *attr |= LUDA_UNKNOWN;
6346
6347                 GOTO(out, rc = 0);
6348         }
6349
6350         if (lma != NULL) {
6351                 if (lu_fid_eq(fid, &lma->lma_self_fid))
6352                         GOTO(out, rc = 0);
6353
6354                 if (unlikely(lma->lma_compat & LMAC_NOT_IN_OI)) {
6355                         struct lu_fid *tfid = &lma->lma_self_fid;
6356
6357                         if (likely(dotdot &&
6358                                    fid_seq(tfid) == FID_SEQ_LOCAL_FILE &&
6359                                    fid_oid(tfid) == REMOTE_PARENT_DIR_OID)) {
6360                                 /* It must be REMOTE_PARENT_DIR and as the
6361                                  * 'dotdot' entry of remote directory */
6362                                 *attr |= LUDA_IGNORE;
6363                         } else {
6364                                 CDEBUG(D_LFSCK, "%s: expect remote agent "
6365                                        "parent directory, but got %.*s under "
6366                                        "dir = %lu/%u with the FID "DFID"\n",
6367                                        devname, ent->oied_namelen,
6368                                        ent->oied_name, dir->i_ino,
6369                                        dir->i_generation, PFID(tfid));
6370
6371                                 *attr |= LUDA_UNKNOWN;
6372                         }
6373
6374                         GOTO(out, rc = 0);
6375                 }
6376         }
6377
6378         if (!fid_is_zero(fid)) {
6379                 rc = osd_verify_ent_by_linkea(env, inode, pfid, ent->oied_name,
6380                                               ent->oied_namelen);
6381                 if (rc == -ENOENT ||
6382                     (rc == -ENODATA &&
6383                      !(dev->od_scrub.os_file.sf_flags & SF_UPGRADE))) {
6384                         /* linkEA does not recognize the dirent entry,
6385                          * it may because the dirent entry corruption
6386                          * and points to other's inode. */
6387                         CDEBUG(D_LFSCK, "%s: the target inode does not "
6388                                "recognize the dirent, dir = %lu/%u, "
6389                                " name = %.*s, ino = %llu, "
6390                                DFID": rc = %d\n", devname, dir->i_ino,
6391                                dir->i_generation, ent->oied_namelen,
6392                                ent->oied_name, ent->oied_ino, PFID(fid), rc);
6393                         *attr |= LUDA_UNKNOWN;
6394
6395                         GOTO(out, rc = 0);
6396                 }
6397
6398                 if (rc && rc != -ENODATA) {
6399                         CDEBUG(D_LFSCK, "%s: fail to verify FID in the dirent, "
6400                                "dir = %lu/%u, name = %.*s, ino = %llu, "
6401                                DFID": rc = %d\n", devname, dir->i_ino,
6402                                dir->i_generation, ent->oied_namelen,
6403                                ent->oied_name, ent->oied_ino, PFID(fid), rc);
6404                         *attr |= LUDA_UNKNOWN;
6405
6406                         GOTO(out, rc = 0);
6407                 }
6408         }
6409
6410         if (lma != NULL) {
6411                 /* linkEA recognizes the dirent entry, the FID-in-LMA is
6412                  * valid, trusted, in spite of fid_is_sane(fid) or not. */
6413                 if (*attr & LUDA_VERIFY_DRYRUN) {
6414                         *fid = lma->lma_self_fid;
6415                         *attr |= LUDA_REPAIR;
6416
6417                         GOTO(out, rc = 0);
6418                 }
6419
6420                 if (jh == NULL) {
6421                         brelse(bh);
6422                         dev->od_dirent_journal = 1;
6423                         if (hlock != NULL) {
6424                                 ldiskfs_htree_unlock(hlock);
6425                                 hlock = NULL;
6426                         } else {
6427                                 up_read(&obj->oo_ext_idx_sem);
6428                         }
6429
6430                         goto again;
6431                 }
6432
6433                 *fid = lma->lma_self_fid;
6434                 dirty = true;
6435                 /* Update or append the FID-in-dirent. */
6436                 rc = osd_dirent_reinsert(env, dev, jh, dentry, fid,
6437                                          bh, de, hlock, dotdot);
6438                 if (rc == 0)
6439                         *attr |= LUDA_REPAIR;
6440                 else
6441                         CDEBUG(D_LFSCK, "%s: fail to re-insert FID after "
6442                                "the dirent, dir = %lu/%u, name = %.*s, "
6443                                "ino = %llu, "DFID": rc = %d\n",
6444                                devname, dir->i_ino, dir->i_generation,
6445                                ent->oied_namelen, ent->oied_name,
6446                                ent->oied_ino, PFID(fid), rc);
6447         } else {
6448                 /* lma is NULL, trust the FID-in-dirent if it is valid. */
6449                 if (*attr & LUDA_VERIFY_DRYRUN) {
6450                         if (fid_is_sane(fid)) {
6451                                 *attr |= LUDA_REPAIR;
6452                         } else if (dev->od_index == 0) {
6453                                 lu_igif_build(fid, inode->i_ino,
6454                                               inode->i_generation);
6455                                 *attr |= LUDA_UPGRADE;
6456                         }
6457
6458                         GOTO(out, rc = 0);
6459                 }
6460
6461                 if (jh == NULL) {
6462                         brelse(bh);
6463                         dev->od_dirent_journal = 1;
6464                         if (hlock != NULL) {
6465                                 ldiskfs_htree_unlock(hlock);
6466                                 hlock = NULL;
6467                         } else {
6468                                 up_read(&obj->oo_ext_idx_sem);
6469                         }
6470
6471                         goto again;
6472                 }
6473
6474                 dirty = true;
6475                 if (unlikely(fid_is_sane(fid))) {
6476                         /* FID-in-dirent exists, but FID-in-LMA is lost.
6477                          * Trust the FID-in-dirent, and add FID-in-LMA. */
6478                         rc = osd_ea_fid_set(info, inode, fid, 0, 0);
6479                         if (rc == 0)
6480                                 *attr |= LUDA_REPAIR;
6481                         else
6482                                 CDEBUG(D_LFSCK, "%s: fail to set LMA for "
6483                                        "update dirent, dir = %lu/%u, "
6484                                        "name = %.*s, ino = %llu, "
6485                                        DFID": rc = %d\n",
6486                                        devname, dir->i_ino, dir->i_generation,
6487                                        ent->oied_namelen, ent->oied_name,
6488                                        ent->oied_ino, PFID(fid), rc);
6489                 } else if (dev->od_index == 0) {
6490                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
6491                         /* It is probably IGIF object. Only aappend the
6492                          * FID-in-dirent. OI scrub will process FID-in-LMA. */
6493                         rc = osd_dirent_reinsert(env, dev, jh, dentry, fid,
6494                                                  bh, de, hlock, dotdot);
6495                         if (rc == 0)
6496                                 *attr |= LUDA_UPGRADE;
6497                         else
6498                                 CDEBUG(D_LFSCK, "%s: fail to append IGIF "
6499                                        "after the dirent, dir = %lu/%u, "
6500                                        "name = %.*s, ino = %llu, "
6501                                        DFID": rc = %d\n",
6502                                        devname, dir->i_ino, dir->i_generation,
6503                                        ent->oied_namelen, ent->oied_name,
6504                                        ent->oied_ino, PFID(fid), rc);
6505                 }
6506         }
6507
6508         GOTO(out, rc);
6509
6510 out:
6511         if (!IS_ERR(bh))
6512                 brelse(bh);
6513         if (hlock != NULL) {
6514                 ldiskfs_htree_unlock(hlock);
6515         } else {
6516                 if (dev->od_dirent_journal != 0)
6517                         up_write(&obj->oo_ext_idx_sem);
6518                 else
6519                         up_read(&obj->oo_ext_idx_sem);
6520         }
6521
6522         if (jh != NULL)
6523                 ldiskfs_journal_stop(jh);
6524
6525 out_inode:
6526         iput(inode);
6527         if (rc >= 0 && !dirty)
6528                 dev->od_dirent_journal = 0;
6529
6530         return rc;
6531 }
6532
6533 /**
6534  * Returns the value at current position from iterator's in memory structure.
6535  *
6536  * \param di struct osd_it_ea, iterator's in memory structure
6537  * \param attr attr requested for dirent.
6538  * \param lde lustre dirent
6539  *
6540  * \retval   0 no error and \param lde has correct lustre dirent.
6541  * \retval -ve on error
6542  */
6543 static inline int osd_it_ea_rec(const struct lu_env *env,
6544                                 const struct dt_it *di,
6545                                 struct dt_rec *dtrec, __u32 attr)
6546 {
6547         struct osd_it_ea       *it    = (struct osd_it_ea *)di;
6548         struct osd_object      *obj   = it->oie_obj;
6549         struct osd_device      *dev   = osd_obj2dev(obj);
6550         struct osd_thread_info *oti   = osd_oti_get(env);
6551         struct osd_inode_id    *id    = &oti->oti_id;
6552         struct lu_fid          *fid   = &it->oie_dirent->oied_fid;
6553         struct lu_dirent       *lde   = (struct lu_dirent *)dtrec;
6554         __u32                   ino   = it->oie_dirent->oied_ino;
6555         int                     rc    = 0;
6556         ENTRY;
6557
6558         LASSERT(!is_remote_parent_ino(dev, obj->oo_inode->i_ino));
6559
6560         if (attr & LUDA_VERIFY) {
6561                 if (unlikely(is_remote_parent_ino(dev, ino))) {
6562                         attr |= LUDA_IGNORE;
6563                         /* If the parent is on remote MDT, and there
6564                          * is no FID-in-dirent, then we have to get
6565                          * the parent FID from the linkEA.  */
6566                         if (!fid_is_sane(fid) &&
6567                             it->oie_dirent->oied_namelen == 2 &&
6568                             it->oie_dirent->oied_name[0] == '.' &&
6569                             it->oie_dirent->oied_name[1] == '.')
6570                                 osd_get_pfid_from_linkea(env, obj, fid);
6571                 } else {
6572                         rc = osd_dirent_check_repair(env, obj, it, fid, id,
6573                                                      &attr);
6574                 }
6575
6576                 if (!fid_is_sane(fid))
6577                         attr |= LUDA_UNKNOWN;
6578         } else {
6579                 attr &= ~LU_DIRENT_ATTRS_MASK;
6580                 if (!fid_is_sane(fid)) {
6581                         bool is_dotdot = false;
6582                         if (it->oie_dirent->oied_namelen == 2 &&
6583                             it->oie_dirent->oied_name[0] == '.' &&
6584                             it->oie_dirent->oied_name[1] == '.')
6585                                 is_dotdot = true;
6586                         /* If the parent is on remote MDT, and there
6587                          * is no FID-in-dirent, then we have to get
6588                          * the parent FID from the linkEA.  */
6589                         if (is_remote_parent_ino(dev, ino) && is_dotdot) {
6590                                 rc = osd_get_pfid_from_linkea(env, obj, fid);
6591                         } else {
6592                                 if (is_dotdot == false &&
6593                                     OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP))
6594                                         RETURN(-ENOENT);
6595
6596                                 rc = osd_ea_fid_get(env, obj, ino, fid, id);
6597                         }
6598                 } else {
6599                         osd_id_gen(id, ino, OSD_OII_NOGEN);
6600                 }
6601         }
6602
6603         /* Pack the entry anyway, at least the offset is right. */
6604         osd_it_pack_dirent(lde, fid, it->oie_dirent->oied_off,
6605                            it->oie_dirent->oied_name,
6606                            it->oie_dirent->oied_namelen,
6607                            it->oie_dirent->oied_type, attr);
6608
6609         if (rc < 0)
6610                 RETURN(rc);
6611
6612         if (osd_remote_fid(env, dev, fid))
6613                 RETURN(0);
6614
6615         if (likely(!(attr & (LUDA_IGNORE | LUDA_UNKNOWN)) && rc == 0))
6616                 osd_add_oi_cache(oti, dev, id, fid);
6617
6618         RETURN(rc > 0 ? 0 : rc);
6619 }
6620
6621 /**
6622  * Returns the record size size at current position.
6623  *
6624  * This function will return record(lu_dirent) size in bytes.
6625  *
6626  * \param[in] env       execution environment
6627  * \param[in] di        iterator's in memory structure
6628  * \param[in] attr      attribute of the entry, only requires LUDA_TYPE to
6629  *                      calculate the lu_dirent size.
6630  *
6631  * \retval      record size(in bytes & in memory) of the current lu_dirent
6632  *              entry.
6633  */
6634 static int osd_it_ea_rec_size(const struct lu_env *env, const struct dt_it *di,
6635                               __u32 attr)
6636 {
6637         struct osd_it_ea *it = (struct osd_it_ea *)di;
6638
6639         return lu_dirent_calc_size(it->oie_dirent->oied_namelen, attr);
6640 }
6641
6642 /**
6643  * Returns a cookie for current position of the iterator head, so that
6644  * user can use this cookie to load/start the iterator next time.
6645  *
6646  * \param di iterator's in memory structure
6647  *
6648  * \retval cookie for current position, on success
6649  */
6650 static __u64 osd_it_ea_store(const struct lu_env *env, const struct dt_it *di)
6651 {
6652         struct osd_it_ea *it = (struct osd_it_ea *)di;
6653
6654         return it->oie_dirent->oied_off;
6655 }
6656
6657 /**
6658  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
6659  * to load a directory entry at a time and stored it i inn,
6660  * in iterator's in-memory data structure.
6661  *
6662  * \param di struct osd_it_ea, iterator's in memory structure
6663  *
6664  * \retval +ve on success
6665  * \retval -ve on error
6666  */
6667 static int osd_it_ea_load(const struct lu_env *env,
6668                           const struct dt_it *di, __u64 hash)
6669 {
6670         struct osd_it_ea *it = (struct osd_it_ea *)di;
6671         int rc;
6672
6673         ENTRY;
6674         it->oie_file.f_pos = hash;
6675
6676         rc =  osd_ldiskfs_it_fill(env, di);
6677         if (rc > 0)
6678                 rc = -ENODATA;
6679
6680         if (rc == 0)
6681                 rc = +1;
6682
6683         RETURN(rc);
6684 }
6685
6686 /**
6687  * Index lookup function for interoperability mode (b11826).
6688  *
6689  * \param key,  key i.e. file name to be searched
6690  *
6691  * \retval +ve, on success
6692  * \retval -ve, on error
6693  */
6694 static int osd_index_ea_lookup(const struct lu_env *env, struct dt_object *dt,
6695                                struct dt_rec *rec, const struct dt_key *key)
6696 {
6697         struct osd_object *obj = osd_dt_obj(dt);
6698         int rc = 0;
6699
6700         ENTRY;
6701
6702         LASSERT(S_ISDIR(obj->oo_inode->i_mode));
6703         LINVRNT(osd_invariant(obj));
6704
6705         rc = osd_ea_lookup_rec(env, obj, rec, key);
6706         if (rc == 0)
6707                 rc = +1;
6708         RETURN(rc);
6709 }
6710
6711 /**
6712  * Index and Iterator operations for interoperability
6713  * mode (i.e. to run 2.0 mds on 1.8 disk) (b11826)
6714  */
6715 static const struct dt_index_operations osd_index_ea_ops = {
6716         .dio_lookup         = osd_index_ea_lookup,
6717         .dio_declare_insert = osd_index_declare_ea_insert,
6718         .dio_insert         = osd_index_ea_insert,
6719         .dio_declare_delete = osd_index_declare_ea_delete,
6720         .dio_delete         = osd_index_ea_delete,
6721         .dio_it     = {
6722                 .init     = osd_it_ea_init,
6723                 .fini     = osd_it_ea_fini,
6724                 .get      = osd_it_ea_get,
6725                 .put      = osd_it_ea_put,
6726                 .next     = osd_it_ea_next,
6727                 .key      = osd_it_ea_key,
6728                 .key_size = osd_it_ea_key_size,
6729                 .rec      = osd_it_ea_rec,
6730                 .rec_size = osd_it_ea_rec_size,
6731                 .store    = osd_it_ea_store,
6732                 .load     = osd_it_ea_load
6733         }
6734 };
6735
6736 static void *osd_key_init(const struct lu_context *ctx,
6737                           struct lu_context_key *key)
6738 {
6739         struct osd_thread_info *info;
6740
6741         OBD_ALLOC_PTR(info);
6742         if (info == NULL)
6743                 return ERR_PTR(-ENOMEM);
6744
6745         OBD_ALLOC(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
6746         if (info->oti_it_ea_buf == NULL)
6747                 goto out_free_info;
6748
6749         info->oti_env = container_of(ctx, struct lu_env, le_ctx);
6750
6751         info->oti_hlock = ldiskfs_htree_lock_alloc();
6752         if (info->oti_hlock == NULL)
6753                 goto out_free_ea;
6754
6755         return info;
6756
6757  out_free_ea:
6758         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
6759  out_free_info:
6760         OBD_FREE_PTR(info);
6761         return ERR_PTR(-ENOMEM);
6762 }
6763
6764 static void osd_key_fini(const struct lu_context *ctx,
6765                          struct lu_context_key *key, void* data)
6766 {
6767         struct osd_thread_info *info = data;
6768         struct ldiskfs_inode_info *lli = LDISKFS_I(info->oti_inode);
6769         struct osd_idmap_cache  *idc = info->oti_ins_cache;
6770
6771         if (info->oti_inode != NULL)
6772                 OBD_FREE_PTR(lli);
6773         if (info->oti_hlock != NULL)
6774                 ldiskfs_htree_lock_free(info->oti_hlock);
6775         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
6776         lu_buf_free(&info->oti_iobuf.dr_pg_buf);
6777         lu_buf_free(&info->oti_iobuf.dr_bl_buf);
6778         lu_buf_free(&info->oti_big_buf);
6779         if (idc != NULL) {
6780                 LASSERT(info->oti_ins_cache_size > 0);
6781                 OBD_FREE(idc, sizeof(*idc) * info->oti_ins_cache_size);
6782                 info->oti_ins_cache = NULL;
6783                 info->oti_ins_cache_size = 0;
6784         }
6785         OBD_FREE_PTR(info);
6786 }
6787
6788 static void osd_key_exit(const struct lu_context *ctx,
6789                          struct lu_context_key *key, void *data)
6790 {
6791         struct osd_thread_info *info = data;
6792
6793         LASSERT(info->oti_r_locks == 0);
6794         LASSERT(info->oti_w_locks == 0);
6795         LASSERT(info->oti_txns    == 0);
6796 }
6797
6798 /* type constructor/destructor: osd_type_init, osd_type_fini */
6799 LU_TYPE_INIT_FINI(osd, &osd_key);
6800
6801 struct lu_context_key osd_key = {
6802         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
6803         .lct_init = osd_key_init,
6804         .lct_fini = osd_key_fini,
6805         .lct_exit = osd_key_exit
6806 };
6807
6808
6809 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
6810                            const char *name, struct lu_device *next)
6811 {
6812         struct osd_device *osd = osd_dev(d);
6813
6814         if (strlcpy(osd->od_svname, name, sizeof(osd->od_svname))
6815             >= sizeof(osd->od_svname))
6816                 return -E2BIG;
6817         return osd_procfs_init(osd, name);
6818 }
6819
6820 static int osd_fid_init(const struct lu_env *env, struct osd_device *osd)
6821 {
6822         struct seq_server_site  *ss = osd_seq_site(osd);
6823         int                     rc;
6824         ENTRY;
6825
6826         if (osd->od_is_ost || osd->od_cl_seq != NULL)
6827                 RETURN(0);
6828
6829         if (unlikely(ss == NULL))
6830                 RETURN(-ENODEV);
6831
6832         OBD_ALLOC_PTR(osd->od_cl_seq);
6833         if (osd->od_cl_seq == NULL)
6834                 RETURN(-ENOMEM);
6835
6836         rc = seq_client_init(osd->od_cl_seq, NULL, LUSTRE_SEQ_METADATA,
6837                              osd->od_svname, ss->ss_server_seq);
6838         if (rc != 0) {
6839                 OBD_FREE_PTR(osd->od_cl_seq);
6840                 osd->od_cl_seq = NULL;
6841                 RETURN(rc);
6842         }
6843
6844         if (ss->ss_node_id == 0) {
6845                 /* If the OSD on the sequence controller(MDT0), then allocate
6846                  * sequence here, otherwise allocate sequence after connected
6847                  * to MDT0 (see mdt_register_lwp_callback()). */
6848                 rc = seq_server_alloc_meta(osd->od_cl_seq->lcs_srv,
6849                                    &osd->od_cl_seq->lcs_space, env);
6850         }
6851
6852         RETURN(rc);
6853 }
6854
6855 static void osd_fid_fini(const struct lu_env *env, struct osd_device *osd)
6856 {
6857         if (osd->od_cl_seq == NULL)
6858                 return;
6859
6860         seq_client_fini(osd->od_cl_seq);
6861         OBD_FREE_PTR(osd->od_cl_seq);
6862         osd->od_cl_seq = NULL;
6863 }
6864
6865 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
6866 {
6867         ENTRY;
6868
6869         /* shutdown quota slave instance associated with the device */
6870         if (o->od_quota_slave != NULL) {
6871                 qsd_fini(env, o->od_quota_slave);
6872                 o->od_quota_slave = NULL;
6873         }
6874
6875         osd_fid_fini(env, o);
6876
6877         RETURN(0);
6878 }
6879
6880 static void osd_umount(const struct lu_env *env, struct osd_device *o)
6881 {
6882         ENTRY;
6883
6884         if (o->od_mnt != NULL) {
6885                 shrink_dcache_sb(osd_sb(o));
6886                 osd_sync(env, &o->od_dt_dev);
6887
6888                 mntput(o->od_mnt);
6889                 o->od_mnt = NULL;
6890         }
6891
6892         EXIT;
6893 }
6894
6895 static int osd_mount(const struct lu_env *env,
6896                      struct osd_device *o, struct lustre_cfg *cfg)
6897 {
6898         const char              *name  = lustre_cfg_string(cfg, 0);
6899         const char              *dev  = lustre_cfg_string(cfg, 1);
6900         const char              *opts;
6901         unsigned long            page, s_flags, lmd_flags = 0;
6902         struct page             *__page;
6903         struct file_system_type *type;
6904         char                    *options = NULL;
6905         char                    *str;
6906         struct osd_thread_info  *info = osd_oti_get(env);
6907         struct lu_fid           *fid = &info->oti_fid;
6908         struct inode            *inode;
6909         int                      rc = 0, force_over_512tb = 0;
6910         ENTRY;
6911
6912         if (o->od_mnt != NULL)
6913                 RETURN(0);
6914
6915         if (strlen(dev) >= sizeof(o->od_mntdev))
6916                 RETURN(-E2BIG);
6917         strcpy(o->od_mntdev, dev);
6918
6919         str = lustre_cfg_string(cfg, 2);
6920         s_flags = simple_strtoul(str, NULL, 0);
6921         str = strstr(str, ":");
6922         if (str)
6923                 lmd_flags = simple_strtoul(str + 1, NULL, 0);
6924         opts = lustre_cfg_string(cfg, 3);
6925 #ifdef __BIG_ENDIAN
6926         if (opts == NULL || strstr(opts, "bigendian_extents") == NULL) {
6927                 CERROR("%s: device %s extents feature is not guaranteed to "
6928                        "work on big-endian systems. Use \"bigendian_extents\" "
6929                        "mount option to override.\n", name, dev);
6930                 RETURN(-EINVAL);
6931         }
6932 #endif
6933 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
6934         if (opts != NULL && strstr(opts, "force_over_128tb") != NULL) {
6935                 CWARN("force_over_128tb option is deprecated. "
6936                       "Filesystems less than 512TB can be created without any "
6937                       "force options. Use force_over_512tb option for "
6938                       "filesystems greater than 512TB.\n");
6939         }
6940 #endif
6941 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 1, 53, 0)
6942         if (opts != NULL && strstr(opts, "force_over_256tb") != NULL) {
6943                 CWARN("force_over_256tb option is deprecated. "
6944                       "Filesystems less than 512TB can be created without any "
6945                       "force options. Use force_over_512tb option for "
6946                       "filesystems greater than 512TB.\n");
6947         }
6948 #endif
6949
6950         if (opts != NULL && strstr(opts, "force_over_512tb") != NULL)
6951                 force_over_512tb = 1;
6952
6953         __page = alloc_page(GFP_KERNEL);
6954         if (__page == NULL)
6955                 GOTO(out, rc = -ENOMEM);
6956         page = (unsigned long)page_address(__page);
6957         options = (char *)page;
6958         *options = '\0';
6959         if (opts != NULL) {
6960                 /* strip out the options for back compatiblity */
6961                 static char *sout[] = {
6962                         "mballoc",
6963                         "iopen",
6964                         "noiopen",
6965                         "iopen_nopriv",
6966                         "extents",
6967                         "noextents",
6968                         /* strip out option we processed in osd */
6969                         "bigendian_extents",
6970                         "force_over_128tb",
6971                         "force_over_256tb",
6972                         "force_over_512tb",
6973                         NULL
6974                 };
6975                 strcat(options, opts);
6976                 for (rc = 0, str = options; sout[rc]; ) {
6977                         char *op = strstr(str, sout[rc]);
6978                         if (op == NULL) {
6979                                 rc++;
6980                                 str = options;
6981                                 continue;
6982                         }
6983                         if (op == options || *(op - 1) == ',') {
6984                                 str = op + strlen(sout[rc]);
6985                                 if (*str == ',' || *str == '\0') {
6986                                         *str == ',' ? str++ : str;
6987                                         memmove(op, str, strlen(str) + 1);
6988                                 }
6989                         }
6990                         for (str = op; *str != ',' && *str != '\0'; str++)
6991                                 ;
6992                 }
6993         } else {
6994                 strncat(options, "user_xattr,acl", 14);
6995         }
6996
6997         /* Glom up mount options */
6998         if (*options != '\0')
6999                 strcat(options, ",");
7000         strlcat(options, "no_mbcache,nodelalloc", PAGE_SIZE);
7001
7002         type = get_fs_type("ldiskfs");
7003         if (!type) {
7004                 CERROR("%s: cannot find ldiskfs module\n", name);
7005                 GOTO(out, rc = -ENODEV);
7006         }
7007
7008         o->od_mnt = vfs_kern_mount(type, s_flags, dev, options);
7009         module_put(type->owner);
7010
7011         if (IS_ERR(o->od_mnt)) {
7012                 rc = PTR_ERR(o->od_mnt);
7013                 o->od_mnt = NULL;
7014                 CERROR("%s: can't mount %s: %d\n", name, dev, rc);
7015                 GOTO(out, rc);
7016         }
7017
7018         if (ldiskfs_blocks_count(LDISKFS_SB(osd_sb(o))->s_es) <<
7019                                  osd_sb(o)->s_blocksize_bits > 512ULL << 40 &&
7020                                  force_over_512tb == 0) {
7021                 CERROR("%s: device %s LDISKFS does not support filesystems "
7022                        "greater than 512TB and can cause data corruption. "
7023                        "Use \"force_over_512tb\" mount option to override.\n",
7024                        name, dev);
7025                 GOTO(out_mnt, rc = -EINVAL);
7026         }
7027
7028         if (lmd_flags & LMD_FLG_DEV_RDONLY) {
7029                 if (priv_dev_set_rdonly) {
7030                         priv_dev_set_rdonly(osd_sb(o)->s_bdev);
7031                         o->od_dt_dev.dd_rdonly = 1;
7032                         LCONSOLE_WARN("%s: set dev_rdonly on this device\n",
7033                                       name);
7034                 } else {
7035                         LCONSOLE_WARN("%s: not support dev_rdonly on this device",
7036                                       name);
7037
7038                         GOTO(out_mnt, rc = -EOPNOTSUPP);
7039                 }
7040         } else if (priv_dev_check_rdonly &&
7041                    priv_dev_check_rdonly(osd_sb(o)->s_bdev)) {
7042                 CERROR("%s: underlying device %s is marked as "
7043                        "read-only. Setup failed\n", name, dev);
7044
7045                 GOTO(out_mnt, rc = -EROFS);
7046         }
7047
7048         if (!ldiskfs_has_feature_journal(o->od_mnt->mnt_sb)) {
7049                 CERROR("%s: device %s is mounted w/o journal\n", name, dev);
7050                 GOTO(out_mnt, rc = -EINVAL);
7051         }
7052
7053 #ifdef LDISKFS_MOUNT_DIRDATA
7054         if (ldiskfs_has_feature_dirdata(o->od_mnt->mnt_sb))
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);