2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
4 * This file is released under the GPL.
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/blkdev.h>
12 #include <linux/bio.h>
13 #include <linux/slab.h>
15 #define DM_MSG_PREFIX "linear"
18 * Linear: maps a linear range of a device.
26 * Construct a linear mapping: <dev_path> <offset>
28 static int linear_ctr(struct dm_target
*ti
, unsigned int argc
, char **argv
)
31 unsigned long long tmp
;
34 ti
->error
= "Invalid argument count";
38 lc
= kmalloc(sizeof(*lc
), GFP_KERNEL
);
40 ti
->error
= "dm-linear: Cannot allocate linear context";
44 if (sscanf(argv
[1], "%llu", &tmp
) != 1) {
45 ti
->error
= "dm-linear: Invalid device sector";
50 if (dm_get_device(ti
, argv
[0], lc
->start
, ti
->len
,
51 dm_table_get_mode(ti
->table
), &lc
->dev
)) {
52 ti
->error
= "dm-linear: Device lookup failed";
64 static void linear_dtr(struct dm_target
*ti
)
66 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
68 dm_put_device(ti
, lc
->dev
);
72 static int linear_map(struct dm_target
*ti
, struct bio
*bio
,
73 union map_info
*map_context
)
75 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
77 bio
->bi_bdev
= lc
->dev
->bdev
;
78 bio
->bi_sector
= lc
->start
+ (bio
->bi_sector
- ti
->begin
);
80 return DM_MAPIO_REMAPPED
;
83 static int linear_status(struct dm_target
*ti
, status_type_t type
,
84 char *result
, unsigned int maxlen
)
86 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
93 case STATUSTYPE_TABLE
:
94 snprintf(result
, maxlen
, "%s %llu", lc
->dev
->name
,
95 (unsigned long long)lc
->start
);
101 static int linear_ioctl(struct dm_target
*ti
, struct inode
*inode
,
102 struct file
*filp
, unsigned int cmd
,
105 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
106 struct block_device
*bdev
= lc
->dev
->bdev
;
107 struct file fake_file
= {};
108 struct dentry fake_dentry
= {};
110 fake_file
.f_mode
= lc
->dev
->mode
;
111 fake_file
.f_path
.dentry
= &fake_dentry
;
112 fake_dentry
.d_inode
= bdev
->bd_inode
;
114 return blkdev_driver_ioctl(bdev
->bd_inode
, &fake_file
, bdev
->bd_disk
, cmd
, arg
);
117 static struct target_type linear_target
= {
120 .module
= THIS_MODULE
,
124 .status
= linear_status
,
125 .ioctl
= linear_ioctl
,
128 int __init
dm_linear_init(void)
130 int r
= dm_register_target(&linear_target
);
133 DMERR("register failed %d", r
);
138 void dm_linear_exit(void)
140 int r
= dm_unregister_target(&linear_target
);
143 DMERR("unregister failed %d", r
);