Whamcloud - gitweb
LU-10174 osd-zfs: Fix build against ZFS 0.6.5.x
[fs/lustre-release.git] / lustre / osd-zfs / osd_handler.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osd-zfs/osd_handler.c
33  * Top-level entry points into osd module
34  *
35  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
36  * Author: Mike Pershin <tappro@whamcloud.com>
37  * Author: Johann Lombardi <johann@whamcloud.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_OSD
41
42 #include <lustre_ver.h>
43 #include <libcfs/libcfs.h>
44 #include <obd_support.h>
45 #include <lustre_net.h>
46 #include <obd.h>
47 #include <obd_class.h>
48 #include <lustre_disk.h>
49 #include <lustre_fid.h>
50 #include <uapi/linux/lustre_param.h>
51 #include <md_object.h>
52
53 #include "osd_internal.h"
54
55 #include <sys/dnode.h>
56 #include <sys/dbuf.h>
57 #include <sys/spa.h>
58 #include <sys/stat.h>
59 #include <sys/zap.h>
60 #include <sys/spa_impl.h>
61 #include <sys/zfs_znode.h>
62 #include <sys/dmu_tx.h>
63 #include <sys/dmu_objset.h>
64 #include <sys/dsl_prop.h>
65 #include <sys/sa_impl.h>
66 #include <sys/txg.h>
67
68 struct lu_context_key   osd_key;
69
70 static int osd_txg_sync_delay_us = -1;
71
72 /* Slab for OSD object allocation */
73 struct kmem_cache *osd_object_kmem;
74
75 /* Slab to allocate osd_zap_it */
76 struct kmem_cache *osd_zapit_cachep;
77
78 static struct lu_kmem_descr osd_caches[] = {
79         {
80                 .ckd_cache = &osd_object_kmem,
81                 .ckd_name  = "zfs_osd_obj",
82                 .ckd_size  = sizeof(struct osd_object)
83         },
84         {
85                 .ckd_cache = &osd_zapit_cachep,
86                 .ckd_name  = "osd_zapit_cache",
87                 .ckd_size  = sizeof(struct osd_zap_it)
88         },
89         {
90                 .ckd_cache = NULL
91         }
92 };
93
94 static void arc_prune_func(int64_t bytes, void *private)
95 {
96         struct osd_device *od = private;
97         struct lu_site    *site = &od->od_site;
98         struct lu_env      env;
99         int rc;
100
101         LASSERT(site->ls_obj_hash);
102
103         rc = lu_env_init(&env, LCT_SHRINKER);
104         if (rc) {
105                 CERROR("%s: can't initialize shrinker env: rc = %d\n",
106                        od->od_svname, rc);
107                 return;
108         }
109
110         lu_site_purge(&env, site, (bytes >> 10));
111
112         lu_env_fini(&env);
113 }
114
115 /*
116  * Concurrency: doesn't access mutable data
117  */
118 static int osd_root_get(const struct lu_env *env,
119                         struct dt_device *dev, struct lu_fid *f)
120 {
121         lu_local_obj_fid(f, OSD_FS_ROOT_OID);
122         return 0;
123 }
124
125 /*
126  * OSD object methods.
127  */
128
129 /*
130  * Concurrency: shouldn't matter.
131  */
132 static void osd_trans_commit_cb(void *cb_data, int error)
133 {
134         struct osd_thandle      *oh = cb_data;
135         struct thandle          *th = &oh->ot_super;
136         struct osd_device       *osd = osd_dt_dev(th->th_dev);
137         struct lu_device        *lud = &th->th_dev->dd_lu_dev;
138         struct dt_txn_commit_cb *dcb, *tmp;
139
140         ENTRY;
141
142         if (error) {
143                 if (error == ECANCELED)
144                         CWARN("%s: transaction @0x%p was aborted\n",
145                               osd_dt_dev(th->th_dev)->od_svname, th);
146                 else
147                         CERROR("%s: transaction @0x%p commit error: rc = %d\n",
148                                 osd_dt_dev(th->th_dev)->od_svname, th, error);
149         }
150
151         dt_txn_hook_commit(th);
152
153         /* call per-transaction callbacks if any */
154         list_for_each_entry_safe(dcb, tmp, &oh->ot_dcb_list, dcb_linkage) {
155                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
156                          "commit callback entry: magic=%x name='%s'\n",
157                          dcb->dcb_magic, dcb->dcb_name);
158                 list_del_init(&dcb->dcb_linkage);
159                 dcb->dcb_func(NULL, th, dcb, error);
160         }
161
162         /* Unlike ldiskfs, zfs updates space accounting at commit time.
163          * As a consequence, op_end is called only now to inform the quota slave
164          * component that reserved quota space is now accounted in usage and
165          * should be released. Quota space won't be adjusted at this point since
166          * we can't provide a suitable environment. It will be performed
167          * asynchronously by a lquota thread. */
168         qsd_op_end(NULL, osd->od_quota_slave, &oh->ot_quota_trans);
169
170         lu_device_put(lud);
171         th->th_dev = NULL;
172         OBD_FREE_PTR(oh);
173
174         EXIT;
175 }
176
177 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
178 {
179         struct osd_thandle *oh = container_of0(th, struct osd_thandle,
180                                                ot_super);
181
182         LASSERT(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC);
183         LASSERT(&dcb->dcb_func != NULL);
184         if (dcb->dcb_flags & DCB_TRANS_STOP)
185                 list_add(&dcb->dcb_linkage, &oh->ot_stop_dcb_list);
186         else
187                 list_add(&dcb->dcb_linkage, &oh->ot_dcb_list);
188
189         return 0;
190 }
191
192 /*
193  * Concurrency: shouldn't matter.
194  */
195 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
196                            struct thandle *th)
197 {
198         struct osd_thandle      *oh;
199         int                     rc;
200         ENTRY;
201
202         oh = container_of0(th, struct osd_thandle, ot_super);
203         LASSERT(oh);
204         LASSERT(oh->ot_tx);
205
206         rc = dt_txn_hook_start(env, d, th);
207         if (rc != 0)
208                 RETURN(rc);
209
210         if (oh->ot_write_commit && OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC))
211                 /* Unlike ldiskfs, ZFS checks for available space and returns
212                  * -ENOSPC when assigning txg */
213                 RETURN(-ENOSPC);
214
215         rc = -dmu_tx_assign(oh->ot_tx, TXG_WAIT);
216         if (unlikely(rc != 0)) {
217                 struct osd_device *osd = osd_dt_dev(d);
218                 /* dmu will call commit callback with error code during abort */
219                 if (!lu_device_is_md(&d->dd_lu_dev) && rc == -ENOSPC)
220                         CERROR("%s: failed to start transaction due to ENOSPC"
221                                "\n", osd->od_svname);
222                 else
223                         CERROR("%s: can't assign tx: rc = %d\n",
224                                osd->od_svname, rc);
225         } else {
226                 /* add commit callback */
227                 dmu_tx_callback_register(oh->ot_tx, osd_trans_commit_cb, oh);
228                 oh->ot_assigned = 1;
229                 lu_device_get(&d->dd_lu_dev);
230         }
231
232         RETURN(rc);
233 }
234
235 static void osd_unlinked_list_emptify(const struct lu_env *env,
236                                       struct osd_device *osd,
237                                       struct list_head *list, bool free)
238 {
239         struct osd_object *obj;
240         uint64_t           oid;
241
242         while (!list_empty(list)) {
243                 obj = list_entry(list->next,
244                                  struct osd_object, oo_unlinked_linkage);
245                 LASSERT(obj->oo_dn != NULL);
246                 oid = obj->oo_dn->dn_object;
247
248                 list_del_init(&obj->oo_unlinked_linkage);
249                 if (free)
250                         (void)osd_unlinked_object_free(env, osd, oid);
251         }
252 }
253
254 static void osd_trans_stop_cb(struct osd_thandle *oth, int result)
255 {
256         struct dt_txn_commit_cb *dcb;
257         struct dt_txn_commit_cb *tmp;
258
259         /* call per-transaction stop callbacks if any */
260         list_for_each_entry_safe(dcb, tmp, &oth->ot_stop_dcb_list,
261                                  dcb_linkage) {
262                 LASSERTF(dcb->dcb_magic == TRANS_COMMIT_CB_MAGIC,
263                          "commit callback entry: magic=%x name='%s'\n",
264                          dcb->dcb_magic, dcb->dcb_name);
265                 list_del_init(&dcb->dcb_linkage);
266                 dcb->dcb_func(NULL, &oth->ot_super, dcb, result);
267         }
268 }
269
270 /*
271  * Concurrency: shouldn't matter.
272  */
273 static int osd_trans_stop(const struct lu_env *env, struct dt_device *dt,
274                           struct thandle *th)
275 {
276         struct osd_device       *osd = osd_dt_dev(th->th_dev);
277         bool                     sync = (th->th_sync != 0);
278         struct osd_thandle      *oh;
279         struct list_head         unlinked;
280         uint64_t                 txg;
281         int                      rc;
282         ENTRY;
283
284         oh = container_of0(th, struct osd_thandle, ot_super);
285         INIT_LIST_HEAD(&unlinked);
286         list_splice_init(&oh->ot_unlinked_list, &unlinked);
287         /* reset OI cache for safety */
288         osd_oti_get(env)->oti_ins_cache_used = 0;
289
290         if (oh->ot_assigned == 0) {
291                 LASSERT(oh->ot_tx);
292                 dmu_tx_abort(oh->ot_tx);
293                 osd_object_sa_dirty_rele(env, oh);
294                 osd_unlinked_list_emptify(env, osd, &unlinked, false);
295                 /* there won't be any commit, release reserved quota space now,
296                  * if any */
297                 qsd_op_end(env, osd->od_quota_slave, &oh->ot_quota_trans);
298                 OBD_FREE_PTR(oh);
299                 RETURN(0);
300         }
301
302         rc = dt_txn_hook_stop(env, th);
303         if (rc != 0)
304                 CDEBUG(D_OTHER, "%s: transaction hook failed: rc = %d\n",
305                        osd->od_svname, rc);
306
307         osd_trans_stop_cb(oh, rc);
308
309         LASSERT(oh->ot_tx);
310         txg = oh->ot_tx->tx_txg;
311
312         osd_object_sa_dirty_rele(env, oh);
313         /* XXX: Once dmu_tx_commit() called, oh/th could have been freed
314          * by osd_trans_commit_cb already. */
315         dmu_tx_commit(oh->ot_tx);
316
317         osd_unlinked_list_emptify(env, osd, &unlinked, true);
318
319         if (sync) {
320                 if (osd_txg_sync_delay_us < 0)
321                         txg_wait_synced(dmu_objset_pool(osd->od_os), txg);
322                 else
323                         udelay(osd_txg_sync_delay_us);
324         }
325
326         RETURN(rc);
327 }
328
329 static struct thandle *osd_trans_create(const struct lu_env *env,
330                                         struct dt_device *dt)
331 {
332         struct osd_device       *osd = osd_dt_dev(dt);
333         struct osd_thandle      *oh;
334         struct thandle          *th;
335         dmu_tx_t                *tx;
336         ENTRY;
337
338         if (dt->dd_rdonly) {
339                 CERROR("%s: someone try to start transaction under "
340                        "readonly mode, should be disabled.\n",
341                        osd_name(osd_dt_dev(dt)));
342                 dump_stack();
343                 RETURN(ERR_PTR(-EROFS));
344         }
345
346         tx = dmu_tx_create(osd->od_os);
347         if (tx == NULL)
348                 RETURN(ERR_PTR(-ENOMEM));
349
350         /* alloc callback data */
351         OBD_ALLOC_PTR(oh);
352         if (oh == NULL) {
353                 dmu_tx_abort(tx);
354                 RETURN(ERR_PTR(-ENOMEM));
355         }
356
357         oh->ot_tx = tx;
358         INIT_LIST_HEAD(&oh->ot_dcb_list);
359         INIT_LIST_HEAD(&oh->ot_stop_dcb_list);
360         INIT_LIST_HEAD(&oh->ot_unlinked_list);
361         INIT_LIST_HEAD(&oh->ot_sa_list);
362         memset(&oh->ot_quota_trans, 0, sizeof(oh->ot_quota_trans));
363         th = &oh->ot_super;
364         th->th_dev = dt;
365         th->th_result = 0;
366         RETURN(th);
367 }
368
369 /* Estimate the total number of objects from a number of blocks */
370 uint64_t osd_objs_count_estimate(uint64_t usedbytes, uint64_t usedobjs,
371                                  uint64_t nrblocks, uint64_t est_maxblockshift)
372 {
373         uint64_t est_totobjs, est_usedblocks, est_usedobjs;
374
375         /*
376          * If blocksize is below 64KB (e.g. MDT with recordsize=4096) then
377          * bump the free dnode estimate to assume blocks at least 64KB in
378          * case of a directory-heavy MDT (at 32KB/directory).
379          */
380         if (est_maxblockshift < 16) {
381                 nrblocks >>= (16 - est_maxblockshift);
382                 est_maxblockshift = 16;
383         }
384
385         /*
386          * Estimate the total number of dnodes from the total blocks count
387          * and the space used per dnode.  Since we don't know the overhead
388          * associated with each dnode (xattrs, SAs, VDEV overhead, etc.)
389          * just using DNODE_SHIFT isn't going to give a good estimate.
390          * Instead, compute the current average space usage per dnode, with
391          * an upper and lower cap to avoid unrealistic estimates..
392          *
393          * In case there aren't many dnodes or blocks used yet, add a small
394          * correction factor (OSD_DNODE_EST_{COUNT,BLKSHIFT}).  This factor
395          * gradually disappears as the number of real dnodes grows.  It also
396          * avoids the need to check for divide-by-zero computing dn_per_block.
397          */
398         CLASSERT(OSD_DNODE_MIN_BLKSHIFT > 0);
399         CLASSERT(OSD_DNODE_EST_BLKSHIFT > 0);
400
401         est_usedblocks = ((OSD_DNODE_EST_COUNT << OSD_DNODE_EST_BLKSHIFT) +
402                           usedbytes) >> est_maxblockshift;
403         est_usedobjs   = OSD_DNODE_EST_COUNT + usedobjs;
404
405         if (est_usedobjs <= est_usedblocks) {
406                 /*
407                  * Average space/dnode more than maximum block size, use max
408                  * block size to estimate free dnodes from adjusted free blocks
409                  * count.  OSTs typically use multiple blocks per dnode so this
410                  * case applies.
411                  */
412                 est_totobjs = nrblocks;
413
414         } else if (est_usedobjs >= (est_usedblocks << OSD_DNODE_MIN_BLKSHIFT)) {
415                 /*
416                  * Average space/dnode smaller than min dnode size (probably
417                  * due to metadnode compression), use min dnode size to
418                  * estimate object count.  MDTs may use only one block per node
419                  * so this case applies.
420                  */
421                 est_totobjs = nrblocks << OSD_DNODE_MIN_BLKSHIFT;
422
423         } else {
424                 /*
425                  * Between the extremes, use average space per existing dnode
426                  * to compute the number of dnodes that will fit into nrblocks:
427                  *
428                  *    est_totobjs = nrblocks * (est_usedobjs / est_usedblocks)
429                  *
430                  * this may overflow 64 bits or become 0 if not handled well.
431                  *
432                  * We know nrblocks is below 2^(64 - blkbits) bits, and
433                  * est_usedobjs is under 48 bits due to DN_MAX_OBJECT_SHIFT,
434                  * which means that multiplying them may get as large as
435                  * 2 ^ 96 for the minimum blocksize of 64KB allowed above.
436                  *
437                  * The ratio of dnodes per block (est_usedobjs / est_usedblocks)
438                  * is under 2^(blkbits - DNODE_SHIFT) = blocksize / 512 due to
439                  * the limit checks above, so we can safely compute this first.
440                  * We care more about accuracy on the MDT (many dnodes/block)
441                  * which is good because this is where truncation errors are
442                  * smallest.  Since both nrblocks and dn_per_block are a
443                  * function of blkbits, their product is at most:
444                  *
445                  *    2^(64 - blkbits) * 2^(blkbits - DNODE_SHIFT) = 2^(64 - 9)
446                  *
447                  * so we can safely use 7 bits to compute a fixed-point
448                  * fraction and est_totobjs can still fit in 64 bits.
449                  */
450                 unsigned dn_per_block = (est_usedobjs << 7) / est_usedblocks;
451
452                 est_totobjs = (nrblocks * dn_per_block) >> 7;
453         }
454         return est_totobjs;
455 }
456
457 static int osd_objset_statfs(struct osd_device *osd, struct obd_statfs *osfs)
458 {
459         struct objset *os = osd->od_os;
460         uint64_t usedbytes, availbytes, usedobjs, availobjs;
461         uint64_t est_availobjs;
462         uint64_t reserved;
463         uint64_t bshift;
464
465         dmu_objset_space(os, &usedbytes, &availbytes, &usedobjs, &availobjs);
466
467         memset(osfs, 0, sizeof(*osfs));
468
469         /* We're a zfs filesystem. */
470         osfs->os_type = UBERBLOCK_MAGIC;
471
472         /*
473          * ZFS allows multiple block sizes.  For statfs, Linux makes no
474          * proper distinction between bsize and frsize.  For calculations
475          * of free and used blocks incorrectly uses bsize instead of frsize,
476          * but bsize is also used as the optimal blocksize.  We return the
477          * largest possible block size as IO size for the optimum performance
478          * and scale the free and used blocks count appropriately.
479          */
480         osfs->os_bsize = osd->od_max_blksz;
481         bshift = fls64(osfs->os_bsize) - 1;
482
483         osfs->os_blocks = (usedbytes + availbytes) >> bshift;
484         osfs->os_bfree = availbytes >> bshift;
485         osfs->os_bavail = osfs->os_bfree; /* no extra root reservation */
486
487         /* Take replication (i.e. number of copies) into account */
488         if (os->os_copies != 0)
489                 osfs->os_bavail /= os->os_copies;
490
491         /*
492          * Reserve some space so we don't run into ENOSPC due to grants not
493          * accounting for metadata overhead in ZFS, and to avoid fragmentation.
494          * Rather than report this via os_bavail (which makes users unhappy if
495          * they can't fill the filesystem 100%), reduce os_blocks as well.
496          *
497          * Reserve 0.78% of total space, at least 16MB for small filesystems,
498          * for internal files to be created/unlinked when space is tight.
499          */
500         CLASSERT(OSD_STATFS_RESERVED_SIZE > 0);
501         reserved = OSD_STATFS_RESERVED_SIZE >> bshift;
502         if (likely(osfs->os_blocks >= reserved << OSD_STATFS_RESERVED_SHIFT))
503                 reserved = osfs->os_blocks >> OSD_STATFS_RESERVED_SHIFT;
504
505         osfs->os_blocks -= reserved;
506         osfs->os_bfree  -= min(reserved, osfs->os_bfree);
507         osfs->os_bavail -= min(reserved, osfs->os_bavail);
508
509         /*
510          * The availobjs value returned from dmu_objset_space() is largely
511          * useless, since it reports the number of objects that might
512          * theoretically still fit into the dataset, independent of minor
513          * issues like how much space is actually available in the pool.
514          * Compute a better estimate in udmu_objs_count_estimate().
515          */
516         est_availobjs = osd_objs_count_estimate(usedbytes, usedobjs,
517                                                 osfs->os_bfree, bshift);
518
519         osfs->os_ffree = min(availobjs, est_availobjs);
520         osfs->os_files = osfs->os_ffree + usedobjs;
521
522         /* ZFS XXX: fill in backing dataset FSID/UUID
523            memcpy(osfs->os_fsid, .... );*/
524
525         osfs->os_namelen = MAXNAMELEN;
526         osfs->os_maxbytes = OBD_OBJECT_EOF;
527
528         if (!spa_writeable(dmu_objset_spa(os)) ||
529             osd->od_dev_set_rdonly || osd->od_prop_rdonly)
530                 osfs->os_state |= OS_STATE_READONLY;
531
532         return 0;
533 }
534
535 /*
536  * Concurrency: shouldn't matter.
537  */
538 int osd_statfs(const struct lu_env *env, struct dt_device *d,
539                struct obd_statfs *osfs)
540 {
541         int                rc;
542         ENTRY;
543
544         rc = osd_objset_statfs(osd_dt_dev(d), osfs);
545         if (unlikely(rc != 0))
546                 RETURN(rc);
547
548         osfs->os_bavail -= min_t(u64,
549                                  OSD_GRANT_FOR_LOCAL_OIDS / osfs->os_bsize,
550                                  osfs->os_bavail);
551         RETURN(0);
552 }
553
554 static int osd_blk_insert_cost(struct osd_device *osd)
555 {
556         int max_blockshift, nr_blkptrshift, bshift;
557
558         /* max_blockshift is the log2 of the number of blocks needed to reach
559          * the maximum filesize (that's to say 2^64) */
560         bshift = osd_spa_maxblockshift(dmu_objset_spa(osd->od_os));
561         max_blockshift = DN_MAX_OFFSET_SHIFT - bshift;
562
563         /* nr_blkptrshift is the log2 of the number of block pointers that can
564          * be stored in an indirect block */
565         CLASSERT(DN_MAX_INDBLKSHIFT > SPA_BLKPTRSHIFT);
566         nr_blkptrshift = DN_MAX_INDBLKSHIFT - SPA_BLKPTRSHIFT;
567
568         /* max_blockshift / nr_blkptrshift is thus the maximum depth of the
569          * tree. We add +1 for rounding purpose.
570          * The tree depth times the indirect block size gives us the maximum
571          * cost of inserting a block in the tree */
572         return (max_blockshift / nr_blkptrshift + 1) * (1<<DN_MAX_INDBLKSHIFT);
573 }
574
575 /*
576  * Concurrency: doesn't access mutable data.
577  */
578 static void osd_conf_get(const struct lu_env *env,
579                          const struct dt_device *dev,
580                          struct dt_device_param *param)
581 {
582         struct osd_device *osd = osd_dt_dev(dev);
583
584         /*
585          * XXX should be taken from not-yet-existing fs abstraction layer.
586          */
587         param->ddp_max_name_len = MAXNAMELEN;
588         param->ddp_max_nlink    = 1 << 31; /* it's 8byte on a disk */
589         param->ddp_symlink_max  = PATH_MAX;
590         param->ddp_mount_type   = LDD_MT_ZFS;
591
592         param->ddp_mntopts      = MNTOPT_USERXATTR;
593         if (osd->od_posix_acl)
594                 param->ddp_mntopts |= MNTOPT_ACL;
595         param->ddp_max_ea_size  = DXATTR_MAX_ENTRY_SIZE;
596
597         /* for maxbytes, report same value as ZPL */
598         param->ddp_maxbytes     = MAX_LFS_FILESIZE;
599
600         /* inodes are dynamically allocated, so we report the per-inode space
601          * consumption to upper layers. This static value is not really accurate
602          * and we should use the same logic as in udmu_objset_statfs() to
603          * estimate the real size consumed by an object */
604         param->ddp_inodespace = OSD_DNODE_EST_COUNT;
605         /* Although ZFS isn't an extent-based filesystem, the metadata overhead
606          * (i.e. 7 levels of indirect blocks, see osd_blk_insert_cost()) should
607          * not be accounted for every single new block insertion.
608          * Instead, the maximum extent size is set to the number of blocks that
609          * can fit into a single contiguous indirect block. There would be some
610          * cases where this crosses indirect blocks, but it also won't have 7
611          * new levels of indirect blocks in that case either, so it will still
612          * have enough reserved space for the extra indirect block */
613         param->ddp_max_extent_blks =
614                 (1 << (DN_MAX_INDBLKSHIFT - SPA_BLKPTRSHIFT));
615         param->ddp_extent_tax = osd_blk_insert_cost(osd);
616
617         /* Preferred RPC size for efficient disk IO.  1MB shows good
618          * all-around performance for ZFS, but use blocksize (recordsize)
619          * by default if larger to avoid read-modify-write. */
620         if (osd->od_max_blksz > ONE_MB_BRW_SIZE)
621                 param->ddp_brw_size = osd->od_max_blksz;
622         else
623                 param->ddp_brw_size = ONE_MB_BRW_SIZE;
624 }
625
626 /*
627  * Concurrency: shouldn't matter.
628  */
629 static int osd_sync(const struct lu_env *env, struct dt_device *d)
630 {
631         if (!d->dd_rdonly) {
632                 struct osd_device  *osd = osd_dt_dev(d);
633
634                 CDEBUG(D_CACHE, "syncing OSD %s\n", LUSTRE_OSD_ZFS_NAME);
635                 txg_wait_synced(dmu_objset_pool(osd->od_os), 0ULL);
636                 CDEBUG(D_CACHE, "synced OSD %s\n", LUSTRE_OSD_ZFS_NAME);
637         }
638
639         return 0;
640 }
641
642 static int osd_commit_async(const struct lu_env *env, struct dt_device *dev)
643 {
644         struct osd_device *osd = osd_dt_dev(dev);
645         tx_state_t        *tx = &dmu_objset_pool(osd->od_os)->dp_tx;
646         uint64_t           txg;
647
648         mutex_enter(&tx->tx_sync_lock);
649         txg = tx->tx_open_txg + 1;
650         if (tx->tx_quiesce_txg_waiting < txg) {
651                 tx->tx_quiesce_txg_waiting = txg;
652                 cv_broadcast(&tx->tx_quiesce_more_cv);
653         }
654         mutex_exit(&tx->tx_sync_lock);
655
656         return 0;
657 }
658
659 /*
660  * Concurrency: shouldn't matter.
661  */
662 static int osd_ro(const struct lu_env *env, struct dt_device *d)
663 {
664         struct osd_device  *osd = osd_dt_dev(d);
665         ENTRY;
666
667         CERROR("%s: *** setting device %s read-only ***\n",
668                osd->od_svname, LUSTRE_OSD_ZFS_NAME);
669         osd->od_dev_set_rdonly = 1;
670         spa_freeze(dmu_objset_spa(osd->od_os));
671
672         RETURN(0);
673 }
674
675 static struct dt_device_operations osd_dt_ops = {
676         .dt_root_get            = osd_root_get,
677         .dt_statfs              = osd_statfs,
678         .dt_trans_create        = osd_trans_create,
679         .dt_trans_start         = osd_trans_start,
680         .dt_trans_stop          = osd_trans_stop,
681         .dt_trans_cb_add        = osd_trans_cb_add,
682         .dt_conf_get            = osd_conf_get,
683         .dt_sync                = osd_sync,
684         .dt_commit_async        = osd_commit_async,
685         .dt_ro                  = osd_ro,
686 };
687
688 /*
689  * DMU OSD device type methods
690  */
691 static int osd_type_init(struct lu_device_type *t)
692 {
693         LU_CONTEXT_KEY_INIT(&osd_key);
694         return lu_context_key_register(&osd_key);
695 }
696
697 static void osd_type_fini(struct lu_device_type *t)
698 {
699         lu_context_key_degister(&osd_key);
700 }
701
702 static void *osd_key_init(const struct lu_context *ctx,
703                           struct lu_context_key *key)
704 {
705         struct osd_thread_info *info;
706
707         OBD_ALLOC_PTR(info);
708         if (info != NULL)
709                 info->oti_env = container_of(ctx, struct lu_env, le_ctx);
710         else
711                 info = ERR_PTR(-ENOMEM);
712         return info;
713 }
714
715 static void osd_key_fini(const struct lu_context *ctx,
716                          struct lu_context_key *key, void *data)
717 {
718         struct osd_thread_info *info = data;
719         struct osd_idmap_cache *idc = info->oti_ins_cache;
720
721         if (idc != NULL) {
722                 LASSERT(info->oti_ins_cache_size > 0);
723                 OBD_FREE(idc, sizeof(*idc) * info->oti_ins_cache_size);
724                 info->oti_ins_cache = NULL;
725                 info->oti_ins_cache_size = 0;
726         }
727         lu_buf_free(&info->oti_xattr_lbuf);
728         OBD_FREE_PTR(info);
729 }
730
731 static void osd_key_exit(const struct lu_context *ctx,
732                          struct lu_context_key *key, void *data)
733 {
734 }
735
736 struct lu_context_key osd_key = {
737         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
738         .lct_init = osd_key_init,
739         .lct_fini = osd_key_fini,
740         .lct_exit = osd_key_exit
741 };
742
743 static void osd_fid_fini(const struct lu_env *env, struct osd_device *osd)
744 {
745         if (osd->od_cl_seq == NULL)
746                 return;
747
748         seq_client_fini(osd->od_cl_seq);
749         OBD_FREE_PTR(osd->od_cl_seq);
750         osd->od_cl_seq = NULL;
751 }
752
753 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
754 {
755         ENTRY;
756
757         /* shutdown quota slave instance associated with the device */
758         if (o->od_quota_slave != NULL) {
759                 /* complete all in-flight callbacks */
760                 osd_sync(env, &o->od_dt_dev);
761                 txg_wait_callbacks(spa_get_dsl(dmu_objset_spa(o->od_os)));
762                 qsd_fini(env, o->od_quota_slave);
763                 o->od_quota_slave = NULL;
764         }
765
766         osd_fid_fini(env, o);
767
768         RETURN(0);
769 }
770
771 static void osd_xattr_changed_cb(void *arg, uint64_t newval)
772 {
773         struct osd_device *osd = arg;
774
775         osd->od_xattr_in_sa = (newval == ZFS_XATTR_SA);
776 }
777
778 static void osd_recordsize_changed_cb(void *arg, uint64_t newval)
779 {
780         struct osd_device *osd = arg;
781
782         LASSERT(newval <= osd_spa_maxblocksize(dmu_objset_spa(osd->od_os)));
783         LASSERT(newval >= SPA_MINBLOCKSIZE);
784         LASSERT(ISP2(newval));
785
786         osd->od_max_blksz = newval;
787 }
788
789 static void osd_readonly_changed_cb(void *arg, uint64_t newval)
790 {
791         struct osd_device *osd = arg;
792
793         osd->od_prop_rdonly = !!newval;
794 }
795
796 #ifdef HAVE_DMU_OBJECT_ALLOC_DNSIZE
797 static void osd_dnodesize_changed_cb(void *arg, uint64_t newval)
798 {
799         struct osd_device *osd = arg;
800
801         osd->od_dnsize = newval;
802 }
803 #endif
804 /*
805  * This function unregisters all registered callbacks.  It's harmless to
806  * unregister callbacks that were never registered so it is used to safely
807  * unwind a partially completed call to osd_objset_register_callbacks().
808  */
809 static void osd_objset_unregister_callbacks(struct osd_device *o)
810 {
811         struct dsl_dataset      *ds = dmu_objset_ds(o->od_os);
812
813         (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_XATTR),
814                                    osd_xattr_changed_cb, o);
815         (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_RECORDSIZE),
816                                    osd_recordsize_changed_cb, o);
817         (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_READONLY),
818                                    osd_readonly_changed_cb, o);
819 #ifdef HAVE_DMU_OBJECT_ALLOC_DNSIZE
820         (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_DNODESIZE),
821                                    osd_dnodesize_changed_cb, o);
822 #endif
823
824         if (o->arc_prune_cb != NULL) {
825                 arc_remove_prune_callback(o->arc_prune_cb);
826                 o->arc_prune_cb = NULL;
827         }
828 }
829
830 /*
831  * Register the required callbacks to be notified when zfs properties
832  * are modified using the 'zfs(8)' command line utility.
833  */
834 static int osd_objset_register_callbacks(struct osd_device *o)
835 {
836         struct dsl_dataset      *ds = dmu_objset_ds(o->od_os);
837         dsl_pool_t              *dp = dmu_objset_pool(o->od_os);
838         int                     rc;
839
840         LASSERT(ds);
841         LASSERT(dp);
842
843         dsl_pool_config_enter(dp, FTAG);
844         rc = -dsl_prop_register(ds, zfs_prop_to_name(ZFS_PROP_XATTR),
845                                 osd_xattr_changed_cb, o);
846         if (rc)
847                 GOTO(err, rc);
848
849         rc = -dsl_prop_register(ds, zfs_prop_to_name(ZFS_PROP_RECORDSIZE),
850                                 osd_recordsize_changed_cb, o);
851         if (rc)
852                 GOTO(err, rc);
853
854         rc = -dsl_prop_register(ds, zfs_prop_to_name(ZFS_PROP_READONLY),
855                                 osd_readonly_changed_cb, o);
856         if (rc)
857                 GOTO(err, rc);
858
859 #ifdef HAVE_DMU_OBJECT_ALLOC_DNSIZE
860         rc = -dsl_prop_register(ds, zfs_prop_to_name(ZFS_PROP_DNODESIZE),
861                                 osd_dnodesize_changed_cb, o);
862         if (rc)
863                 GOTO(err, rc);
864 #endif
865
866         o->arc_prune_cb = arc_add_prune_callback(arc_prune_func, o);
867 err:
868         dsl_pool_config_exit(dp, FTAG);
869         if (rc)
870                 osd_objset_unregister_callbacks(o);
871
872         RETURN(rc);
873 }
874
875 static int osd_objset_open(struct osd_device *o)
876 {
877         uint64_t        version = ZPL_VERSION;
878         uint64_t        sa_obj, unlink_obj;
879         int             rc;
880         ENTRY;
881
882         rc = -osd_dmu_objset_own(o->od_mntdev, DMU_OST_ZFS,
883                              o->od_dt_dev.dd_rdonly ? B_TRUE : B_FALSE,
884                              B_FALSE, o, &o->od_os);
885
886         if (rc) {
887                 CERROR("%s: can't open %s\n", o->od_svname, o->od_mntdev);
888                 o->od_os = NULL;
889
890                 GOTO(out, rc);
891         }
892
893         /* Check ZFS version */
894         rc = -zap_lookup(o->od_os, MASTER_NODE_OBJ,
895                          ZPL_VERSION_STR, 8, 1, &version);
896         if (rc) {
897                 CERROR("%s: Error looking up ZPL VERSION\n", o->od_mntdev);
898                 /*
899                  * We can't return ENOENT because that would mean the objset
900                  * didn't exist.
901                  */
902                 GOTO(out, rc = -EIO);
903         }
904
905         rc = -zap_lookup(o->od_os, MASTER_NODE_OBJ,
906                          ZFS_SA_ATTRS, 8, 1, &sa_obj);
907         if (rc)
908                 GOTO(out, rc);
909
910         rc = -sa_setup(o->od_os, sa_obj, zfs_attr_table,
911                        ZPL_END, &o->z_attr_table);
912         if (rc)
913                 GOTO(out, rc);
914
915         rc = -zap_lookup(o->od_os, MASTER_NODE_OBJ, ZFS_ROOT_OBJ,
916                          8, 1, &o->od_rootid);
917         if (rc) {
918                 CERROR("%s: lookup for root failed: rc = %d\n",
919                         o->od_svname, rc);
920                 GOTO(out, rc);
921         }
922
923         rc = -zap_lookup(o->od_os, MASTER_NODE_OBJ, ZFS_UNLINKED_SET,
924                          8, 1, &unlink_obj);
925         if (rc) {
926                 CERROR("%s: lookup for %s failed: rc = %d\n",
927                        o->od_svname, ZFS_UNLINKED_SET, rc);
928                 GOTO(out, rc);
929         }
930
931         /* Check that user/group usage tracking is supported */
932         if (!dmu_objset_userused_enabled(o->od_os) ||
933             DMU_USERUSED_DNODE(o->od_os)->dn_type != DMU_OT_USERGROUP_USED ||
934             DMU_GROUPUSED_DNODE(o->od_os)->dn_type != DMU_OT_USERGROUP_USED) {
935                 CERROR("%s: Space accounting not supported by this target, "
936                         "aborting\n", o->od_svname);
937                 GOTO(out, rc = -ENOTSUPP);
938         }
939
940         rc = __osd_obj2dnode(o->od_os, unlink_obj, &o->od_unlinked);
941         if (rc) {
942                 CERROR("%s: can't get dnode for unlinked: rc = %d\n",
943                        o->od_svname, rc);
944                 GOTO(out, rc);
945         }
946
947 out:
948         if (rc != 0 && o->od_os != NULL) {
949                 osd_dmu_objset_disown(o->od_os, B_FALSE, o);
950                 o->od_os = NULL;
951         }
952
953         RETURN(rc);
954 }
955
956 int osd_unlinked_object_free(const struct lu_env *env, struct osd_device *osd,
957                          uint64_t oid)
958 {
959         char *key = osd_oti_get(env)->oti_str;
960         int       rc;
961         dmu_tx_t *tx;
962
963         if (osd->od_dt_dev.dd_rdonly) {
964                 CERROR("%s: someone try to free objects under "
965                        "readonly mode, should be disabled.\n", osd_name(osd));
966                 dump_stack();
967
968                 return -EROFS;
969         }
970
971         rc = -dmu_free_long_range(osd->od_os, oid, 0, DMU_OBJECT_END);
972         if (rc != 0) {
973                 CWARN("%s: Cannot truncate %llu: rc = %d\n",
974                       osd->od_svname, oid, rc);
975                 return rc;
976         }
977
978         tx = dmu_tx_create(osd->od_os);
979         dmu_tx_mark_netfree(tx);
980         dmu_tx_hold_free(tx, oid, 0, DMU_OBJECT_END);
981         osd_tx_hold_zap(tx, osd->od_unlinked->dn_object, osd->od_unlinked,
982                         FALSE, NULL);
983         rc = -dmu_tx_assign(tx, TXG_WAIT);
984         if (rc != 0) {
985                 CWARN("%s: Cannot assign tx for %llu: rc = %d\n",
986                       osd->od_svname, oid, rc);
987                 goto failed;
988         }
989
990         snprintf(key, sizeof(osd_oti_get(env)->oti_str), "%llx", oid);
991         rc = osd_zap_remove(osd, osd->od_unlinked->dn_object,
992                             osd->od_unlinked, key, tx);
993         if (rc != 0) {
994                 CWARN("%s: Cannot remove %llu from unlinked set: rc = %d\n",
995                       osd->od_svname, oid, rc);
996                 goto failed;
997         }
998
999         rc = -dmu_object_free(osd->od_os, oid, tx);
1000         if (rc != 0) {
1001                 CWARN("%s: Cannot free %llu: rc = %d\n",
1002                       osd->od_svname, oid, rc);
1003                 goto failed;
1004         }
1005         dmu_tx_commit(tx);
1006
1007         return 0;
1008
1009 failed:
1010         LASSERT(rc != 0);
1011         dmu_tx_abort(tx);
1012
1013         return rc;
1014 }
1015
1016 static void
1017 osd_unlinked_drain(const struct lu_env *env, struct osd_device *osd)
1018 {
1019         zap_cursor_t     zc;
1020         zap_attribute_t *za = &osd_oti_get(env)->oti_za;
1021
1022         zap_cursor_init(&zc, osd->od_os, osd->od_unlinked->dn_object);
1023
1024         while (zap_cursor_retrieve(&zc, za) == 0) {
1025                 /* If cannot free the object, leave it in the unlinked set,
1026                  * until the OSD is mounted again when obd_unlinked_drain()
1027                  * will be called. */
1028                 if (osd_unlinked_object_free(env, osd, za->za_first_integer))
1029                         break;
1030                 zap_cursor_advance(&zc);
1031         }
1032
1033         zap_cursor_fini(&zc);
1034 }
1035
1036 static int osd_mount(const struct lu_env *env,
1037                      struct osd_device *o, struct lustre_cfg *cfg)
1038 {
1039         char                    *mntdev = lustre_cfg_string(cfg, 1);
1040         char                    *str    = lustre_cfg_string(cfg, 2);
1041         char                    *svname = lustre_cfg_string(cfg, 4);
1042         dnode_t *rootdn;
1043         const char              *opts;
1044         int                      rc;
1045         ENTRY;
1046
1047         if (o->od_os != NULL)
1048                 RETURN(0);
1049
1050         if (mntdev == NULL || svname == NULL)
1051                 RETURN(-EINVAL);
1052
1053         rc = strlcpy(o->od_mntdev, mntdev, sizeof(o->od_mntdev));
1054         if (rc >= sizeof(o->od_mntdev))
1055                 RETURN(-E2BIG);
1056
1057         rc = strlcpy(o->od_svname, svname, sizeof(o->od_svname));
1058         if (rc >= sizeof(o->od_svname))
1059                 RETURN(-E2BIG);
1060
1061         str = strstr(str, ":");
1062         if (str) {
1063                 unsigned long flags;
1064
1065                 rc = kstrtoul(str + 1, 10, &flags);
1066                 if (rc)
1067                         RETURN(-EINVAL);
1068
1069                 if (flags & LMD_FLG_DEV_RDONLY) {
1070                         o->od_dt_dev.dd_rdonly = 1;
1071                         LCONSOLE_WARN("%s: set dev_rdonly on this device\n",
1072                                       svname);
1073                 }
1074         }
1075
1076         if (server_name_is_ost(o->od_svname))
1077                 o->od_is_ost = 1;
1078
1079         rc = osd_objset_open(o);
1080         if (rc)
1081                 RETURN(rc);
1082
1083         o->od_xattr_in_sa = B_TRUE;
1084         o->od_max_blksz = osd_spa_maxblocksize(o->od_os->os_spa);
1085
1086         rc = __osd_obj2dnode(o->od_os, o->od_rootid, &rootdn);
1087         if (rc)
1088                 GOTO(err, rc);
1089         o->od_root = rootdn->dn_object;
1090         osd_dnode_rele(rootdn);
1091
1092         rc = __osd_obj2dnode(o->od_os, DMU_USERUSED_OBJECT,
1093                              &o->od_userused_dn);
1094         if (rc)
1095                 GOTO(err, rc);
1096
1097         rc = __osd_obj2dnode(o->od_os, DMU_GROUPUSED_OBJECT,
1098                              &o->od_groupused_dn);
1099         if (rc)
1100                 GOTO(err, rc);
1101
1102 #ifdef ZFS_PROJINHERIT
1103         if (dmu_objset_projectquota_enabled(o->od_os)) {
1104                 rc = __osd_obj2dnode(o->od_os, DMU_PROJECTUSED_OBJECT,
1105                                      &o->od_projectused_dn);
1106                 if (rc && rc != -ENOENT)
1107                         GOTO(err, rc);
1108         }
1109 #endif
1110
1111         /* 1. initialize oi before any file create or file open */
1112         rc = osd_oi_init(env, o);
1113         if (rc)
1114                 GOTO(err, rc);
1115
1116         rc = lu_site_init(&o->od_site, osd2lu_dev(o));
1117         if (rc)
1118                 GOTO(err, rc);
1119         o->od_site.ls_bottom_dev = osd2lu_dev(o);
1120
1121         rc = lu_site_init_finish(&o->od_site);
1122         if (rc)
1123                 GOTO(err, rc);
1124
1125         rc = osd_objset_register_callbacks(o);
1126         if (rc)
1127                 GOTO(err, rc);
1128
1129         rc = osd_procfs_init(o, o->od_svname);
1130         if (rc)
1131                 GOTO(err, rc);
1132
1133         /* initialize quota slave instance */
1134         o->od_quota_slave = qsd_init(env, o->od_svname, &o->od_dt_dev,
1135                                      o->od_proc_entry);
1136         if (IS_ERR(o->od_quota_slave)) {
1137                 rc = PTR_ERR(o->od_quota_slave);
1138                 o->od_quota_slave = NULL;
1139                 GOTO(err, rc);
1140         }
1141
1142 #ifdef HAVE_DMU_USEROBJ_ACCOUNTING
1143         if (!osd_dmu_userobj_accounting_available(o))
1144                 CWARN("%s: dnode accounting not enabled: "
1145                       "enable feature@userobj_accounting in pool\n",
1146                       o->od_mntdev);
1147 #endif
1148
1149         /* parse mount option "noacl", and enable ACL by default */
1150         opts = lustre_cfg_string(cfg, 3);
1151         if (opts == NULL || strstr(opts, "noacl") == NULL)
1152                 o->od_posix_acl = 1;
1153
1154         osd_unlinked_drain(env, o);
1155 err:
1156         if (rc && o->od_os) {
1157                 osd_dmu_objset_disown(o->od_os, B_FALSE, o);
1158                 o->od_os = NULL;
1159         }
1160
1161         RETURN(rc);
1162 }
1163
1164 static void osd_umount(const struct lu_env *env, struct osd_device *o)
1165 {
1166         ENTRY;
1167
1168         if (atomic_read(&o->od_zerocopy_alloc))
1169                 CERROR("%s: lost %d allocated page(s)\n", o->od_svname,
1170                        atomic_read(&o->od_zerocopy_alloc));
1171         if (atomic_read(&o->od_zerocopy_loan))
1172                 CERROR("%s: lost %d loaned abuf(s)\n", o->od_svname,
1173                        atomic_read(&o->od_zerocopy_loan));
1174         if (atomic_read(&o->od_zerocopy_pin))
1175                 CERROR("%s: lost %d pinned dbuf(s)\n", o->od_svname,
1176                        atomic_read(&o->od_zerocopy_pin));
1177
1178         if (o->od_unlinked) {
1179                 osd_dnode_rele(o->od_unlinked);
1180                 o->od_unlinked = NULL;
1181         }
1182         if (o->od_userused_dn) {
1183                 osd_dnode_rele(o->od_userused_dn);
1184                 o->od_userused_dn = NULL;
1185         }
1186         if (o->od_groupused_dn) {
1187                 osd_dnode_rele(o->od_groupused_dn);
1188                 o->od_groupused_dn = NULL;
1189         }
1190
1191 #ifdef ZFS_PROJINHERIT
1192         if (o->od_projectused_dn) {
1193                 osd_dnode_rele(o->od_projectused_dn);
1194                 o->od_projectused_dn = NULL;
1195         }
1196 #endif
1197
1198         if (o->od_os != NULL) {
1199                 if (!o->od_dt_dev.dd_rdonly)
1200                         /* force a txg sync to get all commit callbacks */
1201                         txg_wait_synced(dmu_objset_pool(o->od_os), 0ULL);
1202
1203                 /* close the object set */
1204                 osd_dmu_objset_disown(o->od_os, B_FALSE, o);
1205                 o->od_os = NULL;
1206         }
1207
1208         EXIT;
1209 }
1210
1211 static int osd_device_init0(const struct lu_env *env,
1212                             struct osd_device *o,
1213                             struct lustre_cfg *cfg)
1214 {
1215         struct lu_device        *l = osd2lu_dev(o);
1216         int                      rc;
1217
1218         /* if the module was re-loaded, env can loose its keys */
1219         rc = lu_env_refill((struct lu_env *) env);
1220         if (rc)
1221                 GOTO(out, rc);
1222
1223         l->ld_ops = &osd_lu_ops;
1224         o->od_dt_dev.dd_ops = &osd_dt_ops;
1225
1226 out:
1227         RETURN(rc);
1228 }
1229
1230 static struct lu_device *osd_device_fini(const struct lu_env *env,
1231                                          struct lu_device *dev);
1232
1233 static struct lu_device *osd_device_alloc(const struct lu_env *env,
1234                                           struct lu_device_type *type,
1235                                           struct lustre_cfg *cfg)
1236 {
1237         struct osd_device       *dev;
1238         struct osd_seq_list     *osl;
1239         int                     rc;
1240
1241         OBD_ALLOC_PTR(dev);
1242         if (dev == NULL)
1243                 return ERR_PTR(-ENOMEM);
1244
1245         osl = &dev->od_seq_list;
1246         INIT_LIST_HEAD(&osl->osl_seq_list);
1247         rwlock_init(&osl->osl_seq_list_lock);
1248         sema_init(&osl->osl_seq_init_sem, 1);
1249
1250         rc = dt_device_init(&dev->od_dt_dev, type);
1251         if (rc == 0) {
1252                 rc = osd_device_init0(env, dev, cfg);
1253                 if (rc == 0) {
1254                         rc = osd_mount(env, dev, cfg);
1255                         if (rc)
1256                                 osd_device_fini(env, osd2lu_dev(dev));
1257                 }
1258                 if (rc)
1259                         dt_device_fini(&dev->od_dt_dev);
1260         }
1261
1262         if (unlikely(rc != 0))
1263                 OBD_FREE_PTR(dev);
1264
1265         return rc == 0 ? osd2lu_dev(dev) : ERR_PTR(rc);
1266 }
1267
1268 static struct lu_device *osd_device_free(const struct lu_env *env,
1269                                          struct lu_device *d)
1270 {
1271         struct osd_device *o = osd_dev(d);
1272         ENTRY;
1273
1274         /* XXX: make osd top device in order to release reference */
1275         d->ld_site->ls_top_dev = d;
1276         lu_site_purge(env, d->ld_site, -1);
1277         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
1278                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1279                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
1280         }
1281         lu_site_fini(&o->od_site);
1282         dt_device_fini(&o->od_dt_dev);
1283         OBD_FREE_PTR(o);
1284
1285         RETURN (NULL);
1286 }
1287
1288 static struct lu_device *osd_device_fini(const struct lu_env *env,
1289                                          struct lu_device *d)
1290 {
1291         struct osd_device *o = osd_dev(d);
1292         int                rc;
1293         ENTRY;
1294
1295
1296         if (o->od_os) {
1297                 osd_objset_unregister_callbacks(o);
1298                 if (!o->od_dt_dev.dd_rdonly) {
1299                         osd_sync(env, lu2dt_dev(d));
1300                         txg_wait_callbacks(
1301                                         spa_get_dsl(dmu_objset_spa(o->od_os)));
1302                 }
1303         }
1304
1305         /* now with all the callbacks completed we can cleanup the remainings */
1306         osd_shutdown(env, o);
1307         osd_oi_fini(env, o);
1308
1309         rc = osd_procfs_fini(o);
1310         if (rc) {
1311                 CERROR("proc fini error %d\n", rc);
1312                 RETURN(ERR_PTR(rc));
1313         }
1314
1315         if (o->od_os)
1316                 osd_umount(env, o);
1317
1318         RETURN(NULL);
1319 }
1320
1321 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
1322                            const char *name, struct lu_device *next)
1323 {
1324         return 0;
1325 }
1326
1327 /*
1328  * To be removed, setup is performed by osd_device_{init,alloc} and
1329  * cleanup is performed by osd_device_{fini,free).
1330  */
1331 static int osd_process_config(const struct lu_env *env,
1332                               struct lu_device *d, struct lustre_cfg *cfg)
1333 {
1334         struct osd_device       *o = osd_dev(d);
1335         int                     rc;
1336         ENTRY;
1337
1338         switch(cfg->lcfg_command) {
1339         case LCFG_SETUP:
1340                 rc = osd_mount(env, o, cfg);
1341                 break;
1342         case LCFG_CLEANUP:
1343                 rc = osd_shutdown(env, o);
1344                 break;
1345         case LCFG_PARAM: {
1346                 LASSERT(&o->od_dt_dev);
1347                 rc = class_process_proc_param(PARAM_OSD, lprocfs_osd_obd_vars,
1348                                               cfg, &o->od_dt_dev);
1349                 if (rc > 0 || rc == -ENOSYS) {
1350                         rc = class_process_proc_param(PARAM_OST,
1351                                                       lprocfs_osd_obd_vars,
1352                                                       cfg, &o->od_dt_dev);
1353                         if (rc > 0)
1354                                 rc = 0;
1355                 }
1356                 break;
1357         }
1358         default:
1359                 rc = -ENOTTY;
1360         }
1361
1362         RETURN(rc);
1363 }
1364
1365 static int osd_recovery_complete(const struct lu_env *env, struct lu_device *d)
1366 {
1367         struct osd_device       *osd = osd_dev(d);
1368         int                      rc = 0;
1369         ENTRY;
1370
1371         if (osd->od_quota_slave == NULL)
1372                 RETURN(0);
1373
1374         /* start qsd instance on recovery completion, this notifies the quota
1375          * slave code that we are about to process new requests now */
1376         rc = qsd_start(env, osd->od_quota_slave);
1377         RETURN(rc);
1378 }
1379
1380 /*
1381  * we use exports to track all osd users
1382  */
1383 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
1384                            struct obd_device *obd, struct obd_uuid *cluuid,
1385                            struct obd_connect_data *data, void *localdata)
1386 {
1387         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
1388         struct lustre_handle  conn;
1389         int                   rc;
1390         ENTRY;
1391
1392         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
1393
1394         rc = class_connect(&conn, obd, cluuid);
1395         if (rc)
1396                 RETURN(rc);
1397
1398         *exp = class_conn2export(&conn);
1399
1400         spin_lock(&obd->obd_dev_lock);
1401         osd->od_connects++;
1402         spin_unlock(&obd->obd_dev_lock);
1403
1404         RETURN(0);
1405 }
1406
1407 /*
1408  * once last export (we don't count self-export) disappeared
1409  * osd can be released
1410  */
1411 static int osd_obd_disconnect(struct obd_export *exp)
1412 {
1413         struct obd_device *obd = exp->exp_obd;
1414         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
1415         int                rc, release = 0;
1416         ENTRY;
1417
1418         /* Only disconnect the underlying layers on the final disconnect. */
1419         spin_lock(&obd->obd_dev_lock);
1420         osd->od_connects--;
1421         if (osd->od_connects == 0)
1422                 release = 1;
1423         spin_unlock(&obd->obd_dev_lock);
1424
1425         rc = class_disconnect(exp); /* bz 9811 */
1426
1427         if (rc == 0 && release)
1428                 class_manual_cleanup(obd);
1429         RETURN(rc);
1430 }
1431
1432 static int osd_fid_init(const struct lu_env *env, struct osd_device *osd)
1433 {
1434         struct seq_server_site  *ss = osd_seq_site(osd);
1435         int                     rc;
1436         ENTRY;
1437
1438         if (osd->od_is_ost || osd->od_cl_seq != NULL)
1439                 RETURN(0);
1440
1441         if (unlikely(ss == NULL))
1442                 RETURN(-ENODEV);
1443
1444         OBD_ALLOC_PTR(osd->od_cl_seq);
1445         if (osd->od_cl_seq == NULL)
1446                 RETURN(-ENOMEM);
1447
1448         rc = seq_client_init(osd->od_cl_seq, NULL, LUSTRE_SEQ_METADATA,
1449                              osd->od_svname, ss->ss_server_seq);
1450
1451         if (rc != 0) {
1452                 OBD_FREE_PTR(osd->od_cl_seq);
1453                 osd->od_cl_seq = NULL;
1454         }
1455
1456         RETURN(rc);
1457 }
1458
1459 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
1460                        struct lu_device *dev)
1461 {
1462         struct osd_device       *osd = osd_dev(dev);
1463         int                      rc = 0;
1464         ENTRY;
1465
1466         if (osd->od_quota_slave != NULL) {
1467                 /* set up quota slave objects */
1468                 rc = qsd_prepare(env, osd->od_quota_slave);
1469                 if (rc != 0)
1470                         RETURN(rc);
1471         }
1472
1473         rc = osd_fid_init(env, osd);
1474
1475         RETURN(rc);
1476 }
1477
1478 struct lu_device_operations osd_lu_ops = {
1479         .ldo_object_alloc       = osd_object_alloc,
1480         .ldo_process_config     = osd_process_config,
1481         .ldo_recovery_complete  = osd_recovery_complete,
1482         .ldo_prepare            = osd_prepare,
1483 };
1484
1485 static void osd_type_start(struct lu_device_type *t)
1486 {
1487 }
1488
1489 static void osd_type_stop(struct lu_device_type *t)
1490 {
1491 }
1492
1493 int osd_fid_alloc(const struct lu_env *env, struct obd_export *exp,
1494                   struct lu_fid *fid, struct md_op_data *op_data)
1495 {
1496         struct osd_device *osd = osd_dev(exp->exp_obd->obd_lu_dev);
1497
1498         return seq_client_alloc_fid(env, osd->od_cl_seq, fid);
1499 }
1500
1501 static struct lu_device_type_operations osd_device_type_ops = {
1502         .ldto_init              = osd_type_init,
1503         .ldto_fini              = osd_type_fini,
1504
1505         .ldto_start             = osd_type_start,
1506         .ldto_stop              = osd_type_stop,
1507
1508         .ldto_device_alloc      = osd_device_alloc,
1509         .ldto_device_free       = osd_device_free,
1510
1511         .ldto_device_init       = osd_device_init,
1512         .ldto_device_fini       = osd_device_fini
1513 };
1514
1515 static struct lu_device_type osd_device_type = {
1516         .ldt_tags     = LU_DEVICE_DT,
1517         .ldt_name     = LUSTRE_OSD_ZFS_NAME,
1518         .ldt_ops      = &osd_device_type_ops,
1519         .ldt_ctx_tags = LCT_LOCAL
1520 };
1521
1522
1523 static struct obd_ops osd_obd_device_ops = {
1524         .o_owner       = THIS_MODULE,
1525         .o_connect      = osd_obd_connect,
1526         .o_disconnect   = osd_obd_disconnect,
1527         .o_fid_alloc    = osd_fid_alloc
1528 };
1529
1530 static int __init osd_init(void)
1531 {
1532         int rc;
1533
1534         rc = osd_options_init();
1535         if (rc)
1536                 return rc;
1537
1538         rc = lu_kmem_init(osd_caches);
1539         if (rc)
1540                 return rc;
1541
1542         rc = class_register_type(&osd_obd_device_ops, NULL, true, NULL,
1543                                  LUSTRE_OSD_ZFS_NAME, &osd_device_type);
1544         if (rc)
1545                 lu_kmem_fini(osd_caches);
1546         return rc;
1547 }
1548
1549 static void __exit osd_exit(void)
1550 {
1551         class_unregister_type(LUSTRE_OSD_ZFS_NAME);
1552         lu_kmem_fini(osd_caches);
1553 }
1554
1555 extern unsigned int osd_oi_count;
1556 module_param(osd_oi_count, int, 0444);
1557 MODULE_PARM_DESC(osd_oi_count, "Number of Object Index containers to be created, it's only valid for new filesystem.");
1558
1559 module_param(osd_txg_sync_delay_us, int, 0644);
1560 MODULE_PARM_DESC(osd_txg_sync_delay_us,
1561                  "When zero or larger delay N usec instead of doing TXG sync");
1562
1563 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1564 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_ZFS_NAME")");
1565 MODULE_VERSION(LUSTRE_VERSION_STRING);
1566 MODULE_LICENSE("GPL");
1567
1568 module_init(osd_init);
1569 module_exit(osd_exit);