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