2 .\" Copyright (c) 2006 Wilko Bulte
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .Nd "GEOM based basic disk multipathing"
35 To compile this driver into the kernel,
36 place the following line in your
37 kernel configuration file:
38 .Bd -ragged -offset indent
39 .Cd "options GEOM_FOX"
42 Alternatively, to load the driver as a
43 module at boot time, place the following line in
45 .Bd -literal -offset indent
51 framework is to provide basic multipathing support to access direct
53 Basic in the above sentence should be read as:
55 only provides path failover functionality, not load balancing over
56 the available paths etc.
57 Using suitable hardware like SCSI or FibreChannel disks it is
58 possible to have multiple (typically 2) host bus adapters access
59 the same physical disk drive.
61 Without a multipathing driver the
63 kernel would probe the disks multiple times, resulting in the creation of
66 entries for the same underlying physical device.
67 A unique label written in the GEOM label area allows
69 to detect multiple paths.
70 Using this information it creates a unique
76 device is subsequently used by the
78 kernel to access the disks.
79 Multiple physical access paths ensure that even in case of a path failure the
81 kernel can continue to access the data.
85 driver will disallow write operations to the underlying devices once the
86 fox device has been opened for writing.
92 needs a label on the disk as follows in order to work properly:
94 "0123456789abcdef0123456789abcdef"
95 "GEOM::FOX <--unique--id-->"
98 For the unique ID 16 bytes are available.
101 is the magic to mark a
105 The actual labelling is accomplished by
107 echo "GEOM::FOX someid" | dd of=/dev/da2 conv=sync
110 For FibreChannel devices it is suggested to use the Node World Wide
111 Name (Node WWN) as this is guaranteed by the FibreChannel standard to
113 The use of the Port WWN not recommended as each port of a given
114 device has a different WWN, thereby confusing things.
116 The Node WWN can be obtained from a verbose boot as in for example
118 isp1: Target 1 (Loop 0x1) Port ID 0xe8 (role Target) Arrived
119 Port WWN 0x21000004cfc8aca2
120 Node WWN 0x20000004cfc8aca2
123 This Node WWN would then be used like so:
125 echo "GEOM::FOX 20000004cfc8aca2" | dd of=/dev/da2 conv=sync
128 For non-FibreChannel devices you could for example use the serial
129 number of the device.
130 Regardless of what you use, make sure the label is unique.
132 Once the labelling has been performed and assuming the
134 module is loaded the kernel will inform you that it has found a new
136 device with a message similar to
138 Creating new fox (da2)
139 fox da2.fox lock 0xfffffc0000fdba20
143 To check which physical devices match a given
146 .Bd -literal -offset indent
151 Mediasize: 73407865344 (68G)
156 Mediasize: 73407865856 (68G)
160 Mediasize: 73407865856 (68G)
166 To check the status of the
171 Name Status Components
182 driver depends on the underlying hardware drivers to do the right thing in case
184 If for example a hardware driver continues to retry forever,
186 is not able to re-initiate the I/O to an alternative physical path.
188 You have to be very sure to provide a unique label for each of the
191 Safety belts are not provided.
192 For FibreChannel devices it is suggested to use the Port WWN of the device.
193 The World Wide Name is guaranteed to be worldwide unique per the
194 FibreChannel standard.
199 driver was written by
200 .An "Poul-Henning Kamp" Aq phk@FreeBSD.org .
201 This manual page was written by
202 .An "Wilko Bulte" Aq wilko@FreeBSD.org .
206 framework has only seen light testing.
207 There definitely might be dragons here.
211 is completely obscure.
212 Just remember that any sly fox has multiple exits from its hole.
214 The examples provided are too FibreChannel-centric.