2009-10-27 01:42:07 +03:00
# Copyright (C) 2009 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
2009-08-03 22:44:54 +04:00
# Udev rules for device-mapper devices.
#
# These rules create symlinks in /dev/disk directory.
# Symlinks that depend on probing filesystem type,
# label and uuid are created only if the device is not
# suspended.
2009-10-22 17:11:33 +04:00
# "add" event is processed on coldplug only!
2024-03-07 11:48:49 +03:00
ACTION=="remove", GOTO="dm_end"
2009-11-13 15:33:27 +03:00
ENV{DM_UDEV_RULES_VSN}!="?*", GOTO="dm_end"
ENV{DM_UDEV_DISABLE_DISK_RULES_FLAG}=="1", GOTO="dm_end"
2009-08-03 22:44:54 +04:00
SYMLINK+="disk/by-id/dm-name-$env{DM_NAME}"
ENV{DM_UUID}=="?*", SYMLINK+="disk/by-id/dm-uuid-$env{DM_UUID}"
2024-03-01 17:16:33 +03:00
ENV{.DM_SUSPENDED}=="1", ENV{DM_UDEV_PRIMARY_SOURCE_FLAG}=="1", GOTO="dm_import"
2024-03-02 01:18:26 +03:00
ENV{.DM_NOSCAN}=="1", ENV{DM_UDEV_PRIMARY_SOURCE_FLAG}=="1", GOTO="dm_import"
2024-03-01 17:16:33 +03:00
ENV{.DM_SUSPENDED}=="1", GOTO="dm_end"
2024-03-02 01:18:26 +03:00
ENV{.DM_NOSCAN}=="1", GOTO="dm_watch"
2009-08-03 22:44:54 +04:00
2012-02-20 23:38:40 +04:00
(BLKID_RULE)
2023-02-01 18:28:12 +03:00
GOTO="dm_link"
LABEL="dm_import"
2024-03-01 21:41:41 +03:00
IMPORT{db}="ID_FS_TYPE"
2023-02-01 18:28:12 +03:00
IMPORT{db}="ID_FS_USAGE"
IMPORT{db}="ID_FS_UUID_ENC"
IMPORT{db}="ID_FS_LABEL_ENC"
IMPORT{db}="ID_PART_ENTRY_NAME"
IMPORT{db}="ID_PART_ENTRY_UUID"
IMPORT{db}="ID_PART_ENTRY_SCHEME"
IMPORT{db}="ID_PART_GPT_AUTO_ROOT"
2022-01-28 16:42:29 +03:00
LABEL="dm_link"
2009-10-22 17:11:33 +04:00
ENV{DM_UDEV_LOW_PRIORITY_FLAG}=="1", OPTIONS="link_priority=-100"
2009-08-03 22:44:54 +04:00
ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
2024-03-25 12:16:04 +03:00
ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
2017-07-10 13:35:53 +03:00
ENV{ID_PART_ENTRY_UUID}=="?*", SYMLINK+="disk/by-partuuid/$env{ID_PART_ENTRY_UUID}"
ENV{ID_PART_ENTRY_SCHEME}=="gpt", ENV{ID_PART_ENTRY_NAME}=="?*", SYMLINK+="disk/by-partlabel/$env{ID_PART_ENTRY_NAME}"
ENV{ID_PART_ENTRY_SCHEME}=="gpt", ENV{ID_PART_GPT_AUTO_ROOT}=="1", SYMLINK+="gpt-auto-root"
2009-08-03 22:44:54 +04:00
2012-02-15 18:50:33 +04:00
# Add inotify watch to track changes on this device.
2012-02-15 19:10:31 +04:00
# Using the watch rule is not optimal - it generates a lot of spurious
2012-02-15 18:50:33 +04:00
# and useless events whenever the device opened for read-write is closed.
# The best would be to generete the event directly in the tool changing
# relevant information so only relevant events will be processed
# (like creating a filesystem, changing filesystem label etc.).
#
# But let's use this until we have something better...
2013-10-08 15:33:28 +04:00
LABEL="dm_watch"
2012-02-15 18:50:33 +04:00
OPTIONS+="watch"
2009-08-03 22:44:54 +04:00
LABEL="dm_end"