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