Whamcloud - gitweb
LU-3319 procfs: provide framework for seq_file handling
[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.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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * Copyright (c) 2012, 2013, Intel Corporation.
32  * Use is subject to license terms.
33  *
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  *
39  * lustre/osd-zfs/osd_handler.c
40  * Top-level entry points into osd module
41  *
42  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
43  * Author: Mike Pershin <tappro@whamcloud.com>
44  * Author: Johann Lombardi <johann@whamcloud.com>
45  */
46
47 #define DEBUG_SUBSYSTEM S_OSD
48
49 #include <lustre_ver.h>
50 #include <libcfs/libcfs.h>
51 #include <obd_support.h>
52 #include <lustre_net.h>
53 #include <obd.h>
54 #include <obd_class.h>
55 #include <lustre_disk.h>
56 #include <lustre_fid.h>
57 #include <md_object.h>
58
59 #include "osd_internal.h"
60
61 #include <sys/dnode.h>
62 #include <sys/dbuf.h>
63 #include <sys/spa.h>
64 #include <sys/stat.h>
65 #include <sys/zap.h>
66 #include <sys/spa_impl.h>
67 #include <sys/zfs_znode.h>
68 #include <sys/dmu_tx.h>
69 #include <sys/dmu_objset.h>
70 #include <sys/dsl_prop.h>
71 #include <sys/sa_impl.h>
72 #include <sys/txg.h>
73
74 struct lu_context_key   osd_key;
75
76 static char *root_tag = "osd_mount, rootdb";
77
78 /* Slab for OSD object allocation */
79 struct kmem_cache *osd_object_kmem;
80
81 static struct lu_kmem_descr osd_caches[] = {
82         {
83                 .ckd_cache = &osd_object_kmem,
84                 .ckd_name  = "zfs_osd_obj",
85                 .ckd_size  = sizeof(struct osd_object)
86         },
87         {
88                 .ckd_cache = NULL
89         }
90 };
91
92 static void arc_prune_func(int64_t bytes, void *private)
93 {
94         struct osd_device *od = private;
95         struct lu_site    *site = &od->od_site;
96         struct lu_env      env;
97         int rc;
98
99         rc = lu_env_init(&env, LCT_SHRINKER);
100         if (rc) {
101                 CERROR("%s: can't initialize shrinker env: rc = %d\n",
102                        od->od_svname, rc);
103                 return;
104         }
105
106         lu_site_purge(&env, site, (bytes >> 10));
107
108         lu_env_fini(&env);
109 }
110
111 /*
112  * Concurrency: doesn't access mutable data
113  */
114 static int osd_root_get(const struct lu_env *env,
115                         struct dt_device *dev, struct lu_fid *f)
116 {
117         lu_local_obj_fid(f, OSD_FS_ROOT_OID);
118         return 0;
119 }
120
121 /*
122  * OSD object methods.
123  */
124
125 /*
126  * Concurrency: shouldn't matter.
127  */
128 static void osd_trans_commit_cb(void *cb_data, int error)
129 {
130         struct osd_thandle      *oh = cb_data;
131         struct thandle          *th = &oh->ot_super;
132         struct osd_device       *osd = osd_dt_dev(th->th_dev);
133         struct lu_device        *lud = &th->th_dev->dd_lu_dev;
134         struct dt_txn_commit_cb *dcb, *tmp;
135
136         ENTRY;
137
138         if (error) {
139                 if (error == ECANCELED)
140                         CWARN("%s: transaction @0x%p was aborted\n",
141                               osd_dt_dev(th->th_dev)->od_svname, th);
142                 else
143                         CERROR("%s: transaction @0x%p commit error: rc = %d\n",
144                                 osd_dt_dev(th->th_dev)->od_svname, th, error);
145         }
146
147         dt_txn_hook_commit(th);
148
149         /* call per-transaction callbacks if any */
150         cfs_list_for_each_entry_safe(dcb, tmp, &oh->ot_dcb_list, dcb_linkage)
151                 dcb->dcb_func(NULL, th, dcb, error);
152
153         /* Unlike ldiskfs, zfs updates space accounting at commit time.
154          * As a consequence, op_end is called only now to inform the quota slave
155          * component that reserved quota space is now accounted in usage and
156          * should be released. Quota space won't be adjusted at this point since
157          * we can't provide a suitable environment. It will be performed
158          * asynchronously by a lquota thread. */
159         qsd_op_end(NULL, osd->od_quota_slave, &oh->ot_quota_trans);
160
161         lu_device_put(lud);
162         th->th_dev = NULL;
163         lu_context_exit(&th->th_ctx);
164         lu_context_fini(&th->th_ctx);
165         OBD_FREE_PTR(oh);
166
167         EXIT;
168 }
169
170 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
171 {
172         struct osd_thandle *oh;
173
174         oh = container_of0(th, struct osd_thandle, ot_super);
175         cfs_list_add(&dcb->dcb_linkage, &oh->ot_dcb_list);
176
177         return 0;
178 }
179
180 /*
181  * Concurrency: shouldn't matter.
182  */
183 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
184                            struct thandle *th)
185 {
186         struct osd_thandle      *oh;
187         int                     rc;
188         ENTRY;
189
190         oh = container_of0(th, struct osd_thandle, ot_super);
191         LASSERT(oh);
192         LASSERT(oh->ot_tx);
193
194         rc = dt_txn_hook_start(env, d, th);
195         if (rc != 0)
196                 RETURN(rc);
197
198         if (oh->ot_write_commit && OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC))
199                 /* Unlike ldiskfs, ZFS checks for available space and returns
200                  * -ENOSPC when assigning txg */
201                 RETURN(-ENOSPC);
202
203         rc = -dmu_tx_assign(oh->ot_tx, TXG_WAIT);
204         if (unlikely(rc != 0)) {
205                 struct osd_device *osd = osd_dt_dev(d);
206                 /* dmu will call commit callback with error code during abort */
207                 if (!lu_device_is_md(&d->dd_lu_dev) && rc == -ENOSPC)
208                         CERROR("%s: failed to start transaction due to ENOSPC. "
209                                "Metadata overhead is underestimated or "
210                                "grant_ratio is too low.\n", osd->od_svname);
211                 else
212                         CERROR("%s: can't assign tx: rc = %d\n",
213                                osd->od_svname, rc);
214         } else {
215                 /* add commit callback */
216                 dmu_tx_callback_register(oh->ot_tx, osd_trans_commit_cb, oh);
217                 oh->ot_assigned = 1;
218                 lu_context_init(&th->th_ctx, th->th_tags);
219                 lu_context_enter(&th->th_ctx);
220                 lu_device_get(&d->dd_lu_dev);
221         }
222
223         RETURN(rc);
224 }
225
226 /*
227  * Concurrency: shouldn't matter.
228  */
229 static int osd_trans_stop(const struct lu_env *env, struct thandle *th)
230 {
231         struct osd_device       *osd = osd_dt_dev(th->th_dev);
232         struct osd_thandle      *oh;
233         uint64_t                 txg;
234         int                      rc;
235         ENTRY;
236
237         oh = container_of0(th, struct osd_thandle, ot_super);
238
239         if (oh->ot_assigned == 0) {
240                 LASSERT(oh->ot_tx);
241                 dmu_tx_abort(oh->ot_tx);
242                 osd_object_sa_dirty_rele(oh);
243                 /* there won't be any commit, release reserved quota space now,
244                  * if any */
245                 qsd_op_end(env, osd->od_quota_slave, &oh->ot_quota_trans);
246                 OBD_FREE_PTR(oh);
247                 RETURN(0);
248         }
249
250         /* When doing our own inode accounting, the ZAPs storing per-uid/gid
251          * usage are updated at operation execution time, so we should call
252          * qsd_op_end() straight away. Otherwise (for blk accounting maintained
253          * by ZFS and when #inode is estimated from #blks) accounting is updated
254          * at commit time and the call to qsd_op_end() must be delayed */
255         if (oh->ot_quota_trans.lqt_id_cnt > 0 &&
256                         !oh->ot_quota_trans.lqt_ids[0].lqi_is_blk &&
257                         !osd->od_quota_iused_est)
258                 qsd_op_end(env, osd->od_quota_slave, &oh->ot_quota_trans);
259
260         rc = dt_txn_hook_stop(env, th);
261         if (rc != 0)
262                 CDEBUG(D_OTHER, "%s: transaction hook failed: rc = %d\n",
263                        osd->od_svname, rc);
264
265         LASSERT(oh->ot_tx);
266         txg = oh->ot_tx->tx_txg;
267
268         osd_object_sa_dirty_rele(oh);
269         dmu_tx_commit(oh->ot_tx);
270
271         if (th->th_sync)
272                 txg_wait_synced(dmu_objset_pool(osd->od_objset.os), txg);
273
274         RETURN(rc);
275 }
276
277 static struct thandle *osd_trans_create(const struct lu_env *env,
278                                         struct dt_device *dt)
279 {
280         struct osd_device       *osd = osd_dt_dev(dt);
281         struct osd_thandle      *oh;
282         struct thandle          *th;
283         dmu_tx_t                *tx;
284         ENTRY;
285
286         tx = dmu_tx_create(osd->od_objset.os);
287         if (tx == NULL)
288                 RETURN(ERR_PTR(-ENOMEM));
289
290         /* alloc callback data */
291         OBD_ALLOC_PTR(oh);
292         if (oh == NULL) {
293                 dmu_tx_abort(tx);
294                 RETURN(ERR_PTR(-ENOMEM));
295         }
296
297         oh->ot_tx = tx;
298         CFS_INIT_LIST_HEAD(&oh->ot_dcb_list);
299         CFS_INIT_LIST_HEAD(&oh->ot_sa_list);
300         sema_init(&oh->ot_sa_lock, 1);
301         memset(&oh->ot_quota_trans, 0, sizeof(oh->ot_quota_trans));
302         th = &oh->ot_super;
303         th->th_dev = dt;
304         th->th_result = 0;
305         th->th_tags = LCT_TX_HANDLE;
306         RETURN(th);
307 }
308
309 /*
310  * Concurrency: shouldn't matter.
311  */
312 int osd_statfs(const struct lu_env *env, struct dt_device *d,
313                struct obd_statfs *osfs)
314 {
315         struct osd_device *osd = osd_dt_dev(d);
316         int                rc;
317         ENTRY;
318
319         rc = udmu_objset_statfs(&osd->od_objset, osfs);
320         if (unlikely(rc))
321                 RETURN(rc);
322         osfs->os_bavail -= min_t(obd_size,
323                                  OSD_GRANT_FOR_LOCAL_OIDS / osfs->os_bsize,
324                                  osfs->os_bavail);
325         RETURN(0);
326 }
327
328 /*
329  * Concurrency: doesn't access mutable data.
330  */
331 static void osd_conf_get(const struct lu_env *env,
332                          const struct dt_device *dev,
333                          struct dt_device_param *param)
334 {
335         /*
336          * XXX should be taken from not-yet-existing fs abstraction layer.
337          */
338         param->ddp_max_name_len  = MAXNAMELEN;
339         param->ddp_max_nlink     = 1 << 31; /* it's 8byte on a disk */
340         param->ddp_block_shift   = 12; /* XXX */
341         param->ddp_mount_type    = LDD_MT_ZFS;
342
343         param->ddp_mntopts        = MNTOPT_USERXATTR | MNTOPT_ACL;
344         param->ddp_max_ea_size    = DXATTR_MAX_ENTRY_SIZE;
345
346         /* for maxbytes, report same value as ZPL */
347         param->ddp_maxbytes      = MAX_LFS_FILESIZE;
348
349         /* Default reserved fraction of the available space that should be kept
350          * for error margin. Unfortunately, there are many factors that can
351          * impact the overhead with zfs, so let's be very cautious for now and
352          * reserve 20% of the available space which is not given out as grant.
353          * This tunable can be changed on a live system via procfs if needed. */
354         param->ddp_grant_reserved = 20;
355
356         /* inodes are dynamically allocated, so we report the per-inode space
357          * consumption to upper layers. This static value is not really accurate
358          * and we should use the same logic as in udmu_objset_statfs() to
359          * estimate the real size consumed by an object */
360         param->ddp_inodespace = OSD_DNODE_EST_COUNT;
361         /* per-fragment overhead to be used by the client code */
362         param->ddp_grant_frag = udmu_blk_insert_cost();
363 }
364
365 /*
366  * Concurrency: shouldn't matter.
367  */
368 static int osd_sync(const struct lu_env *env, struct dt_device *d)
369 {
370         struct osd_device  *osd = osd_dt_dev(d);
371         CDEBUG(D_HA, "syncing OSD %s\n", LUSTRE_OSD_ZFS_NAME);
372         txg_wait_synced(dmu_objset_pool(osd->od_objset.os), 0ULL);
373         return 0;
374 }
375
376 static int osd_commit_async(const struct lu_env *env, struct dt_device *dev)
377 {
378         struct osd_device *osd = osd_dt_dev(dev);
379         tx_state_t        *tx = &dmu_objset_pool(osd->od_objset.os)->dp_tx;
380         uint64_t           txg;
381
382         mutex_enter(&tx->tx_sync_lock);
383         txg = tx->tx_open_txg + 1;
384         if (tx->tx_quiesce_txg_waiting < txg) {
385                 tx->tx_quiesce_txg_waiting = txg;
386                 cv_broadcast(&tx->tx_quiesce_more_cv);
387         }
388         mutex_exit(&tx->tx_sync_lock);
389
390         return 0;
391 }
392
393 /*
394  * Concurrency: shouldn't matter.
395  */
396 static int osd_ro(const struct lu_env *env, struct dt_device *d)
397 {
398         struct osd_device  *osd = osd_dt_dev(d);
399         ENTRY;
400
401         CERROR("%s: *** setting device %s read-only ***\n",
402                osd->od_svname, LUSTRE_OSD_ZFS_NAME);
403         osd->od_rdonly = 1;
404         spa_freeze(dmu_objset_spa(osd->od_objset.os));
405
406         RETURN(0);
407 }
408
409 /*
410  * Concurrency: serialization provided by callers.
411  */
412 static int osd_init_capa_ctxt(const struct lu_env *env, struct dt_device *d,
413                               int mode, unsigned long timeout, __u32 alg,
414                               struct lustre_capa_key *keys)
415 {
416         struct osd_device *dev = osd_dt_dev(d);
417         ENTRY;
418
419         dev->od_fl_capa = mode;
420         dev->od_capa_timeout = timeout;
421         dev->od_capa_alg = alg;
422         dev->od_capa_keys = keys;
423
424         RETURN(0);
425 }
426
427 static struct dt_device_operations osd_dt_ops = {
428         .dt_root_get            = osd_root_get,
429         .dt_statfs              = osd_statfs,
430         .dt_trans_create        = osd_trans_create,
431         .dt_trans_start         = osd_trans_start,
432         .dt_trans_stop          = osd_trans_stop,
433         .dt_trans_cb_add        = osd_trans_cb_add,
434         .dt_conf_get            = osd_conf_get,
435         .dt_sync                = osd_sync,
436         .dt_commit_async        = osd_commit_async,
437         .dt_ro                  = osd_ro,
438         .dt_init_capa_ctxt      = osd_init_capa_ctxt,
439 };
440
441 /*
442  * DMU OSD device type methods
443  */
444 static int osd_type_init(struct lu_device_type *t)
445 {
446         LU_CONTEXT_KEY_INIT(&osd_key);
447         return lu_context_key_register(&osd_key);
448 }
449
450 static void osd_type_fini(struct lu_device_type *t)
451 {
452         lu_context_key_degister(&osd_key);
453 }
454
455 static void *osd_key_init(const struct lu_context *ctx,
456                           struct lu_context_key *key)
457 {
458         struct osd_thread_info *info;
459
460         OBD_ALLOC_PTR(info);
461         if (info != NULL)
462                 info->oti_env = container_of(ctx, struct lu_env, le_ctx);
463         else
464                 info = ERR_PTR(-ENOMEM);
465         return info;
466 }
467
468 static void osd_key_fini(const struct lu_context *ctx,
469                          struct lu_context_key *key, void *data)
470 {
471         struct osd_thread_info *info = data;
472
473         OBD_FREE_PTR(info);
474 }
475
476 static void osd_key_exit(const struct lu_context *ctx,
477                          struct lu_context_key *key, void *data)
478 {
479         struct osd_thread_info *info = data;
480
481         memset(info, 0, sizeof(*info));
482 }
483
484 struct lu_context_key osd_key = {
485         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
486         .lct_init = osd_key_init,
487         .lct_fini = osd_key_fini,
488         .lct_exit = osd_key_exit
489 };
490
491 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
492 {
493         ENTRY;
494
495         /* shutdown quota slave instance associated with the device */
496         if (o->od_quota_slave != NULL) {
497                 qsd_fini(env, o->od_quota_slave);
498                 o->od_quota_slave = NULL;
499         }
500
501         RETURN(0);
502 }
503
504 static void osd_xattr_changed_cb(void *arg, uint64_t newval)
505 {
506         struct osd_device *osd = arg;
507
508         osd->od_xattr_in_sa = (newval == ZFS_XATTR_SA);
509 }
510
511 static int osd_mount(const struct lu_env *env,
512                      struct osd_device *o, struct lustre_cfg *cfg)
513 {
514         struct dsl_dataset      *ds;
515         char                    *dev  = lustre_cfg_string(cfg, 1);
516         dmu_buf_t               *rootdb;
517         dsl_pool_t              *dp;
518         int                      rc;
519         ENTRY;
520
521         if (o->od_objset.os != NULL)
522                 RETURN(0);
523
524         if (strlen(dev) >= sizeof(o->od_mntdev))
525                 RETURN(-E2BIG);
526
527         strcpy(o->od_mntdev, dev);
528         strncpy(o->od_svname, lustre_cfg_string(cfg, 4),
529                 sizeof(o->od_svname) - 1);
530
531         if (server_name_is_ost(o->od_svname))
532                 o->od_is_ost = 1;
533
534         rc = -udmu_objset_open(o->od_mntdev, &o->od_objset);
535         if (rc) {
536                 CERROR("can't open objset %s: %d\n", o->od_mntdev, rc);
537                 RETURN(rc);
538         }
539
540         ds = dmu_objset_ds(o->od_objset.os);
541         dp = dmu_objset_pool(o->od_objset.os);
542         LASSERT(ds);
543         LASSERT(dp);
544         dsl_pool_config_enter(dp, FTAG);
545         rc = dsl_prop_register(ds, "xattr", osd_xattr_changed_cb, o);
546         dsl_pool_config_exit(dp, FTAG);
547         if (rc)
548                 CERROR("%s: cat not register xattr callback, ignore: %d\n",
549                        o->od_svname, rc);
550
551         rc = __osd_obj2dbuf(env, o->od_objset.os, o->od_objset.root,
552                                 &rootdb, root_tag);
553         if (rc) {
554                 CERROR("udmu_obj2dbuf() failed with error %d\n", rc);
555                 udmu_objset_close(&o->od_objset);
556                 RETURN(rc);
557         }
558
559         o->od_root = rootdb->db_object;
560         sa_buf_rele(rootdb, root_tag);
561
562         /* 1. initialize oi before any file create or file open */
563         rc = osd_oi_init(env, o);
564         if (rc)
565                 GOTO(err, rc);
566
567         rc = lu_site_init(&o->od_site, osd2lu_dev(o));
568         if (rc)
569                 GOTO(err, rc);
570         o->od_site.ls_bottom_dev = osd2lu_dev(o);
571
572         rc = lu_site_init_finish(&o->od_site);
573         if (rc)
574                 GOTO(err, rc);
575
576         rc = osd_convert_root_to_new_seq(env, o);
577         if (rc)
578                 GOTO(err, rc);
579
580         /* Use our own ZAP for inode accounting by default, this can be changed
581          * via procfs to estimate the inode usage from the block usage */
582         o->od_quota_iused_est = 0;
583
584         rc = osd_procfs_init(o, o->od_svname);
585         if (rc)
586                 GOTO(err, rc);
587
588         o->arc_prune_cb = arc_add_prune_callback(arc_prune_func, o);
589
590         /* initialize quota slave instance */
591         o->od_quota_slave = qsd_init(env, o->od_svname, &o->od_dt_dev,
592                                      o->od_proc_entry);
593         if (IS_ERR(o->od_quota_slave)) {
594                 rc = PTR_ERR(o->od_quota_slave);
595                 o->od_quota_slave = NULL;
596                 GOTO(err, rc);
597         }
598 err:
599         RETURN(rc);
600 }
601
602 static void osd_umount(const struct lu_env *env, struct osd_device *o)
603 {
604         ENTRY;
605
606         if (cfs_atomic_read(&o->od_zerocopy_alloc))
607                 CERROR("%s: lost %d allocated page(s)\n", o->od_svname,
608                        cfs_atomic_read(&o->od_zerocopy_alloc));
609         if (cfs_atomic_read(&o->od_zerocopy_loan))
610                 CERROR("%s: lost %d loaned abuf(s)\n", o->od_svname,
611                        cfs_atomic_read(&o->od_zerocopy_loan));
612         if (cfs_atomic_read(&o->od_zerocopy_pin))
613                 CERROR("%s: lost %d pinned dbuf(s)\n", o->od_svname,
614                        cfs_atomic_read(&o->od_zerocopy_pin));
615
616         if (o->od_objset.os != NULL)
617                 udmu_objset_close(&o->od_objset);
618
619         EXIT;
620 }
621
622 static int osd_device_init0(const struct lu_env *env,
623                             struct osd_device *o,
624                             struct lustre_cfg *cfg)
625 {
626         struct lu_device        *l = osd2lu_dev(o);
627         int                      rc;
628
629         /* if the module was re-loaded, env can loose its keys */
630         rc = lu_env_refill((struct lu_env *) env);
631         if (rc)
632                 GOTO(out, rc);
633
634         l->ld_ops = &osd_lu_ops;
635         o->od_dt_dev.dd_ops = &osd_dt_ops;
636
637         o->od_capa_hash = init_capa_hash();
638         if (o->od_capa_hash == NULL)
639                 GOTO(out, rc = -ENOMEM);
640
641 out:
642         RETURN(rc);
643 }
644
645 static struct lu_device *osd_device_fini(const struct lu_env *env,
646                                          struct lu_device *dev);
647
648 static struct lu_device *osd_device_alloc(const struct lu_env *env,
649                                           struct lu_device_type *type,
650                                           struct lustre_cfg *cfg)
651 {
652         struct osd_device *dev;
653         int                rc;
654
655         OBD_ALLOC_PTR(dev);
656         if (dev == NULL)
657                 return ERR_PTR(-ENOMEM);
658
659         rc = dt_device_init(&dev->od_dt_dev, type);
660         if (rc == 0) {
661                 rc = osd_device_init0(env, dev, cfg);
662                 if (rc == 0) {
663                         rc = osd_mount(env, dev, cfg);
664                         if (rc)
665                                 osd_device_fini(env, osd2lu_dev(dev));
666                 }
667                 if (rc)
668                         dt_device_fini(&dev->od_dt_dev);
669         }
670
671         if (unlikely(rc != 0))
672                 OBD_FREE_PTR(dev);
673
674         return rc == 0 ? osd2lu_dev(dev) : ERR_PTR(rc);
675 }
676
677 static struct lu_device *osd_device_free(const struct lu_env *env,
678                                          struct lu_device *d)
679 {
680         struct osd_device *o = osd_dev(d);
681         ENTRY;
682
683         cleanup_capa_hash(o->od_capa_hash);
684         /* XXX: make osd top device in order to release reference */
685         d->ld_site->ls_top_dev = d;
686         lu_site_purge(env, d->ld_site, -1);
687         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
688                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
689                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
690         }
691         lu_site_fini(&o->od_site);
692         dt_device_fini(&o->od_dt_dev);
693         OBD_FREE_PTR(o);
694
695         RETURN (NULL);
696 }
697
698 static struct lu_device *osd_device_fini(const struct lu_env *env,
699                                          struct lu_device *d)
700 {
701         struct osd_device *o = osd_dev(d);
702         struct dsl_dataset *ds;
703         int                rc;
704         ENTRY;
705
706
707         osd_shutdown(env, o);
708         osd_oi_fini(env, o);
709
710         if (o->od_objset.os) {
711                 ds = dmu_objset_ds(o->od_objset.os);
712                 rc = dsl_prop_unregister(ds, "xattr", osd_xattr_changed_cb, o);
713                 if (rc)
714                         CERROR("%s: dsl_prop_unregister xattr error %d\n",
715                                 o->od_svname, rc);
716                 arc_remove_prune_callback(o->arc_prune_cb);
717                 o->arc_prune_cb = NULL;
718                 osd_sync(env, lu2dt_dev(d));
719                 txg_wait_callbacks(spa_get_dsl(dmu_objset_spa(o->od_objset.os)));
720         }
721
722         rc = osd_procfs_fini(o);
723         if (rc) {
724                 CERROR("proc fini error %d\n", rc);
725                 RETURN(ERR_PTR(rc));
726         }
727
728         if (o->od_objset.os)
729                 osd_umount(env, o);
730
731         RETURN(NULL);
732 }
733
734 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
735                            const char *name, struct lu_device *next)
736 {
737         return 0;
738 }
739
740 /*
741  * To be removed, setup is performed by osd_device_{init,alloc} and
742  * cleanup is performed by osd_device_{fini,free).
743  */
744 static int osd_process_config(const struct lu_env *env,
745                               struct lu_device *d, struct lustre_cfg *cfg)
746 {
747         struct osd_device       *o = osd_dev(d);
748         int                      err;
749         ENTRY;
750
751         switch(cfg->lcfg_command) {
752         case LCFG_SETUP:
753                 err = osd_mount(env, o, cfg);
754                 break;
755         case LCFG_CLEANUP:
756                 err = osd_shutdown(env, o);
757                 break;
758         default:
759                 err = -ENOTTY;
760         }
761
762         RETURN(err);
763 }
764
765 static int osd_recovery_complete(const struct lu_env *env, struct lu_device *d)
766 {
767         struct osd_device       *osd = osd_dev(d);
768         int                      rc = 0;
769         ENTRY;
770
771         if (osd->od_quota_slave == NULL)
772                 RETURN(0);
773
774         /* start qsd instance on recovery completion, this notifies the quota
775          * slave code that we are about to process new requests now */
776         rc = qsd_start(env, osd->od_quota_slave);
777         RETURN(rc);
778 }
779
780 /*
781  * we use exports to track all osd users
782  */
783 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
784                            struct obd_device *obd, struct obd_uuid *cluuid,
785                            struct obd_connect_data *data, void *localdata)
786 {
787         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
788         struct lustre_handle  conn;
789         int                   rc;
790         ENTRY;
791
792         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
793
794         rc = class_connect(&conn, obd, cluuid);
795         if (rc)
796                 RETURN(rc);
797
798         *exp = class_conn2export(&conn);
799
800         spin_lock(&osd->od_objset.lock);
801         osd->od_connects++;
802         spin_unlock(&osd->od_objset.lock);
803
804         RETURN(0);
805 }
806
807 /*
808  * once last export (we don't count self-export) disappeared
809  * osd can be released
810  */
811 static int osd_obd_disconnect(struct obd_export *exp)
812 {
813         struct obd_device *obd = exp->exp_obd;
814         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
815         int                rc, release = 0;
816         ENTRY;
817
818         /* Only disconnect the underlying layers on the final disconnect. */
819         spin_lock(&osd->od_objset.lock);
820         osd->od_connects--;
821         if (osd->od_connects == 0)
822                 release = 1;
823         spin_unlock(&osd->od_objset.lock);
824
825         rc = class_disconnect(exp); /* bz 9811 */
826
827         if (rc == 0 && release)
828                 class_manual_cleanup(obd);
829         RETURN(rc);
830 }
831
832 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
833                        struct lu_device *dev)
834 {
835         struct osd_device       *osd = osd_dev(dev);
836         int                      rc = 0;
837         ENTRY;
838
839         if (osd->od_quota_slave != NULL)
840                 /* set up quota slave objects */
841                 rc = qsd_prepare(env, osd->od_quota_slave);
842
843         RETURN(rc);
844 }
845
846 struct lu_device_operations osd_lu_ops = {
847         .ldo_object_alloc       = osd_object_alloc,
848         .ldo_process_config     = osd_process_config,
849         .ldo_recovery_complete  = osd_recovery_complete,
850         .ldo_prepare            = osd_prepare,
851 };
852
853 static void osd_type_start(struct lu_device_type *t)
854 {
855 }
856
857 static void osd_type_stop(struct lu_device_type *t)
858 {
859 }
860
861 static struct lu_device_type_operations osd_device_type_ops = {
862         .ldto_init              = osd_type_init,
863         .ldto_fini              = osd_type_fini,
864
865         .ldto_start             = osd_type_start,
866         .ldto_stop              = osd_type_stop,
867
868         .ldto_device_alloc      = osd_device_alloc,
869         .ldto_device_free       = osd_device_free,
870
871         .ldto_device_init       = osd_device_init,
872         .ldto_device_fini       = osd_device_fini
873 };
874
875 static struct lu_device_type osd_device_type = {
876         .ldt_tags     = LU_DEVICE_DT,
877         .ldt_name     = LUSTRE_OSD_ZFS_NAME,
878         .ldt_ops      = &osd_device_type_ops,
879         .ldt_ctx_tags = LCT_LOCAL
880 };
881
882
883 static struct obd_ops osd_obd_device_ops = {
884         .o_owner       = THIS_MODULE,
885         .o_connect      = osd_obd_connect,
886         .o_disconnect   = osd_obd_disconnect
887 };
888
889 int __init osd_init(void)
890 {
891         int rc;
892
893         rc = osd_options_init();
894         if (rc)
895                 return rc;
896
897         rc = lu_kmem_init(osd_caches);
898         if (rc)
899                 return rc;
900
901         rc = class_register_type(&osd_obd_device_ops, NULL, NULL,
902 #ifndef HAVE_ONLY_PROCFS_SEQ
903                                 lprocfs_osd_module_vars,
904 #endif
905                                 LUSTRE_OSD_ZFS_NAME, &osd_device_type);
906         if (rc)
907                 lu_kmem_fini(osd_caches);
908         return rc;
909 }
910
911 void __exit osd_exit(void)
912 {
913         class_unregister_type(LUSTRE_OSD_ZFS_NAME);
914         lu_kmem_fini(osd_caches);
915 }
916
917 extern unsigned int osd_oi_count;
918 CFS_MODULE_PARM(osd_oi_count, "i", int, 0444,
919                 "Number of Object Index containers to be created, "
920                 "it's only valid for new filesystem.");
921
922 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
923 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_ZFS_NAME")");
924 MODULE_LICENSE("GPL");
925
926 cfs_module(osd, LUSTRE_VERSION_STRING, osd_init, osd_exit);