]> git.ipfire.org Git - thirdparty/mdadm.git/blame - ReadMe.c
mdadm-1.3.0
[thirdparty/mdadm.git] / ReadMe.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
cd29a5c8 4 * Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
64c4757e
NB
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29
9a9dab36 30#include "mdadm.h"
64c4757e 31
aa88f531 32char Version[] = Name " - v1.3.0 - 29 Jul 2003\n";
64c4757e
NB
33/*
34 * File: ReadMe.c
35 *
36 * This file contains general comments about the implementation
9a9dab36 37 * and the various usage messages that can be displayed by mdadm
64c4757e 38 *
9a9dab36 39 * mdadm is a single program that can be used to control Linux md devices.
64c4757e
NB
40 * It is intended to provide all the functionality of the mdtools and
41 * raidtools but with a very different interface.
9a9dab36 42 * mdadm can perform all functions without a configuration file.
64c4757e
NB
43 * There is the option of using a configuration file, but not in the same
44 * way that raidtools uses one
45 * raidtools uses a configuration file to describe how to create a RAID
46 * array, and also uses this file partially to start a previously
47 * created RAID array. Further, raidtools requires the configuration
48 * file for such things as stopping a raid array which needs to know
49 * nothing about the array.
50 *
9a9dab36 51 * The configuration file that can be used by mdadm lists two
64c4757e
NB
52 * different things:
53 * 1/ a mapping from uuid to md device to identify which arrays are
54 * expect and what names (numbers) they should be given
55 * 2/ a list of devices that should be scanned for md sub-devices
56 *
57 *
58 */
59
60/*
e0d19036 61 * mdadm has 6 major modes of operation:
64c4757e 62 * 1/ Create
5787fa49 63 * This mode is used to create a new array with a superblock
64c4757e
NB
64 * It can progress in several step create-add-add-run
65 * or it can all happen with one command
66 * 2/ Assemble
67 * This mode is used to assemble the parts of a previously created
68 * array into an active array. Components can be explicitly given
9a9dab36 69 * or can be searched for. mdadm (optionally) check that the components
5787fa49 70 * do form a bona-fide array, and can, on request, fiddle superblock
64c4757e
NB
71 * version numbers so as to assemble a faulty array.
72 * 3/ Build
73 * This is for building legacy arrays without superblocks
74 * 4/ Manage
e0d19036
NB
75 * This is for doing something to one or more devices
76 * in an array, such as add,remove,fail.
77 * run/stop/readonly/readwrite are also available
78 * 5/ Misc
79 * This is for doing things to individual devices.
80 * They might be parts of an array so
81 * zero-superblock, examine might be appropriate
82 * They might be md arrays so
83 * run,stop,rw,ro,detail might be appropriate
84 * Also query will treat it as either
85 * 6/ Monitor
86 * This mode never exits but just monitors arrays and reports changes.
64c4757e
NB
87 */
88
aa88f531 89char short_options[]="-ABCDEFGQhVvbc:l:p:m:n:x:u:c:d:z:U:sarfRSow1";
64c4757e
NB
90struct option long_options[] = {
91 {"manage", 0, 0, '@'},
e0d19036 92 {"misc", 0, 0, '#'},
64c4757e
NB
93 {"assemble", 0, 0, 'A'},
94 {"build", 0, 0, 'B'},
95 {"create", 0, 0, 'C'},
96 {"detail", 0, 0, 'D'},
97 {"examine", 0, 0, 'E'},
52826846 98 {"follow", 0, 0, 'F'},
9a9dab36 99 {"grow", 0, 0, 'G'}, /* not yet implemented */
e0d19036
NB
100 {"zero-superblock", 0, 0, 'K'}, /* deliberately no a short_option */
101 {"query", 0, 0, 'Q'},
52826846
NB
102
103 /* synonyms */
104 {"monitor", 0, 0, 'F'},
105
64c4757e
NB
106 /* after those will normally come the name of the md device */
107 {"help", 0, 0, 'h'},
56eedc1a 108 {"help-options",0,0,'h'},
64c4757e
NB
109 {"version", 0, 0, 'V'},
110 {"verbose", 0, 0, 'v'},
111
112 /* For create or build: */
113 {"chunk", 1, 0, 'c'},
114 {"rounding", 1, 0, 'c'}, /* for linear, chunk is really a rounding number */
115 {"level", 1, 0, 'l'}, /* 0,1,4,5,linear */
5787fa49 116 {"parity", 1, 0, 'p'}, /* {left,right}-{a,}symmetric */
64c4757e
NB
117 {"layout", 1, 0, 'p'},
118 {"raid-disks",1, 0, 'n'},
b83d95f3 119 {"raid-devices",1, 0, 'n'},
64c4757e 120 {"spare-disks",1,0, 'x'},
b83d95f3 121 {"spare-devices",1,0, 'x'},
682c7051 122 {"size" ,1, 0, 'z'},
64c4757e
NB
123
124 /* For assemble */
125 {"uuid", 1, 0, 'u'},
52826846 126 {"super-minor",1,0, 'm'},
64c4757e
NB
127 {"config", 1, 0, 'c'},
128 {"scan", 0, 0, 's'},
129 {"force", 0, 0, 'f'},
5787fa49 130 {"update", 1, 0, 'U'},
64c4757e
NB
131 /* Management */
132 {"add", 0, 0, 'a'},
133 {"remove", 0, 0, 'r'},
134 {"fail", 0, 0, 'f'},
135 {"set-faulty",0, 0, 'f'},
136 {"run", 0, 0, 'R'},
137 {"stop", 0, 0, 'S'},
138 {"readonly", 0, 0, 'o'},
139 {"readwrite", 0, 0, 'w'},
52826846 140
cd29a5c8
NB
141 /* For Detail/Examine */
142 {"brief", 0, 0, 'b'},
bd526cee 143 {"sparc2.2", 0, 0, 22},
cd29a5c8 144
52826846
NB
145 /* For Follow/monitor */
146 {"mail", 1, 0, 'm'},
147 {"program", 1, 0, 'p'},
148 {"alert", 1, 0, 'p'},
149 {"delay", 1, 0, 'd'},
56eedc1a
NB
150 {"daemonise", 0, 0, 'f'},
151 {"daemonize", 0, 0, 'f'},
aa88f531 152 {"oneshot", 0, 0, '1'},
64c4757e
NB
153
154 {0, 0, 0, 0}
155};
156
157char Usage[] =
9a9dab36 158"Usage: mdadm --help\n"
64c4757e
NB
159" for help\n"
160;
161
162char Help[] =
9a9dab36
NB
163"Usage: mdadm --create device options...\n"
164" mdadm --assemble device options...\n"
165" mdadm --build device options...\n"
e0d19036
NB
166" mdadm --manage device options...\n"
167" mdadm --misc options... devices\n"
168" mdadm --monitor options...\n"
9a9dab36 169" mdadm device options...\n"
5787fa49 170" mdadm is used for building, managing, and monitoring\n"
56eedc1a
NB
171" Linux md devices (aka RAID arrays)\n"
172" For detailed help on the above major modes use --help after the mode\n"
e0d19036 173" e.g.\n"
9a9dab36 174" mdadm --assemble --help\n"
56eedc1a
NB
175" For general help on options use\n"
176" mdadm --help-options\n"
177;
178
179char OptionHelp[] =
64c4757e 180"Any parameter that does not start with '-' is treated as a device name\n"
e0d19036
NB
181"The first such name is often the name of an md device. Subsequent\n"
182"names are often names of component devices."
52826846 183"\n"
e0d19036 184"Some common options are:\n"
56eedc1a 185" --help -h : General help message or, after above option,\n"
64c4757e 186" mode specific help message\n"
56eedc1a 187" --help-options : This help message\n"
9a9dab36 188" --version -V : Print version information for mdadm\n"
64c4757e 189" --verbose -v : Be more verbose about what is happening\n"
e0d19036
NB
190" --brief -b : Be less verbose, more brief\n"
191" --force -f : Override normal checks and be more forceful\n"
192"\n"
193" --assemble -A : Assemble an array\n"
194" --build -B : Build a legacy array\n"
195" --create -C : Create a new array\n"
196" --detail -D : Display details of an array\n"
5787fa49 197" --examine -E : Examine superblock on an array component\n"
e0d19036
NB
198" --monitor -F : monitor (follow) some arrays\n"
199" --query -Q : Display general information about how a\n"
200" device relates to the md driver\n"
201;
202/*
64c4757e
NB
203"\n"
204" For create or build:\n"
205" --chunk= -c : chunk size of kibibytes\n"
5787fa49 206" --rounding= : rounding factor for linear array (==chunk size)\n"
c913b90e 207" --level= -l : raid level: 0,1,4,5,linear,mp. 0 or linear for build\n"
5787fa49 208" --parity= -p : raid5 parity algorithm: {left,right}-{,a}symmetric\n"
64c4757e 209" --layout= : same as --parity\n"
b83d95f3
NB
210" --raid-devices= -n : number of active devices in array\n"
211" --spare-devices= -x: number of spares (eXtras) devices in initial array\n"
682c7051 212" --size= -z : Size (in K) of each drive in RAID1/4/5 - optional\n"
52826846
NB
213" --force -f : Honour devices as listed on command line. Don't\n"
214" : insert a missing drive for RAID5.\n"
64c4757e
NB
215"\n"
216" For assemble:\n"
217" --uuid= -u : uuid of array to assemble. Devices which don't\n"
218" have this uuid are excluded\n"
52826846
NB
219" --super-minor= -m : minor number to look for in super-block when\n"
220" choosing devices to use.\n"
64c4757e
NB
221" --config= -c : config file\n"
222" --scan -s : scan config file for missing information\n"
223" --force -f : Assemble the array even if some superblocks appear out-of-date\n"
5787fa49 224" --update= -U : Update superblock: either sparc2.2 or super-minor\n"
64c4757e 225"\n"
cd29a5c8
NB
226" For detail or examine:\n"
227" --brief -b : Just print device name and UUID\n"
228"\n"
52826846
NB
229" For follow/monitor:\n"
230" --mail= -m : Address to mail alerts of failure to\n"
231" --program= -p : Program to run when an event is detected\n"
232" --alert= : same as --program\n"
233" --delay= -d : seconds of delay between polling state. default=60\n"
234"\n"
64c4757e
NB
235" General management:\n"
236" --add -a : add, or hotadd subsequent devices\n"
237" --remove -r : remove subsequent devices\n"
238" --fail -f : mark subsequent devices a faulty\n"
239" --set-faulty : same as --fail\n"
240" --run -R : start a partially built array\n"
5787fa49 241" --stop -S : deactivate array, releasing all resources\n"
64c4757e
NB
242" --readonly -o : mark array as readonly\n"
243" --readwrite -w : mark array as readwrite\n"
9a9dab36 244" --zero-superblock : erase the MD superblock from a device.\n"
64c4757e 245;
e0d19036 246*/
64c4757e
NB
247
248char Help_create[] =
b83d95f3 249"Usage: mdadm --create device -chunk=X --level=Y --raid-devices=Z devices\n"
64c4757e 250"\n"
aa88f531
NB
251" This usage will initialise a new md array, associate some\n"
252" devices with it, and activate the array. In order to create an\n"
253" array with some devices missing, use the special word 'missing' in\n"
254" place of the relevant device name.\n"
64c4757e 255"\n"
aa88f531 256" Before devices are added, they are checked to see if they already contain\n"
e0d19036 257" raid superblocks or filesystems. They are also checked to see if\n"
64c4757e 258" the variance in device size exceeds 1%.\n"
aa88f531
NB
259" If any discrepancy is found, the user will be prompted for confirmation\n"
260" before the array is created. The presence of a '--run' can override this\n"
64c4757e
NB
261" caution.\n"
262"\n"
e0d19036
NB
263" If the --size option is given then only that many kilobytes of each\n"
264" device is used, no matter how big each device is.\n"
682c7051 265" If no --size is given, the apparent size of the smallest drive given\n"
e0d19036
NB
266" is used for raid level 1 and greater, and the full device is used for\n"
267" other levels.\n"
682c7051 268"\n"
e0d19036
NB
269" Options that are valid with --create (-C) are:\n"
270" --chunk= -c : chunk size of kibibytes\n"
5787fa49 271" --rounding= : rounding factor for linear array (==chunk size)\n"
e0d19036 272" --level= -l : raid level: 0,1,4,5,linear,multipath and synonyms\n"
aa88f531 273" --parity= -p : raid5 parity algorithm: {left,right}-{,a}symmetric\n"
e0d19036 274" --layout= : same as --parity\n"
b83d95f3
NB
275" --raid-devices= -n : number of active devices in array\n"
276" --spare-devices= -x: number of spares (eXtras) devices in initial array\n"
e0d19036
NB
277" --size= -z : Size (in K) of each drive in RAID1/4/5 - optional\n"
278" --force -f : Honour devices as listed on command line. Don't\n"
279" : insert a missing drive for RAID5.\n"
aa88f531 280" --run -R : insist of running the array even if not all\n"
e0d19036 281" : devices are present or some look odd.\n"
aa88f531 282" --readonly -o : start the array readonly - not supported yet.\n"
64c4757e
NB
283"\n"
284;
285
286char Help_build[] =
b83d95f3 287"Usage: mdadm --build device -chunk=X --level=Y --raid-devices=Z devices\n"
64c4757e
NB
288"\n"
289" This usage is similar to --create. The difference is that it creates\n"
e0d19036 290" a legacy array without a superblock. With these arrays there is no\n"
64c4757e
NB
291" different between initially creating the array and subsequently\n"
292" assembling the array, except that hopefully there is useful data\n"
293" there in the second case.\n"
294"\n"
e0d19036 295" The level may only be 0, raid0, or linear.\n"
64c4757e 296" All devices must be listed and the array will be started once complete.\n"
e0d19036
NB
297" Options that are valid with --build (-B) are:\n"
298" --chunk= -c : chunk size of kibibytes\n"
5787fa49 299" --rounding= : rounding factor for linear array (==chunk size)\n"
e0d19036 300" --level= -l : 0, raid0, or linear\n"
b83d95f3 301" --raid-devices= -n : number of active devices in array\n"
64c4757e
NB
302;
303
304char Help_assemble[] =
9a9dab36
NB
305"Usage: mdadm --assemble device options...\n"
306" mdadm --assemble --scan options...\n"
64c4757e
NB
307"\n"
308"This usage assembles one or more raid arrays from pre-existing\n"
309"components.\n"
e0d19036 310"For each array, mdadm needs to know the md device, the identity of\n"
52826846
NB
311"the array, and a number of sub devices. These can be found in a number\n"
312"of ways.\n"
313"\n"
314"The md device is either given on the command line or is found listed\n"
315"in the config file. The array identity is determined either from the\n"
e0d19036 316"--uuid or --super-minor commandline arguments, from the config file,\n"
52826846 317"or from the first component device on the command line.\n"
64c4757e 318"\n"
52826846
NB
319"The different combinations of these are as follows:\n"
320" If the --scan option is not given, then only devices and identities\n"
321" listed on the command line are considered.\n"
e0d19036 322" The first device will be the array device, and the remainder will be\n"
52826846
NB
323" examined when looking for components.\n"
324" If an explicit identity is given with --uuid or --super-minor, then\n"
e0d19036 325" only devices with a superblock which matches that identity is considered,\n"
52826846 326" otherwise every device listed is considered.\n"
64c4757e 327"\n"
52826846
NB
328" If the --scan option is given, and no devices are listed, then\n"
329" every array listed in the config file is considered for assembly.\n"
e0d19036 330" The identity of candidate devices are determined from the config file.\n"
64c4757e 331"\n"
52826846
NB
332" If the --scan option is given as well as one or more devices, then\n"
333" Those devices are md devices that are to be assembled. Their identity\n"
334" and components are determined from the config file.\n"
64c4757e 335"\n"
e0d19036
NB
336"Options that are valid with --assemble (-A) are:\n"
337" --uuid= -u : uuid of array to assemble. Devices which don't\n"
338" have this uuid are excluded\n"
339" --super-minor= -m : minor number to look for in super-block when\n"
340" choosing devices to use.\n"
341" --config= -c : config file\n"
342" --scan -s : scan config file for missing information\n"
343" --run -R : Try to start the array even if not enough devices\n"
344" for a full array are present\n"
345" --force -f : Assemble the array even if some superblocks appear\n"
346" : out-of-date. This involves modifying the superblocks.\n"
5787fa49 347" --update= -U : Update superblock: either sparc2.2 or super-minor\n"
e0d19036
NB
348;
349
350char Help_manage[] =
351"Usage: mdadm arraydevice options component devices...\n"
352"\n"
353"This usage is for managing the component devices within an array.\n"
354"The --manage option is not needed and is assumed if the first argument\n"
355"is a device name or a management option.\n"
356"The first device listed will be taken to be an md array device, and\n"
357"subsequent devices are (potential) components of that array.\n"
358"\n"
359"Options that are valid with management mode are:\n"
360" --add -a : hotadd subsequent devices to the array\n"
361" --remove -r : remove subsequent devices, which must not be active\n"
362" --fail -f : mark subsequent devices a faulty\n"
363" --set-faulty : same as --fail\n"
364" --run -R : start a partially built array\n"
5787fa49 365" --stop -S : deactivate array, releasing all resources\n"
e0d19036
NB
366" --readonly -o : mark array as readonly\n"
367" --readwrite -w : mark array as readwrite\n"
368;
369
370char Help_misc[] =
371"Usage: mdadm misc_option devices...\n"
372"\n"
373"This usage is for performing some task on one or more devices, which\n"
374"may be arrays or components, depending on the task.\n"
375"The --misc option is not needed (though it is allowed) and is assumed\n"
376"if the first argument in a misc option.\n"
377"\n"
378"Options that are valid with the miscellaneous mode are:\n"
379" --query -Q : Display general information about how a\n"
380" device relates to the md driver\n"
381" --detail -D : Display details of an array\n"
5787fa49 382" --examine -E : Examine superblock on an array component\n"
e0d19036
NB
383" --zero-superblock : erase the MD superblock from a device.\n"
384" --run -R : start a partially built array\n"
5787fa49 385" --stop -S : deactivate array, releasing all resources\n"
e0d19036
NB
386" --readonly -o : mark array as readonly\n"
387" --readwrite -w : mark array as readwrite\n"
388;
389
390char Help_monitor[] =
391"Usage: mdadm --monitor options devices\n"
392"\n"
393"This usage causes mdadm to monitor a number of md arrays by periodically\n"
394"polling their status and acting on any changes.\n"
395"If any devices are listed then those devices are monitored, otherwise\n"
396"all devices listed in the config file are monitored.\n"
397"The address for mailing advisories to, and the program to handle\n"
398"each change can be specified in the config file or on the command line.\n"
399"If no mail address or program are specified, then mdadm reports all\n"
400"state changes to stdout.\n"
401"\n"
402"Options that are valid with the monitor (--F --follow) mode are:\n"
403" --mail= -m : Address to mail alerts of failure to\n"
404" --program= -p : Program to run when an event is detected\n"
405" --alert= : same as --program\n"
406" --delay= -d : seconds of delay between polling state. default=60\n"
407" --config= -c : specify a different config file\n"
408" --scan -s : find mail-address/program in config file\n"
d013a55e 409" --daemonise -f : Fork and continue in child, parent exits\n"
aa88f531 410" --oneshot -1 : Check for degraded arrays, then exit\n"
e0d19036
NB
411;
412
413
414
415
416char Help_config[] =
417"The /etc/mdadm.conf config file:\n\n"
418" The config file contains, apart from blank lines and comment lines that\n"
419" start with a hash(#), four sorts of configuration lines: array lines, \n"
420" device lines, mailaddr lines and program lines.\n"
421" Each configuration line is constructed of a number of space separated\n"
422" words, and can be continued on subsequent physical lines by indenting\n"
423" those lines.\n"
424"\n"
425" A device line starts with the word 'device' and then has a number of words\n"
426" which identify devices. These words should be names of devices in the\n"
427" filesystem, and can contain wildcards. There can be multiple words or each\n"
428" device line, and multiple device lines. All devices so listed are checked\n"
429" for relevant super blocks when assembling arrays.\n"
430"\n"
431" An array line start with the word 'array'. This is followed by the name of\n"
432" the array device in the filesystem, e.g. '/dev/md2'. Subsequent words\n"
433" describe the identity of the array, used to recognise devices to include in the\n"
434" array. The identity can be given as a UUID with a word starting 'uuid=', or\n"
435" as a minor-number stored in the superblock using 'super-minor=', or as a list\n"
436" of devices. This is given as a comma separated list of names, possibly\n"
5787fa49 437" containing wildcards, preceded by 'devices='. If multiple critea are given,\n"
e0d19036
NB
438" than a device must match all of them to be considered.\n"
439"\n"
440" A mailaddr line starts with the word 'mailaddr' and should contain exactly\n"
441" one Email address. 'mdadm --monitor --scan' will send alerts of failed drives\n"
442" to this Email address."
443"\n"
444" A program line starts with the word 'program' and should contain exactly\n"
445" one program name. 'mdadm --monitor --scan' will run this program when any\n"
446" event is detected.\n"
64c4757e
NB
447"\n"
448;
682c7051
NB
449
450
451/* name/number mappings */
452
453mapping_t r5layout[] = {
cd29a5c8
NB
454 { "left-asymmetric", 0},
455 { "right-asymmetric", 1},
456 { "left-symmetric", 2},
457 { "right-symmetric", 3},
682c7051
NB
458
459 { "default", 2},
460 { "la", 0},
461 { "ra", 1},
462 { "ls", 2},
463 { "rs", 3},
464 { NULL, 0}
465};
466
467mapping_t pers[] = {
468 { "linear", -1},
469 { "raid0", 0},
470 { "0", 0},
471 { "stripe", 0},
472 { "raid1", 1},
473 { "1", 1},
474 { "mirror", 1},
475 { "raid4", 4},
476 { "4", 4},
477 { "raid5", 5},
478 { "5", 5},
e0d19036
NB
479 { "multipath", -4},
480 { "mp", -4},
682c7051
NB
481 { NULL, 0}
482};
e0d19036
NB
483
484
485mapping_t modes[] = {
486 { "assemble", ASSEMBLE},
487 { "build", BUILD},
488 { "create", CREATE},
489 { "manage", MANAGE},
490 { "misc", MISC},
491 { "monitor", MONITOR},
492};