]> git.ipfire.org Git - thirdparty/mdadm.git/blame - udev-md-raid.rules
fix: segfault when killing subarray of non-existent container
[thirdparty/mdadm.git] / udev-md-raid.rules
CommitLineData
757a5d74
N
1# do not edit this file, it will be overwritten on update
2
3SUBSYSTEM!="block", GOTO="md_end"
757a5d74 4
7efa6bc3 5# handle potential components of arrays
0f82fe60
MS
6ENV{ID_FS_TYPE}=="*_raid_member", ENV{ID_PATH}!="", ACTION=="remove", RUN+="/sbin/mdadm -If $name --path $env{ID_PATH}"
7ENV{ID_FS_TYPE}=="*_raid_member", ENV{ID_PATH}=="", ACTION=="remove", RUN+="/sbin/mdadm -If $name"
8ENV{ID_FS_TYPE}=="*_raid_member", ACTION=="add", RUN+="/sbin/mdadm --incremental $env{DEVNAME}"
7efa6bc3
N
9
10# handle md arrays
11ACTION!="add|change", GOTO="md_end"
757a5d74
N
12KERNEL!="md*", GOTO="md_end"
13
fa509028
N
14# partitions have no md/{array_state,metadata_version}, but should not
15# for that reason be ignored.
16ENV{DEVTYPE}=="partition", GOTO="md_ignore_state"
17
757a5d74
N
18# container devices have a metadata version of e.g. 'external:ddf' and
19# never leave state 'inactive'
20ATTR{md/metadata_version}=="external:[A-Za-z]*", ATTR{md/array_state}=="inactive", GOTO="md_ignore_state"
fabf4941 21TEST!="md/array_state", GOTO="md_end"
757a5d74
N
22ATTR{md/array_state}=="|clear|inactive", GOTO="md_end"
23LABEL="md_ignore_state"
24
25IMPORT{program}="/sbin/mdadm --detail --export $tempnode"
67732c39 26ENV{DEVTYPE}=="disk", ENV{MD_NAME}=="?*", SYMLINK+="disk/by-id/md-name-$env{MD_NAME}", OPTIONS+="string_escape=replace"
757a5d74
N
27ENV{DEVTYPE}=="disk", ENV{MD_UUID}=="?*", SYMLINK+="disk/by-id/md-uuid-$env{MD_UUID}"
28ENV{DEVTYPE}=="disk", ENV{MD_DEVNAME}=="?*", SYMLINK+="md/$env{MD_DEVNAME}"
67732c39 29ENV{DEVTYPE}=="partition", ENV{MD_NAME}=="?*", SYMLINK+="disk/by-id/md-name-$env{MD_NAME}-part%n", OPTIONS+="string_escape=replace"
757a5d74
N
30ENV{DEVTYPE}=="partition", ENV{MD_UUID}=="?*", SYMLINK+="disk/by-id/md-uuid-$env{MD_UUID}-part%n"
31ENV{DEVTYPE}=="partition", ENV{MD_DEVNAME}=="*[^0-9]", SYMLINK+="md/$env{MD_DEVNAME}%n"
32ENV{DEVTYPE}=="partition", ENV{MD_DEVNAME}=="*[0-9]", SYMLINK+="md/$env{MD_DEVNAME}p%n"
33
5bac0443 34IMPORT{program}="/sbin/blkid -o udev -p $tempnode"
757a5d74 35OPTIONS+="link_priority=100"
2913d9df 36OPTIONS+="watch"
757a5d74
N
37ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
38ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
39
40LABEL="md_end"