forked from openshift/os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openshift#1312 from dustymabe/dusty-413
[release-4.13] OCPBUGS-14847, OCPBUGS-11768: overlay.d: move 30gcp-udev-rules overlay to RHCOS
- Loading branch information
Showing
7 changed files
with
385 additions
and
3 deletions.
There are no files selected for viewing
Submodule fedora-coreos-config
updated
12 files
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Config file for overriding permission bits on overlay files/dirs | ||
# Format: =<file mode in decimal> <absolute path to a file or directory> |
15 changes: 15 additions & 0 deletions
15
overlay.d/30gcp-udev-rules/usr/lib/dracut/modules.d/30gcp-udev-rules/module-setup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/bash | ||
# ATTENTION: This is a copy from https://github.com/GoogleCloudPlatform/guest-configs/blob/37fe937011084e54f4358668bfa151a7184d4555/src/lib/dracut/modules.d/30gcp-udev-rules/module-setup.sh | ||
# Install 65-gce-disk-naming.rules and | ||
# google_nvme_id into the initramfs | ||
|
||
# called by dracut | ||
install() { | ||
inst_multiple nvme grep sed | ||
inst_simple /usr/lib/udev/google_nvme_id | ||
inst_simple /usr/lib/udev/rules.d/65-gce-disk-naming.rules | ||
} | ||
|
||
installkernel() { | ||
instmods nvme | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,305 @@ | ||
#!/usr/bin/bash | ||
# ATTENTION: This is a copy from https://github.com/GoogleCloudPlatform/guest-configs/blob/37fe937011084e54f4358668bfa151a7184d4555/src/lib/udev/google_nvme_id | ||
# Copyright 2020 Google Inc. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Used to generate symlinks for NVMe devices (both local SSD and | ||
# persistent disk) using the disk names reported by the metadata server. | ||
|
||
# Locations of the script's dependencies | ||
readonly nvme_cli_bin=/usr/sbin/nvme | ||
|
||
# Bash regex to parse device paths and controller identification | ||
readonly PD_CONTROLLER_REGEX="nvme_card-pd" | ||
readonly SSD_CONTROLLER_REGEX="nvme_card[0-9]*" | ||
readonly CONTROLLER_NUMBER_REGEX="nvme_card([[:digit:]]+)" | ||
readonly NAMESPACE_NUMBER_REGEX="/dev/nvme[[:digit:]]+n([[:digit:]]+).*" | ||
readonly PARTITION_NUMBER_REGEX="/dev/nvme[[:digit:]]+n[[:digit:]]+p([[:digit:]]+)" | ||
readonly PD_NVME_REGEX="sn[[:space:]]+:[[:space]]+nvme_card-pd" | ||
|
||
# Globals used to generate the symlinks for a NVMe disk. These are populated | ||
# by the identify_pd_disk function and exported for consumption by udev rules. | ||
ID_SERIAL='' | ||
ID_SERIAL_SHORT='' | ||
|
||
####################################### | ||
# Helper function to log an error message to stderr. | ||
# Globals: | ||
# None | ||
# Arguments: | ||
# String to print as the log message | ||
# Outputs: | ||
# Writes error to STDERR | ||
####################################### | ||
function err() { | ||
echo "[$(date +'%Y-%m-%dT%H:%M:%S%z')]: $*" >&2 | ||
} | ||
|
||
####################################### | ||
# Retrieves the device name for an NVMe namespace using nvme-cli. | ||
# Globals: | ||
# Uses nvme_cli_bin | ||
# Arguments: | ||
# The path to the nvme namespace (/dev/nvme0n?) | ||
# Outputs: | ||
# The device name parsed from the JSON in the vendor ext of the ns-id command. | ||
# Returns: | ||
# 0 if the device name for the namespace could be retrieved, 1 otherwise | ||
####################################### | ||
function get_namespace_device_name() { | ||
local nvme_json | ||
nvme_json="$("$nvme_cli_bin" id-ns -b "$1" | cut -b 384-)" | ||
if [[ $? -ne 0 ]]; then | ||
return 1 | ||
fi | ||
|
||
if [[ -z "$nvme_json" ]]; then | ||
err "NVMe Vendor Extension disk information not present" | ||
return 1 | ||
fi | ||
|
||
local device_name | ||
device_name="$(echo "$nvme_json" | grep device_name | sed -e 's/.*"device_name":[ \t]*"\([a-zA-Z0-9_-]\+\)".*/\1/')" | ||
|
||
# Error if our device name is empty | ||
if [[ -z "$device_name" ]]; then | ||
err "Empty name" | ||
return 1 | ||
fi | ||
|
||
echo "$device_name" | ||
return 0 | ||
} | ||
|
||
####################################### | ||
# Retrieves the nsid for an NVMe namespace | ||
# Globals: | ||
# None | ||
# Arguments: | ||
# The path to the nvme namespace (/dev/nvme0n*) | ||
# Outputs: | ||
# The namespace number/id | ||
# Returns: | ||
# 0 if the namespace id could be retrieved, 1 otherwise | ||
####################################### | ||
function get_namespace_number() { | ||
local dev_path="$1" | ||
local namespace_number | ||
if [[ "$dev_path" =~ $NAMESPACE_NUMBER_REGEX ]]; then | ||
namespace_number="${BASH_REMATCH[1]}" | ||
else | ||
return 1 | ||
fi | ||
|
||
echo "$namespace_number" | ||
return 0 | ||
} | ||
|
||
####################################### | ||
# Retrieves the partition number for a device path if it exists | ||
# Globals: | ||
# None | ||
# Arguments: | ||
# The path to the device partition (/dev/nvme0n*p*) | ||
# Outputs: | ||
# The value after 'p' in the device path, or an empty string if the path has | ||
# no partition. | ||
####################################### | ||
function get_partition_number() { | ||
local dev_path="$1" | ||
local partition_number | ||
if [[ "$dev_path" =~ $PARTITION_NUMBER_REGEX ]]; then | ||
partition_number="${BASH_REMATCH[1]}" | ||
echo "$partition_number" | ||
else | ||
echo '' | ||
fi | ||
return 0 | ||
} | ||
|
||
####################################### | ||
# Retrieves the controller number from the device model if it exists | ||
# Globals: | ||
# None | ||
# Arguments: | ||
# The NVMe device model (nvme_card or nvme_card1/2/3/...) | ||
# Outputs: | ||
# The controller id/number | ||
####################################### | ||
function get_controller_number() { | ||
local dev_model="$1" | ||
local controller_number | ||
if [[ "$dev_model" =~ $CONTROLLER_NUMBER_REGEX ]]; then | ||
controller_number="${BASH_REMATCH[1]}" | ||
echo "$controller_number" | ||
else | ||
# if it's 'nvme_card', echo 0. This is for backward compatibility. | ||
echo '0' | ||
fi | ||
return 0 | ||
} | ||
|
||
####################################### | ||
# Generates a symlink for a PD-NVMe device using the metadata's disk name. | ||
# Primarily used for testing but can be used if the script is directly invoked. | ||
# Globals: | ||
# Uses ID_SERIAL_SHORT (can be populated by identify_pd_disk) | ||
# Arguments: | ||
# The device path for the disk | ||
####################################### | ||
function gen_symlink() { | ||
local dev_path="$1" | ||
local partition_number="$(get_partition_number "$dev_path")" | ||
|
||
if [[ -n "$partition_number" ]]; then | ||
ln -s "$dev_path" /dev/disk/by-id/google-"$ID_SERIAL_SHORT"-part"$partition_number" > /dev/null 2>&1 | ||
else | ||
ln -s "$dev_path" /dev/disk/by-id/google-"$ID_SERIAL_SHORT" > /dev/null 2>&1 | ||
fi | ||
|
||
return 0 | ||
} | ||
|
||
####################################### | ||
# Populates the ID_* global variables with a disk's device name and namespace | ||
# Globals: | ||
# Populates ID_SERIAL_SHORT, and ID_SERIAL | ||
# Arguments: | ||
# The device path for the disk | ||
# Returns: | ||
# 0 on success and 1 if an error occurs | ||
####################################### | ||
function identify_pd_disk() { | ||
local dev_path="$1" | ||
local dev_name | ||
dev_name="$(get_namespace_device_name "$dev_path")" | ||
if [[ $? -ne 0 ]]; then | ||
return 1 | ||
fi | ||
|
||
ID_SERIAL_SHORT="$dev_name" | ||
ID_SERIAL="Google_PersistentDisk_${ID_SERIAL_SHORT}" | ||
return 0 | ||
} | ||
|
||
####################################### | ||
# Populates the ID_* global variables with a disk's device name and namespace | ||
# Globals: | ||
# Populates ID_SERIAL_SHORT, and ID_SERIAL | ||
# Arguments: | ||
# The device path for the disk | ||
# Returns: | ||
# 0 on success and 1 if an error occurs | ||
####################################### | ||
function identify_local_ssd_disk() { | ||
local dev_model="$1" | ||
local dev_path="$2" | ||
local controller_number | ||
controller_number="$(get_controller_number "$dev_model")" | ||
if [[ $? -ne 0 ]]; then | ||
return 1 | ||
fi | ||
|
||
local namespace_number | ||
namespace_number="$(get_namespace_number "$dev_path")" | ||
if [[ $? -ne 0 ]]; then | ||
return 1 | ||
fi | ||
|
||
ID_SERIAL_SHORT="local-nvme-ssd-$(($controller_number+$namespace_number-1))" | ||
ID_SERIAL="Google_EphemeralDisk_${ID_SERIAL_SHORT}" | ||
return 0 | ||
} | ||
|
||
function print_help_message() { | ||
echo "Usage: google_nvme_id [-s] [-h] -d device_path" | ||
echo " -d <device_path> (Required): Specifies the path to generate a name" | ||
echo " for. This needs to be a path to an nvme device or namespace" | ||
echo " -s: Create symbolic link for the disk under /dev/disk/by-id." | ||
echo " Otherwise, the disk name will be printed to STDOUT" | ||
echo " -h: Print this help message" | ||
} | ||
|
||
function main() { | ||
local opt_gen_symlink='false' | ||
local device_path='' | ||
|
||
while getopts :d:sh flag; do | ||
case "$flag" in | ||
d) device_path="$OPTARG";; | ||
s) opt_gen_symlink='true';; | ||
h) print_help_message | ||
return 0 | ||
;; | ||
:) echo "Invalid option: ${OPTARG} requires an argument" 1>&2 | ||
return 1 | ||
;; | ||
*) return 1 | ||
esac | ||
done | ||
|
||
if [[ -z "$device_path" ]]; then | ||
echo "Device path (-d) argument required. Use -h for full usage." 1>&2 | ||
exit 1 | ||
fi | ||
|
||
# Ensure the nvme-cli command is installed | ||
command -v "$nvme_cli_bin" > /dev/null 2>&1 | ||
if [[ $? -ne 0 ]]; then | ||
err "The nvme utility (/usr/sbin/nvme) was not found. You may need to run \ | ||
with sudo or install nvme-cli." | ||
return 1 | ||
fi | ||
|
||
# Ensure the passed device is actually an NVMe device | ||
"$nvme_cli_bin" id-ctrl "$device_path" &>/dev/null | ||
if [[ $? -ne 0 ]]; then | ||
err "Passed device was not an NVMe device. (You may need to run this \ | ||
script as root/with sudo)." | ||
return 1 | ||
fi | ||
|
||
# Detect the type of attached nvme device | ||
local controller_id | ||
controller_id=$("$nvme_cli_bin" id-ctrl "$device_path") | ||
if [[ "$controller_id" =~ $PD_CONTROLLER_REGEX ]] ; then | ||
# Fill the global variables for the id command for the given disk type | ||
# Error messages will be printed closer to error, no need to reprint here | ||
identify_pd_disk "$device_path" | ||
if [[ $? -ne 0 ]]; then | ||
return $? | ||
fi | ||
elif [[ "$controller_id" =~ $SSD_CONTROLLER_REGEX ]] ; then | ||
identify_local_ssd_disk "$controller_id" "$device_path" | ||
if [[ $? -ne 0 ]]; then | ||
return $? | ||
fi | ||
else | ||
err "Device is not a NVMe device" | ||
return 1 | ||
fi | ||
|
||
# Gen symlinks or print out the globals set by the identify command | ||
if [[ "$opt_gen_symlink" == 'true' ]]; then | ||
gen_symlink "$device_path" | ||
else | ||
# These will be consumed by udev | ||
echo "ID_SERIAL_SHORT=${ID_SERIAL_SHORT}" | ||
echo "ID_SERIAL=${ID_SERIAL}" | ||
fi | ||
|
||
return $? | ||
|
||
} | ||
main "$@" |
45 changes: 45 additions & 0 deletions
45
overlay.d/30gcp-udev-rules/usr/lib/udev/rules.d/65-gce-disk-naming.rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# ATTENTION: This is a copy from https://github.com/GoogleCloudPlatform/guest-configs/blob/37fe937011084e54f4358668bfa151a7184d4555/src/lib/udev/rules.d/65-gce-disk-naming.rules | ||
# Copyright 2016 Google Inc. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Name the attached disks as the specified by deviceName. | ||
|
||
ACTION!="add|change", GOTO="gce_disk_naming_end" | ||
SUBSYSTEM!="block", GOTO="gce_disk_naming_end" | ||
|
||
# SCSI naming | ||
KERNEL=="sd*|vd*", IMPORT{program}="scsi_id --export --whitelisted -d $tempnode" | ||
|
||
# Don't symlink if it's not our devices. This is a fail-safe against these rules | ||
# running outside of GCP. | ||
KERNEL=="sd*|vd*", ENV{ID_VENDOR}!="Google", GOTO="gce_disk_naming_end" | ||
KERNEL=="nvme*", ATTRS{model}!="nvme_card*", GOTO="gce_disk_naming_end" | ||
|
||
# NVME Local SSD naming | ||
KERNEL=="nvme*n*", ATTRS{model}=="nvme_card", PROGRAM="/bin/sh -c 'nsid=$$(echo %k|sed -re s/nvme[0-9]+n\([0-9]+\).\*/\\1/); echo $$((nsid-1))'", ENV{ID_SERIAL_SHORT}="local-nvme-ssd-%c" | ||
KERNEL=="nvme*", ATTRS{model}=="nvme_card", ENV{ID_SERIAL}="Google_EphemeralDisk_$env{ID_SERIAL_SHORT}" | ||
# Support for local SSD multi-controller | ||
KERNEL=="nvme*n*", ATTRS{model}=="nvme_card[0-9]*", IMPORT{program}="google_nvme_id -d $tempnode" | ||
|
||
# NVME Persistent Disk IO Timeout | ||
KERNEL=="nvme*n*", ENV{DEVTYPE}=="disk", ATTRS{model}=="nvme_card-pd", ATTR{queue/io_timeout}="4294967295" | ||
|
||
# NVME Persistent Disk Naming | ||
KERNEL=="nvme*n*", ATTRS{model}=="nvme_card-pd", IMPORT{program}="google_nvme_id -d $tempnode" | ||
|
||
# Symlinks | ||
KERNEL=="sd*|vd*|nvme*", ENV{DEVTYPE}=="disk", SYMLINK+="disk/by-id/google-$env{ID_SERIAL_SHORT}" | ||
KERNEL=="sd*|vd*|nvme*", ENV{DEVTYPE}=="partition", SYMLINK+="disk/by-id/google-$env{ID_SERIAL_SHORT}-part%n" | ||
|
||
LABEL="gce_disk_naming_end" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters