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