Home | History | Annotate | Line # | Download | only in dm
dm_target_linear.c revision 1.17
      1  1.17  christos /*        $NetBSD: dm_target_linear.c,v 1.17 2018/01/05 14:22:05 christos Exp $      */
      2   1.2      haad 
      3   1.2      haad /*
      4   1.2      haad  * Copyright (c) 2008 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.17  christos #include <sys/cdefs.h>
     32  1.17  christos __KERNEL_RCSID(0, "$NetBSD: dm_target_linear.c,v 1.17 2018/01/05 14:22:05 christos Exp $");
     33   1.2      haad 
     34   1.2      haad /*
     35   1.2      haad  * This file implements initial version of device-mapper dklinear target.
     36   1.2      haad  */
     37   1.2      haad 
     38   1.2      haad #include <sys/types.h>
     39   1.2      haad #include <sys/param.h>
     40   1.2      haad 
     41   1.2      haad #include <sys/buf.h>
     42   1.2      haad #include <sys/kmem.h>
     43   1.2      haad #include <sys/vnode.h>
     44  1.11  uebayasi #include <sys/lwp.h>
     45   1.2      haad 
     46   1.2      haad #include <machine/int_fmtio.h>
     47   1.2      haad 
     48   1.2      haad #include "dm.h"
     49   1.2      haad 
     50   1.2      haad /*
     51   1.2      haad  * Allocate target specific config data, and link them to table.
     52   1.2      haad  * This function is called only when, flags is not READONLY and
     53   1.9      haad  * therefore we can add things to pdev list. This should not a
     54   1.6      yamt  * problem because this routine is called only from dm_table_load_ioctl.
     55   1.2      haad  * @argv[0] is name,
     56   1.2      haad  * @argv[1] is physical data offset.
     57   1.2      haad  */
     58   1.2      haad int
     59   1.9      haad dm_target_linear_init(dm_dev_t * dmv, void **target_config, char *params)
     60   1.2      haad {
     61   1.2      haad 	dm_target_linear_config_t *tlc;
     62   1.2      haad 	dm_pdev_t *dmp;
     63   1.2      haad 
     64   1.8      haad 	char **ap, *argv[3];
     65   1.8      haad 
     66   1.9      haad 	if (params == NULL)
     67   1.8      haad 		return EINVAL;
     68   1.9      haad 
     69   1.8      haad 	/*
     70   1.8      haad 	 * Parse a string, containing tokens delimited by white space,
     71   1.8      haad 	 * into an argument vector
     72   1.8      haad 	 */
     73   1.8      haad 	for (ap = argv; ap < &argv[2] &&
     74   1.9      haad 	    (*ap = strsep(&params, " \t")) != NULL;) {
     75   1.8      haad 		if (**ap != '\0')
     76   1.8      haad 			ap++;
     77   1.8      haad 	}
     78   1.2      haad 
     79   1.8      haad 	aprint_debug("Linear target init function called %s--%s!!\n",
     80   1.8      haad 	    argv[0], argv[1]);
     81   1.9      haad 
     82   1.2      haad 	/* Insert dmp to global pdev list */
     83   1.8      haad 	if ((dmp = dm_pdev_insert(argv[0])) == NULL)
     84   1.2      haad 		return ENOENT;
     85   1.9      haad 
     86  1.15       chs 	tlc = kmem_alloc(sizeof(dm_target_linear_config_t), KM_SLEEP);
     87   1.2      haad 	tlc->pdev = dmp;
     88   1.9      haad 	tlc->offset = 0;	/* default settings */
     89   1.9      haad 
     90   1.2      haad 	/* Check user input if it is not leave offset as 0. */
     91   1.8      haad 	tlc->offset = atoi(argv[1]);
     92   1.2      haad 
     93   1.9      haad 	*target_config = tlc;
     94   1.2      haad 
     95   1.2      haad 	dmv->dev_type = DM_LINEAR_DEV;
     96   1.9      haad 
     97   1.2      haad 	return 0;
     98   1.2      haad }
     99  1.17  christos 
    100   1.2      haad /*
    101   1.2      haad  * Status routine is called to get params string, which is target
    102   1.2      haad  * specific. When dm_table_status_ioctl is called with flag
    103   1.2      haad  * DM_STATUS_TABLE_FLAG I have to sent params string back.
    104   1.2      haad  */
    105   1.2      haad char *
    106   1.2      haad dm_target_linear_status(void *target_config)
    107   1.2      haad {
    108   1.2      haad 	dm_target_linear_config_t *tlc;
    109   1.2      haad 	char *params;
    110   1.8      haad 	tlc = target_config;
    111   1.8      haad 
    112   1.2      haad 	aprint_debug("Linear target status function called\n");
    113   1.2      haad 
    114   1.8      haad 	if ((params = kmem_alloc(DM_MAX_PARAMS_SIZE, KM_NOSLEEP)) == NULL)
    115   1.2      haad 		return NULL;
    116   1.2      haad 
    117   1.9      haad 	aprint_normal("%s %" PRIu64, tlc->pdev->name, tlc->offset);
    118   1.9      haad 	snprintf(params, DM_MAX_PARAMS_SIZE, "%s %" PRIu64,
    119   1.8      haad 	    tlc->pdev->name, tlc->offset);
    120   1.8      haad 
    121   1.2      haad 	return params;
    122   1.2      haad }
    123  1.17  christos 
    124   1.2      haad /*
    125   1.2      haad  * Do IO operation, called from dmstrategy routine.
    126   1.2      haad  */
    127   1.2      haad int
    128   1.9      haad dm_target_linear_strategy(dm_table_entry_t * table_en, struct buf * bp)
    129   1.2      haad {
    130   1.2      haad 	dm_target_linear_config_t *tlc;
    131   1.2      haad 
    132   1.2      haad 	tlc = table_en->target_config;
    133   1.9      haad 
    134   1.2      haad /*	printf("Linear target read function called %" PRIu64 "!!\n",
    135   1.2      haad 	tlc->offset);*/
    136   1.2      haad 
    137   1.2      haad 	bp->b_blkno += tlc->offset;
    138   1.9      haad 
    139   1.2      haad 	VOP_STRATEGY(tlc->pdev->pdev_vnode, bp);
    140   1.9      haad 
    141   1.2      haad 	return 0;
    142   1.2      haad 
    143   1.2      haad }
    144  1.17  christos 
    145   1.2      haad /*
    146  1.10      haad  * Sync underlying disk caches.
    147  1.10      haad  */
    148  1.10      haad int
    149  1.10      haad dm_target_linear_sync(dm_table_entry_t * table_en)
    150  1.10      haad {
    151  1.10      haad 	int cmd;
    152  1.10      haad 	dm_target_linear_config_t *tlc;
    153  1.10      haad 
    154  1.10      haad 	tlc = table_en->target_config;
    155  1.10      haad 
    156  1.10      haad 	cmd = 1;
    157  1.10      haad 
    158  1.10      haad 	return VOP_IOCTL(tlc->pdev->pdev_vnode,  DIOCCACHESYNC, &cmd,
    159  1.10      haad 	    FREAD|FWRITE, kauth_cred_get());
    160  1.10      haad }
    161  1.17  christos 
    162  1.10      haad /*
    163   1.2      haad  * Destroy target specific data. Decrement table pdevs.
    164   1.2      haad  */
    165   1.2      haad int
    166   1.9      haad dm_target_linear_destroy(dm_table_entry_t * table_en)
    167   1.2      haad {
    168   1.2      haad 
    169   1.2      haad 	/*
    170   1.2      haad 	 * Destroy function is called for every target even if it
    171   1.2      haad 	 * doesn't have target_config.
    172   1.2      haad 	 */
    173   1.2      haad 	if (table_en->target_config == NULL)
    174  1.17  christos 		goto out;
    175   1.9      haad 
    176  1.17  christos 	dm_target_linear_config_t *tlc = table_en->target_config;
    177  1.17  christos 	table_en->target_config = NULL;
    178   1.9      haad 
    179   1.2      haad 	/* Decrement pdev ref counter if 0 remove it */
    180   1.2      haad 	dm_pdev_decr(tlc->pdev);
    181   1.9      haad 
    182  1.17  christos 	kmem_free(tlc, sizeof(*tlc));
    183  1.17  christos 
    184  1.17  christos out:
    185   1.3      haad 	/* Unbusy target so we can unload it */
    186   1.3      haad 	dm_target_unbusy(table_en->target);
    187   1.2      haad 	return 0;
    188   1.2      haad }
    189  1.17  christos 
    190  1.16   mbalmer /* Add this target pdev dependencies to prop_array_t */
    191   1.2      haad int
    192   1.9      haad dm_target_linear_deps(dm_table_entry_t * table_en, prop_array_t prop_array)
    193   1.2      haad {
    194   1.2      haad 	dm_target_linear_config_t *tlc;
    195   1.9      haad 
    196   1.2      haad 	if (table_en->target_config == NULL)
    197   1.2      haad 		return ENOENT;
    198   1.9      haad 
    199   1.2      haad 	tlc = table_en->target_config;
    200   1.9      haad 
    201  1.14   hannken 	prop_array_add_uint64(prop_array,
    202  1.14   hannken 	    (uint64_t) tlc->pdev->pdev_vnode->v_rdev);
    203   1.9      haad 
    204   1.2      haad 	return 0;
    205   1.2      haad }
    206  1.17  christos 
    207   1.2      haad /*
    208   1.2      haad  * Register upcall device.
    209   1.2      haad  * Linear target doesn't need any upcall devices but other targets like
    210   1.2      haad  * mirror, snapshot, multipath, stripe will use this functionality.
    211   1.2      haad  */
    212   1.2      haad int
    213   1.9      haad dm_target_linear_upcall(dm_table_entry_t * table_en, struct buf * bp)
    214   1.2      haad {
    215   1.2      haad 	return 0;
    216   1.2      haad }
    217  1.17  christos 
    218   1.2      haad /*
    219  1.12   mlelstv  * Query physical block size of this target
    220  1.12   mlelstv  * For a linear target this is just the sector size of the underlying device
    221  1.12   mlelstv  */
    222  1.12   mlelstv int
    223  1.12   mlelstv dm_target_linear_secsize(dm_table_entry_t * table_en, unsigned *secsizep)
    224  1.12   mlelstv {
    225  1.12   mlelstv 	dm_target_linear_config_t *tlc;
    226  1.12   mlelstv 	unsigned secsize;
    227  1.12   mlelstv 
    228  1.12   mlelstv 	secsize = 0;
    229  1.12   mlelstv 
    230  1.12   mlelstv 	tlc = table_en->target_config;
    231  1.12   mlelstv 	if (tlc != NULL)
    232  1.12   mlelstv 		secsize = tlc->pdev->pdev_secsize;
    233  1.12   mlelstv 
    234  1.12   mlelstv 	*secsizep = secsize;
    235  1.12   mlelstv 
    236  1.12   mlelstv 	return 0;
    237  1.12   mlelstv }
    238  1.17  christos 
    239  1.12   mlelstv /*
    240   1.2      haad  * Transform char s to uint64_t offset number.
    241   1.2      haad  */
    242   1.2      haad uint64_t
    243   1.2      haad atoi(const char *s)
    244   1.2      haad {
    245   1.2      haad 	uint64_t n;
    246   1.2      haad 	n = 0;
    247   1.2      haad 
    248   1.2      haad 	while (*s != '\0') {
    249   1.2      haad 		if (!isdigit(*s))
    250   1.2      haad 			break;
    251   1.2      haad 
    252   1.2      haad 		n = (10 * n) + (*s - '0');
    253   1.2      haad 		s++;
    254   1.2      haad 	}
    255   1.2      haad 
    256   1.2      haad 	return n;
    257   1.2      haad }
    258