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