Home | History | Annotate | Line # | Download | only in dm
device-mapper.c revision 1.15.2.4
      1  1.15.2.4  uebayasi /*        $NetBSD: device-mapper.c,v 1.15.2.4 2010/11/06 08:08:29 uebayasi Exp $ */
      2       1.2      haad 
      3       1.2      haad /*
      4  1.15.2.1  uebayasi  * Copyright (c) 2010 The NetBSD Foundation, Inc.
      5       1.2      haad  * All rights reserved.
      6       1.2      haad  *
      7       1.2      haad  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2      haad  * by Adam Hamsik.
      9       1.2      haad  *
     10       1.2      haad  * Redistribution and use in source and binary forms, with or without
     11       1.2      haad  * modification, are permitted provided that the following conditions
     12       1.2      haad  * are met:
     13       1.2      haad  * 1. Redistributions of source code must retain the above copyright
     14       1.2      haad  *    notice, this list of conditions and the following disclaimer.
     15       1.2      haad  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2      haad  *    notice, this list of conditions and the following disclaimer in the
     17       1.2      haad  *    documentation and/or other materials provided with the distribution.
     18       1.2      haad  *
     19       1.2      haad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.2      haad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.2      haad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.2      haad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.2      haad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.2      haad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.2      haad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.2      haad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.2      haad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.2      haad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.2      haad  * POSSIBILITY OF SUCH DAMAGE.
     30       1.2      haad  */
     31       1.2      haad 
     32       1.2      haad /*
     33       1.2      haad  * I want to say thank you to all people who helped me with this project.
     34       1.2      haad  */
     35       1.2      haad 
     36       1.2      haad #include <sys/types.h>
     37       1.2      haad #include <sys/param.h>
     38       1.2      haad 
     39       1.2      haad #include <sys/buf.h>
     40       1.2      haad #include <sys/conf.h>
     41      1.12      haad #include <sys/device.h>
     42       1.2      haad #include <sys/dkio.h>
     43       1.2      haad #include <sys/disk.h>
     44       1.2      haad #include <sys/disklabel.h>
     45       1.2      haad #include <sys/ioctl.h>
     46       1.2      haad #include <sys/ioccom.h>
     47       1.2      haad #include <sys/kmem.h>
     48       1.2      haad 
     49       1.2      haad #include "netbsd-dm.h"
     50       1.2      haad #include "dm.h"
     51       1.2      haad 
     52       1.2      haad static dev_type_open(dmopen);
     53       1.2      haad static dev_type_close(dmclose);
     54       1.2      haad static dev_type_read(dmread);
     55       1.2      haad static dev_type_write(dmwrite);
     56       1.2      haad static dev_type_ioctl(dmioctl);
     57       1.2      haad static dev_type_strategy(dmstrategy);
     58       1.2      haad static dev_type_size(dmsize);
     59       1.2      haad 
     60       1.2      haad /* attach and detach routines */
     61  1.15.2.1  uebayasi void dmattach(int);
     62  1.15.2.1  uebayasi #ifdef _MODULE
     63  1.15.2.1  uebayasi static int dmdestroy(void);
     64  1.15.2.1  uebayasi #endif
     65  1.15.2.1  uebayasi 
     66  1.15.2.1  uebayasi static void dm_doinit(void);
     67       1.2      haad 
     68       1.2      haad static int dm_cmd_to_fun(prop_dictionary_t);
     69       1.2      haad static int disk_ioctl_switch(dev_t, u_long, void *);
     70       1.2      haad static int dm_ioctl_switch(u_long);
     71       1.2      haad static void dmminphys(struct buf *);
     72       1.2      haad 
     73      1.12      haad /* CF attach/detach functions used for power management */
     74      1.12      haad static int dm_detach(device_t, int);
     75      1.12      haad static void dm_attach(device_t, device_t, void *);
     76      1.12      haad static int dm_match(device_t, cfdata_t, void *);
     77      1.12      haad 
     78       1.2      haad /* ***Variable-definitions*** */
     79       1.2      haad const struct bdevsw dm_bdevsw = {
     80       1.6      haad 	.d_open = dmopen,
     81       1.6      haad 	.d_close = dmclose,
     82       1.6      haad 	.d_strategy = dmstrategy,
     83       1.6      haad 	.d_ioctl = dmioctl,
     84       1.6      haad 	.d_dump = nodump,
     85       1.6      haad 	.d_psize = dmsize,
     86       1.6      haad 	.d_flag = D_DISK | D_MPSAFE
     87       1.2      haad };
     88       1.2      haad 
     89       1.2      haad const struct cdevsw dm_cdevsw = {
     90       1.6      haad 	.d_open = dmopen,
     91       1.6      haad 	.d_close = dmclose,
     92       1.6      haad 	.d_read = dmread,
     93       1.6      haad 	.d_write = dmwrite,
     94       1.6      haad 	.d_ioctl = dmioctl,
     95       1.6      haad 	.d_stop = nostop,
     96       1.6      haad 	.d_tty = notty,
     97       1.6      haad 	.d_poll = nopoll,
     98       1.6      haad 	.d_mmap = nommap,
     99       1.6      haad 	.d_kqfilter = nokqfilter,
    100       1.6      haad 	.d_flag = D_DISK | D_MPSAFE
    101       1.6      haad };
    102       1.6      haad 
    103       1.6      haad const struct dkdriver dmdkdriver = {
    104       1.6      haad 	.d_strategy = dmstrategy
    105       1.2      haad };
    106       1.2      haad 
    107      1.12      haad CFATTACH_DECL3_NEW(dm, 0,
    108      1.12      haad      dm_match, dm_attach, dm_detach, NULL, NULL, NULL,
    109      1.12      haad      DVF_DETACH_SHUTDOWN);
    110      1.12      haad 
    111      1.12      haad extern struct cfdriver dm_cd;
    112      1.12      haad 
    113  1.15.2.1  uebayasi extern uint64_t dm_dev_counter;
    114       1.2      haad 
    115       1.2      haad /*
    116       1.2      haad  * This array is used to translate cmd to function pointer.
    117       1.2      haad  *
    118       1.2      haad  * Interface between libdevmapper and lvm2tools uses different
    119       1.2      haad  * names for one IOCTL call because libdevmapper do another thing
    120       1.2      haad  * then. When I run "info" or "mknodes" libdevmapper will send same
    121       1.2      haad  * ioctl to kernel but will do another things in userspace.
    122       1.2      haad  *
    123       1.2      haad  */
    124       1.2      haad struct cmd_function cmd_fn[] = {
    125       1.6      haad 		{ .cmd = "version", .fn = dm_get_version_ioctl},
    126       1.6      haad 		{ .cmd = "targets", .fn = dm_list_versions_ioctl},
    127       1.6      haad 		{ .cmd = "create",  .fn = dm_dev_create_ioctl},
    128       1.6      haad 		{ .cmd = "info",    .fn = dm_dev_status_ioctl},
    129       1.6      haad 		{ .cmd = "mknodes", .fn = dm_dev_status_ioctl},
    130       1.6      haad 		{ .cmd = "names",   .fn = dm_dev_list_ioctl},
    131       1.6      haad 		{ .cmd = "suspend", .fn = dm_dev_suspend_ioctl},
    132       1.6      haad 		{ .cmd = "remove",  .fn = dm_dev_remove_ioctl},
    133       1.6      haad 		{ .cmd = "rename",  .fn = dm_dev_rename_ioctl},
    134       1.6      haad 		{ .cmd = "resume",  .fn = dm_dev_resume_ioctl},
    135       1.6      haad 		{ .cmd = "clear",   .fn = dm_table_clear_ioctl},
    136       1.6      haad 		{ .cmd = "deps",    .fn = dm_table_deps_ioctl},
    137       1.6      haad 		{ .cmd = "reload",  .fn = dm_table_load_ioctl},
    138       1.6      haad 		{ .cmd = "status",  .fn = dm_table_status_ioctl},
    139       1.6      haad 		{ .cmd = "table",   .fn = dm_table_status_ioctl},
    140       1.2      haad 		{NULL, NULL}
    141       1.2      haad };
    142       1.2      haad 
    143  1.15.2.1  uebayasi #ifdef _MODULE
    144  1.15.2.1  uebayasi #include <sys/module.h>
    145  1.15.2.1  uebayasi 
    146  1.15.2.1  uebayasi /* Autoconf defines */
    147  1.15.2.1  uebayasi CFDRIVER_DECL(dm, DV_DISK, NULL);
    148  1.15.2.1  uebayasi 
    149       1.4      haad MODULE(MODULE_CLASS_DRIVER, dm, NULL);
    150       1.2      haad 
    151       1.2      haad /* New module handle routine */
    152       1.2      haad static int
    153       1.2      haad dm_modcmd(modcmd_t cmd, void *arg)
    154       1.2      haad {
    155  1.15.2.2  uebayasi #ifdef _MODULE
    156  1.15.2.1  uebayasi 	int error, bmajor, cmajor;
    157      1.12      haad 
    158      1.12      haad 	error = 0;
    159  1.15.2.1  uebayasi 	bmajor = -1;
    160  1.15.2.1  uebayasi 	cmajor = -1;
    161       1.2      haad 
    162       1.2      haad 	switch (cmd) {
    163       1.2      haad 	case MODULE_CMD_INIT:
    164      1.12      haad 		error = config_cfdriver_attach(&dm_cd);
    165      1.12      haad 		if (error)
    166      1.12      haad 			break;
    167      1.12      haad 
    168      1.12      haad 		error = config_cfattach_attach(dm_cd.cd_name, &dm_ca);
    169      1.12      haad 		if (error) {
    170  1.15.2.1  uebayasi 			aprint_error("%s: unable to register cfattach\n",
    171  1.15.2.1  uebayasi 			    dm_cd.cd_name);
    172  1.15.2.1  uebayasi 			return error;
    173  1.15.2.1  uebayasi 		}
    174      1.12      haad 
    175  1.15.2.1  uebayasi 		error = devsw_attach(dm_cd.cd_name, &dm_bdevsw, &bmajor,
    176  1.15.2.1  uebayasi 		    &dm_cdevsw, &cmajor);
    177  1.15.2.3  uebayasi 		if (error == EEXIST)
    178  1.15.2.3  uebayasi 			error = 0;
    179  1.15.2.1  uebayasi 		if (error) {
    180  1.15.2.1  uebayasi 			config_cfattach_detach(dm_cd.cd_name, &dm_ca);
    181  1.15.2.1  uebayasi 			config_cfdriver_detach(&dm_cd);
    182      1.12      haad 			break;
    183      1.12      haad 		}
    184      1.12      haad 
    185  1.15.2.1  uebayasi 		dm_doinit();
    186  1.15.2.1  uebayasi 
    187       1.2      haad 		break;
    188       1.2      haad 
    189       1.2      haad 	case MODULE_CMD_FINI:
    190       1.4      haad 		/*
    191       1.4      haad 		 * Disable unloading of dm module if there are any devices
    192       1.4      haad 		 * defined in driver. This is probably too strong we need
    193       1.4      haad 		 * to disable auto-unload only if there is mounted dm device
    194       1.4      haad 		 * present.
    195       1.4      haad 		 */
    196  1.15.2.1  uebayasi 		if (dm_dev_counter > 0)
    197       1.4      haad 			return EBUSY;
    198      1.12      haad 
    199  1.15.2.1  uebayasi 		error = dmdestroy();
    200      1.12      haad 		if (error)
    201      1.12      haad 			break;
    202      1.12      haad 
    203      1.12      haad 		config_cfdriver_detach(&dm_cd);
    204      1.12      haad 
    205      1.12      haad 		devsw_detach(&dm_bdevsw, &dm_cdevsw);
    206       1.2      haad 		break;
    207       1.2      haad 	case MODULE_CMD_STAT:
    208       1.2      haad 		return ENOTTY;
    209       1.2      haad 
    210       1.2      haad 	default:
    211       1.2      haad 		return ENOTTY;
    212       1.2      haad 	}
    213       1.2      haad 
    214      1.12      haad 	return error;
    215  1.15.2.2  uebayasi #else
    216  1.15.2.2  uebayasi 	return ENOTTY;
    217  1.15.2.2  uebayasi #endif
    218       1.2      haad }
    219  1.15.2.1  uebayasi #endif /* _MODULE */
    220       1.2      haad 
    221      1.12      haad /*
    222      1.12      haad  * dm_match:
    223      1.12      haad  *
    224      1.12      haad  *	Autoconfiguration match function for pseudo-device glue.
    225      1.12      haad  */
    226      1.12      haad static int
    227      1.12      haad dm_match(device_t parent, cfdata_t match,
    228      1.12      haad     void *aux)
    229      1.12      haad {
    230      1.12      haad 
    231      1.12      haad 	/* Pseudo-device; always present. */
    232      1.12      haad 	return (1);
    233      1.12      haad }
    234      1.12      haad 
    235      1.12      haad /*
    236      1.12      haad  * dm_attach:
    237      1.12      haad  *
    238      1.12      haad  *	Autoconfiguration attach function for pseudo-device glue.
    239      1.12      haad  */
    240      1.12      haad static void
    241      1.12      haad dm_attach(device_t parent, device_t self,
    242      1.12      haad     void *aux)
    243      1.12      haad {
    244      1.12      haad 	return;
    245      1.12      haad }
    246      1.12      haad 
    247      1.12      haad 
    248      1.12      haad /*
    249      1.12      haad  * dm_detach:
    250      1.12      haad  *
    251      1.12      haad  *	Autoconfiguration detach function for pseudo-device glue.
    252      1.12      haad  * This routine is called by dm_ioctl::dm_dev_remove_ioctl and by autoconf to
    253      1.12      haad  * remove devices created in device-mapper.
    254      1.12      haad  */
    255      1.12      haad static int
    256      1.12      haad dm_detach(device_t self, int flags)
    257      1.12      haad {
    258      1.12      haad 	dm_dev_t *dmv;
    259      1.12      haad 
    260      1.12      haad 	/* Detach device from global device list */
    261      1.12      haad 	if ((dmv = dm_dev_detach(self)) == NULL)
    262      1.12      haad 		return ENOENT;
    263      1.12      haad 
    264      1.12      haad 	/* Destroy active table first.  */
    265      1.12      haad 	dm_table_destroy(&dmv->table_head, DM_TABLE_ACTIVE);
    266      1.12      haad 
    267      1.12      haad 	/* Destroy inactive table if exits, too. */
    268      1.12      haad 	dm_table_destroy(&dmv->table_head, DM_TABLE_INACTIVE);
    269      1.12      haad 
    270      1.12      haad 	dm_table_head_destroy(&dmv->table_head);
    271      1.12      haad 
    272      1.12      haad 	/* Destroy disk device structure */
    273      1.12      haad 	disk_detach(dmv->diskp);
    274      1.12      haad 	disk_destroy(dmv->diskp);
    275      1.12      haad 
    276      1.12      haad 	/* Destroy device */
    277      1.12      haad 	(void)dm_dev_free(dmv);
    278      1.12      haad 
    279      1.12      haad 	/* Decrement device counter After removing device */
    280  1.15.2.1  uebayasi 	atomic_dec_64(&dm_dev_counter);
    281      1.12      haad 
    282      1.12      haad 	return 0;
    283      1.12      haad }
    284      1.12      haad 
    285  1.15.2.1  uebayasi static void
    286  1.15.2.1  uebayasi dm_doinit(void)
    287       1.2      haad {
    288       1.2      haad 	dm_target_init();
    289       1.2      haad 	dm_dev_init();
    290       1.2      haad 	dm_pdev_init();
    291  1.15.2.1  uebayasi }
    292       1.2      haad 
    293  1.15.2.1  uebayasi /* attach routine */
    294  1.15.2.1  uebayasi void
    295  1.15.2.1  uebayasi dmattach(int n)
    296  1.15.2.1  uebayasi {
    297  1.15.2.1  uebayasi 	int error;
    298  1.15.2.1  uebayasi 
    299  1.15.2.1  uebayasi 	error = config_cfattach_attach(dm_cd.cd_name, &dm_ca);
    300  1.15.2.1  uebayasi 	if (error) {
    301  1.15.2.1  uebayasi 		aprint_error("%s: unable to register cfattach\n",
    302  1.15.2.1  uebayasi 		    dm_cd.cd_name);
    303  1.15.2.1  uebayasi 	} else {
    304  1.15.2.1  uebayasi 		dm_doinit();
    305  1.15.2.1  uebayasi 	}
    306       1.2      haad }
    307       1.2      haad 
    308  1.15.2.1  uebayasi #ifdef _MODULE
    309       1.2      haad /* Destroy routine */
    310  1.15.2.1  uebayasi static int
    311       1.2      haad dmdestroy(void)
    312       1.2      haad {
    313  1.15.2.1  uebayasi 	int error;
    314      1.12      haad 
    315  1.15.2.1  uebayasi 	error = config_cfattach_detach(dm_cd.cd_name, &dm_ca);
    316  1.15.2.1  uebayasi 	if (error)
    317  1.15.2.1  uebayasi 		return error;
    318  1.15.2.1  uebayasi 
    319       1.2      haad 	dm_dev_destroy();
    320       1.2      haad 	dm_pdev_destroy();
    321       1.2      haad 	dm_target_destroy();
    322       1.2      haad 
    323       1.2      haad 	return 0;
    324       1.2      haad }
    325  1.15.2.1  uebayasi #endif /* _MODULE */
    326       1.2      haad 
    327       1.2      haad static int
    328       1.2      haad dmopen(dev_t dev, int flags, int mode, struct lwp *l)
    329       1.2      haad {
    330      1.12      haad 
    331      1.13      haad 	aprint_debug("dm open routine called %" PRIu32 "\n", minor(dev));
    332       1.2      haad 	return 0;
    333       1.2      haad }
    334       1.2      haad 
    335       1.2      haad static int
    336       1.2      haad dmclose(dev_t dev, int flags, int mode, struct lwp *l)
    337       1.2      haad {
    338      1.12      haad 
    339      1.13      haad 	aprint_debug("dm close routine called %" PRIu32 "\n", minor(dev));
    340       1.2      haad 	return 0;
    341       1.2      haad }
    342       1.2      haad 
    343       1.2      haad 
    344       1.2      haad static int
    345       1.2      haad dmioctl(dev_t dev, const u_long cmd, void *data, int flag, struct lwp *l)
    346       1.2      haad {
    347       1.2      haad 	int r;
    348       1.2      haad 	prop_dictionary_t dm_dict_in;
    349       1.2      haad 
    350       1.2      haad 	r = 0;
    351       1.2      haad 
    352       1.2      haad 	aprint_debug("dmioctl called\n");
    353       1.2      haad 	KASSERT(data != NULL);
    354       1.2      haad 
    355      1.13      haad 	if (( r = disk_ioctl_switch(dev, cmd, data)) == ENOTTY) {
    356       1.2      haad 		struct plistref *pref = (struct plistref *) data;
    357       1.2      haad 
    358      1.13      haad 		/* Check if we were called with NETBSD_DM_IOCTL ioctl
    359      1.13      haad 		   otherwise quit. */
    360      1.13      haad 		if ((r = dm_ioctl_switch(cmd)) != 0)
    361      1.13      haad 			return r;
    362      1.13      haad 
    363       1.2      haad 		if((r = prop_dictionary_copyin_ioctl(pref, cmd, &dm_dict_in)) != 0)
    364       1.2      haad 			return r;
    365       1.2      haad 
    366      1.14      haad 		if ((r = dm_check_version(dm_dict_in)) != 0)
    367      1.14      haad 			goto cleanup_exit;
    368       1.2      haad 
    369       1.2      haad 		/* run ioctl routine */
    370      1.14      haad 		if ((r = dm_cmd_to_fun(dm_dict_in)) != 0)
    371      1.14      haad 			goto cleanup_exit;
    372      1.13      haad 
    373      1.14      haad cleanup_exit:
    374       1.2      haad 		r = prop_dictionary_copyout_ioctl(pref, cmd, dm_dict_in);
    375       1.2      haad 		prop_object_release(dm_dict_in);
    376       1.2      haad 	}
    377       1.2      haad 
    378       1.2      haad 	return r;
    379       1.2      haad }
    380       1.2      haad 
    381       1.2      haad /*
    382       1.2      haad  * Translate command sent from libdevmapper to func.
    383       1.2      haad  */
    384       1.2      haad static int
    385       1.2      haad dm_cmd_to_fun(prop_dictionary_t dm_dict){
    386       1.2      haad 	int i, r;
    387       1.2      haad 	prop_string_t command;
    388       1.2      haad 
    389       1.2      haad 	r = 0;
    390      1.13      haad 
    391       1.2      haad 	if ((command = prop_dictionary_get(dm_dict, DM_IOCTL_COMMAND)) == NULL)
    392       1.2      haad 		return EINVAL;
    393      1.13      haad 
    394       1.2      haad 	for(i = 0; cmd_fn[i].cmd != NULL; i++)
    395       1.2      haad 		if (prop_string_equals_cstring(command, cmd_fn[i].cmd))
    396       1.2      haad 			break;
    397       1.2      haad 
    398       1.2      haad 	if (cmd_fn[i].cmd == NULL)
    399       1.2      haad 		return EINVAL;
    400       1.2      haad 
    401       1.2      haad 	aprint_debug("ioctl %s called\n", cmd_fn[i].cmd);
    402       1.2      haad 	r = cmd_fn[i].fn(dm_dict);
    403      1.13      haad 
    404       1.2      haad 	return r;
    405       1.2      haad }
    406       1.2      haad 
    407       1.2      haad /* Call apropriate ioctl handler function. */
    408       1.2      haad static int
    409       1.2      haad dm_ioctl_switch(u_long cmd)
    410       1.2      haad {
    411       1.2      haad 
    412       1.2      haad 	switch(cmd) {
    413      1.13      haad 
    414       1.2      haad 	case NETBSD_DM_IOCTL:
    415      1.13      haad 		aprint_debug("dm NetBSD_DM_IOCTL called\n");
    416       1.2      haad 		break;
    417       1.2      haad 	default:
    418      1.13      haad 		 aprint_debug("dm unknown ioctl called\n");
    419       1.2      haad 		 return ENOTTY;
    420       1.2      haad 		 break; /* NOT REACHED */
    421       1.2      haad 	}
    422       1.2      haad 
    423      1.13      haad 	 return 0;
    424       1.2      haad }
    425       1.2      haad 
    426       1.2      haad  /*
    427       1.2      haad   * Check for disk specific ioctls.
    428       1.2      haad   */
    429       1.2      haad 
    430       1.2      haad static int
    431       1.2      haad disk_ioctl_switch(dev_t dev, u_long cmd, void *data)
    432       1.2      haad {
    433       1.2      haad 	dm_dev_t *dmv;
    434      1.13      haad 
    435  1.15.2.1  uebayasi 	/* disk ioctls make sense only on block devices */
    436  1.15.2.1  uebayasi 	if (minor(dev) == 0)
    437  1.15.2.1  uebayasi 		return ENOTTY;
    438  1.15.2.1  uebayasi 
    439       1.2      haad 	switch(cmd) {
    440       1.2      haad 	case DIOCGWEDGEINFO:
    441       1.2      haad 	{
    442       1.2      haad 		struct dkwedge_info *dkw = (void *) data;
    443       1.2      haad 
    444       1.2      haad 		if ((dmv = dm_dev_lookup(NULL, NULL, minor(dev))) == NULL)
    445      1.13      haad 			return ENODEV;
    446      1.13      haad 
    447       1.9     joerg 		aprint_debug("DIOCGWEDGEINFO ioctl called\n");
    448      1.13      haad 
    449       1.2      haad 		strlcpy(dkw->dkw_devname, dmv->name, 16);
    450       1.2      haad 		strlcpy(dkw->dkw_wname, dmv->name, DM_NAME_LEN);
    451       1.2      haad 		strlcpy(dkw->dkw_parent, dmv->name, 16);
    452      1.13      haad 
    453       1.2      haad 		dkw->dkw_offset = 0;
    454       1.2      haad 		dkw->dkw_size = dm_table_size(&dmv->table_head);
    455       1.2      haad 		strcpy(dkw->dkw_ptype, DKW_PTYPE_FFS);
    456       1.2      haad 
    457       1.2      haad 		dm_dev_unbusy(dmv);
    458       1.2      haad 		break;
    459       1.2      haad 	}
    460       1.7      haad 
    461       1.7      haad 	case DIOCGDISKINFO:
    462       1.2      haad 	{
    463       1.7      haad 		struct plistref *pref = (struct plistref *) data;
    464       1.2      haad 
    465       1.2      haad 		if ((dmv = dm_dev_lookup(NULL, NULL, minor(dev))) == NULL)
    466      1.13      haad 			return ENODEV;
    467      1.13      haad 
    468       1.7      haad 		if (dmv->diskp->dk_info == NULL) {
    469       1.7      haad 			dm_dev_unbusy(dmv);
    470       1.7      haad 			return ENOTSUP;
    471       1.7      haad 		} else
    472       1.7      haad 			prop_dictionary_copyout_ioctl(pref, cmd,
    473       1.7      haad 			    dmv->diskp->dk_info);
    474       1.2      haad 
    475       1.2      haad 		dm_dev_unbusy(dmv);
    476       1.2      haad 		break;
    477       1.2      haad 	}
    478  1.15.2.2  uebayasi 
    479  1.15.2.2  uebayasi 	case DIOCCACHESYNC:
    480  1.15.2.2  uebayasi 	{
    481  1.15.2.2  uebayasi 		dm_table_entry_t *table_en;
    482  1.15.2.2  uebayasi 		dm_table_t *tbl;
    483  1.15.2.2  uebayasi 		int err;
    484  1.15.2.2  uebayasi 
    485  1.15.2.2  uebayasi 		if ((dmv = dm_dev_lookup(NULL, NULL, minor(dev))) == NULL)
    486  1.15.2.2  uebayasi 			return ENODEV;
    487  1.15.2.2  uebayasi 
    488  1.15.2.2  uebayasi 		/* Select active table */
    489  1.15.2.2  uebayasi 		tbl = dm_table_get_entry(&dmv->table_head, DM_TABLE_ACTIVE);
    490  1.15.2.2  uebayasi 
    491  1.15.2.2  uebayasi 		/*
    492  1.15.2.2  uebayasi 		 * Call sync target routine for all table entries. Target sync
    493  1.15.2.2  uebayasi 		 * routine basically call DIOCCACHESYNC on underlying devices.
    494  1.15.2.2  uebayasi 		 */
    495  1.15.2.2  uebayasi 		SLIST_FOREACH(table_en, tbl, next)
    496  1.15.2.2  uebayasi 		{
    497  1.15.2.2  uebayasi 			err = table_en->target->sync(table_en);
    498  1.15.2.2  uebayasi 		}
    499  1.15.2.2  uebayasi 		dm_table_release(&dmv->table_head, DM_TABLE_ACTIVE);
    500  1.15.2.2  uebayasi 		dm_dev_unbusy(dmv);
    501  1.15.2.2  uebayasi 		break;
    502  1.15.2.2  uebayasi 	}
    503  1.15.2.2  uebayasi 
    504       1.7      haad 
    505       1.2      haad 	default:
    506       1.2      haad 		aprint_debug("unknown disk_ioctl called\n");
    507      1.13      haad 		return ENOTTY;
    508       1.2      haad 		break; /* NOT REACHED */
    509       1.2      haad 	}
    510      1.13      haad 
    511       1.2      haad 	return 0;
    512       1.2      haad }
    513       1.2      haad 
    514       1.2      haad /*
    515       1.2      haad  * Do all IO operations on dm logical devices.
    516       1.2      haad  */
    517       1.2      haad static void
    518       1.2      haad dmstrategy(struct buf *bp)
    519       1.2      haad {
    520       1.2      haad 	dm_dev_t *dmv;
    521       1.2      haad 	dm_table_t  *tbl;
    522       1.2      haad 	dm_table_entry_t *table_en;
    523       1.2      haad 	struct buf *nestbuf;
    524       1.2      haad 
    525       1.2      haad 	uint32_t dev_type;
    526       1.2      haad 
    527       1.2      haad 	uint64_t buf_start, buf_len, issued_len;
    528       1.2      haad 	uint64_t table_start, table_end;
    529       1.2      haad 	uint64_t start, end;
    530      1.13      haad 
    531       1.2      haad 	buf_start = bp->b_blkno * DEV_BSIZE;
    532       1.2      haad 	buf_len = bp->b_bcount;
    533       1.2      haad 
    534       1.2      haad 	tbl = NULL;
    535       1.2      haad 
    536       1.2      haad 	table_end = 0;
    537       1.2      haad 	dev_type = 0;
    538       1.2      haad 	issued_len = 0;
    539       1.2      haad 
    540       1.2      haad 	if ((dmv = dm_dev_lookup(NULL, NULL, minor(bp->b_dev))) == NULL) {
    541       1.2      haad 		bp->b_error = EIO;
    542       1.2      haad 		bp->b_resid = bp->b_bcount;
    543       1.2      haad 		biodone(bp);
    544       1.2      haad 		return;
    545       1.2      haad 	}
    546       1.6      haad 
    547       1.8  jakllsch 	if (bounds_check_with_mediasize(bp, DEV_BSIZE,
    548       1.8  jakllsch 	    dm_table_size(&dmv->table_head)) <= 0) {
    549       1.8  jakllsch 		dm_dev_unbusy(dmv);
    550       1.8  jakllsch 		bp->b_resid = bp->b_bcount;
    551       1.8  jakllsch 		biodone(bp);
    552       1.8  jakllsch 		return;
    553       1.8  jakllsch 	}
    554       1.8  jakllsch 
    555      1.11      haad 	/*
    556      1.11      haad 	 * disk(9) is part of device structure and it can't be used without
    557      1.11      haad 	 * mutual exclusion, use diskp_mtx until it will be fixed.
    558      1.11      haad 	 */
    559      1.11      haad 	mutex_enter(&dmv->diskp_mtx);
    560       1.6      haad 	disk_busy(dmv->diskp);
    561      1.11      haad 	mutex_exit(&dmv->diskp_mtx);
    562      1.13      haad 
    563       1.2      haad 	/* Select active table */
    564       1.2      haad 	tbl = dm_table_get_entry(&dmv->table_head, DM_TABLE_ACTIVE);
    565       1.2      haad 
    566       1.2      haad 	 /* Nested buffers count down to zero therefore I have
    567       1.2      haad 	    to set bp->b_resid to maximal value. */
    568       1.2      haad 	bp->b_resid = bp->b_bcount;
    569      1.13      haad 
    570       1.2      haad 	/*
    571       1.2      haad 	 * Find out what tables I want to select.
    572       1.2      haad 	 */
    573       1.2      haad 	SLIST_FOREACH(table_en, tbl, next)
    574       1.2      haad 	{
    575       1.2      haad 		/* I need need number of bytes not blocks. */
    576       1.2      haad 		table_start = table_en->start * DEV_BSIZE;
    577       1.2      haad 		/*
    578       1.2      haad 		 * I have to sub 1 from table_en->length to prevent
    579       1.2      haad 		 * off by one error
    580       1.2      haad 		 */
    581       1.2      haad 		table_end = table_start + (table_en->length)* DEV_BSIZE;
    582       1.2      haad 
    583       1.2      haad 		start = MAX(table_start, buf_start);
    584       1.2      haad 
    585       1.2      haad 		end = MIN(table_end, buf_start + buf_len);
    586       1.2      haad 
    587       1.2      haad 		aprint_debug("----------------------------------------\n");
    588       1.2      haad 		aprint_debug("table_start %010" PRIu64", table_end %010"
    589       1.2      haad 		    PRIu64 "\n", table_start, table_end);
    590       1.2      haad 		aprint_debug("buf_start %010" PRIu64", buf_len %010"
    591       1.2      haad 		    PRIu64"\n", buf_start, buf_len);
    592       1.2      haad 		aprint_debug("start-buf_start %010"PRIu64", end %010"
    593       1.2      haad 		    PRIu64"\n", start - buf_start, end);
    594       1.2      haad 		aprint_debug("start %010" PRIu64" , end %010"
    595       1.2      haad                     PRIu64"\n", start, end);
    596       1.2      haad 		aprint_debug("\n----------------------------------------\n");
    597       1.2      haad 
    598       1.2      haad 		if (start < end) {
    599       1.2      haad 			/* create nested buffer  */
    600       1.2      haad 			nestbuf = getiobuf(NULL, true);
    601       1.2      haad 
    602       1.2      haad 			nestiobuf_setup(bp, nestbuf, start - buf_start,
    603       1.2      haad 			    (end - start));
    604       1.2      haad 
    605       1.2      haad 			issued_len += end - start;
    606      1.13      haad 
    607       1.2      haad 			/* I need number of blocks. */
    608       1.2      haad 			nestbuf->b_blkno = (start - table_start) / DEV_BSIZE;
    609       1.2      haad 
    610       1.2      haad 			table_en->target->strategy(table_en, nestbuf);
    611       1.2      haad 		}
    612       1.8  jakllsch 	}
    613       1.2      haad 
    614       1.2      haad 	if (issued_len < buf_len)
    615       1.2      haad 		nestiobuf_done(bp, buf_len - issued_len, EINVAL);
    616       1.2      haad 
    617      1.11      haad 	mutex_enter(&dmv->diskp_mtx);
    618       1.6      haad 	disk_unbusy(dmv->diskp, buf_len, bp != NULL ? bp->b_flags & B_READ : 0);
    619      1.11      haad 	mutex_exit(&dmv->diskp_mtx);
    620      1.13      haad 
    621       1.2      haad 	dm_table_release(&dmv->table_head, DM_TABLE_ACTIVE);
    622       1.2      haad 	dm_dev_unbusy(dmv);
    623       1.2      haad 
    624       1.2      haad 	return;
    625       1.2      haad }
    626       1.2      haad 
    627       1.2      haad 
    628       1.2      haad static int
    629       1.2      haad dmread(dev_t dev, struct uio *uio, int flag)
    630       1.2      haad {
    631      1.13      haad 
    632       1.2      haad 	return (physio(dmstrategy, NULL, dev, B_READ, dmminphys, uio));
    633       1.2      haad }
    634       1.2      haad 
    635       1.2      haad static int
    636       1.2      haad dmwrite(dev_t dev, struct uio *uio, int flag)
    637       1.2      haad {
    638      1.13      haad 
    639       1.2      haad 	return (physio(dmstrategy, NULL, dev, B_WRITE, dmminphys, uio));
    640       1.2      haad }
    641       1.2      haad 
    642       1.2      haad static int
    643       1.2      haad dmsize(dev_t dev)
    644       1.2      haad {
    645       1.2      haad 	dm_dev_t *dmv;
    646       1.2      haad 	uint64_t size;
    647      1.13      haad 
    648       1.2      haad 	size = 0;
    649      1.13      haad 
    650       1.2      haad 	if ((dmv = dm_dev_lookup(NULL, NULL, minor(dev))) == NULL)
    651       1.2      haad 			return -ENOENT;
    652      1.13      haad 
    653       1.2      haad 	size = dm_table_size(&dmv->table_head);
    654       1.2      haad 	dm_dev_unbusy(dmv);
    655       1.2      haad 
    656       1.2      haad   	return size;
    657       1.2      haad }
    658       1.2      haad 
    659       1.2      haad static void
    660       1.2      haad dmminphys(struct buf *bp)
    661       1.2      haad {
    662      1.13      haad 
    663       1.2      haad 	bp->b_bcount = MIN(bp->b_bcount, MAXPHYS);
    664       1.2      haad }
    665       1.2      haad 
    666       1.2      haad void
    667       1.7      haad dmgetproperties(struct disk *disk, dm_table_head_t *head)
    668       1.2      haad {
    669       1.7      haad 	prop_dictionary_t disk_info, odisk_info, geom;
    670       1.2      haad 	int dmp_size;
    671      1.13      haad 
    672       1.7      haad 	dmp_size = dm_table_size(head);
    673       1.7      haad 	disk_info = prop_dictionary_create();
    674      1.13      haad 	geom = prop_dictionary_create();
    675       1.7      haad 
    676       1.7      haad 	prop_dictionary_set_cstring_nocopy(disk_info, "type", "ESDI");
    677       1.7      haad 	prop_dictionary_set_uint64(geom, "sectors-per-unit", dmp_size);
    678       1.7      haad 	prop_dictionary_set_uint32(geom, "sector-size",
    679       1.7      haad 	    DEV_BSIZE /* XXX 512? */);
    680       1.7      haad 	prop_dictionary_set_uint32(geom, "sectors-per-track", 32);
    681       1.7      haad 	prop_dictionary_set_uint32(geom, "tracks-per-cylinder", 64);
    682       1.7      haad 	prop_dictionary_set_uint32(geom, "cylinders-per-unit", dmp_size / 2048);
    683       1.7      haad 	prop_dictionary_set(disk_info, "geometry", geom);
    684       1.7      haad 	prop_object_release(geom);
    685       1.2      haad 
    686       1.7      haad 	odisk_info = disk->dk_info;
    687       1.7      haad 	disk->dk_info = disk_info;
    688       1.7      haad 
    689       1.7      haad 	if (odisk_info != NULL)
    690       1.7      haad 		prop_object_release(odisk_info);
    691       1.7      haad }
    692