Whamcloud - gitweb
8496ed4713fd254ef4ea5d7c8daff9e001dc8572
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osd/osd_handler.c
37  *
38  * Top-level entry points into osd module
39  *
40  * Author: Nikita Danilov <nikita@clusterfs.com>
41  *         Pravin Shelar <pravin.shelar@sun.com> : Added fid in dirent
42  */
43
44 #define DEBUG_SUBSYSTEM S_MDS
45
46 #include <linux/module.h>
47
48 /* LUSTRE_VERSION_CODE */
49 #include <lustre_ver.h>
50 /* prerequisite for linux/xattr.h */
51 #include <linux/types.h>
52 /* prerequisite for linux/xattr.h */
53 #include <linux/fs.h>
54 /* XATTR_{REPLACE,CREATE} */
55 #include <linux/xattr.h>
56
57 /*
58  * struct OBD_{ALLOC,FREE}*()
59  * OBD_FAIL_CHECK
60  */
61 #include <obd_support.h>
62 /* struct ptlrpc_thread */
63 #include <lustre_net.h>
64 #include <lustre_fid.h>
65
66 #include "osd_internal.h"
67 #include "osd_dynlocks.h"
68
69 /* llo_* api support */
70 #include <md_object.h>
71 #include <lustre_quota.h>
72
73 int ldiskfs_pdo = 1;
74 CFS_MODULE_PARM(ldiskfs_pdo, "i", int, 0644,
75                 "ldiskfs with parallel directory operations");
76
77 int ldiskfs_track_declares_assert;
78 CFS_MODULE_PARM(ldiskfs_track_declares_assert, "i", int, 0644,
79                 "LBUG during tracking of declares");
80
81 /* Slab to allocate dynlocks */
82 struct kmem_cache *dynlock_cachep;
83
84 static struct lu_kmem_descr ldiskfs_caches[] = {
85         {
86                 .ckd_cache = &dynlock_cachep,
87                 .ckd_name  = "dynlock_cache",
88                 .ckd_size  = sizeof(struct dynlock_handle)
89         },
90         {
91                 .ckd_cache = NULL
92         }
93 };
94
95 static const char dot[] = ".";
96 static const char dotdot[] = "..";
97 static const char remote_obj_dir[] = "REM_OBJ_DIR";
98
99 static const struct lu_object_operations      osd_lu_obj_ops;
100 static const struct dt_object_operations      osd_obj_ops;
101 static const struct dt_object_operations      osd_obj_ea_ops;
102 static const struct dt_object_operations      osd_obj_otable_it_ops;
103 static const struct dt_index_operations       osd_index_iam_ops;
104 static const struct dt_index_operations       osd_index_ea_ops;
105
106 int osd_trans_declare_op2rb[] = {
107         [OSD_OT_ATTR_SET]       = OSD_OT_ATTR_SET,
108         [OSD_OT_PUNCH]          = OSD_OT_MAX,
109         [OSD_OT_XATTR_SET]      = OSD_OT_XATTR_SET,
110         [OSD_OT_CREATE]         = OSD_OT_DESTROY,
111         [OSD_OT_DESTROY]        = OSD_OT_CREATE,
112         [OSD_OT_REF_ADD]        = OSD_OT_REF_DEL,
113         [OSD_OT_REF_DEL]        = OSD_OT_REF_ADD,
114         [OSD_OT_WRITE]          = OSD_OT_WRITE,
115         [OSD_OT_INSERT]         = OSD_OT_DELETE,
116         [OSD_OT_DELETE]         = OSD_OT_INSERT,
117         [OSD_OT_UPDATE]         = OSD_OT_MAX,
118         [OSD_OT_QUOTA]          = OSD_OT_MAX,
119 };
120
121 static int osd_has_index(const struct osd_object *obj)
122 {
123         return obj->oo_dt.do_index_ops != NULL;
124 }
125
126 static int osd_object_invariant(const struct lu_object *l)
127 {
128         return osd_invariant(osd_obj(l));
129 }
130
131 /*
132  * Concurrency: doesn't matter
133  */
134 static int osd_read_locked(const struct lu_env *env, struct osd_object *o)
135 {
136         return osd_oti_get(env)->oti_r_locks > 0;
137 }
138
139 /*
140  * Concurrency: doesn't matter
141  */
142 static int osd_write_locked(const struct lu_env *env, struct osd_object *o)
143 {
144         struct osd_thread_info *oti = osd_oti_get(env);
145         return oti->oti_w_locks > 0 && o->oo_owner == env;
146 }
147
148 /*
149  * Concurrency: doesn't access mutable data
150  */
151 static int osd_root_get(const struct lu_env *env,
152                         struct dt_device *dev, struct lu_fid *f)
153 {
154         lu_local_obj_fid(f, OSD_FS_ROOT_OID);
155         return 0;
156 }
157
158 /*
159  * OSD object methods.
160  */
161
162 /*
163  * Concurrency: no concurrent access is possible that early in object
164  * life-cycle.
165  */
166 static struct lu_object *osd_object_alloc(const struct lu_env *env,
167                                           const struct lu_object_header *hdr,
168                                           struct lu_device *d)
169 {
170         struct osd_object *mo;
171
172         OBD_ALLOC_PTR(mo);
173         if (mo != NULL) {
174                 struct lu_object *l;
175
176                 l = &mo->oo_dt.do_lu;
177                 dt_object_init(&mo->oo_dt, NULL, d);
178                 mo->oo_dt.do_ops = &osd_obj_ea_ops;
179                 l->lo_ops = &osd_lu_obj_ops;
180                 init_rwsem(&mo->oo_sem);
181                 init_rwsem(&mo->oo_ext_idx_sem);
182                 spin_lock_init(&mo->oo_guard);
183                 return l;
184         } else {
185                 return NULL;
186         }
187 }
188
189 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
190                 struct dentry *dentry, struct lustre_mdt_attrs *lma)
191 {
192         int rc;
193
194         CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
195         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
196                              info->oti_mdt_attrs_old, LMA_OLD_SIZE);
197         if (rc > 0) {
198                 if ((void *)lma != (void *)info->oti_mdt_attrs_old)
199                         memcpy(lma, info->oti_mdt_attrs_old, sizeof(*lma));
200                 rc = 0;
201                 lustre_lma_swab(lma);
202                 /* Check LMA compatibility */
203                 if (lma->lma_incompat & ~LMA_INCOMPAT_SUPP) {
204                         CWARN("%.16s: unsupported incompat LMA feature(s) %#x "
205                               "for fid = "DFID", ino = %lu\n",
206                               LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
207                               lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
208                               PFID(&lma->lma_self_fid), inode->i_ino);
209                         rc = -EOPNOTSUPP;
210                 }
211         } else if (rc == 0) {
212                 rc = -ENODATA;
213         }
214
215         return rc;
216 }
217
218 /*
219  * retrieve object from backend ext fs.
220  **/
221 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
222                        struct osd_inode_id *id)
223 {
224         struct inode *inode = NULL;
225
226         inode = ldiskfs_iget(osd_sb(dev), id->oii_ino);
227         if (IS_ERR(inode)) {
228                 CDEBUG(D_INODE, "no inode: ino = %u, rc = %ld\n",
229                        id->oii_ino, PTR_ERR(inode));
230         } else if (id->oii_gen != OSD_OII_NOGEN &&
231                    inode->i_generation != id->oii_gen) {
232                 CDEBUG(D_INODE, "unmatched inode: ino = %u, gen0 = %u, "
233                        "gen1 = %u\n",
234                        id->oii_ino, id->oii_gen, inode->i_generation);
235                 iput(inode);
236                 inode = ERR_PTR(-ESTALE);
237         } else if (inode->i_nlink == 0) {
238                 /* due to parallel readdir and unlink,
239                 * we can have dead inode here. */
240                 CDEBUG(D_INODE, "stale inode: ino = %u\n", id->oii_ino);
241                 make_bad_inode(inode);
242                 iput(inode);
243                 inode = ERR_PTR(-ESTALE);
244         } else if (is_bad_inode(inode)) {
245                 CWARN("%.16s: bad inode: ino = %u\n",
246                 LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name, id->oii_ino);
247                 iput(inode);
248                 inode = ERR_PTR(-ENOENT);
249         } else {
250                 if (id->oii_gen == OSD_OII_NOGEN)
251                         osd_id_gen(id, inode->i_ino, inode->i_generation);
252
253                 /* Do not update file c/mtime in ldiskfs.
254                  * NB: we don't have any lock to protect this because we don't
255                  * have reference on osd_object now, but contention with
256                  * another lookup + attr_set can't happen in the tiny window
257                  * between if (...) and set S_NOCMTIME. */
258                 if (!(inode->i_flags & S_NOCMTIME))
259                         inode->i_flags |= S_NOCMTIME;
260         }
261         return inode;
262 }
263
264 static struct inode *
265 osd_iget_fid(struct osd_thread_info *info, struct osd_device *dev,
266              struct osd_inode_id *id, struct lu_fid *fid)
267 {
268         struct lustre_mdt_attrs *lma   = &info->oti_mdt_attrs;
269         struct inode            *inode;
270         int                      rc;
271
272         inode = osd_iget(info, dev, id);
273         if (IS_ERR(inode))
274                 return inode;
275
276         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
277         if (rc == 0) {
278                 *fid = lma->lma_self_fid;
279         } else if (rc == -ENODATA) {
280                 if (unlikely(inode == osd_sb(dev)->s_root->d_inode))
281                         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
282                 else
283                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
284         } else {
285                 iput(inode);
286                 inode = ERR_PTR(rc);
287         }
288         return inode;
289 }
290
291 /**
292  * \retval +v: new filter_fid, does not contain self-fid
293  * \retval 0:  filter_fid_old, contains self-fid
294  * \retval -v: other failure cases
295  */
296 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
297                  struct dentry *dentry, struct lu_fid *fid)
298 {
299         struct filter_fid_old   *ff     = &info->oti_ff;
300         struct ost_id           *ostid  = &info->oti_ostid;
301         int                      rc;
302
303         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_FID, ff, sizeof(*ff));
304         if (rc == sizeof(*ff)) {
305                 rc = 0;
306                 ostid_set_seq(ostid, le64_to_cpu(ff->ff_seq));
307                 ostid_set_id(ostid, le64_to_cpu(ff->ff_objid));
308                 /* XXX: should use real OST index in the future. LU-3569 */
309                 ostid_to_fid(fid, ostid, 0);
310         } else if (rc == sizeof(struct filter_fid)) {
311                 rc = 1;
312         } else if (rc >= 0) {
313                 rc = -EINVAL;
314         }
315
316         return rc;
317 }
318
319 static int osd_check_lma(const struct lu_env *env, struct osd_object *obj)
320 {
321         struct osd_thread_info  *info   = osd_oti_get(env);
322         struct osd_device       *osd    = osd_obj2dev(obj);
323         struct lustre_mdt_attrs *lma    = &info->oti_mdt_attrs;
324         struct inode            *inode  = obj->oo_inode;
325         struct dentry           *dentry = &info->oti_obj_dentry;
326         struct lu_fid           *fid    = NULL;
327         int                      rc;
328         ENTRY;
329
330         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_COMPAT_INVALID_ENTRY))
331                 RETURN(0);
332
333         CLASSERT(LMA_OLD_SIZE >= sizeof(*lma));
334         rc = __osd_xattr_get(inode, dentry, XATTR_NAME_LMA,
335                              info->oti_mdt_attrs_old, LMA_OLD_SIZE);
336         if (rc == -ENODATA && !fid_is_igif(lu_object_fid(&obj->oo_dt.do_lu)) &&
337             osd->od_check_ff) {
338                 fid = &lma->lma_self_fid;
339                 rc = osd_get_idif(info, inode, dentry, fid);
340                 if ((rc > 0) || (rc == -ENODATA && osd->od_lma_self_repair)) {
341                         handle_t *jh;
342
343                         /* For the given OST-object, if it has neither LMA nor
344                          * FID in XATTR_NAME_FID, then the given FID (which is
345                          * contained in the @obj, from client RPC for locating
346                          * the OST-object) is trusted. We use it to generate
347                          * the LMA. */
348
349                         LASSERT(current->journal_info == NULL);
350
351                         jh = osd_journal_start_sb(osd_sb(osd), LDISKFS_HT_MISC,
352                                         osd_dto_credits_noquota[DTO_XATTR_SET]);
353                         if (IS_ERR(jh)) {
354                                 CWARN("%s: cannot start journal for "
355                                       "lma_self_repair: rc = %ld\n",
356                                       osd_name(osd), PTR_ERR(jh));
357                                 RETURN(0);
358                         }
359
360                         rc = osd_ea_fid_set(info, inode,
361                                 lu_object_fid(&obj->oo_dt.do_lu),
362                                 fid_is_on_ost(info, osd,
363                                               lu_object_fid(&obj->oo_dt.do_lu),
364                                               OI_CHECK_FLD) ?
365                                 LMAC_FID_ON_OST : 0, 0);
366                         if (rc != 0)
367                                 CWARN("%s: cannot self repair the LMA: "
368                                       "rc = %d\n", osd_name(osd), rc);
369                         ldiskfs_journal_stop(jh);
370                         RETURN(0);
371                 }
372         }
373
374         if (unlikely(rc == -ENODATA))
375                 RETURN(0);
376
377         if (rc < 0)
378                 RETURN(rc);
379
380         if (rc > 0) {
381                 rc = 0;
382                 lustre_lma_swab(lma);
383                 if (unlikely((lma->lma_incompat & ~LMA_INCOMPAT_SUPP) ||
384                              CFS_FAIL_CHECK(OBD_FAIL_OSD_LMA_INCOMPAT))) {
385                         CWARN("%s: unsupported incompat LMA feature(s) %#x for "
386                               "fid = "DFID", ino = %lu\n", osd_name(osd),
387                               lma->lma_incompat & ~LMA_INCOMPAT_SUPP,
388                               PFID(lu_object_fid(&obj->oo_dt.do_lu)),
389                               inode->i_ino);
390                         rc = -EOPNOTSUPP;
391                 } else if (!(lma->lma_compat & LMAC_NOT_IN_OI)) {
392                         fid = &lma->lma_self_fid;
393                 }
394         }
395
396         if (fid != NULL &&
397             unlikely(!lu_fid_eq(lu_object_fid(&obj->oo_dt.do_lu), fid))) {
398                 CDEBUG(D_INODE, "%s: FID "DFID" != self_fid "DFID"\n",
399                        osd_name(osd), PFID(lu_object_fid(&obj->oo_dt.do_lu)),
400                        PFID(&lma->lma_self_fid));
401                 rc = -EREMCHG;
402         }
403
404         RETURN(rc);
405 }
406
407 static int osd_fid_lookup(const struct lu_env *env, struct osd_object *obj,
408                           const struct lu_fid *fid,
409                           const struct lu_object_conf *conf)
410 {
411         struct osd_thread_info *info;
412         struct lu_device       *ldev   = obj->oo_dt.do_lu.lo_dev;
413         struct osd_device      *dev;
414         struct osd_idmap_cache *oic;
415         struct osd_inode_id    *id;
416         struct inode           *inode;
417         struct osd_scrub       *scrub;
418         struct scrub_file      *sf;
419         int                     result;
420         int                     saved  = 0;
421         bool                    in_oi  = false;
422         bool                    triggered = false;
423         ENTRY;
424
425         LINVRNT(osd_invariant(obj));
426         LASSERT(obj->oo_inode == NULL);
427         LASSERTF(fid_is_sane(fid) || fid_is_idif(fid), DFID, PFID(fid));
428
429         dev = osd_dev(ldev);
430         scrub = &dev->od_scrub;
431         sf = &scrub->os_file;
432         info = osd_oti_get(env);
433         LASSERT(info);
434         oic = &info->oti_cache;
435
436         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT))
437                 RETURN(-ENOENT);
438
439         /* For the object is created as locking anchor, or for the object to
440          * be created on disk. No need to osd_oi_lookup() at here because FID
441          * shouldn't never be re-used, if it's really a duplicate FID from
442          * unexpected reason, we should be able to detect it later by calling
443          * do_create->osd_oi_insert(). */
444         if (conf != NULL && conf->loc_flags & LOC_F_NEW)
445                 GOTO(out, result = 0);
446
447         /* Search order: 1. per-thread cache. */
448         if (lu_fid_eq(fid, &oic->oic_fid) &&
449             likely(oic->oic_dev == dev)) {
450                 id = &oic->oic_lid;
451                 goto iget;
452         }
453
454         id = &info->oti_id;
455         if (!cfs_list_empty(&scrub->os_inconsistent_items)) {
456                 /* Search order: 2. OI scrub pending list. */
457                 result = osd_oii_lookup(dev, fid, id);
458                 if (result == 0)
459                         goto iget;
460         }
461
462         /* Search order: 3. OI files. */
463         result = osd_oi_lookup(info, dev, fid, id, OI_CHECK_FLD);
464         if (result == -ENOENT) {
465                 if (!fid_is_norm(fid) ||
466                     fid_is_on_ost(info, dev, fid, OI_CHECK_FLD) ||
467                     !ldiskfs_test_bit(osd_oi_fid2idx(dev,fid),
468                                       sf->sf_oi_bitmap))
469                         GOTO(out, result = 0);
470
471                 goto trigger;
472         }
473
474         if (result != 0)
475                 GOTO(out, result);
476
477         in_oi = true;
478
479 iget:
480         inode = osd_iget(info, dev, id);
481         if (IS_ERR(inode)) {
482                 result = PTR_ERR(inode);
483                 if (result == -ENOENT || result == -ESTALE) {
484                         if (!in_oi) {
485                                 fid_zero(&oic->oic_fid);
486                                 GOTO(out, result = -ENOENT);
487                         }
488
489                         /* XXX: There are three possible cases:
490                          *      1. Backup/restore caused the OI invalid.
491                          *      2. Someone unlinked the object but NOT removed
492                          *         the OI mapping, such as mount target device
493                          *         as ldiskfs, and modify something directly.
494                          *      3. Someone just removed the object between the
495                          *         former oi_lookup and the iget. It is normal.
496                          *
497                          *      It is diffcult to distinguish the 2nd from the
498                          *      1st case. Relatively speaking, the 1st case is
499                          *      common than the 2nd case, trigger OI scrub. */
500                         result = osd_oi_lookup(info, dev, fid, id, true);
501                         if (result == 0)
502                                 /* It is the case 1 or 2. */
503                                 goto trigger;
504                 } else if (result == -EREMCHG) {
505
506 trigger:
507                         if (unlikely(triggered))
508                                 GOTO(out, result = saved);
509
510                         triggered = true;
511                         if (thread_is_running(&scrub->os_thread)) {
512                                 result = -EINPROGRESS;
513                         } else if (!dev->od_noscrub) {
514                                 result = osd_scrub_start(dev);
515                                 LCONSOLE_ERROR("%.16s: trigger OI scrub by RPC "
516                                                "for "DFID", rc = %d [1]\n",
517                                                LDISKFS_SB(osd_sb(dev))->s_es->\
518                                                s_volume_name,PFID(fid), result);
519                                 if (result == 0 || result == -EALREADY)
520                                         result = -EINPROGRESS;
521                                 else
522                                         result = -EREMCHG;
523                         }
524
525                         /* We still have chance to get the valid inode: for the
526                          * object which is referenced by remote name entry, the
527                          * object on the local MDT will be linked under the dir
528                          * of "/REMOTE_PARENT_DIR" with its FID string as name.
529                          *
530                          * We do not know whether the object for the given FID
531                          * is referenced by some remote name entry or not, and
532                          * especially for DNE II, a multiple-linked object may
533                          * have many name entries reside on many MDTs.
534                          *
535                          * To simplify the operation, OSD will not distinguish
536                          * more, just lookup "/REMOTE_PARENT_DIR". Usually, it
537                          * only happened for the RPC from other MDT during the
538                          * OI scrub, or for the client side RPC with FID only,
539                          * such as FID to path, or from old connected client. */
540                         saved = result;
541                         result = osd_lookup_in_remote_parent(info, dev,
542                                                              fid, id);
543                         if (result == 0) {
544                                 in_oi = false;
545                                 goto iget;
546                         }
547
548                         result = saved;
549                 }
550
551                 GOTO(out, result);
552         }
553
554         obj->oo_inode = inode;
555         LASSERT(obj->oo_inode->i_sb == osd_sb(dev));
556
557         result = osd_check_lma(env, obj);
558         if (result != 0) {
559                 iput(inode);
560                 obj->oo_inode = NULL;
561                 if (result == -EREMCHG)
562                         goto trigger;
563
564                 GOTO(out, result);
565         }
566
567         obj->oo_compat_dot_created = 1;
568         obj->oo_compat_dotdot_created = 1;
569
570         if (!S_ISDIR(inode->i_mode) || !ldiskfs_pdo) /* done */
571                 GOTO(out, result = 0);
572
573         LASSERT(obj->oo_hl_head == NULL);
574         obj->oo_hl_head = ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
575         if (obj->oo_hl_head == NULL) {
576                 obj->oo_inode = NULL;
577                 iput(inode);
578                 GOTO(out, result = -ENOMEM);
579         }
580         GOTO(out, result = 0);
581
582 out:
583         LINVRNT(osd_invariant(obj));
584         return result;
585 }
586
587 /*
588  * Concurrency: shouldn't matter.
589  */
590 static void osd_object_init0(struct osd_object *obj)
591 {
592         LASSERT(obj->oo_inode != NULL);
593         obj->oo_dt.do_body_ops = &osd_body_ops;
594         obj->oo_dt.do_lu.lo_header->loh_attr |=
595                 (LOHA_EXISTS | (obj->oo_inode->i_mode & S_IFMT));
596 }
597
598 /*
599  * Concurrency: no concurrent access is possible that early in object
600  * life-cycle.
601  */
602 static int osd_object_init(const struct lu_env *env, struct lu_object *l,
603                            const struct lu_object_conf *conf)
604 {
605         struct osd_object *obj = osd_obj(l);
606         int result;
607
608         LINVRNT(osd_invariant(obj));
609
610         if (fid_is_otable_it(&l->lo_header->loh_fid)) {
611                 obj->oo_dt.do_ops = &osd_obj_otable_it_ops;
612                 l->lo_header->loh_attr |= LOHA_EXISTS;
613                 return 0;
614         }
615
616         result = osd_fid_lookup(env, obj, lu_object_fid(l), conf);
617         obj->oo_dt.do_body_ops = &osd_body_ops_new;
618         if (result == 0 && obj->oo_inode != NULL)
619                 osd_object_init0(obj);
620
621         LINVRNT(osd_invariant(obj));
622         return result;
623 }
624
625 /*
626  * Concurrency: no concurrent access is possible that late in object
627  * life-cycle.
628  */
629 static void osd_object_free(const struct lu_env *env, struct lu_object *l)
630 {
631         struct osd_object *obj = osd_obj(l);
632
633         LINVRNT(osd_invariant(obj));
634
635         dt_object_fini(&obj->oo_dt);
636         if (obj->oo_hl_head != NULL)
637                 ldiskfs_htree_lock_head_free(obj->oo_hl_head);
638         OBD_FREE_PTR(obj);
639 }
640
641 /*
642  * Concurrency: no concurrent access is possible that late in object
643  * life-cycle.
644  */
645 static void osd_index_fini(struct osd_object *o)
646 {
647         struct iam_container *bag;
648
649         if (o->oo_dir != NULL) {
650                 bag = &o->oo_dir->od_container;
651                 if (o->oo_inode != NULL) {
652                         if (bag->ic_object == o->oo_inode)
653                                 iam_container_fini(bag);
654                 }
655                 OBD_FREE_PTR(o->oo_dir);
656                 o->oo_dir = NULL;
657         }
658 }
659
660 /*
661  * Concurrency: no concurrent access is possible that late in object
662  * life-cycle (for all existing callers, that is. New callers have to provide
663  * their own locking.)
664  */
665 static int osd_inode_unlinked(const struct inode *inode)
666 {
667         return inode->i_nlink == 0;
668 }
669
670 enum {
671         OSD_TXN_OI_DELETE_CREDITS    = 20,
672         OSD_TXN_INODE_DELETE_CREDITS = 20
673 };
674
675 /*
676  * Journal
677  */
678
679 #if OSD_THANDLE_STATS
680 /**
681  * Set time when the handle is allocated
682  */
683 static void osd_th_alloced(struct osd_thandle *oth)
684 {
685         oth->oth_alloced = cfs_time_current();
686 }
687
688 /**
689  * Set time when the handle started
690  */
691 static void osd_th_started(struct osd_thandle *oth)
692 {
693         oth->oth_started = cfs_time_current();
694 }
695
696 /**
697  * Helper function to convert time interval to microseconds packed in
698  * long int.
699  */
700 static long interval_to_usec(cfs_time_t start, cfs_time_t end)
701 {
702         struct timeval val;
703
704         cfs_duration_usec(cfs_time_sub(end, start), &val);
705         return val.tv_sec * 1000000 + val.tv_usec;
706 }
707
708 /**
709  * Check whether the we deal with this handle for too long.
710  */
711 static void __osd_th_check_slow(void *oth, struct osd_device *dev,
712                                 cfs_time_t alloced, cfs_time_t started,
713                                 cfs_time_t closed)
714 {
715         cfs_time_t now = cfs_time_current();
716
717         LASSERT(dev != NULL);
718
719         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_STARTING,
720                             interval_to_usec(alloced, started));
721         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_OPEN,
722                             interval_to_usec(started, closed));
723         lprocfs_counter_add(dev->od_stats, LPROC_OSD_THANDLE_CLOSING,
724                             interval_to_usec(closed, now));
725
726         if (cfs_time_before(cfs_time_add(alloced, cfs_time_seconds(30)), now)) {
727                 CWARN("transaction handle %p was open for too long: "
728                       "now "CFS_TIME_T" ,"
729                       "alloced "CFS_TIME_T" ,"
730                       "started "CFS_TIME_T" ,"
731                       "closed "CFS_TIME_T"\n",
732                       oth, now, alloced, started, closed);
733                 libcfs_debug_dumpstack(NULL);
734         }
735 }
736
737 #define OSD_CHECK_SLOW_TH(oth, dev, expr)                               \
738 {                                                                       \
739         cfs_time_t __closed = cfs_time_current();                       \
740         cfs_time_t __alloced = oth->oth_alloced;                        \
741         cfs_time_t __started = oth->oth_started;                        \
742                                                                         \
743         expr;                                                           \
744         __osd_th_check_slow(oth, dev, __alloced, __started, __closed);  \
745 }
746
747 #else /* OSD_THANDLE_STATS */
748
749 #define osd_th_alloced(h)                  do {} while(0)
750 #define osd_th_started(h)                  do {} while(0)
751 #define OSD_CHECK_SLOW_TH(oth, dev, expr)  expr
752
753 #endif /* OSD_THANDLE_STATS */
754
755 /*
756  * Concurrency: doesn't access mutable data.
757  */
758 static int osd_param_is_not_sane(const struct osd_device *dev,
759                                  const struct thandle *th)
760 {
761         struct osd_thandle *oh = container_of(th, typeof(*oh), ot_super);
762
763         return oh->ot_credits > osd_journal(dev)->j_max_transaction_buffers;
764 }
765
766 /*
767  * Concurrency: shouldn't matter.
768  */
769 static void osd_trans_commit_cb(struct super_block *sb,
770                                 struct ldiskfs_journal_cb_entry *jcb, int error)
771 {
772         struct osd_thandle *oh = container_of0(jcb, struct osd_thandle, ot_jcb);
773         struct thandle     *th  = &oh->ot_super;
774         struct lu_device   *lud = &th->th_dev->dd_lu_dev;
775         struct dt_txn_commit_cb *dcb, *tmp;
776
777         LASSERT(oh->ot_handle == NULL);
778
779         if (error)
780                 CERROR("transaction @0x%p commit error: %d\n", th, error);
781
782         dt_txn_hook_commit(th);
783
784         /* call per-transaction callbacks if any */
785         cfs_list_for_each_entry_safe(dcb, tmp, &oh->ot_dcb_list, dcb_linkage) {
786                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
787                          "commit callback entry: magic=%x name='%s'\n",
788                          dcb->dcb_magic, dcb->dcb_name);
789                 cfs_list_del_init(&dcb->dcb_linkage);
790                 dcb->dcb_func(NULL, th, dcb, error);
791         }
792
793         lu_ref_del_at(&lud->ld_reference, &oh->ot_dev_link, "osd-tx", th);
794         lu_device_put(lud);
795         th->th_dev = NULL;
796
797         lu_context_exit(&th->th_ctx);
798         lu_context_fini(&th->th_ctx);
799         OBD_FREE_PTR(oh);
800 }
801
802 static struct thandle *osd_trans_create(const struct lu_env *env,
803                                         struct dt_device *d)
804 {
805         struct osd_thread_info *oti = osd_oti_get(env);
806         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
807         struct osd_thandle     *oh;
808         struct thandle         *th;
809         ENTRY;
810
811         /* on pending IO in this thread should left from prev. request */
812         LASSERT(cfs_atomic_read(&iobuf->dr_numreqs) == 0);
813
814         th = ERR_PTR(-ENOMEM);
815         OBD_ALLOC_GFP(oh, sizeof *oh, __GFP_IO);
816         if (oh != NULL) {
817                 oh->ot_quota_trans = &oti->oti_quota_trans;
818                 memset(oh->ot_quota_trans, 0, sizeof(*oh->ot_quota_trans));
819                 th = &oh->ot_super;
820                 th->th_dev = d;
821                 th->th_result = 0;
822                 th->th_tags = LCT_TX_HANDLE;
823                 oh->ot_credits = 0;
824                 oti->oti_dev = osd_dt_dev(d);
825                 CFS_INIT_LIST_HEAD(&oh->ot_dcb_list);
826                 osd_th_alloced(oh);
827
828                 memset(oti->oti_declare_ops, 0,
829                                         sizeof(oti->oti_declare_ops));
830                 memset(oti->oti_declare_ops_rb, 0,
831                                         sizeof(oti->oti_declare_ops_rb));
832                 memset(oti->oti_declare_ops_cred, 0,
833                                         sizeof(oti->oti_declare_ops_cred));
834                 oti->oti_rollback = false;
835         }
836         RETURN(th);
837 }
838
839 /*
840  * Concurrency: shouldn't matter.
841  */
842 int osd_trans_start(const struct lu_env *env, struct dt_device *d,
843                     struct thandle *th)
844 {
845         struct osd_thread_info *oti = osd_oti_get(env);
846         struct osd_device  *dev = osd_dt_dev(d);
847         handle_t           *jh;
848         struct osd_thandle *oh;
849         int rc;
850
851         ENTRY;
852
853         LASSERT(current->journal_info == NULL);
854
855         oh = container_of0(th, struct osd_thandle, ot_super);
856         LASSERT(oh != NULL);
857         LASSERT(oh->ot_handle == NULL);
858
859         rc = dt_txn_hook_start(env, d, th);
860         if (rc != 0)
861                 GOTO(out, rc);
862
863         if (unlikely(osd_param_is_not_sane(dev, th))) {
864                 static unsigned long last_printed;
865                 static int last_credits;
866
867                 CWARN("%.16s: too many transaction credits (%d > %d)\n",
868                       LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
869                       oh->ot_credits,
870                       osd_journal(dev)->j_max_transaction_buffers);
871                 CWARN("  create: %u/%u, delete: %u/%u, destroy: %u/%u\n",
872                       oti->oti_declare_ops[OSD_OT_CREATE],
873                       oti->oti_declare_ops_cred[OSD_OT_CREATE],
874                       oti->oti_declare_ops[OSD_OT_DELETE],
875                       oti->oti_declare_ops_cred[OSD_OT_DELETE],
876                       oti->oti_declare_ops[OSD_OT_DESTROY],
877                       oti->oti_declare_ops_cred[OSD_OT_DESTROY]);
878                 CWARN("  attr_set: %u/%u, xattr_set: %u/%u\n",
879                       oti->oti_declare_ops[OSD_OT_ATTR_SET],
880                       oti->oti_declare_ops_cred[OSD_OT_ATTR_SET],
881                       oti->oti_declare_ops[OSD_OT_XATTR_SET],
882                       oti->oti_declare_ops_cred[OSD_OT_XATTR_SET]);
883                 CWARN("  write: %u/%u, punch: %u/%u, quota %u/%u\n",
884                       oti->oti_declare_ops[OSD_OT_WRITE],
885                       oti->oti_declare_ops_cred[OSD_OT_WRITE],
886                       oti->oti_declare_ops[OSD_OT_PUNCH],
887                       oti->oti_declare_ops_cred[OSD_OT_PUNCH],
888                       oti->oti_declare_ops[OSD_OT_QUOTA],
889                       oti->oti_declare_ops_cred[OSD_OT_QUOTA]);
890                 CWARN("  insert: %u/%u, delete: %u/%u\n",
891                       oti->oti_declare_ops[OSD_OT_INSERT],
892                       oti->oti_declare_ops_cred[OSD_OT_INSERT],
893                       oti->oti_declare_ops[OSD_OT_DESTROY],
894                       oti->oti_declare_ops_cred[OSD_OT_DESTROY]);
895                 CWARN("  ref_add: %u/%u, ref_del: %u/%u\n",
896                       oti->oti_declare_ops[OSD_OT_REF_ADD],
897                       oti->oti_declare_ops_cred[OSD_OT_REF_ADD],
898                       oti->oti_declare_ops[OSD_OT_REF_DEL],
899                       oti->oti_declare_ops_cred[OSD_OT_REF_DEL]);
900
901                 if (last_credits != oh->ot_credits &&
902                     time_after(jiffies, last_printed + 60 * HZ)) {
903                         libcfs_debug_dumpstack(NULL);
904                         last_credits = oh->ot_credits;
905                         last_printed = jiffies;
906                 }
907                 /* XXX Limit the credits to 'max_transaction_buffers', and
908                  *     let the underlying filesystem to catch the error if
909                  *     we really need so many credits.
910                  *
911                  *     This should be removed when we can calculate the
912                  *     credits precisely. */
913                 oh->ot_credits = osd_journal(dev)->j_max_transaction_buffers;
914         }
915
916         /*
917          * XXX temporary stuff. Some abstraction layer should
918          * be used.
919          */
920         jh = osd_journal_start_sb(osd_sb(dev), LDISKFS_HT_MISC, oh->ot_credits);
921         osd_th_started(oh);
922         if (!IS_ERR(jh)) {
923                 oh->ot_handle = jh;
924                 LASSERT(oti->oti_txns == 0);
925                 lu_context_init(&th->th_ctx, th->th_tags);
926                 lu_context_enter(&th->th_ctx);
927
928                 lu_device_get(&d->dd_lu_dev);
929                 lu_ref_add_at(&d->dd_lu_dev.ld_reference, &oh->ot_dev_link,
930                               "osd-tx", th);
931                 oti->oti_txns++;
932                 rc = 0;
933         } else {
934                 rc = PTR_ERR(jh);
935         }
936 out:
937         RETURN(rc);
938 }
939
940 static int osd_seq_exists(const struct lu_env *env,
941                               struct osd_device *osd, obd_seq seq)
942 {
943         struct lu_seq_range     *range = &osd_oti_get(env)->oti_seq_range;
944         struct seq_server_site  *ss = osd_seq_site(osd);
945         int                     rc;
946         ENTRY;
947
948         if (ss == NULL)
949                 RETURN(1);
950
951         rc = osd_fld_lookup(env, osd, seq, range);
952         if (rc != 0) {
953                 if (rc != -ENOENT)
954                         CERROR("%s: can't lookup FLD sequence "LPX64
955                                ": rc = %d\n", osd_name(osd), seq, rc);
956                 RETURN(0);
957         }
958
959         RETURN(ss->ss_node_id == range->lsr_index);
960 }
961
962 /*
963  * Concurrency: shouldn't matter.
964  */
965 static int osd_trans_stop(const struct lu_env *env, struct thandle *th)
966 {
967         int                     rc = 0;
968         struct osd_thandle     *oh;
969         struct osd_thread_info *oti = osd_oti_get(env);
970         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
971         struct qsd_instance    *qsd = oti->oti_dev->od_quota_slave;
972         ENTRY;
973
974         oh = container_of0(th, struct osd_thandle, ot_super);
975
976         if (qsd != NULL)
977                 /* inform the quota slave device that the transaction is
978                  * stopping */
979                 qsd_op_end(env, qsd, oh->ot_quota_trans);
980         oh->ot_quota_trans = NULL;
981
982         if (oh->ot_handle != NULL) {
983                 handle_t *hdl = oh->ot_handle;
984
985                 /*
986                  * add commit callback
987                  * notice we don't do this in osd_trans_start()
988                  * as underlying transaction can change during truncate
989                  */
990                 ldiskfs_journal_callback_add(hdl, osd_trans_commit_cb,
991                                          &oh->ot_jcb);
992
993                 LASSERT(oti->oti_txns == 1);
994                 oti->oti_txns--;
995                 rc = dt_txn_hook_stop(env, th);
996                 if (rc != 0)
997                         CERROR("Failure in transaction hook: %d\n", rc);
998
999                 /* hook functions might modify th_sync */
1000                 hdl->h_sync = th->th_sync;
1001
1002                 oh->ot_handle = NULL;
1003                 OSD_CHECK_SLOW_TH(oh, oti->oti_dev,
1004                                   rc = ldiskfs_journal_stop(hdl));
1005                 if (rc != 0)
1006                         CERROR("Failure to stop transaction: %d\n", rc);
1007         } else {
1008                 OBD_FREE_PTR(oh);
1009         }
1010
1011         /* as we want IO to journal and data IO be concurrent, we don't block
1012          * awaiting data IO completion in osd_do_bio(), instead we wait here
1013          * once transaction is submitted to the journal. all reqular requests
1014          * don't do direct IO (except read/write), thus this wait_event becomes
1015          * no-op for them.
1016          *
1017          * IMPORTANT: we have to wait till any IO submited by the thread is
1018          * completed otherwise iobuf may be corrupted by different request
1019          */
1020         wait_event(iobuf->dr_wait,
1021                        cfs_atomic_read(&iobuf->dr_numreqs) == 0);
1022         if (!rc)
1023                 rc = iobuf->dr_error;
1024
1025         RETURN(rc);
1026 }
1027
1028 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
1029 {
1030         struct osd_thandle *oh = container_of0(th, struct osd_thandle,
1031                                                ot_super);
1032
1033         LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
1034         LASSERT(&dcb->dcb_func != NULL);
1035         cfs_list_add(&dcb->dcb_linkage, &oh->ot_dcb_list);
1036
1037         return 0;
1038 }
1039
1040 /*
1041  * Called just before object is freed. Releases all resources except for
1042  * object itself (that is released by osd_object_free()).
1043  *
1044  * Concurrency: no concurrent access is possible that late in object
1045  * life-cycle.
1046  */
1047 static void osd_object_delete(const struct lu_env *env, struct lu_object *l)
1048 {
1049         struct osd_object *obj   = osd_obj(l);
1050         struct inode      *inode = obj->oo_inode;
1051
1052         LINVRNT(osd_invariant(obj));
1053
1054         /*
1055          * If object is unlinked remove fid->ino mapping from object index.
1056          */
1057
1058         osd_index_fini(obj);
1059         if (inode != NULL) {
1060                 struct qsd_instance     *qsd = osd_obj2dev(obj)->od_quota_slave;
1061                 qid_t                    uid = inode->i_uid;
1062                 qid_t                    gid = inode->i_gid;
1063
1064                 iput(inode);
1065                 obj->oo_inode = NULL;
1066
1067                 if (qsd != NULL) {
1068                         struct osd_thread_info  *info = osd_oti_get(env);
1069                         struct lquota_id_info   *qi = &info->oti_qi;
1070
1071                         /* Release granted quota to master if necessary */
1072                         qi->lqi_id.qid_uid = uid;
1073                         qsd_op_adjust(env, qsd, &qi->lqi_id, USRQUOTA);
1074
1075                         qi->lqi_id.qid_uid = gid;
1076                         qsd_op_adjust(env, qsd, &qi->lqi_id, GRPQUOTA);
1077                 }
1078         }
1079 }
1080
1081 /*
1082  * Concurrency: ->loo_object_release() is called under site spin-lock.
1083  */
1084 static void osd_object_release(const struct lu_env *env,
1085                                struct lu_object *l)
1086 {
1087 }
1088
1089 /*
1090  * Concurrency: shouldn't matter.
1091  */
1092 static int osd_object_print(const struct lu_env *env, void *cookie,
1093                             lu_printer_t p, const struct lu_object *l)
1094 {
1095         struct osd_object *o = osd_obj(l);
1096         struct iam_descr  *d;
1097
1098         if (o->oo_dir != NULL)
1099                 d = o->oo_dir->od_container.ic_descr;
1100         else
1101                 d = NULL;
1102         return (*p)(env, cookie,
1103                     LUSTRE_OSD_LDISKFS_NAME"-object@%p(i:%p:%lu/%u)[%s]",
1104                     o, o->oo_inode,
1105                     o->oo_inode ? o->oo_inode->i_ino : 0UL,
1106                     o->oo_inode ? o->oo_inode->i_generation : 0,
1107                     d ? d->id_ops->id_name : "plain");
1108 }
1109
1110 /*
1111  * Concurrency: shouldn't matter.
1112  */
1113 int osd_statfs(const struct lu_env *env, struct dt_device *d,
1114                struct obd_statfs *sfs)
1115 {
1116         struct osd_device  *osd = osd_dt_dev(d);
1117         struct super_block *sb = osd_sb(osd);
1118         struct kstatfs     *ksfs;
1119         int result = 0;
1120
1121         if (unlikely(osd->od_mnt == NULL))
1122                 return -EINPROGRESS;
1123
1124         /* osd_lproc.c call this without env, allocate ksfs for that case */
1125         if (unlikely(env == NULL)) {
1126                 OBD_ALLOC_PTR(ksfs);
1127                 if (ksfs == NULL)
1128                         return -ENOMEM;
1129         } else {
1130                 ksfs = &osd_oti_get(env)->oti_ksfs;
1131         }
1132
1133         spin_lock(&osd->od_osfs_lock);
1134         /* cache 1 second */
1135         if (cfs_time_before_64(osd->od_osfs_age, cfs_time_shift_64(-1))) {
1136                 result = sb->s_op->statfs(sb->s_root, ksfs);
1137                 if (likely(result == 0)) { /* N.B. statfs can't really fail */
1138                         osd->od_osfs_age = cfs_time_current_64();
1139                         statfs_pack(&osd->od_statfs, ksfs);
1140                         if (sb->s_flags & MS_RDONLY)
1141                                 sfs->os_state = OS_STATE_READONLY;
1142                 }
1143         }
1144
1145         if (likely(result == 0))
1146                 *sfs = osd->od_statfs;
1147         spin_unlock(&osd->od_osfs_lock);
1148
1149         if (unlikely(env == NULL))
1150                 OBD_FREE_PTR(ksfs);
1151
1152         return result;
1153 }
1154
1155 /**
1156  * Estimate space needed for file creations. We assume the largest filename
1157  * which is 2^64 - 1, hence a filename of 20 chars.
1158  * This is 28 bytes per object which is 28MB for 1M objects ... no so bad.
1159  */
1160 #ifdef __LDISKFS_DIR_REC_LEN
1161 #define PER_OBJ_USAGE __LDISKFS_DIR_REC_LEN(20)
1162 #else
1163 #define PER_OBJ_USAGE LDISKFS_DIR_REC_LEN(20)
1164 #endif
1165
1166 /*
1167  * Concurrency: doesn't access mutable data.
1168  */
1169 static void osd_conf_get(const struct lu_env *env,
1170                          const struct dt_device *dev,
1171                          struct dt_device_param *param)
1172 {
1173         struct super_block *sb = osd_sb(osd_dt_dev(dev));
1174
1175         /*
1176          * XXX should be taken from not-yet-existing fs abstraction layer.
1177          */
1178         param->ddp_max_name_len = LDISKFS_NAME_LEN;
1179         param->ddp_max_nlink    = LDISKFS_LINK_MAX;
1180         param->ddp_block_shift  = sb->s_blocksize_bits;
1181         param->ddp_mount_type     = LDD_MT_LDISKFS;
1182         param->ddp_maxbytes       = sb->s_maxbytes;
1183         /* Overhead estimate should be fairly accurate, so we really take a tiny
1184          * error margin which also avoids fragmenting the filesystem too much */
1185         param->ddp_grant_reserved = 2; /* end up to be 1.9% after conversion */
1186         /* inode are statically allocated, so per-inode space consumption
1187          * is the space consumed by the directory entry */
1188         param->ddp_inodespace     = PER_OBJ_USAGE;
1189         /* per-fragment overhead to be used by the client code */
1190         param->ddp_grant_frag     = 6 * LDISKFS_BLOCK_SIZE(sb);
1191         param->ddp_mntopts      = 0;
1192         if (test_opt(sb, XATTR_USER))
1193                 param->ddp_mntopts |= MNTOPT_USERXATTR;
1194         if (test_opt(sb, POSIX_ACL))
1195                 param->ddp_mntopts |= MNTOPT_ACL;
1196
1197 #if defined(LDISKFS_FEATURE_INCOMPAT_EA_INODE)
1198         if (LDISKFS_HAS_INCOMPAT_FEATURE(sb, LDISKFS_FEATURE_INCOMPAT_EA_INODE))
1199                 param->ddp_max_ea_size = LDISKFS_XATTR_MAX_LARGE_EA_SIZE;
1200         else
1201 #endif
1202                 param->ddp_max_ea_size = sb->s_blocksize;
1203
1204 }
1205
1206 /*
1207  * Concurrency: shouldn't matter.
1208  */
1209 static int osd_sync(const struct lu_env *env, struct dt_device *d)
1210 {
1211         CDEBUG(D_HA, "syncing OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1212         return ldiskfs_force_commit(osd_sb(osd_dt_dev(d)));
1213 }
1214
1215 /**
1216  * Start commit for OSD device.
1217  *
1218  * An implementation of dt_commit_async method for OSD device.
1219  * Asychronously starts underlayng fs sync and thereby a transaction
1220  * commit.
1221  *
1222  * \param env environment
1223  * \param d dt device
1224  *
1225  * \see dt_device_operations
1226  */
1227 static int osd_commit_async(const struct lu_env *env,
1228                             struct dt_device *d)
1229 {
1230         struct super_block *s = osd_sb(osd_dt_dev(d));
1231         ENTRY;
1232
1233         CDEBUG(D_HA, "async commit OSD %s\n", LUSTRE_OSD_LDISKFS_NAME);
1234         RETURN(s->s_op->sync_fs(s, 0));
1235 }
1236
1237 /*
1238  * Concurrency: shouldn't matter.
1239  */
1240
1241 static int osd_ro(const struct lu_env *env, struct dt_device *d)
1242 {
1243         struct super_block *sb = osd_sb(osd_dt_dev(d));
1244         struct block_device *dev = sb->s_bdev;
1245 #ifdef HAVE_DEV_SET_RDONLY
1246         struct block_device *jdev = LDISKFS_SB(sb)->journal_bdev;
1247         int rc = 0;
1248 #else
1249         int rc = -EOPNOTSUPP;
1250 #endif
1251         ENTRY;
1252
1253 #ifdef HAVE_DEV_SET_RDONLY
1254         CERROR("*** setting %s read-only ***\n", osd_dt_dev(d)->od_svname);
1255
1256         if (jdev && (jdev != dev)) {
1257                 CDEBUG(D_IOCTL | D_HA, "set journal dev %lx rdonly\n",
1258                        (long)jdev);
1259                 dev_set_rdonly(jdev);
1260         }
1261         CDEBUG(D_IOCTL | D_HA, "set dev %lx rdonly\n", (long)dev);
1262         dev_set_rdonly(dev);
1263 #else
1264         CERROR("%s: %lx CANNOT BE SET READONLY: rc = %d\n",
1265                osd_dt_dev(d)->od_svname, (long)dev, rc);
1266 #endif
1267         RETURN(rc);
1268 }
1269
1270 /*
1271  * Concurrency: serialization provided by callers.
1272  */
1273 static int osd_init_capa_ctxt(const struct lu_env *env, struct dt_device *d,
1274                               int mode, unsigned long timeout, __u32 alg,
1275                               struct lustre_capa_key *keys)
1276 {
1277         struct osd_device *dev = osd_dt_dev(d);
1278         ENTRY;
1279
1280         dev->od_fl_capa = mode;
1281         dev->od_capa_timeout = timeout;
1282         dev->od_capa_alg = alg;
1283         dev->od_capa_keys = keys;
1284         RETURN(0);
1285 }
1286
1287 /**
1288  * Note: we do not count into QUOTA here.
1289  * If we mount with --data_journal we may need more.
1290  */
1291 const int osd_dto_credits_noquota[DTO_NR] = {
1292         /**
1293          * Insert/Delete.
1294          * INDEX_EXTRA_TRANS_BLOCKS(8) +
1295          * SINGLEDATA_TRANS_BLOCKS(8)
1296          * XXX Note: maybe iam need more, since iam have more level than
1297          *           EXT3 htree.
1298          */
1299         [DTO_INDEX_INSERT]  = 16,
1300         [DTO_INDEX_DELETE]  = 16,
1301         /**
1302          * Used for OI scrub
1303          */
1304         [DTO_INDEX_UPDATE]  = 16,
1305         /**
1306          * Create a object. The same as create object in EXT3.
1307          * DATA_TRANS_BLOCKS(14) +
1308          * INDEX_EXTRA_BLOCKS(8) +
1309          * 3(inode bits, groups, GDT)
1310          */
1311         [DTO_OBJECT_CREATE] = 25,
1312         /**
1313          * XXX: real credits to be fixed
1314          */
1315         [DTO_OBJECT_DELETE] = 25,
1316         /**
1317          * Attr set credits (inode)
1318          */
1319         [DTO_ATTR_SET_BASE] = 1,
1320         /**
1321          * Xattr set. The same as xattr of EXT3.
1322          * DATA_TRANS_BLOCKS(14)
1323          * XXX Note: in original MDS implmentation INDEX_EXTRA_TRANS_BLOCKS
1324          * are also counted in. Do not know why?
1325          */
1326         [DTO_XATTR_SET]     = 14,
1327         [DTO_LOG_REC]       = 14,
1328         /**
1329          * credits for inode change during write.
1330          */
1331         [DTO_WRITE_BASE]    = 3,
1332         /**
1333          * credits for single block write.
1334          */
1335         [DTO_WRITE_BLOCK]   = 14,
1336         /**
1337          * Attr set credits for chown.
1338          * This is extra credits for setattr, and it is null without quota
1339          */
1340         [DTO_ATTR_SET_CHOWN]= 0
1341 };
1342
1343 static const struct dt_device_operations osd_dt_ops = {
1344         .dt_root_get       = osd_root_get,
1345         .dt_statfs         = osd_statfs,
1346         .dt_trans_create   = osd_trans_create,
1347         .dt_trans_start    = osd_trans_start,
1348         .dt_trans_stop     = osd_trans_stop,
1349         .dt_trans_cb_add   = osd_trans_cb_add,
1350         .dt_conf_get       = osd_conf_get,
1351         .dt_sync           = osd_sync,
1352         .dt_ro             = osd_ro,
1353         .dt_commit_async   = osd_commit_async,
1354         .dt_init_capa_ctxt = osd_init_capa_ctxt,
1355 };
1356
1357 static void osd_object_read_lock(const struct lu_env *env,
1358                                  struct dt_object *dt, unsigned role)
1359 {
1360         struct osd_object *obj = osd_dt_obj(dt);
1361         struct osd_thread_info *oti = osd_oti_get(env);
1362
1363         LINVRNT(osd_invariant(obj));
1364
1365         LASSERT(obj->oo_owner != env);
1366         down_read_nested(&obj->oo_sem, role);
1367
1368         LASSERT(obj->oo_owner == NULL);
1369         oti->oti_r_locks++;
1370 }
1371
1372 static void osd_object_write_lock(const struct lu_env *env,
1373                                   struct dt_object *dt, unsigned role)
1374 {
1375         struct osd_object *obj = osd_dt_obj(dt);
1376         struct osd_thread_info *oti = osd_oti_get(env);
1377
1378         LINVRNT(osd_invariant(obj));
1379
1380         LASSERT(obj->oo_owner != env);
1381         down_write_nested(&obj->oo_sem, role);
1382
1383         LASSERT(obj->oo_owner == NULL);
1384         obj->oo_owner = env;
1385         oti->oti_w_locks++;
1386 }
1387
1388 static void osd_object_read_unlock(const struct lu_env *env,
1389                                    struct dt_object *dt)
1390 {
1391         struct osd_object *obj = osd_dt_obj(dt);
1392         struct osd_thread_info *oti = osd_oti_get(env);
1393
1394         LINVRNT(osd_invariant(obj));
1395
1396         LASSERT(oti->oti_r_locks > 0);
1397         oti->oti_r_locks--;
1398         up_read(&obj->oo_sem);
1399 }
1400
1401 static void osd_object_write_unlock(const struct lu_env *env,
1402                                     struct dt_object *dt)
1403 {
1404         struct osd_object *obj = osd_dt_obj(dt);
1405         struct osd_thread_info *oti = osd_oti_get(env);
1406
1407         LINVRNT(osd_invariant(obj));
1408
1409         LASSERT(obj->oo_owner == env);
1410         LASSERT(oti->oti_w_locks > 0);
1411         oti->oti_w_locks--;
1412         obj->oo_owner = NULL;
1413         up_write(&obj->oo_sem);
1414 }
1415
1416 static int osd_object_write_locked(const struct lu_env *env,
1417                                    struct dt_object *dt)
1418 {
1419         struct osd_object *obj = osd_dt_obj(dt);
1420
1421         LINVRNT(osd_invariant(obj));
1422
1423         return obj->oo_owner == env;
1424 }
1425
1426 static int capa_is_sane(const struct lu_env *env,
1427                         struct osd_device *dev,
1428                         struct lustre_capa *capa,
1429                         struct lustre_capa_key *keys)
1430 {
1431         struct osd_thread_info *oti = osd_oti_get(env);
1432         struct lustre_capa *tcapa = &oti->oti_capa;
1433         struct obd_capa *oc;
1434         int i, rc = 0;
1435         ENTRY;
1436
1437         oc = capa_lookup(dev->od_capa_hash, capa, 0);
1438         if (oc) {
1439                 if (capa_is_expired(oc)) {
1440                         DEBUG_CAPA(D_ERROR, capa, "expired");
1441                         rc = -ESTALE;
1442                 }
1443                 capa_put(oc);
1444                 RETURN(rc);
1445         }
1446
1447         if (capa_is_expired_sec(capa)) {
1448                 DEBUG_CAPA(D_ERROR, capa, "expired");
1449                 RETURN(-ESTALE);
1450         }
1451
1452         spin_lock(&capa_lock);
1453         for (i = 0; i < 2; i++) {
1454                 if (keys[i].lk_keyid == capa->lc_keyid) {
1455                         oti->oti_capa_key = keys[i];
1456                         break;
1457                 }
1458         }
1459         spin_unlock(&capa_lock);
1460
1461         if (i == 2) {
1462                 DEBUG_CAPA(D_ERROR, capa, "no matched capa key");
1463                 RETURN(-ESTALE);
1464         }
1465
1466         rc = capa_hmac(tcapa->lc_hmac, capa, oti->oti_capa_key.lk_key);
1467         if (rc)
1468                 RETURN(rc);
1469
1470         if (memcmp(tcapa->lc_hmac, capa->lc_hmac, sizeof(capa->lc_hmac))) {
1471                 DEBUG_CAPA(D_ERROR, capa, "HMAC mismatch");
1472                 RETURN(-EACCES);
1473         }
1474
1475         oc = capa_add(dev->od_capa_hash, capa);
1476         capa_put(oc);
1477
1478         RETURN(0);
1479 }
1480
1481 int osd_object_auth(const struct lu_env *env, struct dt_object *dt,
1482                     struct lustre_capa *capa, __u64 opc)
1483 {
1484         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
1485         struct osd_device *osd = osd_dev(dt->do_lu.lo_dev);
1486         struct lu_capainfo *lci;
1487         int rc;
1488
1489         if (!osd->od_fl_capa)
1490                 return 0;
1491
1492         if (capa == BYPASS_CAPA)
1493                 return 0;
1494
1495         lci = lu_capainfo_get(env);
1496         if (unlikely(lci == NULL))
1497                 return 0;
1498
1499         if (lci->lci_auth == LC_ID_NONE)
1500                 return 0;
1501
1502         if (capa == NULL) {
1503                 CERROR("%s: no capability provided for FID "DFID": rc = %d\n",
1504                        osd_name(osd), PFID(fid), -EACCES);
1505                 return -EACCES;
1506         }
1507
1508         if (!lu_fid_eq(fid, &capa->lc_fid)) {
1509                 DEBUG_CAPA(D_ERROR, capa, "fid "DFID" mismatch with",
1510                            PFID(fid));
1511                 return -EACCES;
1512         }
1513
1514         if (!capa_opc_supported(capa, opc)) {
1515                 DEBUG_CAPA(D_ERROR, capa, "opc "LPX64" not supported by", opc);
1516                 return -EACCES;
1517         }
1518
1519         rc = capa_is_sane(env, osd, capa, osd->od_capa_keys);
1520         if (rc != 0) {
1521                 DEBUG_CAPA(D_ERROR, capa, "insane: rc = %d", rc);
1522                 return -EACCES;
1523         }
1524
1525         return 0;
1526 }
1527
1528 static struct timespec *osd_inode_time(const struct lu_env *env,
1529                                        struct inode *inode, __u64 seconds)
1530 {
1531         struct osd_thread_info  *oti = osd_oti_get(env);
1532         struct timespec         *t   = &oti->oti_time;
1533
1534         t->tv_sec = seconds;
1535         t->tv_nsec = 0;
1536         *t = timespec_trunc(*t, inode->i_sb->s_time_gran);
1537         return t;
1538 }
1539
1540
1541 static void osd_inode_getattr(const struct lu_env *env,
1542                               struct inode *inode, struct lu_attr *attr)
1543 {
1544         attr->la_valid      |= LA_ATIME | LA_MTIME | LA_CTIME | LA_MODE |
1545                                LA_SIZE | LA_BLOCKS | LA_UID | LA_GID |
1546                                LA_FLAGS | LA_NLINK | LA_RDEV | LA_BLKSIZE |
1547                                LA_TYPE;
1548
1549         attr->la_atime      = LTIME_S(inode->i_atime);
1550         attr->la_mtime      = LTIME_S(inode->i_mtime);
1551         attr->la_ctime      = LTIME_S(inode->i_ctime);
1552         attr->la_mode       = inode->i_mode;
1553         attr->la_size       = i_size_read(inode);
1554         attr->la_blocks     = inode->i_blocks;
1555         attr->la_uid        = inode->i_uid;
1556         attr->la_gid        = inode->i_gid;
1557         attr->la_flags      = LDISKFS_I(inode)->i_flags;
1558         attr->la_nlink      = inode->i_nlink;
1559         attr->la_rdev       = inode->i_rdev;
1560         attr->la_blksize    = 1 << inode->i_blkbits;
1561         attr->la_blkbits    = inode->i_blkbits;
1562 }
1563
1564 static int osd_attr_get(const struct lu_env *env,
1565                         struct dt_object *dt,
1566                         struct lu_attr *attr,
1567                         struct lustre_capa *capa)
1568 {
1569         struct osd_object *obj = osd_dt_obj(dt);
1570
1571         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
1572         LINVRNT(osd_invariant(obj));
1573
1574         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
1575                 return -EACCES;
1576
1577         spin_lock(&obj->oo_guard);
1578         osd_inode_getattr(env, obj->oo_inode, attr);
1579         spin_unlock(&obj->oo_guard);
1580         return 0;
1581 }
1582
1583 static int osd_declare_attr_set(const struct lu_env *env,
1584                                 struct dt_object *dt,
1585                                 const struct lu_attr *attr,
1586                                 struct thandle *handle)
1587 {
1588         struct osd_thandle     *oh;
1589         struct osd_object      *obj;
1590         struct osd_thread_info *info = osd_oti_get(env);
1591         struct lquota_id_info  *qi = &info->oti_qi;
1592         long long               bspace;
1593         int                     rc = 0;
1594         bool                    allocated;
1595         ENTRY;
1596
1597         LASSERT(dt != NULL);
1598         LASSERT(handle != NULL);
1599
1600         obj = osd_dt_obj(dt);
1601         LASSERT(osd_invariant(obj));
1602
1603         oh = container_of0(handle, struct osd_thandle, ot_super);
1604         LASSERT(oh->ot_handle == NULL);
1605
1606         osd_trans_declare_op(env, oh, OSD_OT_ATTR_SET,
1607                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
1608
1609         if (attr == NULL || obj->oo_inode == NULL)
1610                 RETURN(rc);
1611
1612         bspace   = obj->oo_inode->i_blocks;
1613         bspace <<= obj->oo_inode->i_sb->s_blocksize_bits;
1614         bspace   = toqb(bspace);
1615
1616         /* Changing ownership is always preformed by super user, it should not
1617          * fail with EDQUOT.
1618          *
1619          * We still need to call the osd_declare_qid() to calculate the journal
1620          * credits for updating quota accounting files and to trigger quota
1621          * space adjustment once the operation is completed.*/
1622         if ((attr->la_valid & LA_UID) != 0 &&
1623              attr->la_uid != obj->oo_inode->i_uid) {
1624                 qi->lqi_type = USRQUOTA;
1625
1626                 /* inode accounting */
1627                 qi->lqi_is_blk = false;
1628
1629                 /* one more inode for the new owner ... */
1630                 qi->lqi_id.qid_uid = attr->la_uid;
1631                 qi->lqi_space      = 1;
1632                 allocated = (attr->la_uid == 0) ? true : false;
1633                 rc = osd_declare_qid(env, oh, qi, allocated, NULL);
1634                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1635                         rc = 0;
1636                 if (rc)
1637                         RETURN(rc);
1638
1639                 /* and one less inode for the current uid */
1640                 qi->lqi_id.qid_uid = obj->oo_inode->i_uid;
1641                 qi->lqi_space      = -1;
1642                 rc = osd_declare_qid(env, oh, qi, true, NULL);
1643                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1644                         rc = 0;
1645                 if (rc)
1646                         RETURN(rc);
1647
1648                 /* block accounting */
1649                 qi->lqi_is_blk = true;
1650
1651                 /* more blocks for the new owner ... */
1652                 qi->lqi_id.qid_uid = attr->la_uid;
1653                 qi->lqi_space      = bspace;
1654                 allocated = (attr->la_uid == 0) ? true : false;
1655                 rc = osd_declare_qid(env, oh, qi, allocated, NULL);
1656                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1657                         rc = 0;
1658                 if (rc)
1659                         RETURN(rc);
1660
1661                 /* and finally less blocks for the current owner */
1662                 qi->lqi_id.qid_uid = obj->oo_inode->i_uid;
1663                 qi->lqi_space      = -bspace;
1664                 rc = osd_declare_qid(env, oh, qi, true, NULL);
1665                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1666                         rc = 0;
1667                 if (rc)
1668                         RETURN(rc);
1669         }
1670
1671         if (attr->la_valid & LA_GID &&
1672             attr->la_gid != obj->oo_inode->i_gid) {
1673                 qi->lqi_type = GRPQUOTA;
1674
1675                 /* inode accounting */
1676                 qi->lqi_is_blk = false;
1677
1678                 /* one more inode for the new group owner ... */
1679                 qi->lqi_id.qid_gid = attr->la_gid;
1680                 qi->lqi_space      = 1;
1681                 allocated = (attr->la_gid == 0) ? true : false;
1682                 rc = osd_declare_qid(env, oh, qi, allocated, NULL);
1683                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1684                         rc = 0;
1685                 if (rc)
1686                         RETURN(rc);
1687
1688                 /* and one less inode for the current gid */
1689                 qi->lqi_id.qid_gid = obj->oo_inode->i_gid;
1690                 qi->lqi_space      = -1;
1691                 rc = osd_declare_qid(env, oh, qi, true, NULL);
1692                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1693                         rc = 0;
1694                 if (rc)
1695                         RETURN(rc);
1696
1697                 /* block accounting */
1698                 qi->lqi_is_blk = true;
1699
1700                 /* more blocks for the new owner ... */
1701                 qi->lqi_id.qid_gid = attr->la_gid;
1702                 qi->lqi_space      = bspace;
1703                 allocated = (attr->la_gid == 0) ? true : false;
1704                 rc = osd_declare_qid(env, oh, qi, allocated, NULL);
1705                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1706                         rc = 0;
1707                 if (rc)
1708                         RETURN(rc);
1709
1710                 /* and finally less blocks for the current owner */
1711                 qi->lqi_id.qid_gid = obj->oo_inode->i_gid;
1712                 qi->lqi_space      = -bspace;
1713                 rc = osd_declare_qid(env, oh, qi, true, NULL);
1714                 if (rc == -EDQUOT || rc == -EINPROGRESS)
1715                         rc = 0;
1716                 if (rc)
1717                         RETURN(rc);
1718         }
1719
1720         RETURN(rc);
1721 }
1722
1723 static int osd_inode_setattr(const struct lu_env *env,
1724                              struct inode *inode, const struct lu_attr *attr)
1725 {
1726         __u64 bits;
1727
1728         bits = attr->la_valid;
1729
1730         if (bits & LA_ATIME)
1731                 inode->i_atime  = *osd_inode_time(env, inode, attr->la_atime);
1732         if (bits & LA_CTIME)
1733                 inode->i_ctime  = *osd_inode_time(env, inode, attr->la_ctime);
1734         if (bits & LA_MTIME)
1735                 inode->i_mtime  = *osd_inode_time(env, inode, attr->la_mtime);
1736         if (bits & LA_SIZE) {
1737                 LDISKFS_I(inode)->i_disksize = attr->la_size;
1738                 i_size_write(inode, attr->la_size);
1739         }
1740
1741 #if 0
1742         /* OSD should not change "i_blocks" which is used by quota.
1743          * "i_blocks" should be changed by ldiskfs only. */
1744         if (bits & LA_BLOCKS)
1745                 inode->i_blocks = attr->la_blocks;
1746 #endif
1747         if (bits & LA_MODE)
1748                 inode->i_mode   = (inode->i_mode & S_IFMT) |
1749                         (attr->la_mode & ~S_IFMT);
1750         if (bits & LA_UID)
1751                 inode->i_uid    = attr->la_uid;
1752         if (bits & LA_GID)
1753                 inode->i_gid    = attr->la_gid;
1754         if (bits & LA_NLINK)
1755                 set_nlink(inode, attr->la_nlink);
1756         if (bits & LA_RDEV)
1757                 inode->i_rdev   = attr->la_rdev;
1758
1759         if (bits & LA_FLAGS) {
1760                 /* always keep S_NOCMTIME */
1761                 inode->i_flags = ll_ext_to_inode_flags(attr->la_flags) |
1762                                  S_NOCMTIME;
1763         }
1764         return 0;
1765 }
1766
1767 static int osd_quota_transfer(struct inode *inode, const struct lu_attr *attr)
1768 {
1769         if ((attr->la_valid & LA_UID && attr->la_uid != inode->i_uid) ||
1770             (attr->la_valid & LA_GID && attr->la_gid != inode->i_gid)) {
1771                 struct iattr    iattr;
1772                 int             rc;
1773
1774                 iattr.ia_valid = 0;
1775                 if (attr->la_valid & LA_UID)
1776                         iattr.ia_valid |= ATTR_UID;
1777                 if (attr->la_valid & LA_GID)
1778                         iattr.ia_valid |= ATTR_GID;
1779                 iattr.ia_uid = attr->la_uid;
1780                 iattr.ia_gid = attr->la_gid;
1781
1782                 rc = ll_vfs_dq_transfer(inode, &iattr);
1783                 if (rc) {
1784                         CERROR("%s: quota transfer failed: rc = %d. Is quota "
1785                                "enforcement enabled on the ldiskfs filesystem?",
1786                                inode->i_sb->s_id, rc);
1787                         return rc;
1788                 }
1789         }
1790         return 0;
1791 }
1792
1793 static int osd_attr_set(const struct lu_env *env,
1794                         struct dt_object *dt,
1795                         const struct lu_attr *attr,
1796                         struct thandle *handle,
1797                         struct lustre_capa *capa)
1798 {
1799         struct osd_object *obj = osd_dt_obj(dt);
1800         struct inode      *inode;
1801         int rc;
1802
1803         LASSERT(handle != NULL);
1804         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
1805         LASSERT(osd_invariant(obj));
1806
1807         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
1808                 return -EACCES;
1809
1810         osd_trans_exec_op(env, handle, OSD_OT_ATTR_SET);
1811
1812         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FID_MAPPING)) {
1813                 struct osd_thread_info  *oti  = osd_oti_get(env);
1814                 const struct lu_fid     *fid0 = lu_object_fid(&dt->do_lu);
1815                 struct lu_fid           *fid1 = &oti->oti_fid;
1816                 struct osd_inode_id     *id   = &oti->oti_id;
1817                 struct iam_path_descr   *ipd;
1818                 struct iam_container    *bag;
1819                 struct osd_thandle      *oh;
1820                 int                      rc;
1821
1822                 fid_cpu_to_be(fid1, fid0);
1823                 memset(id, 1, sizeof(*id));
1824                 bag = &osd_fid2oi(osd_dev(dt->do_lu.lo_dev),
1825                                   fid0)->oi_dir.od_container;
1826                 ipd = osd_idx_ipd_get(env, bag);
1827                 if (unlikely(ipd == NULL))
1828                         RETURN(-ENOMEM);
1829
1830                 oh = container_of0(handle, struct osd_thandle, ot_super);
1831                 rc = iam_update(oh->ot_handle, bag, (const struct iam_key *)fid1,
1832                                 (const struct iam_rec *)id, ipd);
1833                 osd_ipd_put(env, bag, ipd);
1834                 return(rc > 0 ? 0 : rc);
1835         }
1836
1837         inode = obj->oo_inode;
1838         ll_vfs_dq_init(inode);
1839
1840         rc = osd_quota_transfer(inode, attr);
1841         if (rc)
1842                 return rc;
1843
1844         spin_lock(&obj->oo_guard);
1845         rc = osd_inode_setattr(env, inode, attr);
1846         spin_unlock(&obj->oo_guard);
1847
1848         if (!rc)
1849                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
1850         return rc;
1851 }
1852
1853 struct dentry *osd_child_dentry_get(const struct lu_env *env,
1854                                     struct osd_object *obj,
1855                                     const char *name, const int namelen)
1856 {
1857         return osd_child_dentry_by_inode(env, obj->oo_inode, name, namelen);
1858 }
1859
1860 static int osd_mkfile(struct osd_thread_info *info, struct osd_object *obj,
1861                       umode_t mode, struct dt_allocation_hint *hint,
1862                       struct thandle *th)
1863 {
1864         int result;
1865         struct osd_device  *osd = osd_obj2dev(obj);
1866         struct osd_thandle *oth;
1867         struct dt_object   *parent = NULL;
1868         struct inode       *inode;
1869
1870         LINVRNT(osd_invariant(obj));
1871         LASSERT(obj->oo_inode == NULL);
1872         LASSERT(obj->oo_hl_head == NULL);
1873
1874         if (S_ISDIR(mode) && ldiskfs_pdo) {
1875                 obj->oo_hl_head =ldiskfs_htree_lock_head_alloc(HTREE_HBITS_DEF);
1876                 if (obj->oo_hl_head == NULL)
1877                         return -ENOMEM;
1878         }
1879
1880         oth = container_of(th, struct osd_thandle, ot_super);
1881         LASSERT(oth->ot_handle->h_transaction != NULL);
1882
1883         if (hint && hint->dah_parent)
1884                 parent = hint->dah_parent;
1885
1886         inode = ldiskfs_create_inode(oth->ot_handle,
1887                                      parent ? osd_dt_obj(parent)->oo_inode :
1888                                               osd_sb(osd)->s_root->d_inode,
1889                                      mode);
1890         if (!IS_ERR(inode)) {
1891                 /* Do not update file c/mtime in ldiskfs.
1892                  * NB: don't need any lock because no contention at this
1893                  * early stage */
1894                 inode->i_flags |= S_NOCMTIME;
1895
1896                 /* For new created object, it must be consistent,
1897                  * and it is unnecessary to scrub against it. */
1898                 ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NOSCRUB);
1899                 obj->oo_inode = inode;
1900                 result = 0;
1901         } else {
1902                 if (obj->oo_hl_head != NULL) {
1903                         ldiskfs_htree_lock_head_free(obj->oo_hl_head);
1904                         obj->oo_hl_head = NULL;
1905                 }
1906                 result = PTR_ERR(inode);
1907         }
1908         LINVRNT(osd_invariant(obj));
1909         return result;
1910 }
1911
1912 enum {
1913         OSD_NAME_LEN = 255
1914 };
1915
1916 static int osd_mkdir(struct osd_thread_info *info, struct osd_object *obj,
1917                      struct lu_attr *attr,
1918                      struct dt_allocation_hint *hint,
1919                      struct dt_object_format *dof,
1920                      struct thandle *th)
1921 {
1922         int result;
1923         struct osd_thandle *oth;
1924         __u32 mode = (attr->la_mode & (S_IFMT | S_IRWXUGO | S_ISVTX));
1925
1926         LASSERT(S_ISDIR(attr->la_mode));
1927
1928         oth = container_of(th, struct osd_thandle, ot_super);
1929         LASSERT(oth->ot_handle->h_transaction != NULL);
1930         result = osd_mkfile(info, obj, mode, hint, th);
1931
1932         return result;
1933 }
1934
1935 static int osd_mk_index(struct osd_thread_info *info, struct osd_object *obj,
1936                         struct lu_attr *attr,
1937                         struct dt_allocation_hint *hint,
1938                         struct dt_object_format *dof,
1939                         struct thandle *th)
1940 {
1941         int result;
1942         struct osd_thandle *oth;
1943         const struct dt_index_features *feat = dof->u.dof_idx.di_feat;
1944
1945         __u32 mode = (attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX));
1946
1947         LASSERT(S_ISREG(attr->la_mode));
1948
1949         oth = container_of(th, struct osd_thandle, ot_super);
1950         LASSERT(oth->ot_handle->h_transaction != NULL);
1951
1952         result = osd_mkfile(info, obj, mode, hint, th);
1953         if (result == 0) {
1954                 LASSERT(obj->oo_inode != NULL);
1955                 if (feat->dif_flags & DT_IND_VARKEY)
1956                         result = iam_lvar_create(obj->oo_inode,
1957                                                  feat->dif_keysize_max,
1958                                                  feat->dif_ptrsize,
1959                                                  feat->dif_recsize_max,
1960                                                  oth->ot_handle);
1961                 else
1962                         result = iam_lfix_create(obj->oo_inode,
1963                                                  feat->dif_keysize_max,
1964                                                  feat->dif_ptrsize,
1965                                                  feat->dif_recsize_max,
1966                                                  oth->ot_handle);
1967
1968         }
1969         return result;
1970 }
1971
1972 static int osd_mkreg(struct osd_thread_info *info, struct osd_object *obj,
1973                      struct lu_attr *attr,
1974                      struct dt_allocation_hint *hint,
1975                      struct dt_object_format *dof,
1976                      struct thandle *th)
1977 {
1978         LASSERT(S_ISREG(attr->la_mode));
1979         return osd_mkfile(info, obj, (attr->la_mode &
1980                                (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
1981 }
1982
1983 static int osd_mksym(struct osd_thread_info *info, struct osd_object *obj,
1984                      struct lu_attr *attr,
1985                      struct dt_allocation_hint *hint,
1986                      struct dt_object_format *dof,
1987                      struct thandle *th)
1988 {
1989         LASSERT(S_ISLNK(attr->la_mode));
1990         return osd_mkfile(info, obj, (attr->la_mode &
1991                               (S_IFMT | S_IALLUGO | S_ISVTX)), hint, th);
1992 }
1993
1994 static int osd_mknod(struct osd_thread_info *info, struct osd_object *obj,
1995                      struct lu_attr *attr,
1996                      struct dt_allocation_hint *hint,
1997                      struct dt_object_format *dof,
1998                      struct thandle *th)
1999 {
2000         umode_t mode = attr->la_mode & (S_IFMT | S_IALLUGO | S_ISVTX);
2001         int result;
2002
2003         LINVRNT(osd_invariant(obj));
2004         LASSERT(obj->oo_inode == NULL);
2005         LASSERT(S_ISCHR(mode) || S_ISBLK(mode) ||
2006                 S_ISFIFO(mode) || S_ISSOCK(mode));
2007
2008         result = osd_mkfile(info, obj, mode, hint, th);
2009         if (result == 0) {
2010                 LASSERT(obj->oo_inode != NULL);
2011                 /*
2012                  * This inode should be marked dirty for i_rdev.  Currently
2013                  * that is done in the osd_attr_init().
2014                  */
2015                 init_special_inode(obj->oo_inode, obj->oo_inode->i_mode,
2016                                    attr->la_rdev);
2017         }
2018         LINVRNT(osd_invariant(obj));
2019         return result;
2020 }
2021
2022 typedef int (*osd_obj_type_f)(struct osd_thread_info *, struct osd_object *,
2023                               struct lu_attr *,
2024                               struct dt_allocation_hint *hint,
2025                               struct dt_object_format *dof,
2026                               struct thandle *);
2027
2028 static osd_obj_type_f osd_create_type_f(enum dt_format_type type)
2029 {
2030         osd_obj_type_f result;
2031
2032         switch (type) {
2033         case DFT_DIR:
2034                 result = osd_mkdir;
2035                 break;
2036         case DFT_REGULAR:
2037                 result = osd_mkreg;
2038                 break;
2039         case DFT_SYM:
2040                 result = osd_mksym;
2041                 break;
2042         case DFT_NODE:
2043                 result = osd_mknod;
2044                 break;
2045         case DFT_INDEX:
2046                 result = osd_mk_index;
2047                 break;
2048
2049         default:
2050                 LBUG();
2051                 break;
2052         }
2053         return result;
2054 }
2055
2056
2057 static void osd_ah_init(const struct lu_env *env, struct dt_allocation_hint *ah,
2058                         struct dt_object *parent, struct dt_object *child,
2059                         umode_t child_mode)
2060 {
2061         LASSERT(ah);
2062
2063         memset(ah, 0, sizeof(*ah));
2064         ah->dah_parent = parent;
2065         ah->dah_mode = child_mode;
2066 }
2067
2068 static void osd_attr_init(struct osd_thread_info *info, struct osd_object *obj,
2069                           struct lu_attr *attr, struct dt_object_format *dof)
2070 {
2071         struct inode   *inode = obj->oo_inode;
2072         __u64           valid = attr->la_valid;
2073         int             result;
2074
2075         attr->la_valid &= ~(LA_TYPE | LA_MODE);
2076
2077         if (dof->dof_type != DFT_NODE)
2078                 attr->la_valid &= ~LA_RDEV;
2079         if ((valid & LA_ATIME) && (attr->la_atime == LTIME_S(inode->i_atime)))
2080                 attr->la_valid &= ~LA_ATIME;
2081         if ((valid & LA_CTIME) && (attr->la_ctime == LTIME_S(inode->i_ctime)))
2082                 attr->la_valid &= ~LA_CTIME;
2083         if ((valid & LA_MTIME) && (attr->la_mtime == LTIME_S(inode->i_mtime)))
2084                 attr->la_valid &= ~LA_MTIME;
2085
2086         result = osd_quota_transfer(inode, attr);
2087         if (result)
2088                 return;
2089
2090         if (attr->la_valid != 0) {
2091                 result = osd_inode_setattr(info->oti_env, inode, attr);
2092                 /*
2093                  * The osd_inode_setattr() should always succeed here.  The
2094                  * only error that could be returned is EDQUOT when we are
2095                  * trying to change the UID or GID of the inode. However, this
2096                  * should not happen since quota enforcement is no longer
2097                  * enabled on ldiskfs (lquota takes care of it).
2098                  */
2099                 LASSERTF(result == 0, "%d", result);
2100                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2101         }
2102
2103         attr->la_valid = valid;
2104 }
2105
2106 /**
2107  * Helper function for osd_object_create()
2108  *
2109  * \retval 0, on success
2110  */
2111 static int __osd_object_create(struct osd_thread_info *info,
2112                                struct osd_object *obj, struct lu_attr *attr,
2113                                struct dt_allocation_hint *hint,
2114                                struct dt_object_format *dof,
2115                                struct thandle *th)
2116 {
2117         int     result;
2118         __u32   umask;
2119
2120         /* we drop umask so that permissions we pass are not affected */
2121         umask = current->fs->umask;
2122         current->fs->umask = 0;
2123
2124         result = osd_create_type_f(dof->dof_type)(info, obj, attr, hint, dof,
2125                                                   th);
2126         if (result == 0) {
2127                 osd_attr_init(info, obj, attr, dof);
2128                 osd_object_init0(obj);
2129                 /* bz 24037 */
2130                 if (obj->oo_inode && (obj->oo_inode->i_state & I_NEW))
2131                         unlock_new_inode(obj->oo_inode);
2132         }
2133
2134         /* restore previous umask value */
2135         current->fs->umask = umask;
2136
2137         return result;
2138 }
2139
2140 /**
2141  * Helper function for osd_object_create()
2142  *
2143  * \retval 0, on success
2144  */
2145 static int __osd_oi_insert(const struct lu_env *env, struct osd_object *obj,
2146                            const struct lu_fid *fid, struct thandle *th)
2147 {
2148         struct osd_thread_info *info = osd_oti_get(env);
2149         struct osd_inode_id    *id   = &info->oti_id;
2150         struct osd_device      *osd  = osd_obj2dev(obj);
2151
2152         LASSERT(obj->oo_inode != NULL);
2153
2154         osd_id_gen(id, obj->oo_inode->i_ino, obj->oo_inode->i_generation);
2155         return osd_oi_insert(info, osd, fid, id, th, OI_CHECK_FLD);
2156 }
2157
2158 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
2159                    obd_seq seq, struct lu_seq_range *range)
2160 {
2161         struct seq_server_site  *ss = osd_seq_site(osd);
2162
2163         if (fid_seq_is_idif(seq)) {
2164                 fld_range_set_ost(range);
2165                 range->lsr_index = idif_ost_idx(seq);
2166                 return 0;
2167         }
2168
2169         if (!fid_seq_in_fldb(seq)) {
2170                 fld_range_set_mdt(range);
2171                 if (ss != NULL)
2172                         /* FIXME: If ss is NULL, it suppose not get lsr_index
2173                          * at all */
2174                         range->lsr_index = ss->ss_node_id;
2175                 return 0;
2176         }
2177
2178         LASSERT(ss != NULL);
2179         fld_range_set_any(range);
2180         /* OSD will only do local fld lookup */
2181         return fld_local_lookup(env, ss->ss_server_fld, seq, range);
2182 }
2183
2184 /*
2185  * Concurrency: no external locking is necessary.
2186  */
2187 static int osd_declare_object_create(const struct lu_env *env,
2188                                      struct dt_object *dt,
2189                                      struct lu_attr *attr,
2190                                      struct dt_allocation_hint *hint,
2191                                      struct dt_object_format *dof,
2192                                      struct thandle *handle)
2193 {
2194         struct osd_thandle      *oh;
2195         int                      rc;
2196         ENTRY;
2197
2198         LASSERT(handle != NULL);
2199
2200         oh = container_of0(handle, struct osd_thandle, ot_super);
2201         LASSERT(oh->ot_handle == NULL);
2202
2203         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
2204                              osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
2205         if (!fid_is_on_ost(osd_oti_get(env), osd_dt_dev(handle->th_dev),
2206                            lu_object_fid(&dt->do_lu), OI_CHECK_FLD))
2207                 /* Reuse idle OI block may cause additional one OI block
2208                  * to be changed. */
2209                 osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2210                                 osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
2211
2212         /* If this is directory, then we expect . and .. to be inserted as
2213          * well. The one directory block always needs to be created for the
2214          * directory, so we could use DTO_WRITE_BASE here (GDT, block bitmap,
2215          * block), there is no danger of needing a tree for the first block.
2216          */
2217         if (attr && S_ISDIR(attr->la_mode)) {
2218                 osd_trans_declare_op(env, oh, OSD_OT_INSERT,
2219                                      osd_dto_credits_noquota[DTO_WRITE_BASE]);
2220                 osd_trans_declare_op(env, oh, OSD_OT_INSERT, 0);
2221         }
2222
2223         if (!attr)
2224                 RETURN(0);
2225
2226         rc = osd_declare_inode_qid(env, attr->la_uid, attr->la_gid, 1, oh,
2227                                    false, false, NULL, false);
2228         if (rc != 0)
2229                 RETURN(rc);
2230
2231         RETURN(rc);
2232 }
2233
2234 static int osd_object_create(const struct lu_env *env, struct dt_object *dt,
2235                              struct lu_attr *attr,
2236                              struct dt_allocation_hint *hint,
2237                              struct dt_object_format *dof,
2238                              struct thandle *th)
2239 {
2240         const struct lu_fid    *fid    = lu_object_fid(&dt->do_lu);
2241         struct osd_object      *obj    = osd_dt_obj(dt);
2242         struct osd_thread_info *info   = osd_oti_get(env);
2243         int result;
2244
2245         ENTRY;
2246
2247         LINVRNT(osd_invariant(obj));
2248         LASSERT(!dt_object_exists(dt) && !dt_object_remote(dt));
2249         LASSERT(osd_write_locked(env, obj));
2250         LASSERT(th != NULL);
2251
2252         if (unlikely(fid_is_acct(fid)))
2253                 /* Quota files can't be created from the kernel any more,
2254                  * 'tune2fs -O quota' will take care of creating them */
2255                 RETURN(-EPERM);
2256
2257         osd_trans_exec_op(env, th, OSD_OT_CREATE);
2258         osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2259
2260         result = __osd_object_create(info, obj, attr, hint, dof, th);
2261         if (result == 0)
2262                 result = __osd_oi_insert(env, obj, fid, th);
2263
2264         LASSERT(ergo(result == 0,
2265                      dt_object_exists(dt) && !dt_object_remote(dt)));
2266
2267         LASSERT(osd_invariant(obj));
2268         RETURN(result);
2269 }
2270
2271 /**
2272  * Called to destroy on-disk representation of the object
2273  *
2274  * Concurrency: must be locked
2275  */
2276 static int osd_declare_object_destroy(const struct lu_env *env,
2277                                       struct dt_object *dt,
2278                                       struct thandle *th)
2279 {
2280         struct osd_object  *obj = osd_dt_obj(dt);
2281         struct inode       *inode = obj->oo_inode;
2282         struct osd_thandle *oh;
2283         int                 rc;
2284         ENTRY;
2285
2286         oh = container_of0(th, struct osd_thandle, ot_super);
2287         LASSERT(oh->ot_handle == NULL);
2288         LASSERT(inode);
2289
2290         osd_trans_declare_op(env, oh, OSD_OT_DESTROY,
2291                              osd_dto_credits_noquota[DTO_OBJECT_DELETE]);
2292         /* Recycle idle OI leaf may cause additional three OI blocks
2293          * to be changed. */
2294         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
2295                              osd_dto_credits_noquota[DTO_INDEX_DELETE] + 3);
2296         /* one less inode */
2297         rc = osd_declare_inode_qid(env, inode->i_uid, inode->i_gid, -1, oh,
2298                                    false, true, NULL, false);
2299         if (rc)
2300                 RETURN(rc);
2301         /* data to be truncated */
2302         rc = osd_declare_inode_qid(env, inode->i_uid, inode->i_gid, 0, oh,
2303                                    true, true, NULL, false);
2304         RETURN(rc);
2305 }
2306
2307 static int osd_object_destroy(const struct lu_env *env,
2308                               struct dt_object *dt,
2309                               struct thandle *th)
2310 {
2311         const struct lu_fid    *fid = lu_object_fid(&dt->do_lu);
2312         struct osd_object      *obj = osd_dt_obj(dt);
2313         struct inode           *inode = obj->oo_inode;
2314         struct osd_device      *osd = osd_obj2dev(obj);
2315         struct osd_thandle     *oh;
2316         int                     result;
2317         ENTRY;
2318
2319         oh = container_of0(th, struct osd_thandle, ot_super);
2320         LASSERT(oh->ot_handle);
2321         LASSERT(inode);
2322         LASSERT(!lu_object_is_dying(dt->do_lu.lo_header));
2323
2324         if (unlikely(fid_is_acct(fid)))
2325                 RETURN(-EPERM);
2326
2327         if (S_ISDIR(inode->i_mode)) {
2328                 LASSERT(osd_inode_unlinked(inode) || inode->i_nlink == 1 ||
2329                         inode->i_nlink == 2);
2330                 /* it will check/delete the inode from remote parent,
2331                  * how to optimize it? unlink performance impaction XXX */
2332                 result = osd_delete_from_remote_parent(env, osd, obj, oh);
2333                 if (result != 0 && result != -ENOENT) {
2334                         CERROR("%s: delete inode "DFID": rc = %d\n",
2335                                osd_name(osd), PFID(fid), result);
2336                 }
2337                 spin_lock(&obj->oo_guard);
2338                 clear_nlink(inode);
2339                 spin_unlock(&obj->oo_guard);
2340                 ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2341         }
2342
2343         osd_trans_exec_op(env, th, OSD_OT_DESTROY);
2344
2345         result = osd_oi_delete(osd_oti_get(env), osd, fid, th, OI_CHECK_FLD);
2346
2347         /* XXX: add to ext3 orphan list */
2348         /* rc = ext3_orphan_add(handle_t *handle, struct inode *inode) */
2349
2350         /* not needed in the cache anymore */
2351         set_bit(LU_OBJECT_HEARD_BANSHEE, &dt->do_lu.lo_header->loh_flags);
2352
2353         RETURN(0);
2354 }
2355
2356 /**
2357  * Put the fid into lustre_mdt_attrs, and then place the structure
2358  * inode's ea. This fid should not be altered during the life time
2359  * of the inode.
2360  *
2361  * \retval +ve, on success
2362  * \retval -ve, on error
2363  *
2364  * FIXME: It is good to have/use ldiskfs_xattr_set_handle() here
2365  */
2366 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
2367                    const struct lu_fid *fid, __u32 compat, __u32 incompat)
2368 {
2369         struct lustre_mdt_attrs *lma = &info->oti_mdt_attrs;
2370         int                      rc;
2371         ENTRY;
2372
2373         if (OBD_FAIL_CHECK(OBD_FAIL_FID_INLMA))
2374                 RETURN(0);
2375
2376         lustre_lma_init(lma, fid, compat, incompat);
2377         lustre_lma_swab(lma);
2378
2379         rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma, sizeof(*lma),
2380                              XATTR_CREATE);
2381         /* LMA may already exist, but we need to check that all the
2382          * desired compat/incompat flags have been added. */
2383         if (unlikely(rc == -EEXIST)) {
2384                 if (compat == 0 && incompat == 0)
2385                         RETURN(0);
2386
2387                 rc = __osd_xattr_get(inode, &info->oti_obj_dentry,
2388                                      XATTR_NAME_LMA, info->oti_mdt_attrs_old,
2389                                      LMA_OLD_SIZE);
2390                 if (rc <= 0)
2391                         RETURN(-EINVAL);
2392
2393                 lustre_lma_swab(lma);
2394                 if (!(~lma->lma_compat & compat) &&
2395                     !(~lma->lma_incompat & incompat))
2396                         RETURN(0);
2397
2398                 lma->lma_compat |= compat;
2399                 lma->lma_incompat |= incompat;
2400                 lustre_lma_swab(lma);
2401                 rc = __osd_xattr_set(info, inode, XATTR_NAME_LMA, lma,
2402                                      sizeof(*lma), XATTR_REPLACE);
2403         }
2404
2405         RETURN(rc);
2406 }
2407
2408 /**
2409  * ldiskfs supports fid in dirent, it is passed in dentry->d_fsdata.
2410  * lustre 1.8 also uses d_fsdata for passing other info to ldiskfs.
2411  * To have compatilibility with 1.8 ldiskfs driver we need to have
2412  * magic number at start of fid data.
2413  * \ldiskfs_dentry_param is used only to pass fid from osd to ldiskfs.
2414  * its inmemory API.
2415  */
2416 void osd_get_ldiskfs_dirent_param(struct ldiskfs_dentry_param *param,
2417                                   const struct dt_rec *fid)
2418 {
2419         if (!fid_is_namespace_visible((const struct lu_fid *)fid) ||
2420             OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF)) {
2421                 param->edp_magic = 0;
2422                 return;
2423         }
2424
2425         param->edp_magic = LDISKFS_LUFID_MAGIC;
2426         param->edp_len =  sizeof(struct lu_fid) + 1;
2427         fid_cpu_to_be((struct lu_fid *)param->edp_data, (struct lu_fid *)fid);
2428 }
2429
2430 /**
2431  * Try to read the fid from inode ea into dt_rec.
2432  *
2433  * \param fid object fid.
2434  *
2435  * \retval 0 on success
2436  */
2437 static int osd_ea_fid_get(const struct lu_env *env, struct osd_object *obj,
2438                           __u32 ino, struct lu_fid *fid,
2439                           struct osd_inode_id *id)
2440 {
2441         struct osd_thread_info *info  = osd_oti_get(env);
2442         struct inode           *inode;
2443         ENTRY;
2444
2445         osd_id_gen(id, ino, OSD_OII_NOGEN);
2446         inode = osd_iget_fid(info, osd_obj2dev(obj), id, fid);
2447         if (IS_ERR(inode))
2448                 RETURN(PTR_ERR(inode));
2449
2450         iput(inode);
2451         RETURN(0);
2452 }
2453
2454 static int osd_add_dot_dotdot_internal(struct osd_thread_info *info,
2455                                         struct inode *dir,
2456                                         struct inode  *parent_dir,
2457                                         const struct dt_rec *dot_fid,
2458                                         const struct dt_rec *dot_dot_fid,
2459                                         struct osd_thandle *oth)
2460 {
2461         struct ldiskfs_dentry_param *dot_ldp;
2462         struct ldiskfs_dentry_param *dot_dot_ldp;
2463
2464         dot_dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp2;
2465         osd_get_ldiskfs_dirent_param(dot_dot_ldp, dot_dot_fid);
2466
2467         dot_ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
2468         dot_ldp->edp_magic = 0;
2469         return ldiskfs_add_dot_dotdot(oth->ot_handle, parent_dir,
2470                                         dir, dot_ldp, dot_dot_ldp);
2471 }
2472
2473 /**
2474  * Create an local agent inode for remote entry
2475  */
2476 static struct inode *osd_create_local_agent_inode(const struct lu_env *env,
2477                                                   struct osd_device *osd,
2478                                                   struct osd_object *pobj,
2479                                                   const struct lu_fid *fid,
2480                                                   struct thandle *th)
2481 {
2482         struct osd_thread_info  *info = osd_oti_get(env);
2483         struct inode            *local;
2484         struct osd_thandle      *oh;
2485         int                     rc;
2486         ENTRY;
2487
2488         LASSERT(th);
2489         oh = container_of(th, struct osd_thandle, ot_super);
2490         LASSERT(oh->ot_handle->h_transaction != NULL);
2491
2492         /* FIXME: Insert index api needs to know the mode of
2493          * the remote object. Just use S_IFDIR for now */
2494         local = ldiskfs_create_inode(oh->ot_handle, pobj->oo_inode, S_IFDIR);
2495         if (IS_ERR(local)) {
2496                 CERROR("%s: create local error %d\n", osd_name(osd),
2497                        (int)PTR_ERR(local));
2498                 RETURN(local);
2499         }
2500
2501         /* Set special LMA flag for local agent inode */
2502         rc = osd_ea_fid_set(info, local, fid, 0, LMAI_AGENT);
2503         if (rc != 0) {
2504                 CERROR("%s: set LMA for "DFID" remote inode failed: rc = %d\n",
2505                        osd_name(osd), PFID(fid), rc);
2506                 RETURN(ERR_PTR(rc));
2507         }
2508
2509         rc = osd_add_dot_dotdot_internal(info, local, pobj->oo_inode,
2510                 (const struct dt_rec *)lu_object_fid(&pobj->oo_dt.do_lu),
2511                 (const struct dt_rec *)fid, oh);
2512         if (rc != 0) {
2513                 CERROR("%s: "DFID" add dot dotdot error: rc = %d\n",
2514                         osd_name(osd), PFID(fid), rc);
2515                 RETURN(ERR_PTR(rc));
2516         }
2517
2518         RETURN(local);
2519 }
2520
2521 /**
2522  * Delete local agent inode for remote entry
2523  */
2524 static int osd_delete_local_agent_inode(const struct lu_env *env,
2525                                         struct osd_device *osd,
2526                                         const struct lu_fid *fid,
2527                                         __u32 ino, struct osd_thandle *oh)
2528 {
2529         struct osd_thread_info  *oti = osd_oti_get(env);
2530         struct osd_inode_id     *id = &oti->oti_id;
2531         struct inode            *inode;
2532         ENTRY;
2533
2534         id->oii_ino = le32_to_cpu(ino);
2535         id->oii_gen = OSD_OII_NOGEN;
2536         inode = osd_iget(oti, osd, id);
2537         if (IS_ERR(inode)) {
2538                 CERROR("%s: iget error "DFID" id %u:%u\n", osd_name(osd),
2539                        PFID(fid), id->oii_ino, id->oii_gen);
2540                 RETURN(PTR_ERR(inode));
2541         }
2542
2543         clear_nlink(inode);
2544         mark_inode_dirty(inode);
2545         CDEBUG(D_INODE, "%s: delete remote inode "DFID" %lu\n",
2546                 osd_name(osd), PFID(fid), inode->i_ino);
2547         iput(inode);
2548         RETURN(0);
2549 }
2550
2551 /**
2552  * OSD layer object create function for interoperability mode (b11826).
2553  * This is mostly similar to osd_object_create(). Only difference being, fid is
2554  * inserted into inode ea here.
2555  *
2556  * \retval   0, on success
2557  * \retval -ve, on error
2558  */
2559 static int osd_object_ea_create(const struct lu_env *env, struct dt_object *dt,
2560                                 struct lu_attr *attr,
2561                                 struct dt_allocation_hint *hint,
2562                                 struct dt_object_format *dof,
2563                                 struct thandle *th)
2564 {
2565         const struct lu_fid    *fid    = lu_object_fid(&dt->do_lu);
2566         struct osd_object      *obj    = osd_dt_obj(dt);
2567         struct osd_thread_info *info   = osd_oti_get(env);
2568         int                     result;
2569
2570         ENTRY;
2571
2572         LASSERT(osd_invariant(obj));
2573         LASSERT(!dt_object_exists(dt) && !dt_object_remote(dt));
2574         LASSERT(osd_write_locked(env, obj));
2575         LASSERT(th != NULL);
2576
2577         if (unlikely(fid_is_acct(fid)))
2578                 /* Quota files can't be created from the kernel any more,
2579                  * 'tune2fs -O quota' will take care of creating them */
2580                 RETURN(-EPERM);
2581
2582         osd_trans_exec_op(env, th, OSD_OT_CREATE);
2583         osd_trans_declare_rb(env, th, OSD_OT_REF_ADD);
2584
2585         result = __osd_object_create(info, obj, attr, hint, dof, th);
2586         if (result == 0)
2587                 result = osd_ea_fid_set(info, obj->oo_inode, fid,
2588                                 fid_is_on_ost(info, osd_obj2dev(obj),
2589                                               fid, OI_CHECK_FLD) ?
2590                                 LMAC_FID_ON_OST : 0, 0);
2591
2592         if (result == 0)
2593                 result = __osd_oi_insert(env, obj, fid, th);
2594
2595         LASSERT(ergo(result == 0,
2596                      dt_object_exists(dt) && !dt_object_remote(dt)));
2597         LINVRNT(osd_invariant(obj));
2598         RETURN(result);
2599 }
2600
2601 static int osd_declare_object_ref_add(const struct lu_env *env,
2602                                       struct dt_object *dt,
2603                                       struct thandle *handle)
2604 {
2605         struct osd_thandle       *oh;
2606
2607         /* it's possible that object doesn't exist yet */
2608         LASSERT(handle != NULL);
2609
2610         oh = container_of0(handle, struct osd_thandle, ot_super);
2611         LASSERT(oh->ot_handle == NULL);
2612
2613         osd_trans_declare_op(env, oh, OSD_OT_REF_ADD,
2614                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2615
2616         return 0;
2617 }
2618
2619 /*
2620  * Concurrency: @dt is write locked.
2621  */
2622 static int osd_object_ref_add(const struct lu_env *env,
2623                               struct dt_object *dt, struct thandle *th)
2624 {
2625         struct osd_object  *obj = osd_dt_obj(dt);
2626         struct inode       *inode = obj->oo_inode;
2627         struct osd_thandle *oh;
2628         int                 rc = 0;
2629
2630         LINVRNT(osd_invariant(obj));
2631         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2632         LASSERT(osd_write_locked(env, obj));
2633         LASSERT(th != NULL);
2634
2635         oh = container_of0(th, struct osd_thandle, ot_super);
2636         LASSERT(oh->ot_handle != NULL);
2637
2638         osd_trans_exec_op(env, th, OSD_OT_REF_ADD);
2639
2640         /*
2641          * The DIR_NLINK feature allows directories to exceed LDISKFS_LINK_MAX
2642          * (65000) subdirectories by storing "1" in i_nlink if the link count
2643          * would otherwise overflow. Directory tranversal tools understand
2644          * that (st_nlink == 1) indicates that the filesystem dose not track
2645          * hard links count on the directory, and will not abort subdirectory
2646          * scanning early once (st_nlink - 2) subdirs have been found.
2647          *
2648          * This also has to properly handle the case of inodes with nlink == 0
2649          * in case they are being linked into the PENDING directory
2650          */
2651         spin_lock(&obj->oo_guard);
2652         ldiskfs_inc_count(oh->ot_handle, inode);
2653         LASSERT(inode->i_nlink <= LDISKFS_LINK_MAX);
2654         spin_unlock(&obj->oo_guard);
2655
2656         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2657         LINVRNT(osd_invariant(obj));
2658
2659         return rc;
2660 }
2661
2662 static int osd_declare_object_ref_del(const struct lu_env *env,
2663                                       struct dt_object *dt,
2664                                       struct thandle *handle)
2665 {
2666         struct osd_thandle *oh;
2667
2668         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2669         LASSERT(handle != NULL);
2670
2671         oh = container_of0(handle, struct osd_thandle, ot_super);
2672         LASSERT(oh->ot_handle == NULL);
2673
2674         osd_trans_declare_op(env, oh, OSD_OT_REF_DEL,
2675                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE]);
2676
2677         return 0;
2678 }
2679
2680 /*
2681  * Concurrency: @dt is write locked.
2682  */
2683 static int osd_object_ref_del(const struct lu_env *env, struct dt_object *dt,
2684                               struct thandle *th)
2685 {
2686         struct osd_object       *obj = osd_dt_obj(dt);
2687         struct inode            *inode = obj->oo_inode;
2688         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
2689         struct osd_thandle      *oh;
2690
2691         LINVRNT(osd_invariant(obj));
2692         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2693         LASSERT(osd_write_locked(env, obj));
2694         LASSERT(th != NULL);
2695
2696         oh = container_of0(th, struct osd_thandle, ot_super);
2697         LASSERT(oh->ot_handle != NULL);
2698
2699         osd_trans_exec_op(env, th, OSD_OT_REF_DEL);
2700
2701         spin_lock(&obj->oo_guard);
2702         /* That can be result of upgrade from old Lustre version and
2703          * applied only to local files.  Just skip this ref_del call.
2704          * ext4_unlink() only treats this as a warning, don't LASSERT here.*/
2705         if (inode->i_nlink == 0) {
2706                 CDEBUG_LIMIT(fid_is_norm(lu_object_fid(&dt->do_lu)) ?
2707                              D_ERROR : D_INODE, "%s: nlink == 0 on "DFID
2708                              ", maybe an upgraded file? (LU-3915)\n",
2709                              osd_name(osd), PFID(lu_object_fid(&dt->do_lu)));
2710                 spin_unlock(&obj->oo_guard);
2711                 return 0;
2712         }
2713
2714         ldiskfs_dec_count(oh->ot_handle, inode);
2715         spin_unlock(&obj->oo_guard);
2716
2717         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2718         LINVRNT(osd_invariant(obj));
2719
2720         return 0;
2721 }
2722
2723 /*
2724  * Get the 64-bit version for an inode.
2725  */
2726 static int osd_object_version_get(const struct lu_env *env,
2727                                   struct dt_object *dt, dt_obj_version_t *ver)
2728 {
2729         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2730
2731         CDEBUG(D_INODE, "Get version "LPX64" for inode %lu\n",
2732                LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2733         *ver = LDISKFS_I(inode)->i_fs_version;
2734         return 0;
2735 }
2736
2737 /*
2738  * Concurrency: @dt is read locked.
2739  */
2740 static int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
2741                          struct lu_buf *buf, const char *name,
2742                          struct lustre_capa *capa)
2743 {
2744         struct osd_object      *obj    = osd_dt_obj(dt);
2745         struct inode           *inode  = obj->oo_inode;
2746         struct osd_thread_info *info   = osd_oti_get(env);
2747         struct dentry          *dentry = &info->oti_obj_dentry;
2748
2749         /* version get is not real XATTR but uses xattr API */
2750         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2751                 /* for version we are just using xattr API but change inode
2752                  * field instead */
2753                 LASSERT(buf->lb_len == sizeof(dt_obj_version_t));
2754                 osd_object_version_get(env, dt, buf->lb_buf);
2755                 return sizeof(dt_obj_version_t);
2756         }
2757
2758         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2759         LASSERT(inode->i_op != NULL && inode->i_op->getxattr != NULL);
2760
2761         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
2762                 return -EACCES;
2763
2764         return __osd_xattr_get(inode, dentry, name, buf->lb_buf, buf->lb_len);
2765 }
2766
2767
2768 static int osd_declare_xattr_set(const struct lu_env *env,
2769                                  struct dt_object *dt,
2770                                  const struct lu_buf *buf, const char *name,
2771                                  int fl, struct thandle *handle)
2772 {
2773         struct osd_thandle *oh;
2774
2775         LASSERT(handle != NULL);
2776
2777         oh = container_of0(handle, struct osd_thandle, ot_super);
2778         LASSERT(oh->ot_handle == NULL);
2779
2780         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2781                              strcmp(name, XATTR_NAME_VERSION) == 0 ?
2782                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE] :
2783                              osd_dto_credits_noquota[DTO_XATTR_SET]);
2784
2785         return 0;
2786 }
2787
2788 /*
2789  * Set the 64-bit version for object
2790  */
2791 static void osd_object_version_set(const struct lu_env *env,
2792                                    struct dt_object *dt,
2793                                    dt_obj_version_t *new_version)
2794 {
2795         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2796
2797         CDEBUG(D_INODE, "Set version "LPX64" (old "LPX64") for inode %lu\n",
2798                *new_version, LDISKFS_I(inode)->i_fs_version, inode->i_ino);
2799
2800         LDISKFS_I(inode)->i_fs_version = *new_version;
2801         /** Version is set after all inode operations are finished,
2802          *  so we should mark it dirty here */
2803         ll_dirty_inode(inode, I_DIRTY_DATASYNC);
2804 }
2805
2806 /*
2807  * Concurrency: @dt is write locked.
2808  */
2809 static int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
2810                          const struct lu_buf *buf, const char *name, int fl,
2811                          struct thandle *handle, struct lustre_capa *capa)
2812 {
2813         struct osd_object      *obj      = osd_dt_obj(dt);
2814         struct inode           *inode    = obj->oo_inode;
2815         struct osd_thread_info *info     = osd_oti_get(env);
2816         int                     fs_flags = 0;
2817         ENTRY;
2818
2819         LASSERT(handle != NULL);
2820
2821         /* version set is not real XATTR */
2822         if (strcmp(name, XATTR_NAME_VERSION) == 0) {
2823                 /* for version we are just using xattr API but change inode
2824                  * field instead */
2825                 LASSERT(buf->lb_len == sizeof(dt_obj_version_t));
2826                 osd_object_version_set(env, dt, buf->lb_buf);
2827                 return sizeof(dt_obj_version_t);
2828         }
2829
2830         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
2831                 return -EACCES;
2832
2833         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
2834         if (fl & LU_XATTR_REPLACE)
2835                 fs_flags |= XATTR_REPLACE;
2836
2837         if (fl & LU_XATTR_CREATE)
2838                 fs_flags |= XATTR_CREATE;
2839
2840         return __osd_xattr_set(info, inode, name, buf->lb_buf, buf->lb_len,
2841                                fs_flags);
2842 }
2843
2844 /*
2845  * Concurrency: @dt is read locked.
2846  */
2847 static int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
2848                           struct lu_buf *buf, struct lustre_capa *capa)
2849 {
2850         struct osd_object      *obj    = osd_dt_obj(dt);
2851         struct inode           *inode  = obj->oo_inode;
2852         struct osd_thread_info *info   = osd_oti_get(env);
2853         struct dentry          *dentry = &info->oti_obj_dentry;
2854
2855         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2856         LASSERT(inode->i_op != NULL && inode->i_op->listxattr != NULL);
2857         LASSERT(osd_read_locked(env, obj) || osd_write_locked(env, obj));
2858
2859         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_READ))
2860                 return -EACCES;
2861
2862         dentry->d_inode = inode;
2863         dentry->d_sb = inode->i_sb;
2864         return inode->i_op->listxattr(dentry, buf->lb_buf, buf->lb_len);
2865 }
2866
2867 static int osd_declare_xattr_del(const struct lu_env *env,
2868                                  struct dt_object *dt, const char *name,
2869                                  struct thandle *handle)
2870 {
2871         struct osd_thandle *oh;
2872
2873         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2874         LASSERT(handle != NULL);
2875
2876         oh = container_of0(handle, struct osd_thandle, ot_super);
2877         LASSERT(oh->ot_handle == NULL);
2878
2879         osd_trans_declare_op(env, oh, OSD_OT_XATTR_SET,
2880                              osd_dto_credits_noquota[DTO_XATTR_SET]);
2881
2882         return 0;
2883 }
2884
2885 /*
2886  * Concurrency: @dt is write locked.
2887  */
2888 static int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
2889                          const char *name, struct thandle *handle,
2890                          struct lustre_capa *capa)
2891 {
2892         struct osd_object      *obj    = osd_dt_obj(dt);
2893         struct inode           *inode  = obj->oo_inode;
2894         struct osd_thread_info *info   = osd_oti_get(env);
2895         struct dentry          *dentry = &info->oti_obj_dentry;
2896         int                     rc;
2897
2898         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2899         LASSERT(inode->i_op != NULL && inode->i_op->removexattr != NULL);
2900         LASSERT(handle != NULL);
2901
2902         if (osd_object_auth(env, dt, capa, CAPA_OPC_META_WRITE))
2903                 return -EACCES;
2904
2905         osd_trans_exec_op(env, handle, OSD_OT_XATTR_SET);
2906
2907         ll_vfs_dq_init(inode);
2908         dentry->d_inode = inode;
2909         dentry->d_sb = inode->i_sb;
2910         rc = inode->i_op->removexattr(dentry, name);
2911         return rc;
2912 }
2913
2914 static struct obd_capa *osd_capa_get(const struct lu_env *env,
2915                                      struct dt_object *dt,
2916                                      struct lustre_capa *old, __u64 opc)
2917 {
2918         struct osd_thread_info *info = osd_oti_get(env);
2919         const struct lu_fid *fid = lu_object_fid(&dt->do_lu);
2920         struct osd_object *obj = osd_dt_obj(dt);
2921         struct osd_device *osd = osd_obj2dev(obj);
2922         struct lustre_capa_key *key = &info->oti_capa_key;
2923         struct lustre_capa *capa = &info->oti_capa;
2924         struct obd_capa *oc;
2925         struct lu_capainfo *lci;
2926         int rc;
2927         ENTRY;
2928
2929         if (!osd->od_fl_capa)
2930                 RETURN(ERR_PTR(-ENOENT));
2931
2932         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
2933         LINVRNT(osd_invariant(obj));
2934
2935         /* renewal sanity check */
2936         if (old && osd_object_auth(env, dt, old, opc))
2937                 RETURN(ERR_PTR(-EACCES));
2938
2939         lci = lu_capainfo_get(env);
2940         if (unlikely(lci == NULL))
2941                 RETURN(ERR_PTR(-ENOENT));
2942
2943         switch (lci->lci_auth) {
2944         case LC_ID_NONE:
2945                 RETURN(NULL);
2946         case LC_ID_PLAIN:
2947                 capa->lc_uid = obj->oo_inode->i_uid;
2948                 capa->lc_gid = obj->oo_inode->i_gid;
2949                 capa->lc_flags = LC_ID_PLAIN;
2950                 break;
2951         case LC_ID_CONVERT: {
2952                 __u32 d[4], s[4];
2953
2954                 s[0] = obj->oo_inode->i_uid;
2955                 cfs_get_random_bytes(&(s[1]), sizeof(__u32));
2956                 s[2] = obj->oo_inode->i_gid;
2957                 cfs_get_random_bytes(&(s[3]), sizeof(__u32));
2958                 rc = capa_encrypt_id(d, s, key->lk_key, CAPA_HMAC_KEY_MAX_LEN);
2959                 if (unlikely(rc))
2960                         RETURN(ERR_PTR(rc));
2961
2962                 capa->lc_uid   = ((__u64)d[1] << 32) | d[0];
2963                 capa->lc_gid   = ((__u64)d[3] << 32) | d[2];
2964                 capa->lc_flags = LC_ID_CONVERT;
2965                 break;
2966         }
2967         default:
2968                 RETURN(ERR_PTR(-EINVAL));
2969         }
2970
2971         capa->lc_fid = *fid;
2972         capa->lc_opc = opc;
2973         capa->lc_flags |= osd->od_capa_alg << 24;
2974         capa->lc_timeout = osd->od_capa_timeout;
2975         capa->lc_expiry = 0;
2976
2977         oc = capa_lookup(osd->od_capa_hash, capa, 1);
2978         if (oc) {
2979                 LASSERT(!capa_is_expired(oc));
2980                 RETURN(oc);
2981         }
2982
2983         spin_lock(&capa_lock);
2984         *key = osd->od_capa_keys[1];
2985         spin_unlock(&capa_lock);
2986
2987         capa->lc_keyid = key->lk_keyid;
2988         capa->lc_expiry = cfs_time_current_sec() + osd->od_capa_timeout;
2989
2990         rc = capa_hmac(capa->lc_hmac, capa, key->lk_key);
2991         if (rc) {
2992                 DEBUG_CAPA(D_ERROR, capa, "HMAC failed: %d for", rc);
2993                 RETURN(ERR_PTR(rc));
2994         }
2995
2996         oc = capa_add(osd->od_capa_hash, capa);
2997         RETURN(oc);
2998 }
2999
3000 static int osd_object_sync(const struct lu_env *env, struct dt_object *dt)
3001 {
3002         struct osd_object       *obj    = osd_dt_obj(dt);
3003         struct inode            *inode  = obj->oo_inode;
3004         struct osd_thread_info  *info   = osd_oti_get(env);
3005         struct dentry           *dentry = &info->oti_obj_dentry;
3006         struct file             *file   = &info->oti_file;
3007         int                     rc;
3008
3009         ENTRY;
3010
3011         dentry->d_inode = inode;
3012         dentry->d_sb = inode->i_sb;
3013         file->f_dentry = dentry;
3014         file->f_mapping = inode->i_mapping;
3015         file->f_op = inode->i_fop;
3016         set_file_inode(file, inode);
3017 #ifndef HAVE_FILE_FSYNC_4ARGS
3018         mutex_lock(&inode->i_mutex);
3019 #endif
3020         rc = do_fsync(file, 0);
3021 #ifndef HAVE_FILE_FSYNC_4ARGS
3022         mutex_unlock(&inode->i_mutex);
3023 #endif
3024         RETURN(rc);
3025 }
3026
3027 static int osd_data_get(const struct lu_env *env, struct dt_object *dt,
3028                         void **data)
3029 {
3030         struct osd_object *obj = osd_dt_obj(dt);
3031         ENTRY;
3032
3033         *data = (void *)obj->oo_inode;
3034         RETURN(0);
3035 }
3036
3037 /*
3038  * Index operations.
3039  */
3040
3041 static int osd_iam_index_probe(const struct lu_env *env, struct osd_object *o,
3042                            const struct dt_index_features *feat)
3043 {
3044         struct iam_descr *descr;
3045
3046         if (osd_object_is_root(o))
3047                 return feat == &dt_directory_features;
3048
3049         LASSERT(o->oo_dir != NULL);
3050
3051         descr = o->oo_dir->od_container.ic_descr;
3052         if (feat == &dt_directory_features) {
3053                 if (descr->id_rec_size == sizeof(struct osd_fid_pack))
3054                         return 1;
3055                 else
3056                         return 0;
3057         } else {
3058                 return
3059                         feat->dif_keysize_min <= descr->id_key_size &&
3060                         descr->id_key_size <= feat->dif_keysize_max &&
3061                         feat->dif_recsize_min <= descr->id_rec_size &&
3062                         descr->id_rec_size <= feat->dif_recsize_max &&
3063                         !(feat->dif_flags & (DT_IND_VARKEY |
3064                                              DT_IND_VARREC | DT_IND_NONUNQ)) &&
3065                         ergo(feat->dif_flags & DT_IND_UPDATE,
3066                              1 /* XXX check that object (and file system) is
3067                                 * writable */);
3068         }
3069 }
3070
3071 static int osd_iam_container_init(const struct lu_env *env,
3072                                   struct osd_object *obj,
3073                                   struct osd_directory *dir)
3074 {
3075         struct iam_container *bag = &dir->od_container;
3076         int result;
3077
3078         result = iam_container_init(bag, &dir->od_descr, obj->oo_inode);
3079         if (result != 0)
3080                 return result;
3081
3082         result = iam_container_setup(bag);
3083         if (result == 0)
3084                 obj->oo_dt.do_index_ops = &osd_index_iam_ops;
3085         else
3086                 iam_container_fini(bag);
3087
3088         return result;
3089 }
3090
3091
3092 /*
3093  * Concurrency: no external locking is necessary.
3094  */
3095 static int osd_index_try(const struct lu_env *env, struct dt_object *dt,
3096                          const struct dt_index_features *feat)
3097 {
3098         int                      result;
3099         int                      skip_iam = 0;
3100         struct osd_object       *obj = osd_dt_obj(dt);
3101
3102         LINVRNT(osd_invariant(obj));
3103
3104         if (osd_object_is_root(obj)) {
3105                 dt->do_index_ops = &osd_index_ea_ops;
3106                 result = 0;
3107         } else if (feat == &dt_directory_features) {
3108                 dt->do_index_ops = &osd_index_ea_ops;
3109                 if (obj->oo_inode != NULL && S_ISDIR(obj->oo_inode->i_mode))
3110                         result = 0;
3111                 else
3112                         result = -ENOTDIR;
3113                 skip_iam = 1;
3114         } else if (unlikely(feat == &dt_otable_features)) {
3115                 dt->do_index_ops = &osd_otable_ops;
3116                 return 0;
3117         } else if (unlikely(feat == &dt_acct_features)) {
3118                 dt->do_index_ops = &osd_acct_index_ops;
3119                 result = 0;
3120                 skip_iam = 1;
3121         } else if (!osd_has_index(obj)) {
3122                 struct osd_directory *dir;
3123
3124                 OBD_ALLOC_PTR(dir);
3125                 if (dir != NULL) {
3126
3127                         spin_lock(&obj->oo_guard);
3128                         if (obj->oo_dir == NULL)
3129                                 obj->oo_dir = dir;
3130                         else
3131                                 /*
3132                                  * Concurrent thread allocated container data.
3133                                  */
3134                                 OBD_FREE_PTR(dir);
3135                         spin_unlock(&obj->oo_guard);
3136                         /*
3137                          * Now, that we have container data, serialize its
3138                          * initialization.
3139                          */
3140                         down_write(&obj->oo_ext_idx_sem);
3141                         /*
3142                          * recheck under lock.
3143                          */
3144                         if (!osd_has_index(obj))
3145                                 result = osd_iam_container_init(env, obj, dir);
3146                         else
3147                                 result = 0;
3148                         up_write(&obj->oo_ext_idx_sem);
3149                 } else {
3150                         result = -ENOMEM;
3151                 }
3152         } else {
3153                 result = 0;
3154         }
3155
3156         if (result == 0 && skip_iam == 0) {
3157                 if (!osd_iam_index_probe(env, obj, feat))
3158                         result = -ENOTDIR;
3159         }
3160         LINVRNT(osd_invariant(obj));
3161
3162         if (result == 0 && is_quota_glb_feat(feat) &&
3163             fid_seq(lu_object_fid(&dt->do_lu)) == FID_SEQ_QUOTA_GLB)
3164                 result = osd_quota_migration(env, dt, feat);
3165
3166         return result;
3167 }
3168
3169 static int osd_otable_it_attr_get(const struct lu_env *env,
3170                                  struct dt_object *dt,
3171                                  struct lu_attr *attr,
3172                                  struct lustre_capa *capa)
3173 {
3174         attr->la_valid = 0;
3175         return 0;
3176 }
3177
3178 static const struct dt_object_operations osd_obj_ops = {
3179         .do_read_lock         = osd_object_read_lock,
3180         .do_write_lock        = osd_object_write_lock,
3181         .do_read_unlock       = osd_object_read_unlock,
3182         .do_write_unlock      = osd_object_write_unlock,
3183         .do_write_locked      = osd_object_write_locked,
3184         .do_attr_get          = osd_attr_get,
3185         .do_declare_attr_set  = osd_declare_attr_set,
3186         .do_attr_set          = osd_attr_set,
3187         .do_ah_init           = osd_ah_init,
3188         .do_declare_create    = osd_declare_object_create,
3189         .do_create            = osd_object_create,
3190         .do_declare_destroy   = osd_declare_object_destroy,
3191         .do_destroy           = osd_object_destroy,
3192         .do_index_try         = osd_index_try,
3193         .do_declare_ref_add   = osd_declare_object_ref_add,
3194         .do_ref_add           = osd_object_ref_add,
3195         .do_declare_ref_del   = osd_declare_object_ref_del,
3196         .do_ref_del           = osd_object_ref_del,
3197         .do_xattr_get         = osd_xattr_get,
3198         .do_declare_xattr_set = osd_declare_xattr_set,
3199         .do_xattr_set         = osd_xattr_set,
3200         .do_declare_xattr_del = osd_declare_xattr_del,
3201         .do_xattr_del         = osd_xattr_del,
3202         .do_xattr_list        = osd_xattr_list,
3203         .do_capa_get          = osd_capa_get,
3204         .do_object_sync       = osd_object_sync,
3205         .do_data_get          = osd_data_get,
3206 };
3207
3208 /**
3209  * dt_object_operations for interoperability mode
3210  * (i.e. to run 2.0 mds on 1.8 disk) (b11826)
3211  */
3212 static const struct dt_object_operations osd_obj_ea_ops = {
3213         .do_read_lock         = osd_object_read_lock,
3214         .do_write_lock        = osd_object_write_lock,
3215         .do_read_unlock       = osd_object_read_unlock,
3216         .do_write_unlock      = osd_object_write_unlock,
3217         .do_write_locked      = osd_object_write_locked,
3218         .do_attr_get          = osd_attr_get,
3219         .do_declare_attr_set  = osd_declare_attr_set,
3220         .do_attr_set          = osd_attr_set,
3221         .do_ah_init           = osd_ah_init,
3222         .do_declare_create    = osd_declare_object_create,
3223         .do_create            = osd_object_ea_create,
3224         .do_declare_destroy   = osd_declare_object_destroy,
3225         .do_destroy           = osd_object_destroy,
3226         .do_index_try         = osd_index_try,
3227         .do_declare_ref_add   = osd_declare_object_ref_add,
3228         .do_ref_add           = osd_object_ref_add,
3229         .do_declare_ref_del   = osd_declare_object_ref_del,
3230         .do_ref_del           = osd_object_ref_del,
3231         .do_xattr_get         = osd_xattr_get,
3232         .do_declare_xattr_set = osd_declare_xattr_set,
3233         .do_xattr_set         = osd_xattr_set,
3234         .do_declare_xattr_del = osd_declare_xattr_del,
3235         .do_xattr_del         = osd_xattr_del,
3236         .do_xattr_list        = osd_xattr_list,
3237         .do_capa_get          = osd_capa_get,
3238         .do_object_sync       = osd_object_sync,
3239         .do_data_get          = osd_data_get,
3240 };
3241
3242 static const struct dt_object_operations osd_obj_otable_it_ops = {
3243         .do_attr_get    = osd_otable_it_attr_get,
3244         .do_index_try   = osd_index_try,
3245 };
3246
3247 static int osd_index_declare_iam_delete(const struct lu_env *env,
3248                                         struct dt_object *dt,
3249                                         const struct dt_key *key,
3250                                         struct thandle *handle)
3251 {
3252         struct osd_thandle    *oh;
3253
3254         oh = container_of0(handle, struct osd_thandle, ot_super);
3255         LASSERT(oh->ot_handle == NULL);
3256
3257         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3258                              osd_dto_credits_noquota[DTO_INDEX_DELETE]);
3259
3260         return 0;
3261 }
3262
3263 /**
3264  *      delete a (key, value) pair from index \a dt specified by \a key
3265  *
3266  *      \param  dt      osd index object
3267  *      \param  key     key for index
3268  *      \param  rec     record reference
3269  *      \param  handle  transaction handler
3270  *
3271  *      \retval  0  success
3272  *      \retval -ve   failure
3273  */
3274
3275 static int osd_index_iam_delete(const struct lu_env *env, struct dt_object *dt,
3276                                 const struct dt_key *key,
3277                                 struct thandle *handle,
3278                                 struct lustre_capa *capa)
3279 {
3280         struct osd_thread_info *oti = osd_oti_get(env);
3281         struct osd_object      *obj = osd_dt_obj(dt);
3282         struct osd_thandle     *oh;
3283         struct iam_path_descr  *ipd;
3284         struct iam_container   *bag = &obj->oo_dir->od_container;
3285         int                     rc;
3286
3287         ENTRY;
3288
3289         LINVRNT(osd_invariant(obj));
3290         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
3291         LASSERT(bag->ic_object == obj->oo_inode);
3292         LASSERT(handle != NULL);
3293
3294         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_DELETE))
3295                 RETURN(-EACCES);
3296
3297         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
3298
3299         ipd = osd_idx_ipd_get(env, bag);
3300         if (unlikely(ipd == NULL))
3301                 RETURN(-ENOMEM);
3302
3303         oh = container_of0(handle, struct osd_thandle, ot_super);
3304         LASSERT(oh->ot_handle != NULL);
3305         LASSERT(oh->ot_handle->h_transaction != NULL);
3306
3307         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3308                 /* swab quota uid/gid provided by caller */
3309                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3310                 key = (const struct dt_key *)&oti->oti_quota_id;
3311         }
3312
3313         rc = iam_delete(oh->ot_handle, bag, (const struct iam_key *)key, ipd);
3314         osd_ipd_put(env, bag, ipd);
3315         LINVRNT(osd_invariant(obj));
3316         RETURN(rc);
3317 }
3318
3319 static int osd_index_declare_ea_delete(const struct lu_env *env,
3320                                        struct dt_object *dt,
3321                                        const struct dt_key *key,
3322                                        struct thandle *handle)
3323 {
3324         struct osd_thandle *oh;
3325         struct inode       *inode;
3326         int                 rc;
3327         ENTRY;
3328
3329         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
3330         LASSERT(handle != NULL);
3331
3332         oh = container_of0(handle, struct osd_thandle, ot_super);
3333         LASSERT(oh->ot_handle == NULL);
3334
3335         osd_trans_declare_op(env, oh, OSD_OT_DELETE,
3336                              osd_dto_credits_noquota[DTO_INDEX_DELETE]);
3337
3338         inode = osd_dt_obj(dt)->oo_inode;
3339         LASSERT(inode);
3340
3341         rc = osd_declare_inode_qid(env, inode->i_uid, inode->i_gid, 0, oh,
3342                                    true, true, NULL, false);
3343         RETURN(rc);
3344 }
3345
3346 static inline int osd_get_fid_from_dentry(struct ldiskfs_dir_entry_2 *de,
3347                                           struct dt_rec *fid)
3348 {
3349         struct osd_fid_pack *rec;
3350         int                  rc = -ENODATA;
3351
3352         if (de->file_type & LDISKFS_DIRENT_LUFID) {
3353                 rec = (struct osd_fid_pack *) (de->name + de->name_len + 1);
3354                 rc = osd_fid_unpack((struct lu_fid *)fid, rec);
3355         }
3356         return rc;
3357 }
3358
3359 static int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
3360                           struct lu_fid *fid)
3361 {
3362         ENTRY;
3363
3364         /* FID seqs not in FLDB, must be local seq */
3365         if (unlikely(!fid_seq_in_fldb(fid_seq(fid))))
3366                 RETURN(0);
3367
3368         if (osd_seq_exists(env, osd, fid_seq(fid)))
3369                 RETURN(0);
3370
3371         RETURN(1);
3372 }
3373
3374 /**
3375  * Index delete function for interoperability mode (b11826).
3376  * It will remove the directory entry added by osd_index_ea_insert().
3377  * This entry is needed to maintain name->fid mapping.
3378  *
3379  * \param key,  key i.e. file entry to be deleted
3380  *
3381  * \retval   0, on success
3382  * \retval -ve, on error
3383  */
3384 static int osd_index_ea_delete(const struct lu_env *env, struct dt_object *dt,
3385                                const struct dt_key *key,
3386                                struct thandle *handle,
3387                                struct lustre_capa *capa)
3388 {
3389         struct osd_object          *obj    = osd_dt_obj(dt);
3390         struct inode               *dir    = obj->oo_inode;
3391         struct dentry              *dentry;
3392         struct osd_thandle         *oh;
3393         struct ldiskfs_dir_entry_2 *de = NULL;
3394         struct buffer_head         *bh;
3395         struct htree_lock          *hlock = NULL;
3396         struct lu_fid              *fid = &osd_oti_get(env)->oti_fid;
3397         struct osd_device          *osd = osd_dev(dt->do_lu.lo_dev);
3398         int                        rc;
3399         ENTRY;
3400
3401         LINVRNT(osd_invariant(obj));
3402         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
3403         LASSERT(handle != NULL);
3404
3405         osd_trans_exec_op(env, handle, OSD_OT_DELETE);
3406
3407         oh = container_of(handle, struct osd_thandle, ot_super);
3408         LASSERT(oh->ot_handle != NULL);
3409         LASSERT(oh->ot_handle->h_transaction != NULL);
3410
3411         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_DELETE))
3412                 RETURN(-EACCES);
3413
3414         ll_vfs_dq_init(dir);
3415         dentry = osd_child_dentry_get(env, obj,
3416                                       (char *)key, strlen((char *)key));
3417
3418         if (obj->oo_hl_head != NULL) {
3419                 hlock = osd_oti_get(env)->oti_hlock;
3420                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
3421                                    dir, LDISKFS_HLOCK_DEL);
3422         } else {
3423                 down_write(&obj->oo_ext_idx_sem);
3424         }
3425
3426         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
3427         if (bh) {
3428                 __u32 ino = 0;
3429
3430                 /* If this is not the ".." entry, it might be a remote DNE
3431                  * entry and  we need to check if the FID is for a remote
3432                  * MDT.  If the FID is  not in the directory entry (e.g.
3433                  * upgraded 1.8 filesystem without dirdata enabled) then
3434                  * we need to get the FID from the LMA. For a remote directory
3435                  * there HAS to be an LMA, it cannot be an IGIF inode in this
3436                  * case.
3437                  *
3438                  * Delete the entry before the agent inode in order to
3439                  * simplify error handling.  At worst an error after deleting
3440                  * the entry first might leak the agent inode afterward. The
3441                  * reverse would need filesystem abort in case of error deleting
3442                  * the entry after the agent had been removed, or leave a
3443                  * dangling entry pointing at a random inode. */
3444                 if (strcmp((char *)key, dotdot) != 0) {
3445                         LASSERT(de != NULL);
3446                         rc = osd_get_fid_from_dentry(de, (struct dt_rec *)fid);
3447                         /* If Fid is not in dentry, try to get it from LMA */
3448                         if (rc == -ENODATA) {
3449                                 struct osd_inode_id *id;
3450                                 struct inode *inode;
3451
3452                                 /* Before trying to get fid from the inode,
3453                                  * check whether the inode is valid.
3454                                  *
3455                                  * If the inode has been deleted, do not go
3456                                  * ahead to do osd_ea_fid_get, which will set
3457                                  * the inode to bad inode, which might cause
3458                                  * the inode to be deleted uncorrectly */
3459                                 inode = ldiskfs_iget(osd_sb(osd),
3460                                                      le32_to_cpu(de->inode));
3461                                 if (IS_ERR(inode)) {
3462                                         CDEBUG(D_INODE, "%s: "DFID"get inode"
3463                                                "error.\n", osd_name(osd),
3464                                                PFID(fid));
3465                                         rc = PTR_ERR(inode);
3466                                 } else {
3467                                         if (likely(inode->i_nlink != 0)) {
3468                                                 id = &osd_oti_get(env)->oti_id;
3469                                                 rc = osd_ea_fid_get(env, obj,
3470                                                         le32_to_cpu(de->inode),
3471                                                                     fid, id);
3472                                         } else {
3473                                                 CDEBUG(D_INFO, "%s: %u "DFID
3474                                                        "deleted.\n",
3475                                                        osd_name(osd),
3476                                                        le32_to_cpu(de->inode),
3477                                                        PFID(fid));
3478                                                 rc = -ESTALE;
3479                                         }
3480                                         iput(inode);
3481                                 }
3482                         }
3483                         if (rc == 0 &&
3484                             unlikely(osd_remote_fid(env, osd, fid)))
3485                                 /* Need to delete agent inode */
3486                                 ino = le32_to_cpu(de->inode);
3487                 }
3488                 rc = ldiskfs_delete_entry(oh->ot_handle, dir, de, bh);
3489                 brelse(bh);
3490                 if (rc == 0 && unlikely(ino != 0)) {
3491                         rc = osd_delete_local_agent_inode(env, osd, fid, ino,
3492                                                           oh);
3493                         if (rc != 0)
3494                                 CERROR("%s: del local inode "DFID": rc = %d\n",
3495                                        osd_name(osd), PFID(fid), rc);
3496                 }
3497         } else {
3498                 rc = -ENOENT;
3499         }
3500         if (hlock != NULL)
3501                 ldiskfs_htree_unlock(hlock);
3502         else
3503                 up_write(&obj->oo_ext_idx_sem);
3504
3505         if (rc != 0)
3506                 GOTO(out, rc);
3507
3508         /* For inode on the remote MDT, .. will point to
3509          * /Agent directory, Check whether it needs to delete
3510          * from agent directory */
3511         if (unlikely(strcmp((char *)key, dotdot) == 0)) {
3512                 rc = osd_delete_from_remote_parent(env, osd_obj2dev(obj), obj,
3513                                                    oh);
3514                 if (rc != 0 && rc != -ENOENT) {
3515                         CERROR("%s: delete agent inode "DFID": rc = %d\n",
3516                                osd_name(osd), PFID(fid), rc);
3517                 }
3518
3519                 if (rc == -ENOENT)
3520                         rc = 0;
3521
3522                 GOTO(out, rc);
3523         }
3524 out:
3525
3526         LASSERT(osd_invariant(obj));
3527         RETURN(rc);
3528 }
3529
3530 /**
3531  *      Lookup index for \a key and copy record to \a rec.
3532  *
3533  *      \param  dt      osd index object
3534  *      \param  key     key for index
3535  *      \param  rec     record reference
3536  *
3537  *      \retval  +ve  success : exact mach
3538  *      \retval  0    return record with key not greater than \a key
3539  *      \retval -ve   failure
3540  */
3541 static int osd_index_iam_lookup(const struct lu_env *env, struct dt_object *dt,
3542                                 struct dt_rec *rec, const struct dt_key *key,
3543                                 struct lustre_capa *capa)
3544 {
3545         struct osd_object      *obj = osd_dt_obj(dt);
3546         struct iam_path_descr  *ipd;
3547         struct iam_container   *bag = &obj->oo_dir->od_container;
3548         struct osd_thread_info *oti = osd_oti_get(env);
3549         struct iam_iterator    *it = &oti->oti_idx_it;
3550         struct iam_rec         *iam_rec;
3551         int                     rc;
3552
3553         ENTRY;
3554
3555         LASSERT(osd_invariant(obj));
3556         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
3557         LASSERT(bag->ic_object == obj->oo_inode);
3558
3559         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_LOOKUP))
3560                 RETURN(-EACCES);
3561
3562         ipd = osd_idx_ipd_get(env, bag);
3563         if (IS_ERR(ipd))
3564                 RETURN(-ENOMEM);
3565
3566         /* got ipd now we can start iterator. */
3567         iam_it_init(it, bag, 0, ipd);
3568
3569         if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3570                 /* swab quota uid/gid provided by caller */
3571                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3572                 key = (const struct dt_key *)&oti->oti_quota_id;
3573         }
3574
3575         rc = iam_it_get(it, (struct iam_key *)key);
3576         if (rc >= 0) {
3577                 if (S_ISDIR(obj->oo_inode->i_mode))
3578                         iam_rec = (struct iam_rec *)oti->oti_ldp;
3579                 else
3580                         iam_rec = (struct iam_rec *) rec;
3581
3582                 iam_reccpy(&it->ii_path.ip_leaf, (struct iam_rec *)iam_rec);
3583
3584                 if (S_ISDIR(obj->oo_inode->i_mode))
3585                         osd_fid_unpack((struct lu_fid *) rec,
3586                                        (struct osd_fid_pack *)iam_rec);
3587                 else if (fid_is_quota(lu_object_fid(&dt->do_lu)))
3588                         osd_quota_unpack(obj, rec);
3589         }
3590
3591         iam_it_put(it);
3592         iam_it_fini(it);
3593         osd_ipd_put(env, bag, ipd);
3594
3595         LINVRNT(osd_invariant(obj));
3596
3597         RETURN(rc);
3598 }
3599
3600 static int osd_index_declare_iam_insert(const struct lu_env *env,
3601                                         struct dt_object *dt,
3602                                         const struct dt_rec *rec,
3603                                         const struct dt_key *key,
3604                                         struct thandle *handle)
3605 {
3606         struct osd_thandle *oh;
3607
3608         LASSERT(handle != NULL);
3609
3610         oh = container_of0(handle, struct osd_thandle, ot_super);
3611         LASSERT(oh->ot_handle == NULL);
3612
3613         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
3614                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
3615
3616         return 0;
3617 }
3618
3619 /**
3620  *      Inserts (key, value) pair in \a dt index object.
3621  *
3622  *      \param  dt      osd index object
3623  *      \param  key     key for index
3624  *      \param  rec     record reference
3625  *      \param  th      transaction handler
3626  *
3627  *      \retval  0  success
3628  *      \retval -ve failure
3629  */
3630 static int osd_index_iam_insert(const struct lu_env *env, struct dt_object *dt,
3631                                 const struct dt_rec *rec,
3632                                 const struct dt_key *key, struct thandle *th,
3633                                 struct lustre_capa *capa, int ignore_quota)
3634 {
3635         struct osd_object     *obj = osd_dt_obj(dt);
3636         struct iam_path_descr *ipd;
3637         struct osd_thandle    *oh;
3638         struct iam_container  *bag = &obj->oo_dir->od_container;
3639         struct osd_thread_info *oti = osd_oti_get(env);
3640         struct iam_rec         *iam_rec;
3641         int                     rc;
3642
3643         ENTRY;
3644
3645         LINVRNT(osd_invariant(obj));
3646         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
3647         LASSERT(bag->ic_object == obj->oo_inode);
3648         LASSERT(th != NULL);
3649
3650         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_INSERT))
3651                 RETURN(-EACCES);
3652
3653         osd_trans_exec_op(env, th, OSD_OT_INSERT);
3654
3655         ipd = osd_idx_ipd_get(env, bag);
3656         if (unlikely(ipd == NULL))
3657                 RETURN(-ENOMEM);
3658
3659         oh = container_of0(th, struct osd_thandle, ot_super);
3660         LASSERT(oh->ot_handle != NULL);
3661         LASSERT(oh->ot_handle->h_transaction != NULL);
3662         if (S_ISDIR(obj->oo_inode->i_mode)) {
3663                 iam_rec = (struct iam_rec *)oti->oti_ldp;
3664                 osd_fid_pack((struct osd_fid_pack *)iam_rec, rec, &oti->oti_fid);
3665         } else if (fid_is_quota(lu_object_fid(&dt->do_lu))) {
3666                 /* pack quota uid/gid */
3667                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
3668                 key = (const struct dt_key *)&oti->oti_quota_id;
3669                 /* pack quota record */
3670                 rec = osd_quota_pack(obj, rec, &oti->oti_quota_rec);
3671                 iam_rec = (struct iam_rec *)rec;
3672         } else {
3673                 iam_rec = (struct iam_rec *)rec;
3674         }
3675
3676         rc = iam_insert(oh->ot_handle, bag, (const struct iam_key *)key,
3677                         iam_rec, ipd);
3678         osd_ipd_put(env, bag, ipd);
3679         LINVRNT(osd_invariant(obj));
3680         RETURN(rc);
3681 }
3682
3683 /**
3684  * Calls ldiskfs_add_entry() to add directory entry
3685  * into the directory. This is required for
3686  * interoperability mode (b11826)
3687  *
3688  * \retval   0, on success
3689  * \retval -ve, on error
3690  */
3691 static int __osd_ea_add_rec(struct osd_thread_info *info,
3692                             struct osd_object *pobj, struct inode  *cinode,
3693                             const char *name, const struct dt_rec *fid,
3694                             struct htree_lock *hlock, struct thandle *th)
3695 {
3696         struct ldiskfs_dentry_param *ldp;
3697         struct dentry               *child;
3698         struct osd_thandle          *oth;
3699         int                          rc;
3700
3701         oth = container_of(th, struct osd_thandle, ot_super);
3702         LASSERT(oth->ot_handle != NULL);
3703         LASSERT(oth->ot_handle->h_transaction != NULL);
3704         LASSERT(pobj->oo_inode);
3705
3706         ldp = (struct ldiskfs_dentry_param *)info->oti_ldp;
3707         if (unlikely(pobj->oo_inode ==
3708                      osd_sb(osd_obj2dev(pobj))->s_root->d_inode))
3709                 ldp->edp_magic = 0;
3710         else
3711                 osd_get_ldiskfs_dirent_param(ldp, fid);
3712         child = osd_child_dentry_get(info->oti_env, pobj, name, strlen(name));
3713         child->d_fsdata = (void *)ldp;
3714         ll_vfs_dq_init(pobj->oo_inode);
3715         rc = osd_ldiskfs_add_entry(oth->ot_handle, child, cinode, hlock);
3716
3717         RETURN(rc);
3718 }
3719
3720 /**
3721  * Calls ldiskfs_add_dot_dotdot() to add dot and dotdot entries
3722  * into the directory.Also sets flags into osd object to
3723  * indicate dot and dotdot are created. This is required for
3724  * interoperability mode (b11826)
3725  *
3726  * \param dir   directory for dot and dotdot fixup.
3727  * \param obj   child object for linking
3728  *
3729  * \retval   0, on success
3730  * \retval -ve, on error
3731  */
3732 static int osd_add_dot_dotdot(struct osd_thread_info *info,
3733                               struct osd_object *dir,
3734                               struct inode  *parent_dir, const char *name,
3735                               const struct dt_rec *dot_fid,
3736                               const struct dt_rec *dot_dot_fid,
3737                               struct thandle *th)
3738 {
3739         struct inode                *inode = dir->oo_inode;
3740         struct osd_thandle          *oth;
3741         int result = 0;
3742
3743         oth = container_of(th, struct osd_thandle, ot_super);
3744         LASSERT(oth->ot_handle->h_transaction != NULL);
3745         LASSERT(S_ISDIR(dir->oo_inode->i_mode));
3746
3747         if (strcmp(name, dot) == 0) {
3748                 if (dir->oo_compat_dot_created) {
3749                         result = -EEXIST;
3750                 } else {
3751                         LASSERT(inode == parent_dir);
3752                         dir->oo_compat_dot_created = 1;
3753                         result = 0;
3754                 }
3755         } else if (strcmp(name, dotdot) == 0) {
3756                 if (!dir->oo_compat_dot_created)
3757                         return -EINVAL;
3758                 /* in case of rename, dotdot is already created */
3759                 if (dir->oo_compat_dotdot_created) {
3760                         return __osd_ea_add_rec(info, dir, parent_dir, name,
3761                                                 dot_dot_fid, NULL, th);
3762                 }
3763
3764                 result = osd_add_dot_dotdot_internal(info, dir->oo_inode,
3765                                                 parent_dir, dot_fid,
3766                                                 dot_dot_fid, oth);
3767                 if (result == 0)
3768                         dir->oo_compat_dotdot_created = 1;
3769         }
3770
3771         return result;
3772 }
3773
3774
3775 /**
3776  * It will call the appropriate osd_add* function and return the
3777  * value, return by respective functions.
3778  */
3779 static int osd_ea_add_rec(const struct lu_env *env, struct osd_object *pobj,
3780                           struct inode *cinode, const char *name,
3781                           const struct dt_rec *fid, struct thandle *th)
3782 {
3783         struct osd_thread_info *info   = osd_oti_get(env);
3784         struct htree_lock      *hlock;
3785         int                     rc;
3786
3787         hlock = pobj->oo_hl_head != NULL ? info->oti_hlock : NULL;
3788
3789         if (name[0] == '.' && (name[1] == '\0' || (name[1] == '.' &&
3790                                                    name[2] =='\0'))) {
3791                 if (hlock != NULL) {
3792                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
3793                                            pobj->oo_inode, 0);
3794                 } else {
3795                         down_write(&pobj->oo_ext_idx_sem);
3796                 }
3797                 rc = osd_add_dot_dotdot(info, pobj, cinode, name,
3798                      (struct dt_rec *)lu_object_fid(&pobj->oo_dt.do_lu),
3799                                         fid, th);
3800         } else {
3801                 if (hlock != NULL) {
3802                         ldiskfs_htree_lock(hlock, pobj->oo_hl_head,
3803                                            pobj->oo_inode, LDISKFS_HLOCK_ADD);
3804                 } else {
3805                         down_write(&pobj->oo_ext_idx_sem);
3806                 }
3807
3808                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_INDIR)) {
3809                         struct lu_fid *tfid = &info->oti_fid;
3810
3811                         *tfid = *(const struct lu_fid *)fid;
3812                         tfid->f_ver = ~0;
3813                         rc = __osd_ea_add_rec(info, pobj, cinode, name,
3814                                               (const struct dt_rec *)tfid,
3815                                               hlock, th);
3816                 } else {
3817                         rc = __osd_ea_add_rec(info, pobj, cinode, name, fid,
3818                                               hlock, th);
3819                 }
3820         }
3821         if (hlock != NULL)
3822                 ldiskfs_htree_unlock(hlock);
3823         else
3824                 up_write(&pobj->oo_ext_idx_sem);
3825
3826         return rc;
3827 }
3828
3829 static void
3830 osd_consistency_check(struct osd_thread_info *oti, struct osd_device *dev,
3831                       struct osd_idmap_cache *oic)
3832 {
3833         struct osd_scrub    *scrub = &dev->od_scrub;
3834         struct lu_fid       *fid   = &oic->oic_fid;
3835         struct osd_inode_id *id    = &oti->oti_id;
3836         int                  once  = 0;
3837         int                  rc;
3838         ENTRY;
3839
3840         if (!fid_is_norm(fid) && !fid_is_igif(fid))
3841                 RETURN_EXIT;
3842
3843 again:
3844         rc = osd_oi_lookup(oti, dev, fid, id, OI_CHECK_FLD);
3845         if (rc != 0 && rc != -ENOENT)
3846                 RETURN_EXIT;
3847
3848         if (rc == 0 && osd_id_eq(id, &oic->oic_lid))
3849                 RETURN_EXIT;
3850
3851         if (thread_is_running(&scrub->os_thread)) {
3852                 rc = osd_oii_insert(dev, oic, rc == -ENOENT);
3853                 /* There is race condition between osd_oi_lookup and OI scrub.
3854                  * The OI scrub finished just after osd_oi_lookup() failure.
3855                  * Under such case, it is unnecessary to trigger OI scrub again,
3856                  * but try to call osd_oi_lookup() again. */
3857                 if (unlikely(rc == -EAGAIN))
3858                         goto again;
3859
3860                 RETURN_EXIT;
3861         }
3862
3863         if (!dev->od_noscrub && ++once == 1) {
3864                 CDEBUG(D_LFSCK, "Trigger OI scrub by RPC for "DFID"\n",
3865                        PFID(fid));
3866                 rc = osd_scrub_start(dev);
3867                 LCONSOLE_ERROR("%.16s: trigger OI scrub by RPC for "DFID
3868                                ", rc = %d [2]\n",
3869                                LDISKFS_SB(osd_sb(dev))->s_es->s_volume_name,
3870                                PFID(fid), rc);
3871                 if (rc == 0)
3872                         goto again;
3873         }
3874
3875         EXIT;
3876 }
3877
3878 static int osd_fail_fid_lookup(struct osd_thread_info *oti,
3879                                struct osd_device *dev,
3880                                struct osd_idmap_cache *oic,
3881                                struct lu_fid *fid, __u32 ino)
3882 {
3883         struct lustre_mdt_attrs *lma   = &oti->oti_mdt_attrs;
3884         struct inode            *inode;
3885         int                      rc;
3886
3887         osd_id_gen(&oic->oic_lid, ino, OSD_OII_NOGEN);
3888         inode = osd_iget(oti, dev, &oic->oic_lid);
3889         if (IS_ERR(inode)) {
3890                 fid_zero(&oic->oic_fid);
3891                 return PTR_ERR(inode);
3892         }
3893
3894         rc = osd_get_lma(oti, inode, &oti->oti_obj_dentry, lma);
3895         iput(inode);
3896         if (rc != 0)
3897                 fid_zero(&oic->oic_fid);
3898         else
3899                 *fid = oic->oic_fid = lma->lma_self_fid;
3900         return rc;
3901 }
3902
3903 int osd_add_oi_cache(struct osd_thread_info *info, struct osd_device *osd,
3904                      struct osd_inode_id *id, const struct lu_fid *fid)
3905 {
3906         CDEBUG(D_INODE, "add "DFID" %u:%u to info %p\n", PFID(fid),
3907                id->oii_ino, id->oii_gen, info);
3908         info->oti_cache.oic_lid = *id;
3909         info->oti_cache.oic_fid = *fid;
3910         info->oti_cache.oic_dev = osd;
3911
3912         return 0;
3913 }
3914
3915 /**
3916  * Calls ->lookup() to find dentry. From dentry get inode and
3917  * read inode's ea to get fid. This is required for  interoperability
3918  * mode (b11826)
3919  *
3920  * \retval   0, on success
3921  * \retval -ve, on error
3922  */
3923 static int osd_ea_lookup_rec(const struct lu_env *env, struct osd_object *obj,
3924                              struct dt_rec *rec, const struct dt_key *key)
3925 {
3926         struct inode               *dir    = obj->oo_inode;
3927         struct dentry              *dentry;
3928         struct ldiskfs_dir_entry_2 *de;
3929         struct buffer_head         *bh;
3930         struct lu_fid              *fid = (struct lu_fid *) rec;
3931         struct htree_lock          *hlock = NULL;
3932         int                         ino;
3933         int                         rc;
3934         ENTRY;
3935
3936         LASSERT(dir->i_op != NULL && dir->i_op->lookup != NULL);
3937
3938         dentry = osd_child_dentry_get(env, obj,
3939                                       (char *)key, strlen((char *)key));
3940
3941         if (obj->oo_hl_head != NULL) {
3942                 hlock = osd_oti_get(env)->oti_hlock;
3943                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
3944                                    dir, LDISKFS_HLOCK_LOOKUP);
3945         } else {
3946                 down_read(&obj->oo_ext_idx_sem);
3947         }
3948
3949         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
3950         if (bh) {
3951                 struct osd_thread_info *oti = osd_oti_get(env);
3952                 struct osd_inode_id *id = &oti->oti_id;
3953                 struct osd_idmap_cache *oic = &oti->oti_cache;
3954                 struct osd_device *dev = osd_obj2dev(obj);
3955                 struct osd_scrub *scrub = &dev->od_scrub;
3956                 struct scrub_file *sf = &scrub->os_file;
3957
3958                 ino = le32_to_cpu(de->inode);
3959                 if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP)) {
3960                         brelse(bh);
3961                         rc = osd_fail_fid_lookup(oti, dev, oic, fid, ino);
3962                         GOTO(out, rc);
3963                 }
3964
3965                 rc = osd_get_fid_from_dentry(de, rec);
3966
3967                 /* done with de, release bh */
3968                 brelse(bh);
3969                 if (rc != 0)
3970                         rc = osd_ea_fid_get(env, obj, ino, fid, id);
3971                 else
3972                         osd_id_gen(id, ino, OSD_OII_NOGEN);
3973                 if (rc != 0) {
3974                         fid_zero(&oic->oic_fid);
3975                         GOTO(out, rc);
3976                 }
3977
3978                 rc = osd_add_oi_cache(osd_oti_get(env), osd_obj2dev(obj), id,
3979                                       fid);
3980                 if (rc != 0)
3981                         GOTO(out, rc);
3982                 if ((scrub->os_pos_current <= ino) &&
3983                     ((sf->sf_flags & SF_INCONSISTENT) ||
3984                      (sf->sf_flags & SF_UPGRADE && fid_is_igif(fid)) ||
3985                      ldiskfs_test_bit(osd_oi_fid2idx(dev, fid),
3986                                       sf->sf_oi_bitmap)))
3987                         osd_consistency_check(oti, dev, oic);
3988         } else {
3989                 rc = -ENOENT;
3990         }
3991
3992         GOTO(out, rc);
3993
3994 out:
3995         if (hlock != NULL)
3996                 ldiskfs_htree_unlock(hlock);
3997         else
3998                 up_read(&obj->oo_ext_idx_sem);
3999         return rc;
4000 }
4001
4002 /**
4003  * Find the osd object for given fid.
4004  *
4005  * \param fid need to find the osd object having this fid
4006  *
4007  * \retval osd_object on success
4008  * \retval        -ve on error
4009  */
4010 struct osd_object *osd_object_find(const struct lu_env *env,
4011                                    struct dt_object *dt,
4012                                    const struct lu_fid *fid)
4013 {
4014         struct lu_device  *ludev = dt->do_lu.lo_dev;
4015         struct osd_object *child = NULL;
4016         struct lu_object  *luch;
4017         struct lu_object  *lo;
4018
4019         /*
4020          * at this point topdev might not exist yet
4021          * (i.e. MGS is preparing profiles). so we can
4022          * not rely on topdev and instead lookup with
4023          * our device passed as topdev. this can't work
4024          * if the object isn't cached yet (as osd doesn't
4025          * allocate lu_header). IOW, the object must be
4026          * in the cache, otherwise lu_object_alloc() crashes
4027          * -bzzz
4028          */
4029         luch = lu_object_find_at(env, ludev, fid, NULL);
4030         if (!IS_ERR(luch)) {
4031                 if (lu_object_exists(luch)) {
4032                         lo = lu_object_locate(luch->lo_header, ludev->ld_type);
4033                         if (lo != NULL)
4034                                 child = osd_obj(lo);
4035                         else
4036                                 LU_OBJECT_DEBUG(D_ERROR, env, luch,
4037                                                 "lu_object can't be located"
4038                                                 DFID"\n", PFID(fid));
4039
4040                         if (child == NULL) {
4041                                 lu_object_put(env, luch);
4042                                 CERROR("Unable to get osd_object\n");
4043                                 child = ERR_PTR(-ENOENT);
4044                         }
4045                 } else {
4046                         LU_OBJECT_DEBUG(D_ERROR, env, luch,
4047                                         "lu_object does not exists "DFID"\n",
4048                                         PFID(fid));
4049                         lu_object_put(env, luch);
4050                         child = ERR_PTR(-ENOENT);
4051                 }
4052         } else {
4053                 child = ERR_CAST(luch);
4054         }
4055
4056         return child;
4057 }
4058
4059 /**
4060  * Put the osd object once done with it.
4061  *
4062  * \param obj osd object that needs to be put
4063  */
4064 static inline void osd_object_put(const struct lu_env *env,
4065                                   struct osd_object *obj)
4066 {
4067         lu_object_put(env, &obj->oo_dt.do_lu);
4068 }
4069
4070 static int osd_index_declare_ea_insert(const struct lu_env *env,
4071                                        struct dt_object *dt,
4072                                        const struct dt_rec *rec,
4073                                        const struct dt_key *key,
4074                                        struct thandle *handle)
4075 {
4076         struct osd_thandle      *oh;
4077         struct osd_device       *osd   = osd_dev(dt->do_lu.lo_dev);
4078         struct lu_fid           *fid = (struct lu_fid *)rec;
4079         int                     rc;
4080         ENTRY;
4081
4082         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
4083         LASSERT(handle != NULL);
4084
4085         oh = container_of0(handle, struct osd_thandle, ot_super);
4086         LASSERT(oh->ot_handle == NULL);
4087
4088         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4089                              osd_dto_credits_noquota[DTO_INDEX_INSERT]);
4090
4091         if (osd_dt_obj(dt)->oo_inode == NULL) {
4092                 const char *name  = (const char *)key;
4093                 /* Object is not being created yet. Only happens when
4094                  *     1. declare directory create
4095                  *     2. declare insert .
4096                  *     3. declare insert ..
4097                  */
4098                 LASSERT(strcmp(name, dotdot) == 0 || strcmp(name, dot) == 0);
4099         } else {
4100                 struct inode *inode = osd_dt_obj(dt)->oo_inode;
4101
4102                 /* We ignore block quota on meta pool (MDTs), so needn't
4103                  * calculate how many blocks will be consumed by this index
4104                  * insert */
4105                 rc = osd_declare_inode_qid(env, inode->i_uid, inode->i_gid, 0,
4106                                            oh, true, true, NULL, false);
4107         }
4108
4109         if (fid == NULL)
4110                 RETURN(0);
4111
4112         rc = osd_remote_fid(env, osd, fid);
4113         if (rc <= 0)
4114                 RETURN(rc);
4115
4116         rc = 0;
4117
4118         osd_trans_declare_op(env, oh, OSD_OT_CREATE,
4119                              osd_dto_credits_noquota[DTO_OBJECT_CREATE]);
4120         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4121                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
4122         osd_trans_declare_op(env, oh, OSD_OT_INSERT,
4123                              osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1);
4124
4125         RETURN(rc);
4126 }
4127
4128 /**
4129  * Index add function for interoperability mode (b11826).
4130  * It will add the directory entry.This entry is needed to
4131  * maintain name->fid mapping.
4132  *
4133  * \param key it is key i.e. file entry to be inserted
4134  * \param rec it is value of given key i.e. fid
4135  *
4136  * \retval   0, on success
4137  * \retval -ve, on error
4138  */
4139 static int osd_index_ea_insert(const struct lu_env *env, struct dt_object *dt,
4140                                const struct dt_rec *rec,
4141                                const struct dt_key *key, struct thandle *th,
4142                                struct lustre_capa *capa, int ignore_quota)
4143 {
4144         struct osd_object       *obj = osd_dt_obj(dt);
4145         struct osd_device       *osd = osd_dev(dt->do_lu.lo_dev);
4146         struct lu_fid           *fid = (struct lu_fid *) rec;
4147         const char              *name = (const char *)key;
4148         struct osd_thread_info  *oti   = osd_oti_get(env);
4149         struct osd_inode_id     *id    = &oti->oti_id;
4150         struct inode            *child_inode = NULL;
4151         struct osd_object       *child = NULL;
4152         int                     rc;
4153         ENTRY;
4154
4155         LASSERT(osd_invariant(obj));
4156         LASSERT(dt_object_exists(dt) && !dt_object_remote(dt));
4157         LASSERT(th != NULL);
4158
4159         osd_trans_exec_op(env, th, OSD_OT_INSERT);
4160
4161         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_INSERT))
4162                 RETURN(-EACCES);
4163
4164         LASSERTF(fid_is_sane(fid), "fid"DFID" is insane!", PFID(fid));
4165
4166         rc = osd_remote_fid(env, osd, fid);
4167         if (rc < 0) {
4168                 CERROR("%s: Can not find object "DFID" rc %d\n",
4169                        osd_name(osd), PFID(fid), rc);
4170                 RETURN(rc);
4171         }
4172
4173         if (rc == 1) {
4174                 /* Insert remote entry */
4175                 if (strcmp(name, dotdot) == 0 && strlen(name) == 2) {
4176                         struct osd_mdobj_map    *omm = osd->od_mdt_map;
4177                         struct osd_thandle      *oh;
4178
4179                         /* If parent on remote MDT, we need put this object
4180                          * under AGENT */
4181                         oh = container_of(th, typeof(*oh), ot_super);
4182                         rc = osd_add_to_remote_parent(env, osd, obj, oh);
4183                         if (rc != 0) {
4184                                 CERROR("%s: add "DFID" error: rc = %d\n",
4185                                        osd_name(osd),
4186                                        PFID(lu_object_fid(&dt->do_lu)), rc);
4187                                 RETURN(rc);
4188                         }
4189
4190                         child_inode = igrab(omm->omm_remote_parent->d_inode);
4191                 } else {
4192                         child_inode = osd_create_local_agent_inode(env, osd,
4193                                                                    obj, fid,
4194                                                                    th);
4195                         if (IS_ERR(child_inode))
4196                                 RETURN(PTR_ERR(child_inode));
4197                 }
4198         } else {
4199                 /* Insert local entry */
4200                 child = osd_object_find(env, dt, fid);
4201                 if (IS_ERR(child)) {
4202                         CERROR("%s: Can not find object "DFID"%u:%u: rc = %d\n",
4203                                osd_name(osd), PFID(fid),
4204                                id->oii_ino, id->oii_gen,
4205                                (int)PTR_ERR(child));
4206                         RETURN(PTR_ERR(child));
4207                 }
4208                 child_inode = igrab(child->oo_inode);
4209         }
4210
4211         rc = osd_ea_add_rec(env, obj, child_inode, name, rec, th);
4212
4213         iput(child_inode);
4214         if (child != NULL)
4215                 osd_object_put(env, child);
4216         LASSERT(osd_invariant(obj));
4217         RETURN(rc);
4218 }
4219
4220 /**
4221  *  Initialize osd Iterator for given osd index object.
4222  *
4223  *  \param  dt      osd index object
4224  */
4225
4226 static struct dt_it *osd_it_iam_init(const struct lu_env *env,
4227                                      struct dt_object *dt,
4228                                      __u32 unused,
4229                                      struct lustre_capa *capa)
4230 {
4231         struct osd_it_iam      *it;
4232         struct osd_thread_info *oti = osd_oti_get(env);
4233         struct osd_object      *obj = osd_dt_obj(dt);
4234         struct lu_object       *lo  = &dt->do_lu;
4235         struct iam_path_descr  *ipd;
4236         struct iam_container   *bag = &obj->oo_dir->od_container;
4237
4238         LASSERT(lu_object_exists(lo));
4239
4240         if (osd_object_auth(env, dt, capa, CAPA_OPC_BODY_READ))
4241                 return ERR_PTR(-EACCES);
4242
4243         it = &oti->oti_it;
4244         ipd = osd_it_ipd_get(env, bag);
4245         if (likely(ipd != NULL)) {
4246                 it->oi_obj = obj;
4247                 it->oi_ipd = ipd;
4248                 lu_object_get(lo);
4249                 iam_it_init(&it->oi_it, bag, IAM_IT_MOVE, ipd);
4250                 return (struct dt_it *)it;
4251         }
4252         return ERR_PTR(-ENOMEM);
4253 }
4254
4255 /**
4256  * free given Iterator.
4257  */
4258
4259 static void osd_it_iam_fini(const struct lu_env *env, struct dt_it *di)
4260 {
4261         struct osd_it_iam *it = (struct osd_it_iam *)di;
4262         struct osd_object *obj = it->oi_obj;
4263
4264         iam_it_fini(&it->oi_it);
4265         osd_ipd_put(env, &obj->oo_dir->od_container, it->oi_ipd);
4266         lu_object_put(env, &obj->oo_dt.do_lu);
4267 }
4268
4269 /**
4270  *  Move Iterator to record specified by \a key
4271  *
4272  *  \param  di      osd iterator
4273  *  \param  key     key for index
4274  *
4275  *  \retval +ve  di points to record with least key not larger than key
4276  *  \retval  0   di points to exact matched key
4277  *  \retval -ve  failure
4278  */
4279
4280 static int osd_it_iam_get(const struct lu_env *env,
4281                           struct dt_it *di, const struct dt_key *key)
4282 {
4283         struct osd_thread_info  *oti = osd_oti_get(env);
4284         struct osd_it_iam       *it = (struct osd_it_iam *)di;
4285
4286         if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
4287                 /* swab quota uid/gid */
4288                 oti->oti_quota_id = cpu_to_le64(*((__u64 *)key));
4289                 key = (struct dt_key *)&oti->oti_quota_id;
4290         }
4291
4292         return iam_it_get(&it->oi_it, (const struct iam_key *)key);
4293 }
4294
4295 /**
4296  *  Release Iterator
4297  *
4298  *  \param  di      osd iterator
4299  */
4300 static void osd_it_iam_put(const struct lu_env *env, struct dt_it *di)
4301 {
4302         struct osd_it_iam *it = (struct osd_it_iam *)di;
4303
4304         iam_it_put(&it->oi_it);
4305 }
4306
4307 /**
4308  *  Move iterator by one record
4309  *
4310  *  \param  di      osd iterator
4311  *
4312  *  \retval +1   end of container reached
4313  *  \retval  0   success
4314  *  \retval -ve  failure
4315  */
4316
4317 static int osd_it_iam_next(const struct lu_env *env, struct dt_it *di)
4318 {
4319         struct osd_it_iam *it = (struct osd_it_iam *)di;
4320
4321         return iam_it_next(&it->oi_it);
4322 }
4323
4324 /**
4325  * Return pointer to the key under iterator.
4326  */
4327
4328 static struct dt_key *osd_it_iam_key(const struct lu_env *env,
4329                                  const struct dt_it *di)
4330 {
4331         struct osd_thread_info *oti = osd_oti_get(env);
4332         struct osd_it_iam      *it = (struct osd_it_iam *)di;
4333         struct osd_object      *obj = it->oi_obj;
4334         struct dt_key          *key;
4335
4336         key = (struct dt_key *)iam_it_key_get(&it->oi_it);
4337
4338         if (!IS_ERR(key) && fid_is_quota(lu_object_fid(&obj->oo_dt.do_lu))) {
4339                 /* swab quota uid/gid */
4340                 oti->oti_quota_id = le64_to_cpu(*((__u64 *)key));
4341                 key = (struct dt_key *)&oti->oti_quota_id;
4342         }
4343
4344         return key;
4345 }
4346
4347 /**
4348  * Return size of key under iterator (in bytes)
4349  */
4350
4351 static int osd_it_iam_key_size(const struct lu_env *env, const struct dt_it *di)
4352 {
4353         struct osd_it_iam *it = (struct osd_it_iam *)di;
4354
4355         return iam_it_key_size(&it->oi_it);
4356 }
4357
4358 static inline void
4359 osd_it_append_attrs(struct lu_dirent *ent, int len, __u16 type)
4360 {
4361         /* check if file type is required */
4362         if (ent->lde_attrs & LUDA_TYPE) {
4363                 struct luda_type *lt;
4364                 int align = sizeof(*lt) - 1;
4365
4366                 len = (len + align) & ~align;
4367                 lt = (struct luda_type *)(ent->lde_name + len);
4368                 lt->lt_type = cpu_to_le16(DTTOIF(type));
4369         }
4370
4371         ent->lde_attrs = cpu_to_le32(ent->lde_attrs);
4372 }
4373
4374 /**
4375  * build lu direct from backend fs dirent.
4376  */
4377
4378 static inline void
4379 osd_it_pack_dirent(struct lu_dirent *ent, struct lu_fid *fid, __u64 offset,
4380                    char *name, __u16 namelen, __u16 type, __u32 attr)
4381 {
4382         ent->lde_attrs = attr | LUDA_FID;
4383         fid_cpu_to_le(&ent->lde_fid, fid);
4384
4385         ent->lde_hash = cpu_to_le64(offset);
4386         ent->lde_reclen = cpu_to_le16(lu_dirent_calc_size(namelen, attr));
4387
4388         strncpy(ent->lde_name, name, namelen);
4389         ent->lde_name[namelen] = '\0';
4390         ent->lde_namelen = cpu_to_le16(namelen);
4391
4392         /* append lustre attributes */
4393         osd_it_append_attrs(ent, namelen, type);
4394 }
4395
4396 /**
4397  * Return pointer to the record under iterator.
4398  */
4399 static int osd_it_iam_rec(const struct lu_env *env,
4400                           const struct dt_it *di,
4401                           struct dt_rec *dtrec, __u32 attr)
4402 {
4403         struct osd_it_iam      *it   = (struct osd_it_iam *)di;
4404         struct osd_thread_info *info = osd_oti_get(env);
4405         ENTRY;
4406
4407         if (S_ISDIR(it->oi_obj->oo_inode->i_mode)) {
4408                 const struct osd_fid_pack *rec;
4409                 struct lu_fid             *fid = &info->oti_fid;
4410                 struct lu_dirent          *lde = (struct lu_dirent *)dtrec;
4411                 char                      *name;
4412                 int                        namelen;
4413                 __u64                      hash;
4414                 int                        rc;
4415
4416                 name = (char *)iam_it_key_get(&it->oi_it);
4417                 if (IS_ERR(name))
4418                         RETURN(PTR_ERR(name));
4419
4420                 namelen = iam_it_key_size(&it->oi_it);
4421
4422                 rec = (const struct osd_fid_pack *)iam_it_rec_get(&it->oi_it);
4423                 if (IS_ERR(rec))
4424                         RETURN(PTR_ERR(rec));
4425
4426                 rc = osd_fid_unpack(fid, rec);
4427                 if (rc)
4428                         RETURN(rc);
4429
4430                 hash = iam_it_store(&it->oi_it);
4431
4432                 /* IAM does not store object type in IAM index (dir) */
4433                 osd_it_pack_dirent(lde, fid, hash, name, namelen,
4434                                    0, LUDA_FID);
4435         } else if (fid_is_quota(lu_object_fid(&it->oi_obj->oo_dt.do_lu))) {
4436                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
4437                            (struct iam_rec *)dtrec);
4438                 osd_quota_unpack(it->oi_obj, dtrec);
4439         } else {
4440                 iam_reccpy(&it->oi_it.ii_path.ip_leaf,
4441                            (struct iam_rec *)dtrec);
4442         }
4443
4444         RETURN(0);
4445 }
4446
4447 /**
4448  * Returns cookie for current Iterator position.
4449  */
4450 static __u64 osd_it_iam_store(const struct lu_env *env, const struct dt_it *di)
4451 {
4452         struct osd_it_iam *it = (struct osd_it_iam *)di;
4453
4454         return iam_it_store(&it->oi_it);
4455 }
4456
4457 /**
4458  * Restore iterator from cookie.
4459  *
4460  * \param  di      osd iterator
4461  * \param  hash    Iterator location cookie
4462  *
4463  * \retval +ve  di points to record with least key not larger than key.
4464  * \retval  0   di points to exact matched key
4465  * \retval -ve  failure
4466  */
4467
4468 static int osd_it_iam_load(const struct lu_env *env,
4469                            const struct dt_it *di, __u64 hash)
4470 {
4471         struct osd_it_iam *it = (struct osd_it_iam *)di;
4472
4473         return iam_it_load(&it->oi_it, hash);
4474 }
4475
4476 static const struct dt_index_operations osd_index_iam_ops = {
4477         .dio_lookup         = osd_index_iam_lookup,
4478         .dio_declare_insert = osd_index_declare_iam_insert,
4479         .dio_insert         = osd_index_iam_insert,
4480         .dio_declare_delete = osd_index_declare_iam_delete,
4481         .dio_delete         = osd_index_iam_delete,
4482         .dio_it     = {
4483                 .init     = osd_it_iam_init,
4484                 .fini     = osd_it_iam_fini,
4485                 .get      = osd_it_iam_get,
4486                 .put      = osd_it_iam_put,
4487                 .next     = osd_it_iam_next,
4488                 .key      = osd_it_iam_key,
4489                 .key_size = osd_it_iam_key_size,
4490                 .rec      = osd_it_iam_rec,
4491                 .store    = osd_it_iam_store,
4492                 .load     = osd_it_iam_load
4493         }
4494 };
4495
4496
4497 /**
4498  * Creates or initializes iterator context.
4499  *
4500  * \retval struct osd_it_ea, iterator structure on success
4501  *
4502  */
4503 static struct dt_it *osd_it_ea_init(const struct lu_env *env,
4504                                     struct dt_object *dt,
4505                                     __u32 attr,
4506                                     struct lustre_capa *capa)
4507 {
4508         struct osd_object       *obj  = osd_dt_obj(dt);
4509         struct osd_thread_info  *info = osd_oti_get(env);
4510         struct osd_it_ea        *it   = &info->oti_it_ea;
4511         struct file             *file = &it->oie_file;
4512         struct lu_object        *lo   = &dt->do_lu;
4513         struct dentry           *obj_dentry = &info->oti_it_dentry;
4514         ENTRY;
4515         LASSERT(lu_object_exists(lo));
4516
4517         obj_dentry->d_inode = obj->oo_inode;
4518         obj_dentry->d_sb = osd_sb(osd_obj2dev(obj));
4519         obj_dentry->d_name.hash = 0;
4520
4521         it->oie_rd_dirent       = 0;
4522         it->oie_it_dirent       = 0;
4523         it->oie_dirent          = NULL;
4524         it->oie_buf             = info->oti_it_ea_buf;
4525         it->oie_obj             = obj;
4526
4527         /* Reset the "file" totally to avoid to reuse any old value from
4528          * former readdir handling, the "file->f_pos" should be zero. */
4529         memset(file, 0, sizeof(*file));
4530         /* Only FMODE_64BITHASH or FMODE_32BITHASH should be set, NOT both. */
4531         if (attr & LUDA_64BITHASH)
4532                 file->f_mode    = FMODE_64BITHASH;
4533         else
4534                 file->f_mode    = FMODE_32BITHASH;
4535         file->f_dentry          = obj_dentry;
4536         file->f_mapping         = obj->oo_inode->i_mapping;
4537         file->f_op              = obj->oo_inode->i_fop;
4538         set_file_inode(file, obj->oo_inode);
4539
4540         lu_object_get(lo);
4541         RETURN((struct dt_it *) it);
4542 }
4543
4544 /**
4545  * Destroy or finishes iterator context.
4546  *
4547  * \param di iterator structure to be destroyed
4548  */
4549 static void osd_it_ea_fini(const struct lu_env *env, struct dt_it *di)
4550 {
4551         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
4552         struct osd_object    *obj  = it->oie_obj;
4553         struct inode       *inode  = obj->oo_inode;
4554
4555         ENTRY;
4556         it->oie_file.f_op->release(inode, &it->oie_file);
4557         lu_object_put(env, &obj->oo_dt.do_lu);
4558         EXIT;
4559 }
4560
4561 /**
4562  * It position the iterator at given key, so that next lookup continues from
4563  * that key Or it is similar to dio_it->load() but based on a key,
4564  * rather than file position.
4565  *
4566  * As a special convention, osd_it_ea_get(env, di, "") has to rewind iterator
4567  * to the beginning.
4568  *
4569  * TODO: Presently return +1 considering it is only used by mdd_dir_is_empty().
4570  */
4571 static int osd_it_ea_get(const struct lu_env *env,
4572                          struct dt_it *di, const struct dt_key *key)
4573 {
4574         struct osd_it_ea     *it   = (struct osd_it_ea *)di;
4575
4576         ENTRY;
4577         LASSERT(((const char *)key)[0] == '\0');
4578         it->oie_file.f_pos      = 0;
4579         it->oie_rd_dirent       = 0;
4580         it->oie_it_dirent       = 0;
4581         it->oie_dirent          = NULL;
4582
4583         RETURN(+1);
4584 }
4585
4586 /**
4587  * Does nothing
4588  */
4589 static void osd_it_ea_put(const struct lu_env *env, struct dt_it *di)
4590 {
4591 }
4592
4593 /**
4594  * It is called internally by ->readdir(). It fills the
4595  * iterator's in-memory data structure with required
4596  * information i.e. name, namelen, rec_size etc.
4597  *
4598  * \param buf in which information to be filled in.
4599  * \param name name of the file in given dir
4600  *
4601  * \retval 0 on success
4602  * \retval 1 on buffer full
4603  */
4604 static int osd_ldiskfs_filldir(char *buf, const char *name, int namelen,
4605                                loff_t offset, __u64 ino,
4606                                unsigned d_type)
4607 {
4608         struct osd_it_ea        *it   = (struct osd_it_ea *)buf;
4609         struct osd_object       *obj  = it->oie_obj;
4610         struct osd_it_ea_dirent *ent  = it->oie_dirent;
4611         struct lu_fid           *fid  = &ent->oied_fid;
4612         struct osd_fid_pack     *rec;
4613         ENTRY;
4614
4615         /* this should never happen */
4616         if (unlikely(namelen == 0 || namelen > LDISKFS_NAME_LEN)) {
4617                 CERROR("ldiskfs return invalid namelen %d\n", namelen);
4618                 RETURN(-EIO);
4619         }
4620
4621         if ((void *) ent - it->oie_buf + sizeof(*ent) + namelen >
4622             OSD_IT_EA_BUFSIZE)
4623                 RETURN(1);
4624
4625         /* "." is just the object itself. */
4626         if (namelen == 1 && name[0] == '.') {
4627                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
4628         } else if (d_type & LDISKFS_DIRENT_LUFID) {
4629                 rec = (struct osd_fid_pack*) (name + namelen + 1);
4630                 if (osd_fid_unpack(fid, rec) != 0)
4631                         fid_zero(fid);
4632         } else {
4633                 fid_zero(fid);
4634         }
4635         d_type &= ~LDISKFS_DIRENT_LUFID;
4636
4637         /* NOT export local root. */
4638         if (unlikely(osd_sb(osd_obj2dev(obj))->s_root->d_inode->i_ino == ino)) {
4639                 ino = obj->oo_inode->i_ino;
4640                 *fid = obj->oo_dt.do_lu.lo_header->loh_fid;
4641         }
4642
4643         ent->oied_ino     = ino;
4644         ent->oied_off     = offset;
4645         ent->oied_namelen = namelen;
4646         ent->oied_type    = d_type;
4647
4648         memcpy(ent->oied_name, name, namelen);
4649
4650         it->oie_rd_dirent++;
4651         it->oie_dirent = (void *) ent + cfs_size_round(sizeof(*ent) + namelen);
4652         RETURN(0);
4653 }
4654
4655 /**
4656  * Calls ->readdir() to load a directory entry at a time
4657  * and stored it in iterator's in-memory data structure.
4658  *
4659  * \param di iterator's in memory structure
4660  *
4661  * \retval   0 on success
4662  * \retval -ve on error
4663  */
4664 static int osd_ldiskfs_it_fill(const struct lu_env *env,
4665                                const struct dt_it *di)
4666 {
4667         struct osd_it_ea   *it    = (struct osd_it_ea *)di;
4668         struct osd_object  *obj   = it->oie_obj;
4669         struct inode       *inode = obj->oo_inode;
4670         struct htree_lock  *hlock = NULL;
4671         int                 result = 0;
4672
4673         ENTRY;
4674         it->oie_dirent = it->oie_buf;
4675         it->oie_rd_dirent = 0;
4676
4677         if (obj->oo_hl_head != NULL) {
4678                 hlock = osd_oti_get(env)->oti_hlock;
4679                 ldiskfs_htree_lock(hlock, obj->oo_hl_head,
4680                                    inode, LDISKFS_HLOCK_READDIR);
4681         } else {
4682                 down_read(&obj->oo_ext_idx_sem);
4683         }
4684
4685         result = inode->i_fop->readdir(&it->oie_file, it,
4686                                        (filldir_t) osd_ldiskfs_filldir);
4687
4688         if (hlock != NULL)
4689                 ldiskfs_htree_unlock(hlock);
4690         else
4691                 up_read(&obj->oo_ext_idx_sem);
4692
4693         if (it->oie_rd_dirent == 0) {
4694                 result = -EIO;
4695         } else {
4696                 it->oie_dirent = it->oie_buf;
4697                 it->oie_it_dirent = 1;
4698         }
4699
4700         RETURN(result);
4701 }
4702
4703 /**
4704  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
4705  * to load a directory entry at a time and stored it in
4706  * iterator's in-memory data structure.
4707  *
4708  * \param di iterator's in memory structure
4709  *
4710  * \retval +ve iterator reached to end
4711  * \retval   0 iterator not reached to end
4712  * \retval -ve on error
4713  */
4714 static int osd_it_ea_next(const struct lu_env *env, struct dt_it *di)
4715 {
4716         struct osd_it_ea *it = (struct osd_it_ea *)di;
4717         int rc;
4718
4719         ENTRY;
4720
4721         if (it->oie_it_dirent < it->oie_rd_dirent) {
4722                 it->oie_dirent =
4723                         (void *) it->oie_dirent +
4724                         cfs_size_round(sizeof(struct osd_it_ea_dirent) +
4725                                        it->oie_dirent->oied_namelen);
4726                 it->oie_it_dirent++;
4727                 RETURN(0);
4728         } else {
4729                 if (it->oie_file.f_pos == ldiskfs_get_htree_eof(&it->oie_file))
4730                         rc = +1;
4731                 else
4732                         rc = osd_ldiskfs_it_fill(env, di);
4733         }
4734
4735         RETURN(rc);
4736 }
4737
4738 /**
4739  * Returns the key at current position from iterator's in memory structure.
4740  *
4741  * \param di iterator's in memory structure
4742  *
4743  * \retval key i.e. struct dt_key on success
4744  */
4745 static struct dt_key *osd_it_ea_key(const struct lu_env *env,
4746                                     const struct dt_it *di)
4747 {
4748         struct osd_it_ea *it = (struct osd_it_ea *)di;
4749
4750         return (struct dt_key *)it->oie_dirent->oied_name;
4751 }
4752
4753 /**
4754  * Returns the key's size at current position from iterator's in memory structure.
4755  *
4756  * \param di iterator's in memory structure
4757  *
4758  * \retval key_size i.e. struct dt_key on success
4759  */
4760 static int osd_it_ea_key_size(const struct lu_env *env, const struct dt_it *di)
4761 {
4762         struct osd_it_ea *it = (struct osd_it_ea *)di;
4763
4764         return it->oie_dirent->oied_namelen;
4765 }
4766
4767 static int
4768 osd_dirent_update(handle_t *jh, struct super_block *sb,
4769                   struct osd_it_ea_dirent *ent, struct lu_fid *fid,
4770                   struct buffer_head *bh, struct ldiskfs_dir_entry_2 *de)
4771 {
4772         struct osd_fid_pack *rec;
4773         int                  rc;
4774         ENTRY;
4775
4776         LASSERT(de->file_type & LDISKFS_DIRENT_LUFID);
4777         LASSERT(de->rec_len >= de->name_len + sizeof(struct osd_fid_pack));
4778
4779         rc = ldiskfs_journal_get_write_access(jh, bh);
4780         if (rc != 0) {
4781                 CERROR("%.16s: fail to write access for update dirent: "
4782                        "name = %.*s, rc = %d\n",
4783                        LDISKFS_SB(sb)->s_es->s_volume_name,
4784                        ent->oied_namelen, ent->oied_name, rc);
4785                 RETURN(rc);
4786         }
4787
4788         rec = (struct osd_fid_pack *)(de->name + de->name_len + 1);
4789         fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
4790         rc = ldiskfs_journal_dirty_metadata(jh, bh);
4791         if (rc != 0)
4792                 CERROR("%.16s: fail to dirty metadata for update dirent: "
4793                        "name = %.*s, rc = %d\n",
4794                        LDISKFS_SB(sb)->s_es->s_volume_name,
4795                        ent->oied_namelen, ent->oied_name, rc);
4796
4797         RETURN(rc);
4798 }
4799
4800 static inline int
4801 osd_dirent_has_space(__u16 reclen, __u16 namelen, unsigned blocksize)
4802 {
4803         if (ldiskfs_rec_len_from_disk(reclen, blocksize) >=
4804             __LDISKFS_DIR_REC_LEN(namelen + 1 + sizeof(struct osd_fid_pack)))
4805                 return 1;
4806         else
4807                 return 0;
4808 }
4809
4810 static inline int
4811 osd_dot_dotdot_has_space(struct ldiskfs_dir_entry_2 *de, int dot_dotdot)
4812 {
4813         LASSERTF(dot_dotdot == 1 || dot_dotdot == 2,
4814                  "dot_dotdot = %d\n", dot_dotdot);
4815
4816         if (LDISKFS_DIR_REC_LEN(de) >=
4817             __LDISKFS_DIR_REC_LEN(dot_dotdot + 1 + sizeof(struct osd_fid_pack)))
4818                 return 1;
4819         else
4820                 return 0;
4821 }
4822
4823 static int
4824 osd_dirent_reinsert(const struct lu_env *env, handle_t *jh,
4825                     struct inode *dir, struct inode *inode,
4826                     struct osd_it_ea_dirent *ent, struct lu_fid *fid,
4827                     struct buffer_head *bh, struct ldiskfs_dir_entry_2 *de,
4828                     struct htree_lock *hlock)
4829 {
4830         struct dentry               *dentry;
4831         struct osd_fid_pack         *rec;
4832         struct ldiskfs_dentry_param *ldp;
4833         int                          rc;
4834         ENTRY;
4835
4836         if (!LDISKFS_HAS_INCOMPAT_FEATURE(inode->i_sb,
4837                                           LDISKFS_FEATURE_INCOMPAT_DIRDATA))
4838                 RETURN(0);
4839
4840         /* There is enough space to hold the FID-in-dirent. */
4841         if (osd_dirent_has_space(de->rec_len, ent->oied_namelen,
4842                                  dir->i_sb->s_blocksize)) {
4843                 rc = ldiskfs_journal_get_write_access(jh, bh);
4844                 if (rc != 0) {
4845                         CERROR("%.16s: fail to write access for reinsert "
4846                                "dirent: name = %.*s, rc = %d\n",
4847                                LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
4848                                ent->oied_namelen, ent->oied_name, rc);
4849                         RETURN(rc);
4850                 }
4851
4852                 de->name[de->name_len] = 0;
4853                 rec = (struct osd_fid_pack *)(de->name + de->name_len + 1);
4854                 rec->fp_len = sizeof(struct lu_fid) + 1;
4855                 fid_cpu_to_be((struct lu_fid *)rec->fp_area, fid);
4856                 de->file_type |= LDISKFS_DIRENT_LUFID;
4857
4858                 rc = ldiskfs_journal_dirty_metadata(jh, bh);
4859                 if (rc != 0)
4860                         CERROR("%.16s: fail to dirty metadata for reinsert "
4861                                "dirent: name = %.*s, rc = %d\n",
4862                                LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
4863                                ent->oied_namelen, ent->oied_name, rc);
4864
4865                 RETURN(rc);
4866         }
4867
4868         rc = ldiskfs_delete_entry(jh, dir, de, bh);
4869         if (rc != 0) {
4870                 CERROR("%.16s: fail to delete entry for reinsert dirent: "
4871                        "name = %.*s, rc = %d\n",
4872                        LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
4873                        ent->oied_namelen, ent->oied_name, rc);
4874                 RETURN(rc);
4875         }
4876
4877         dentry = osd_child_dentry_by_inode(env, dir, ent->oied_name,
4878                                            ent->oied_namelen);
4879         ldp = (struct ldiskfs_dentry_param *)osd_oti_get(env)->oti_ldp;
4880         osd_get_ldiskfs_dirent_param(ldp, (const struct dt_rec *)fid);
4881         dentry->d_fsdata = (void *)ldp;
4882         ll_vfs_dq_init(dir);
4883         rc = osd_ldiskfs_add_entry(jh, dentry, inode, hlock);
4884         /* It is too bad, we cannot reinsert the name entry back.
4885          * That means we lose it! */
4886         if (rc != 0)
4887                 CERROR("%.16s: fail to insert entry for reinsert dirent: "
4888                        "name = %.*s, rc = %d\n",
4889                        LDISKFS_SB(inode->i_sb)->s_es->s_volume_name,
4890                        ent->oied_namelen, ent->oied_name, rc);
4891
4892         RETURN(rc);
4893 }
4894
4895 static int
4896 osd_dirent_check_repair(const struct lu_env *env, struct osd_object *obj,
4897                         struct osd_it_ea *it, struct lu_fid *fid,
4898                         struct osd_inode_id *id, __u32 *attr)
4899 {
4900         struct osd_thread_info     *info        = osd_oti_get(env);
4901         struct lustre_mdt_attrs    *lma         = &info->oti_mdt_attrs;
4902         struct osd_device          *dev         = osd_obj2dev(obj);
4903         struct super_block         *sb          = osd_sb(dev);
4904         const char                 *devname     =
4905                                         LDISKFS_SB(sb)->s_es->s_volume_name;
4906         struct osd_it_ea_dirent    *ent         = it->oie_dirent;
4907         struct inode               *dir         = obj->oo_inode;
4908         struct htree_lock          *hlock       = NULL;
4909         struct buffer_head         *bh          = NULL;
4910         handle_t                   *jh          = NULL;
4911         struct ldiskfs_dir_entry_2 *de;
4912         struct dentry              *dentry;
4913         struct inode               *inode;
4914         int                         credits;
4915         int                         rc;
4916         int                         dot_dotdot  = 0;
4917         bool                        dirty       = false;
4918         ENTRY;
4919
4920         if (ent->oied_name[0] == '.') {
4921                 if (ent->oied_namelen == 1)
4922                         dot_dotdot = 1;
4923                 else if (ent->oied_namelen == 2 && ent->oied_name[1] == '.')
4924                         dot_dotdot = 2;
4925         }
4926
4927         dentry = osd_child_dentry_get(env, obj, ent->oied_name,
4928                                       ent->oied_namelen);
4929
4930         /* We need to ensure that the name entry is still valid.
4931          * Because it may be removed or renamed by other already.
4932          *
4933          * The unlink or rename operation will start journal before PDO lock,
4934          * so to avoid deadlock, here we need to start journal handle before
4935          * related PDO lock also. But because we do not know whether there
4936          * will be something to be repaired before PDO lock, we just start
4937          * journal without conditions.
4938          *
4939          * We may need to remove the name entry firstly, then insert back.
4940          * One credit is for user quota file update.
4941          * One credit is for group quota file update.
4942          * Two credits are for dirty inode. */
4943         credits = osd_dto_credits_noquota[DTO_INDEX_DELETE] +
4944                   osd_dto_credits_noquota[DTO_INDEX_INSERT] + 1 + 1 + 2;
4945
4946 again:
4947         if (dev->od_dirent_journal) {
4948                 jh = osd_journal_start_sb(sb, LDISKFS_HT_MISC, credits);
4949                 if (IS_ERR(jh)) {
4950                         rc = PTR_ERR(jh);
4951                         CERROR("%.16s: fail to start trans for dirent "
4952                                "check_repair: credits %d, name %.*s, rc %d\n",
4953                                devname, credits, ent->oied_namelen,
4954                                ent->oied_name, rc);
4955                         RETURN(rc);
4956                 }
4957
4958                 if (obj->oo_hl_head != NULL) {
4959                         hlock = osd_oti_get(env)->oti_hlock;
4960                         /* "0" means exclusive lock for the whole directory.
4961                          * We need to prevent others access such name entry
4962                          * during the delete + insert. Neither HLOCK_ADD nor
4963                          * HLOCK_DEL cannot guarantee the atomicity. */
4964                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir, 0);
4965                 } else {
4966                         down_write(&obj->oo_ext_idx_sem);
4967                 }
4968         } else {
4969                 if (obj->oo_hl_head != NULL) {
4970                         hlock = osd_oti_get(env)->oti_hlock;
4971                         ldiskfs_htree_lock(hlock, obj->oo_hl_head, dir,
4972                                            LDISKFS_HLOCK_LOOKUP);
4973                 } else {
4974                         down_read(&obj->oo_ext_idx_sem);
4975                 }
4976         }
4977
4978         bh = osd_ldiskfs_find_entry(dir, &dentry->d_name, &de, NULL, hlock);
4979         /* For dot/dotdot entry, if there is not enough space to hold the
4980          * FID-in-dirent, just keep them there. It only happens when the
4981          * device upgraded from 1.8 or restored from MDT file-level backup.
4982          * For the whole directory, only dot/dotdot entry have no FID-in-dirent
4983          * and needs to get FID from LMA when readdir, it will not affect the
4984          * performance much. */
4985         if ((bh == NULL) || (le32_to_cpu(de->inode) != ent->oied_ino) ||
4986             (dot_dotdot != 0 && !osd_dot_dotdot_has_space(de, dot_dotdot))) {
4987                 *attr |= LUDA_IGNORE;
4988                 GOTO(out_journal, rc = 0);
4989         }
4990
4991         osd_id_gen(id, ent->oied_ino, OSD_OII_NOGEN);
4992         inode = osd_iget(info, dev, id);
4993         if (IS_ERR(inode)) {
4994                 rc = PTR_ERR(inode);
4995                 if (rc == -ENOENT || rc == -ESTALE) {
4996                         *attr |= LUDA_IGNORE;
4997                         rc = 0;
4998                 }
4999
5000                 GOTO(out_journal, rc);
5001         }
5002
5003         /* skip the REMOTE_PARENT_DIR. */
5004         if (inode == dev->od_mdt_map->omm_remote_parent->d_inode)
5005                 GOTO(out_inode, rc = 0);
5006
5007         rc = osd_get_lma(info, inode, &info->oti_obj_dentry, lma);
5008         if (rc == 0) {
5009                 LASSERT(!(lma->lma_compat & LMAC_NOT_IN_OI));
5010
5011                 if (fid_is_sane(fid)) {
5012                         /* FID-in-dirent is valid. */
5013                         if (lu_fid_eq(fid, &lma->lma_self_fid))
5014                                 GOTO(out_inode, rc = 0);
5015
5016                         /* Do not repair under dryrun mode. */
5017                         if (*attr & LUDA_VERIFY_DRYRUN) {
5018                                 *attr |= LUDA_REPAIR;
5019                                 GOTO(out_inode, rc = 0);
5020                         }
5021
5022                         if (!dev->od_dirent_journal) {
5023                                 iput(inode);
5024                                 brelse(bh);
5025                                 if (hlock != NULL)
5026                                         ldiskfs_htree_unlock(hlock);
5027                                 else
5028                                         up_read(&obj->oo_ext_idx_sem);
5029                                 dev->od_dirent_journal = 1;
5030                                 goto again;
5031                         }
5032
5033                         *fid = lma->lma_self_fid;
5034                         dirty = true;
5035                         /* Update the FID-in-dirent. */
5036                         rc = osd_dirent_update(jh, sb, ent, fid, bh, de);
5037                         if (rc == 0)
5038                                 *attr |= LUDA_REPAIR;
5039                 } else {
5040                         /* Do not repair under dryrun mode. */
5041                         if (*attr & LUDA_VERIFY_DRYRUN) {
5042                                 *fid = lma->lma_self_fid;
5043                                 *attr |= LUDA_REPAIR;
5044                                 GOTO(out_inode, rc = 0);
5045                         }
5046
5047                         if (!dev->od_dirent_journal) {
5048                                 iput(inode);
5049                                 brelse(bh);
5050                                 if (hlock != NULL)
5051                                         ldiskfs_htree_unlock(hlock);
5052                                 else
5053                                         up_read(&obj->oo_ext_idx_sem);
5054                                 dev->od_dirent_journal = 1;
5055                                 goto again;
5056                         }
5057
5058                         *fid = lma->lma_self_fid;
5059                         dirty = true;
5060                         /* Append the FID-in-dirent. */
5061                         rc = osd_dirent_reinsert(env, jh, dir, inode, ent,
5062                                                  fid, bh, de, hlock);
5063                         if (rc == 0)
5064                                 *attr |= LUDA_REPAIR;
5065                 }
5066         } else if (rc == -ENODATA) {
5067                 /* Do not repair under dryrun mode. */
5068                 if (*attr & LUDA_VERIFY_DRYRUN) {
5069                         if (fid_is_sane(fid)) {
5070                                 *attr |= LUDA_REPAIR;
5071                         } else {
5072                                 lu_igif_build(fid, inode->i_ino,
5073                                               inode->i_generation);
5074                                 *attr |= LUDA_UPGRADE;
5075                         }
5076                         GOTO(out_inode, rc = 0);
5077                 }
5078
5079                 if (!dev->od_dirent_journal) {
5080                         iput(inode);
5081                         brelse(bh);
5082                         if (hlock != NULL)
5083                                 ldiskfs_htree_unlock(hlock);
5084                         else
5085                                 up_read(&obj->oo_ext_idx_sem);
5086                         dev->od_dirent_journal = 1;
5087                         goto again;
5088                 }
5089
5090                 dirty = true;
5091                 if (unlikely(fid_is_sane(fid))) {
5092                         /* FID-in-dirent exists, but FID-in-LMA is lost.
5093                          * Trust the FID-in-dirent, and add FID-in-LMA. */
5094                         rc = osd_ea_fid_set(info, inode, fid, 0, 0);
5095                         if (rc == 0)
5096                                 *attr |= LUDA_REPAIR;
5097                 } else {
5098                         lu_igif_build(fid, inode->i_ino, inode->i_generation);
5099                         /* It is probably IGIF object. Only aappend the
5100                          * FID-in-dirent. OI scrub will process FID-in-LMA. */
5101                         rc = osd_dirent_reinsert(env, jh, dir, inode, ent,
5102                                                  fid, bh, de, hlock);
5103                         if (rc == 0)
5104                                 *attr |= LUDA_UPGRADE;
5105                 }
5106         }
5107
5108         GOTO(out_inode, rc);
5109
5110 out_inode:
5111         iput(inode);
5112
5113 out_journal:
5114         brelse(bh);
5115         if (hlock != NULL) {
5116                 ldiskfs_htree_unlock(hlock);
5117         } else {
5118                 if (dev->od_dirent_journal)
5119                         up_write(&obj->oo_ext_idx_sem);
5120                 else
5121                         up_read(&obj->oo_ext_idx_sem);
5122         }
5123         if (jh != NULL)
5124                 ldiskfs_journal_stop(jh);
5125         if (rc >= 0 && !dirty)
5126                 dev->od_dirent_journal = 0;
5127         return rc;
5128 }
5129
5130 /**
5131  * Returns the value at current position from iterator's in memory structure.
5132  *
5133  * \param di struct osd_it_ea, iterator's in memory structure
5134  * \param attr attr requested for dirent.
5135  * \param lde lustre dirent
5136  *
5137  * \retval   0 no error and \param lde has correct lustre dirent.
5138  * \retval -ve on error
5139  */
5140 static inline int osd_it_ea_rec(const struct lu_env *env,
5141                                 const struct dt_it *di,
5142                                 struct dt_rec *dtrec, __u32 attr)
5143 {
5144         struct osd_it_ea       *it    = (struct osd_it_ea *)di;
5145         struct osd_object      *obj   = it->oie_obj;
5146         struct osd_device      *dev   = osd_obj2dev(obj);
5147         struct osd_scrub       *scrub = &dev->od_scrub;
5148         struct scrub_file      *sf    = &scrub->os_file;
5149         struct osd_thread_info *oti   = osd_oti_get(env);
5150         struct osd_inode_id    *id    = &oti->oti_id;
5151         struct osd_idmap_cache *oic   = &oti->oti_cache;
5152         struct lu_fid          *fid   = &it->oie_dirent->oied_fid;
5153         struct lu_dirent       *lde   = (struct lu_dirent *)dtrec;
5154         __u32                   ino   = it->oie_dirent->oied_ino;
5155         int                     rc    = 0;
5156         ENTRY;
5157
5158         if (attr & LUDA_VERIFY) {
5159                 attr |= LUDA_TYPE;
5160                 if (unlikely(ino == osd_sb(dev)->s_root->d_inode->i_ino)) {
5161                         attr |= LUDA_IGNORE;
5162                         rc = 0;
5163                 } else {
5164                         rc = osd_dirent_check_repair(env, obj, it, fid, id,
5165                                                      &attr);
5166                 }
5167         } else {
5168                 attr &= ~LU_DIRENT_ATTRS_MASK;
5169                 if (!fid_is_sane(fid)) {
5170                         if (OBD_FAIL_CHECK(OBD_FAIL_FID_LOOKUP))
5171                                 RETURN(-ENOENT);
5172
5173                         rc = osd_ea_fid_get(env, obj, ino, fid, id);
5174                 } else {
5175                         osd_id_gen(id, ino, OSD_OII_NOGEN);
5176                 }
5177         }
5178
5179         /* Pack the entry anyway, at least the offset is right. */
5180         osd_it_pack_dirent(lde, fid, it->oie_dirent->oied_off,
5181                            it->oie_dirent->oied_name,
5182                            it->oie_dirent->oied_namelen,
5183                            it->oie_dirent->oied_type, attr);
5184
5185         if (rc < 0)
5186                 RETURN(rc);
5187
5188         if (osd_remote_fid(env, dev, fid))
5189                 RETURN(0);
5190
5191         if (likely(!(attr & LUDA_IGNORE)))
5192                 rc = osd_add_oi_cache(oti, dev, id, fid);
5193
5194         if (!(attr & LUDA_VERIFY) &&
5195             (scrub->os_pos_current <= ino) &&
5196             ((sf->sf_flags & SF_INCONSISTENT) ||
5197              (sf->sf_flags & SF_UPGRADE && fid_is_igif(fid)) ||
5198              ldiskfs_test_bit(osd_oi_fid2idx(dev, fid), sf->sf_oi_bitmap)))
5199                 osd_consistency_check(oti, dev, oic);
5200
5201         RETURN(rc);
5202 }
5203
5204 /**
5205  * Returns a cookie for current position of the iterator head, so that
5206  * user can use this cookie to load/start the iterator next time.
5207  *
5208  * \param di iterator's in memory structure
5209  *
5210  * \retval cookie for current position, on success
5211  */
5212 static __u64 osd_it_ea_store(const struct lu_env *env, const struct dt_it *di)
5213 {
5214         struct osd_it_ea *it = (struct osd_it_ea *)di;
5215
5216         return it->oie_dirent->oied_off;
5217 }
5218
5219 /**
5220  * It calls osd_ldiskfs_it_fill() which will use ->readdir()
5221  * to load a directory entry at a time and stored it i inn,
5222  * in iterator's in-memory data structure.
5223  *
5224  * \param di struct osd_it_ea, iterator's in memory structure
5225  *
5226  * \retval +ve on success
5227  * \retval -ve on error
5228  */
5229 static int osd_it_ea_load(const struct lu_env *env,
5230                           const struct dt_it *di, __u64 hash)
5231 {
5232         struct osd_it_ea *it = (struct osd_it_ea *)di;
5233         int rc;
5234
5235         ENTRY;
5236         it->oie_file.f_pos = hash;
5237
5238         rc =  osd_ldiskfs_it_fill(env, di);
5239         if (rc == 0)
5240                 rc = +1;
5241
5242         RETURN(rc);
5243 }
5244
5245 /**
5246  * Index lookup function for interoperability mode (b11826).
5247  *
5248  * \param key,  key i.e. file name to be searched
5249  *
5250  * \retval +ve, on success
5251  * \retval -ve, on error
5252  */
5253 static int osd_index_ea_lookup(const struct lu_env *env, struct dt_object *dt,
5254                                struct dt_rec *rec, const struct dt_key *key,
5255                                struct lustre_capa *capa)
5256 {
5257         struct osd_object *obj = osd_dt_obj(dt);
5258         int rc = 0;
5259
5260         ENTRY;
5261
5262         LASSERT(S_ISDIR(obj->oo_inode->i_mode));
5263         LINVRNT(osd_invariant(obj));
5264
5265         if (osd_object_auth(env, dt, capa, CAPA_OPC_INDEX_LOOKUP))
5266                 return -EACCES;
5267
5268         rc = osd_ea_lookup_rec(env, obj, rec, key);
5269         if (rc == 0)
5270                 rc = +1;
5271         RETURN(rc);
5272 }
5273
5274 /**
5275  * Index and Iterator operations for interoperability
5276  * mode (i.e. to run 2.0 mds on 1.8 disk) (b11826)
5277  */
5278 static const struct dt_index_operations osd_index_ea_ops = {
5279         .dio_lookup         = osd_index_ea_lookup,
5280         .dio_declare_insert = osd_index_declare_ea_insert,
5281         .dio_insert         = osd_index_ea_insert,
5282         .dio_declare_delete = osd_index_declare_ea_delete,
5283         .dio_delete         = osd_index_ea_delete,
5284         .dio_it     = {
5285                 .init     = osd_it_ea_init,
5286                 .fini     = osd_it_ea_fini,
5287                 .get      = osd_it_ea_get,
5288                 .put      = osd_it_ea_put,
5289                 .next     = osd_it_ea_next,
5290                 .key      = osd_it_ea_key,
5291                 .key_size = osd_it_ea_key_size,
5292                 .rec      = osd_it_ea_rec,
5293                 .store    = osd_it_ea_store,
5294                 .load     = osd_it_ea_load
5295         }
5296 };
5297
5298 static void *osd_key_init(const struct lu_context *ctx,
5299                           struct lu_context_key *key)
5300 {
5301         struct osd_thread_info *info;
5302
5303         OBD_ALLOC_PTR(info);
5304         if (info == NULL)
5305                 return ERR_PTR(-ENOMEM);
5306
5307         OBD_ALLOC(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5308         if (info->oti_it_ea_buf == NULL)
5309                 goto out_free_info;
5310
5311         info->oti_env = container_of(ctx, struct lu_env, le_ctx);
5312
5313         info->oti_hlock = ldiskfs_htree_lock_alloc();
5314         if (info->oti_hlock == NULL)
5315                 goto out_free_ea;
5316
5317         return info;
5318
5319  out_free_ea:
5320         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5321  out_free_info:
5322         OBD_FREE_PTR(info);
5323         return ERR_PTR(-ENOMEM);
5324 }
5325
5326 static void osd_key_fini(const struct lu_context *ctx,
5327                          struct lu_context_key *key, void* data)
5328 {
5329         struct osd_thread_info *info = data;
5330
5331         if (info->oti_hlock != NULL)
5332                 ldiskfs_htree_lock_free(info->oti_hlock);
5333         OBD_FREE(info->oti_it_ea_buf, OSD_IT_EA_BUFSIZE);
5334         lu_buf_free(&info->oti_iobuf.dr_pg_buf);
5335         lu_buf_free(&info->oti_iobuf.dr_bl_buf);
5336         OBD_FREE_PTR(info);
5337 }
5338
5339 static void osd_key_exit(const struct lu_context *ctx,
5340                          struct lu_context_key *key, void *data)
5341 {
5342         struct osd_thread_info *info = data;
5343
5344         LASSERT(info->oti_r_locks == 0);
5345         LASSERT(info->oti_w_locks == 0);
5346         LASSERT(info->oti_txns    == 0);
5347 }
5348
5349 /* type constructor/destructor: osd_type_init, osd_type_fini */
5350 LU_TYPE_INIT_FINI(osd, &osd_key);
5351
5352 struct lu_context_key osd_key = {
5353         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
5354         .lct_init = osd_key_init,
5355         .lct_fini = osd_key_fini,
5356         .lct_exit = osd_key_exit
5357 };
5358
5359
5360 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
5361                            const char *name, struct lu_device *next)
5362 {
5363         struct osd_device *osd = osd_dev(d);
5364
5365         if (strlcpy(osd->od_svname, name, sizeof(osd->od_svname))
5366             >= sizeof(osd->od_svname))
5367                 return -E2BIG;
5368         return osd_procfs_init(osd, name);
5369 }
5370
5371 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
5372 {
5373         ENTRY;
5374
5375         /* shutdown quota slave instance associated with the device */
5376         if (o->od_quota_slave != NULL) {
5377                 qsd_fini(env, o->od_quota_slave);
5378                 o->od_quota_slave = NULL;
5379         }
5380
5381         RETURN(0);
5382 }
5383
5384 static void osd_umount(const struct lu_env *env, struct osd_device *o)
5385 {
5386         ENTRY;
5387
5388         if (o->od_mnt != NULL) {
5389                 shrink_dcache_sb(osd_sb(o));
5390                 osd_sync(env, &o->od_dt_dev);
5391
5392                 mntput(o->od_mnt);
5393                 o->od_mnt = NULL;
5394         }
5395
5396         EXIT;
5397 }
5398
5399 static int osd_mount(const struct lu_env *env,
5400                      struct osd_device *o, struct lustre_cfg *cfg)
5401 {
5402         const char              *name  = lustre_cfg_string(cfg, 0);
5403         const char              *dev  = lustre_cfg_string(cfg, 1);
5404         const char              *opts;
5405         unsigned long            page, s_flags, lmd_flags = 0;
5406         struct page             *__page;
5407         struct file_system_type *type;
5408         char                    *options = NULL;
5409         char                    *str;
5410         struct osd_thread_info  *info = osd_oti_get(env);
5411         struct lu_fid           *fid = &info->oti_fid;
5412         struct inode            *inode;
5413         int                      rc = 0;
5414         ENTRY;
5415
5416         if (o->od_mnt != NULL)
5417                 RETURN(0);
5418
5419         if (strlen(dev) >= sizeof(o->od_mntdev))
5420                 RETURN(-E2BIG);
5421         strcpy(o->od_mntdev, dev);
5422
5423         OBD_PAGE_ALLOC(__page, GFP_IOFS);
5424         if (__page == NULL)
5425                 GOTO(out, rc = -ENOMEM);
5426
5427         str = lustre_cfg_string(cfg, 2);
5428         s_flags = simple_strtoul(str, NULL, 0);
5429         str = strstr(str, ":");
5430         if (str)
5431                 lmd_flags = simple_strtoul(str + 1, NULL, 0);
5432         opts = lustre_cfg_string(cfg, 3);
5433         page = (unsigned long)page_address(__page);
5434         options = (char *)page;
5435         *options = '\0';
5436         if (opts == NULL)
5437                 strcat(options, "user_xattr,acl");
5438         else
5439                 strcat(options, opts);
5440
5441         /* Glom up mount options */
5442         if (*options != '\0')
5443                 strcat(options, ",");
5444         strlcat(options, "no_mbcache", PAGE_CACHE_SIZE);
5445
5446         type = get_fs_type("ldiskfs");
5447         if (!type) {
5448                 CERROR("%s: cannot find ldiskfs module\n", name);
5449                 GOTO(out, rc = -ENODEV);
5450         }
5451
5452         o->od_mnt = vfs_kern_mount(type, s_flags, dev, options);
5453         module_put(type->owner);
5454
5455         if (IS_ERR(o->od_mnt)) {
5456                 rc = PTR_ERR(o->od_mnt);
5457                 o->od_mnt = NULL;
5458                 CERROR("%s: can't mount %s: %d\n", name, dev, rc);
5459                 GOTO(out, rc);
5460         }
5461
5462 #ifdef HAVE_DEV_SET_RDONLY
5463         if (dev_check_rdonly(o->od_mnt->mnt_sb->s_bdev)) {
5464                 CERROR("%s: underlying device %s is marked as read-only. "
5465                        "Setup failed\n", name, dev);
5466                 GOTO(out_mnt, rc = -EROFS);
5467         }
5468 #endif
5469
5470         if (!LDISKFS_HAS_COMPAT_FEATURE(o->od_mnt->mnt_sb,
5471             LDISKFS_FEATURE_COMPAT_HAS_JOURNAL)) {
5472                 CERROR("%s: device %s is mounted w/o journal\n", name, dev);
5473                 GOTO(out_mnt, rc = -EINVAL);
5474         }
5475
5476         inode = osd_sb(o)->s_root->d_inode;
5477         ldiskfs_set_inode_state(inode, LDISKFS_STATE_LUSTRE_NO_OI);
5478         lu_local_obj_fid(fid, OSD_FS_ROOT_OID);
5479         rc = osd_ea_fid_set(info, inode, fid, LMAC_NOT_IN_OI, 0);
5480         if (rc != 0) {
5481                 CERROR("%s: failed to set lma on %s root inode\n", name, dev);
5482                 GOTO(out_mnt, rc);
5483         }
5484
5485         if (lmd_flags & LMD_FLG_NOSCRUB)
5486                 o->od_noscrub = 1;
5487
5488         GOTO(out, rc = 0);
5489
5490 out_mnt:
5491         mntput(o->od_mnt);
5492         o->od_mnt = NULL;
5493
5494 out:
5495         if (__page)
5496                 OBD_PAGE_FREE(__page);
5497
5498         return rc;
5499 }
5500
5501 static struct lu_device *osd_device_fini(const struct lu_env *env,
5502                                          struct lu_device *d)
5503 {
5504         struct osd_device *o = osd_dev(d);
5505         ENTRY;
5506
5507         osd_procfs_fini(o);
5508         osd_shutdown(env, o);
5509         osd_scrub_cleanup(env, o);
5510         osd_obj_map_fini(o);
5511         osd_umount(env, o);
5512
5513         RETURN(NULL);
5514 }
5515
5516 static int osd_device_init0(const struct lu_env *env,
5517                             struct osd_device *o,
5518                             struct lustre_cfg *cfg)
5519 {
5520         struct lu_device        *l = osd2lu_dev(o);
5521         struct osd_thread_info *info;
5522         int                     rc;
5523         int                     cplen = 0;
5524
5525         /* if the module was re-loaded, env can loose its keys */
5526         rc = lu_env_refill((struct lu_env *) env);
5527         if (rc)
5528                 GOTO(out, rc);
5529         info = osd_oti_get(env);
5530         LASSERT(info);
5531
5532         l->ld_ops = &osd_lu_ops;
5533         o->od_dt_dev.dd_ops = &osd_dt_ops;
5534
5535         spin_lock_init(&o->od_osfs_lock);
5536         mutex_init(&o->od_otable_mutex);
5537         o->od_osfs_age = cfs_time_shift_64(-1000);
5538
5539         o->od_capa_hash = init_capa_hash();
5540         if (o->od_capa_hash == NULL)
5541                 GOTO(out, rc = -ENOMEM);
5542
5543         o->od_read_cache = 1;
5544         o->od_writethrough_cache = 1;
5545         o->od_readcache_max_filesize = OSD_MAX_CACHE_SIZE;
5546
5547         rc = osd_mount(env, o, cfg);
5548         if (rc)
5549                 GOTO(out_capa, rc);
5550
5551         cplen = strlcpy(o->od_svname, lustre_cfg_string(cfg, 4),
5552                         sizeof(o->od_svname));
5553         if (cplen >= sizeof(o->od_svname)) {
5554                 rc = -E2BIG;
5555                 GOTO(out_mnt, rc);
5556         }
5557
5558         if (server_name_is_ost(o->od_svname))
5559                 o->od_is_ost = 1;
5560
5561         rc = osd_obj_map_init(env, o);
5562         if (rc != 0)
5563                 GOTO(out_mnt, rc);
5564
5565         rc = lu_site_init(&o->od_site, l);
5566         if (rc != 0)
5567                 GOTO(out_compat, rc);
5568         o->od_site.ls_bottom_dev = l;
5569
5570         rc = lu_site_init_finish(&o->od_site);
5571         if (rc != 0)
5572                 GOTO(out_site, rc);
5573
5574         /* self-repair LMA by default */
5575         o->od_lma_self_repair = 1;
5576
5577         CFS_INIT_LIST_HEAD(&o->od_ios_list);
5578         /* setup scrub, including OI files initialization */
5579         rc = osd_scrub_setup(env, o);
5580         if (rc < 0)
5581                 GOTO(out_site, rc);
5582
5583         rc = osd_procfs_init(o, o->od_svname);
5584         if (rc != 0) {
5585                 CERROR("%s: can't initialize procfs: rc = %d\n",
5586                        o->od_svname, rc);
5587                 GOTO(out_scrub, rc);
5588         }
5589
5590         LASSERT(l->ld_site->ls_linkage.next && l->ld_site->ls_linkage.prev);
5591
5592         /* initialize quota slave instance */
5593         o->od_quota_slave = qsd_init(env, o->od_svname, &o->od_dt_dev,
5594                                      o->od_proc_entry);
5595         if (IS_ERR(o->od_quota_slave)) {
5596                 rc = PTR_ERR(o->od_quota_slave);
5597                 o->od_quota_slave = NULL;
5598                 GOTO(out_procfs, rc);
5599         }
5600
5601         RETURN(0);
5602
5603 out_procfs:
5604         osd_procfs_fini(o);
5605 out_scrub:
5606         osd_scrub_cleanup(env, o);
5607 out_site:
5608         lu_site_fini(&o->od_site);
5609 out_compat:
5610         osd_obj_map_fini(o);
5611 out_mnt:
5612         osd_umount(env, o);
5613 out_capa:
5614         cleanup_capa_hash(o->od_capa_hash);
5615 out:
5616         return rc;
5617 }
5618
5619 static struct lu_device *osd_device_alloc(const struct lu_env *env,
5620                                           struct lu_device_type *t,
5621                                           struct lustre_cfg *cfg)
5622 {
5623         struct osd_device *o;
5624         int                rc;
5625
5626         OBD_ALLOC_PTR(o);
5627         if (o == NULL)
5628                 return ERR_PTR(-ENOMEM);
5629
5630         rc = dt_device_init(&o->od_dt_dev, t);
5631         if (rc == 0) {
5632                 /* Because the ctx might be revived in dt_device_init,
5633                  * refill the env here */
5634                 lu_env_refill((struct lu_env *)env);
5635                 rc = osd_device_init0(env, o, cfg);
5636                 if (rc)
5637                         dt_device_fini(&o->od_dt_dev);
5638         }
5639
5640         if (unlikely(rc != 0))
5641                 OBD_FREE_PTR(o);
5642
5643         return rc == 0 ? osd2lu_dev(o) : ERR_PTR(rc);
5644 }
5645
5646 static struct lu_device *osd_device_free(const struct lu_env *env,
5647                                          struct lu_device *d)
5648 {
5649         struct osd_device *o = osd_dev(d);
5650         ENTRY;
5651
5652         cleanup_capa_hash(o->od_capa_hash);
5653         /* XXX: make osd top device in order to release reference */
5654         d->ld_site->ls_top_dev = d;
5655         lu_site_purge(env, d->ld_site, -1);
5656         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
5657                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
5658                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
5659         }
5660         lu_site_fini(&o->od_site);
5661         dt_device_fini(&o->od_dt_dev);
5662         OBD_FREE_PTR(o);
5663         RETURN(NULL);
5664 }
5665
5666 static int osd_process_config(const struct lu_env *env,
5667                               struct lu_device *d, struct lustre_cfg *cfg)
5668 {
5669         struct osd_device *o = osd_dev(d);
5670         int err;
5671         ENTRY;
5672
5673         switch(cfg->lcfg_command) {
5674         case LCFG_SETUP:
5675                 err = osd_mount(env, o, cfg);
5676                 break;
5677         case LCFG_CLEANUP:
5678                 lu_dev_del_linkage(d->ld_site, d);
5679                 err = osd_shutdown(env, o);
5680                 break;
5681         default:
5682                 err = -ENOSYS;
5683         }
5684
5685         RETURN(err);
5686 }
5687
5688 static int osd_recovery_complete(const struct lu_env *env,
5689                                  struct lu_device *d)
5690 {
5691         struct osd_device       *osd = osd_dev(d);
5692         int                      rc = 0;
5693         ENTRY;
5694
5695         if (osd->od_quota_slave == NULL)
5696                 RETURN(0);
5697
5698         /* start qsd instance on recovery completion, this notifies the quota
5699          * slave code that we are about to process new requests now */
5700         rc = qsd_start(env, osd->od_quota_slave);
5701         RETURN(rc);
5702 }
5703
5704 /*
5705  * we use exports to track all osd users
5706  */
5707 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
5708                            struct obd_device *obd, struct obd_uuid *cluuid,
5709                            struct obd_connect_data *data, void *localdata)
5710 {
5711         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
5712         struct lustre_handle  conn;
5713         int                   rc;
5714         ENTRY;
5715
5716         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
5717
5718         rc = class_connect(&conn, obd, cluuid);
5719         if (rc)
5720                 RETURN(rc);
5721
5722         *exp = class_conn2export(&conn);
5723
5724         spin_lock(&osd->od_osfs_lock);
5725         osd->od_connects++;
5726         spin_unlock(&osd->od_osfs_lock);
5727
5728         RETURN(0);
5729 }
5730
5731 /*
5732  * once last export (we don't count self-export) disappeared
5733  * osd can be released
5734  */
5735 static int osd_obd_disconnect(struct obd_export *exp)
5736 {
5737         struct obd_device *obd = exp->exp_obd;
5738         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
5739         int                rc, release = 0;
5740         ENTRY;
5741
5742         /* Only disconnect the underlying layers on the final disconnect. */
5743         spin_lock(&osd->od_osfs_lock);
5744         osd->od_connects--;
5745         if (osd->od_connects == 0)
5746                 release = 1;
5747         spin_unlock(&osd->od_osfs_lock);
5748
5749         rc = class_disconnect(exp); /* bz 9811 */
5750
5751         if (rc == 0 && release)
5752                 class_manual_cleanup(obd);
5753         RETURN(rc);
5754 }
5755
5756 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
5757                        struct lu_device *dev)
5758 {
5759         struct osd_device *osd = osd_dev(dev);
5760         int                result = 0;
5761         ENTRY;
5762
5763         if (osd->od_quota_slave != NULL)
5764                 /* set up quota slave objects */
5765                 result = qsd_prepare(env, osd->od_quota_slave);
5766
5767         RETURN(result);
5768 }
5769
5770 static const struct lu_object_operations osd_lu_obj_ops = {
5771         .loo_object_init      = osd_object_init,
5772         .loo_object_delete    = osd_object_delete,
5773         .loo_object_release   = osd_object_release,
5774         .loo_object_free      = osd_object_free,
5775         .loo_object_print     = osd_object_print,
5776         .loo_object_invariant = osd_object_invariant
5777 };
5778
5779 const struct lu_device_operations osd_lu_ops = {
5780         .ldo_object_alloc      = osd_object_alloc,
5781         .ldo_process_config    = osd_process_config,
5782         .ldo_recovery_complete = osd_recovery_complete,
5783         .ldo_prepare           = osd_prepare,
5784 };
5785
5786 static const struct lu_device_type_operations osd_device_type_ops = {
5787         .ldto_init = osd_type_init,
5788         .ldto_fini = osd_type_fini,
5789
5790         .ldto_start = osd_type_start,
5791         .ldto_stop  = osd_type_stop,
5792
5793         .ldto_device_alloc = osd_device_alloc,
5794         .ldto_device_free  = osd_device_free,
5795
5796         .ldto_device_init    = osd_device_init,
5797         .ldto_device_fini    = osd_device_fini
5798 };
5799
5800 struct lu_device_type osd_device_type = {
5801         .ldt_tags     = LU_DEVICE_DT,
5802         .ldt_name     = LUSTRE_OSD_LDISKFS_NAME,
5803         .ldt_ops      = &osd_device_type_ops,
5804         .ldt_ctx_tags = LCT_LOCAL,
5805 };
5806
5807 /*
5808  * lprocfs legacy support.
5809  */
5810 static struct obd_ops osd_obd_device_ops = {
5811         .o_owner = THIS_MODULE,
5812         .o_connect      = osd_obd_connect,
5813         .o_disconnect   = osd_obd_disconnect
5814 };
5815
5816 static int __init osd_mod_init(void)
5817 {
5818         struct lprocfs_static_vars lvars;
5819         int rc;
5820
5821         osd_oi_mod_init();
5822         lprocfs_osd_init_vars(&lvars);
5823
5824         rc = lu_kmem_init(ldiskfs_caches);
5825         if (rc)
5826                 return rc;
5827
5828         rc = class_register_type(&osd_obd_device_ops, NULL, NULL,
5829 #ifndef HAVE_ONLY_PROCFS_SEQ
5830                                 lvars.module_vars,
5831 #endif
5832                                 LUSTRE_OSD_LDISKFS_NAME, &osd_device_type);
5833         if (rc)
5834                 lu_kmem_fini(ldiskfs_caches);
5835         return rc;
5836 }
5837
5838 static void __exit osd_mod_exit(void)
5839 {
5840         class_unregister_type(LUSTRE_OSD_LDISKFS_NAME);
5841         lu_kmem_fini(ldiskfs_caches);
5842 }
5843
5844 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
5845 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_LDISKFS_NAME")");
5846 MODULE_LICENSE("GPL");
5847
5848 cfs_module(osd, "0.1.0", osd_mod_init, osd_mod_exit);