e6ad94e1706f7d49e035ecde8594b7a90a4768f5
[dragonfly.git] / sys / dev / disk / dm / targets / mirror / dm_target_mirror.c
1 /*$NetBSD: dm_target_mirror.c,v 1.8 2010/01/04 00:12:22 haad Exp $*/
2
3 /*
4  * Copyright (c) 2009 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Adam Hamsik.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 /*
33  * This file implements initial version of device-mapper mirror target.
34  */
35 #include <sys/types.h>
36 #include <sys/param.h>
37
38 #include <sys/buf.h>
39
40 #include "dm.h"
41
42 typedef struct target_mirror_config {
43 #define MAX_MIRROR_COPIES 4
44         dm_pdev_t *orig;
45         dm_pdev_t *copies[MAX_MIRROR_COPIES];
46
47         /* copied blocks bitmaps administration etc*/
48         dm_pdev_t *log_pdev;    /* for administration */
49         uint64_t log_regionsize;        /* blocksize of mirror */
50
51         /* list of parts that still need copied etc.; run length encoded? */
52 } dm_target_mirror_config_t;
53
54 int dm_target_mirror_init(dm_table_entry_t *, int, char **);
55 char *dm_target_mirror_table(void *);
56 int dm_target_mirror_strategy(dm_table_entry_t *, struct buf *);
57 int dm_target_mirror_deps(dm_table_entry_t *, prop_array_t);
58 int dm_target_mirror_destroy(dm_table_entry_t *);
59
60 /*
61  * Init function called from dm_table_load_ioctl.
62  * start length mirror log_type #logargs logarg1 ... logargN #devs device1 offset1 ... deviceN offsetN
63  * 0 52428800 mirror clustered_disk 4 253:2 1024 UUID block_on_error 3 253:3 0 253:4 0 253:5 0
64  */
65 int
66 dm_target_mirror_init(dm_table_entry_t *table_en, int argc, char **argv)
67 {
68
69         kprintf("Mirror target init function called!!\n");
70
71         dm_table_init_target(table_en, DM_MIRROR_DEV, NULL);
72
73         return ENOSYS;
74 }
75
76 /* Table routine called to get params string. */
77 char *
78 dm_target_mirror_table(void *target_config)
79 {
80         return NULL;
81 }
82
83 /* Strategy routine called from dm_strategy. */
84 int
85 dm_target_mirror_strategy(dm_table_entry_t *table_en, struct buf *bp)
86 {
87
88         kprintf("Mirror target read function called!!\n");
89
90         bp->b_error = EIO;
91         bp->b_resid = 0;
92
93         biodone(bp);
94
95         return 0;
96 }
97
98 /* Doesn't do anything here. */
99 int
100 dm_target_mirror_destroy(dm_table_entry_t *table_en)
101 {
102         /* Unbusy target so we can unload it */
103         dm_target_unbusy(table_en->target);
104
105         return 0;
106 }
107
108 /* Doesn't not need to do anything here. */
109 int
110 dm_target_mirror_deps(dm_table_entry_t *table_en, prop_array_t prop_array)
111 {
112         return 0;
113 }