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