/*
* Copyright (c) 2008 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Adam Hamsik.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: dm_target_snapshot.c,v 1.38 2020/01/21 16:27:53 tkusumi Exp $");
/*
* 1. Suspend my_data to temporarily stop any I/O while the snapshot is being
* activated.
* dmsetup suspend my_data
*
* 2. Create the snapshot-origin device with no table.
* dmsetup create my_data_org
*
* 3. Read the table from my_data and load it into my_data_org.
* dmsetup table my_data | dmsetup load my_data_org
*
* 4. Resume this new table.
* dmsetup resume my_data_org
*
* 5. Create the snapshot device with no table.
* dmsetup create my_data_snap
*
* 6. Load the table into my_data_snap. This uses /dev/hdd1 as the COW device and
* uses a 32kB chunk-size.
* echo "0 `blockdev --getsize /dev/mapper/my_data` snapshot \
* /dev/mapper/my_data_org /dev/hdd1 p 64" | dmsetup load my_data_snap
*
* 7. Reload my_data as a snapshot-origin device that points to my_data_org.
* echo "0 `blockdev --getsize /dev/mapper/my_data` snapshot-origin \
* /dev/mapper/my_data_org" | dmsetup load my_data
*
* 8. Resume the snapshot and origin devices.
* dmsetup resume my_data_snap
* dmsetup resume my_data
*
* Before snapshot creation
* dev_name; dev table
* | my_data; 0 1024 linear /dev/sd1a 384|
*
* After snapshot creation
* |my_data_org;0 1024 linear /dev/sd1a 384|
* /
* |my_data; 0 1024 snapshot-origin /dev/vg00/my_data_org|
* /
* |my_data_snap; 0 1024 snapshot /dev/vg00/my_data /dev/mapper/my_data_cow P 8
* \
* |my_data_cow; 0 256 linear /dev/sd1a 1408|
*/
/*
* This file implements initial version of device-mapper snapshot target.
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/buf.h>
#include <sys/kmem.h>
#include "dm.h"
/* dm_target_snapshot.c */
int dm_target_snapshot_init(dm_table_entry_t *, int, char **);
char *dm_target_snapshot_table(void *);
int dm_target_snapshot_strategy(dm_table_entry_t *, struct buf *);
int dm_target_snapshot_sync(dm_table_entry_t *);
int dm_target_snapshot_destroy(dm_table_entry_t *);
//int dm_target_snapshot_upcall(dm_table_entry_t *, struct buf *);
/* dm snapshot origin driver */
int dm_target_snapshot_orig_init(dm_table_entry_t *, int, char **);
char *dm_target_snapshot_orig_table(void *);
int dm_target_snapshot_orig_strategy(dm_table_entry_t *, struct buf *);
int dm_target_snapshot_orig_sync(dm_table_entry_t *);
int dm_target_snapshot_orig_destroy(dm_table_entry_t *);
//int dm_target_snapshot_orig_upcall(dm_table_entry_t *, struct buf *);
typedef struct target_snapshot_config {
dm_pdev_t *tsc_snap_dev;
/* cow dev is set only for persistent snapshot devices */
dm_pdev_t *tsc_cow_dev;
typedef struct target_snapshot_origin_config {
dm_pdev_t *tsoc_real_dev;
/* list of snapshots ? */
} dm_target_snapshot_origin_config_t;
#ifdef DM_TARGET_MODULE
/*
* Every target can be compiled directly to dm driver or as a
* separate module this part of target is used for loading targets
* to dm driver.
* Target can be unloaded from kernel only if there are no users of
* it e.g. there are no devices which uses that target.
*/
#include <sys/kernel.h>
#include <sys/module.h>
case MODULE_CMD_FINI:
/*
* Try to remove snapshot target if it works remove snap-origin
* it is not possible to remove snapshot and do not remove
* snap-origin because they are used together.
*/
if ((r = dm_target_rem("snapshot")) == 0)
r = dm_target_rem("snapshot-origin");
break;
case MODULE_CMD_STAT:
return ENOTTY;
default:
return ENOTTY;
}
return r;
}
#endif
/*
* Init function called from dm_table_load_ioctl.
* argv: /dev/mapper/my_data_org /dev/mapper/tsc_cow_dev p 64
* snapshot_origin device, cow device, persistent flag, chunk size
*/
int
dm_target_snapshot_init(dm_table_entry_t *table_en, int argc, char **argv)
{
dm_target_snapshot_config_t *tsc;
dm_pdev_t *dmp_snap, *dmp_cow;
/*
* Table routine is called to get params string, which is target
* specific. When dm_table_status_ioctl is called with flag
* DM_STATUS_TABLE_FLAG I have to sent params string back.
*/
char *
dm_target_snapshot_table(void *target_config)
{
dm_target_snapshot_config_t *tsc;
/*
* dm target snapshot origin routines.
*
* Keep for compatibility with linux lvm2tools. They use two targets
* to implement snapshots. Snapshot target will implement exception
* store and snapshot origin will implement device which calls every
* snapshot device when write is done on master device.
*/
/*
* Init function called from dm_table_load_ioctl.
*
* argv: /dev/mapper/my_data_real
*/
int
dm_target_snapshot_orig_init(dm_table_entry_t *table_en, int argc, char **argv)
{
dm_target_snapshot_origin_config_t *tsoc;
dm_pdev_t *dmp_real;
printf("Snapshot origin target init function called!!\n");
printf("Parent device: %s\n", argv[0]);
/* Insert snap device to global pdev list */
if ((dmp_real = dm_pdev_insert(argv[0])) == NULL)
return ENOENT;
/*
* Table routine is called to get params string, which is target
* specific. When dm_table_status_ioctl is called with flag
* DM_STATUS_TABLE_FLAG I have to sent params string back.
*/
char *
dm_target_snapshot_orig_table(void *target_config)
{
dm_target_snapshot_origin_config_t *tsoc;
size_t prm_len;
char *params;
tsoc = target_config;
prm_len = 0;
printf("Snapshot origin target table function called\n");
/* length of names + count of chars + spaces and null char */
prm_len = strlen(tsoc->tsoc_real_dev->name) + 1;
printf("real_dev name %s\n", tsoc->tsoc_real_dev->name);