Linux 软raid auto-detect

2024-03-10 10:20
文章标签 linux auto raid detect

本文主要是介绍Linux 软raid auto-detect,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、初探

Boot time assembly of RAID arrays
---------------------------------Tools that manage md devices can be found athttp://www.kernel.org/pub/linux/utils/raid/You can boot with your md device with the following kernel command
lines:for old raid arrays without persistent superblocks::md=<md device no.>,<raid level>,<chunk size factor>,<fault level>,dev0,dev1,...,devnfor raid arrays with persistent superblocks::md=<md device no.>,dev0,dev1,...,devnor, to assemble a partitionable array::md=d<md device no.>,dev0,dev1,...,devn``md device no.``
+++++++++++++++++The number of the md device================= =========
``md device no.`` device
================= =========0		md01		md12		md23		md34		md4
================= =========``raid level``
++++++++++++++level of the RAID array=============== =============
``raid level``  level
=============== =============
-1		linear mode
0		striped mode
=============== =============other modes are only supported with persistent super blocks``chunk size factor``
+++++++++++++++++++++(raid-0 and raid-1 only)Set  the chunk size as 4k << n.``fault level``
+++++++++++++++Totally ignored``dev0`` to ``devn``
++++++++++++++++++++e.g. ``/dev/hda1``, ``/dev/hdc1``, ``/dev/sda1``, ``/dev/sdb1``A possible loadlin line (Harald Hoyer <HarryH@Royal.Net>)  looks like this::e:\loadlin\loadlin e:\zimage root=/dev/md0 md=0,0,4,0,/dev/hdb2,/dev/hdc3 roBoot time autodetection of RAID arrays
--------------------------------------When md is compiled into the kernel (not as module), partitions(分区) of
type 0xfd are scanned and automatically assembled into RAID arrays.
This autodetection may be suppressed(压制) with the kernel parameter
``raid=noautodetect``.  As of kernel 2.6.9, only drives with a type 0
superblock can be autodetected and run at boot time.The kernel parameter ``raid=partitionable`` (or ``raid=part``) means
that all auto-detected arrays are assembled as partitionable(可分区的).Boot time assembly of degraded/dirty arrays
-------------------------------------------If a raid5 or raid6 array is both dirty and degraded, it could have
undetectable data corruption.  This is because the fact that it is
``dirty`` means that the parity cannot be trusted, and the fact that it
is degraded means that some datablocks are missing and cannot reliably
be reconstructed (due to no parity).For this reason, md will normally refuse to start such an array.  This
requires the sysadmin to take action to explicitly start the array
despite possible corruption.  This is normally done with::mdadm --assemble --force ....This option is not really available if the array has the root
filesystem on it.  In order to support this booting from such an
array, md supports a module parameter ``start_dirty_degraded`` which,
when set to 1, bypassed the checks and will allows dirty degraded
arrays to be started.So, to boot with a root filesystem of a dirty degraded raid 5 or 6, use::md-mod.start_dirty_degraded=1

Documentation/admin-guide/md.rst

从上述描述来看,只有分区类型为0xfd且超级块类型为0.0的分区才能被自动探测并组装成raid,那如何修改分区type?

答:fdisk命令可以修改分区Id。

curtis # fdisk /dev/sdbCommand (m for help): m
Command actiona   toggle a bootable flagb   edit bsd disklabelc   toggle the dos compatibility flagd   delete a partitionl   list known partition typesm   print this menun   add a new partitiono   create a new empty DOS partition tablep   print the partition tableq   quit without saving changess   create a new empty Sun disklabelt   change a partition's system id   <-- 这个选项。u   change display/entry unitsv   verify the partition tablew   write table to disk and exitx   extra functionality (experts only)Command (m for help): t
Selected partition 1
Hex code (type L to list codes): fd
Changed system type of partition 1 to fd (Linux raid autodetect)

fdisk默认的磁盘ID是什么呢?

root@raspberrypi:/home/curtis# fdisk -l /dev/sdb
Disk /dev/sdb: 14.84 GiB, 15938355200 bytes, 31129600 sectors
Disk model: Flash Disk
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xcad4ebeaDevice     Boot   Start     End Sectors Size Id Type
/dev/sdb1          2048 2099199 2097152   1G 83 Linux
/dev/sdb2       2099200 4196351 2097152   1G 83 Linux
/dev/sdb3       4196352 8390655 4194304   2G 83 Linux

答:Linux默认的Id为83。

fdisk 创建的逻辑分区lsblk查看分区大小为1K?这是为什么?

sdc      8:32   1  58.6G  0 disk
├─sdc1   8:33   1     1G  0 part
├─sdc2   8:34   1     1G  0 part
├─sdc3   8:35   1     2G  0 part
└─sdc4   8:36   1     1K  0 part

由于历史原因,各个操作系统为共存的需要而约定俗成,一个物理磁盘最多有4个主分区。
比如第一块物理磁盘,它一般会有启动分区部分用来包含系统。其余的可以作其他用途。
它可能最多包含四个主分区:
第一区:主分区(被设为活动者,启动时,此分区被引导
第二区:主分区
第三区:主分区
第四区:主分区
也可能是这样:
第一区: 主分区
第二区: 扩展分区
而扩展分区 又分为 : 逻辑分区1 , 逻辑分区2,逻辑分区3 ,逻辑分区4…
如果仅仅是为了存放数据,也可能是这样:
拓展分区:逻辑分区1 , 逻辑分区2,逻辑分区3 ,逻辑分区4…

第一块物理硬盘中,主分区是必须的,因为要引导系统嘛,这是没有办法的事。
对第二块物理硬盘, 可以有几种方法去使用:

  • 主分区 + 扩展分区(里面分成逻辑分区1,逻辑分区2…)
    此方式下,此处主分区似乎有点不伦不类。当然也是可以当作数据区使用。
  • 仅有一个 主分区,拿来直接当数据区用也是可以的。
  • 完全是扩展分区。(里面分成逻辑分区1,逻辑分区2…)
    要注意: 仅有扩展分区,不进一步划分逻辑分区,是不能拿来做文件系统的,也就是为什么看到分区大小为1K的原因。

https://www.cnblogs.com/gaojian/archive/2012/10/19/2730958.html

也就是说创建拓展分区之后还需要创建逻辑分区,才能被正常使用,lsblk看到的信息只是一个标记而已。

root@raspberrypi:/home/curtis# fdisk /dev/sdcWelcome to fdisk (util-linux 2.36.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Command (m for help): n
All primary partitions are in use.
Adding logical partition 5
First sector (8392704-122909695, default 8392704):
Last sector, +/-sectors or +/-size{K,M,G,T,P} (8392704-122909695, default 122909695): +3GCreated a new partition 5 of type 'Linux' and of size 3 GiB.Command (m for help): n
All primary partitions are in use.
Adding logical partition 6
First sector (14686208-122909695, default 14686208):
Last sector, +/-sectors or +/-size{K,M,G,T,P} (14686208-122909695, default 122909695): +2GCreated a new partition 6 of type 'Linux' and of size 2 GiB.Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.root@raspberrypi:/home/curtis# lsblk /dev/sdc
NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sdc      8:32   1 58.6G  0 disk
├─sdc1   8:33   1    1G  0 part
├─sdc2   8:34   1    1G  0 part
├─sdc3   8:35   1    2G  0 part
├─sdc4   8:36   1    1K  0 part
├─sdc5   8:37   1    3G  0 part
└─sdc6   8:38   1    2G  0 part

磁盘layout类似于:sdc: sdc1 sdc2 sdc3 sdc4 < sdc5 sdc6 >

分完区之后,如果一个个删除分区比较麻烦,有没有一键刷掉所有分区的命令?
wipefs --all /dev/sdx。

DESCRIPTIONwipefs  can  erase  filesystem, raid or partition-table signatures (magic strings) from the specified device to makethe signatures invisible for libblkid.  wipefs does not erase the filesystem itself nor any other data from the  de‐vice.When  used without any options, wipefs lists all visible filesystems and the offsets of their basic signatures.  Thedefault output is subject to change.  So whenever possible, you should avoid using default outputs in your  scripts.Always  explicitly  define  expected columns by using --output columns-list in environments where a stable output isrequired.wipefs calls the BLKRRPART ioctl when it has erased a partition-table signature  to  inform  the  kernel  about  thechange.  The  ioctl  is called as the last step and when all specified signatures from all specified devices are al‐ready erased.  This feature can be used to wipe content on partitions devices as well as partition table on  a  diskdevice, for example by wipefs -a /dev/sdc1 /dev/sdc2 /dev/sdc.Note  that  some filesystems and some partition tables store more magic strings on the device (e.g., FAT, ZFS, GPT).The wipefs command (since v2.31) lists all the offset where a magic strings have been detected.When option -a is used, all magic strings that are visible for libblkid are erased. In this case  the  wipefs  scansthe device again after each modification (erase) until no magic string is found.Note  that  by default wipefs does not erase nested partition tables on non-whole disk devices.  For this the option--force is required.

使用下面命令组建的软raid,内核启动时为什么Scanned设备为0?

mdadm --verbose --create /dev/md0 --raid-devices 2 --level 1 /dev/sdb1 /dev/sdc1 --bitmap internal --metadata=0.9
[   12.547690] md: Waiting for all devices to be available before autodetect
[   12.547839] md: If you don't use raid, use raid=noautodetect
[   12.556435] md: Autodetecting RAID arrays.
[   12.556623] auto detect devices list is empty
[   12.556815] md: Scanned 0 and added 0 devices.
[   12.557332] md: autorun ...
[   12.557575] md: ... autorun DONE.

答:Linux内核会扫描所有磁盘,查找分区为0xfd类型,如果不包含分区类型为0xfd的分区,0xfd类型分区链表为空。

// init/do_mounts_md.c|-  prepare_namespace(void);|- md_run_setup(void);|- autodetect_raid(void);

init/do_mounts_md.c定义了raid自动检测的全局变量。

#ifdef CONFIG_MD_AUTODETECT
static int __initdata raid_noautodetect;
#else
static int __initdata raid_noautodetect=1;
#endif

如果CONFIG_MD_AUTODETECT=y选项在编译时被打开,raid_noautodetect被初始化为0,表示需要自动探测软raid。

static int __init raid_setup(char *str)
{int len, pos;len = strlen(str) + 1;pos = 0;while (pos < len) {char *comma = strchr(str+pos, ',');int wlen;if (comma)wlen = (comma-str)-pos;else	wlen = (len-1)-pos;if (!strncmp(str, "noautodetect", wlen))raid_noautodetect = 1;if (!strncmp(str, "autodetect", wlen))raid_noautodetect = 0;if (strncmp(str, "partitionable", wlen)==0)raid_autopart = 1;if (strncmp(str, "part", wlen)==0)raid_autopart = 1;pos += wlen+1;}return 1;
}

查一查man手册,里面也有一段自动detect的描述,mdadm命令也可以通过ioctl的方式出发自动扫描流程。

       --auto-detectRequest that the kernel starts any auto-detected arrays.  This can only work if md is compiled into the kernel — not if it is a module. Arrays can  be  auto-detected  by the kernel if all the components are in primary MS-DOS partitions with partition type FD, and all use v0.90 metadata. In-kernel autodetect is not recommended for new installations.  Using mdadm to detect and assemble arrays — possibly in an initrd — is  substan‐tially(实质上) more flexible and should be preferred.

二、软raid auto-detect前置条件

1、内核需要将auto-detect内核配置选项打开(CONFIG_MD_AUTODETECT=y)。

2、软raid构建时需要指定metadata的版本为0.9。

3、磁盘分区的类型为0xfd(Linux raid autodetect),可以用fdisk -l查看分区类型。

内核日志探测:

[   10.832687] md: Autodetecting RAID arrays.
[   10.841583] md: Scanned 2 and added 2 devices.
[   10.842251] md: autorun ...
[   10.842819] md: considering sdc1 ...
[   10.843163] md:  adding sdc1 ...
[   10.843163] md:  adding sdb1 ...
[   10.844230] md: created md0
[   10.844906] md: bind<sdb1>
[   10.846130] md: bind<sdc1>
[   10.846956] md: running: <sdc1><sdb1>
[   10.857141] md/raid1:md0: active with 2 out of 2 mirrors
[   10.871776] md0: detected capacity change from 0 to 1073676288
[   10.873053] md: ... autorun DONE.

三、关闭auto-detect

raid_setup函数会根据内核启动参数来设定raid自动探测相关参数,也就是说即使在编译内核时将对应的配置选项打开,也可以通过内核参数将该能力关闭。

需要在内核启动参数添加:

raid=noautodetect

四、通过添加内核参数组建软raid

在组建好软raid之后,需要在内核启动参数添加:

md=0,/dev/vdb,/dev/vdc

这篇关于Linux 软raid auto-detect的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/793937

相关文章

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

Linux_kernel驱动开发11

一、改回nfs方式挂载根文件系统         在产品将要上线之前,需要制作不同类型格式的根文件系统         在产品研发阶段,我们还是需要使用nfs的方式挂载根文件系统         优点:可以直接在上位机中修改文件系统内容,延长EMMC的寿命         【1】重启上位机nfs服务         sudo service nfs-kernel-server resta

【Linux 从基础到进阶】Ansible自动化运维工具使用

Ansible自动化运维工具使用 Ansible 是一款开源的自动化运维工具,采用无代理架构(agentless),基于 SSH 连接进行管理,具有简单易用、灵活强大、可扩展性高等特点。它广泛用于服务器管理、应用部署、配置管理等任务。本文将介绍 Ansible 的安装、基本使用方法及一些实际运维场景中的应用,旨在帮助运维人员快速上手并熟练运用 Ansible。 1. Ansible的核心概念

Linux服务器Java启动脚本

Linux服务器Java启动脚本 1、初版2、优化版本3、常用脚本仓库 本文章介绍了如何在Linux服务器上执行Java并启动jar包, 通常我们会使用nohup直接启动,但是还是需要手动停止然后再次启动, 那如何更优雅的在服务器上启动jar包呢,让我们一起探讨一下吧。 1、初版 第一个版本是常用的做法,直接使用nohup后台启动jar包, 并将日志输出到当前文件夹n

[Linux]:进程(下)

✨✨ 欢迎大家来到贝蒂大讲堂✨✨ 🎈🎈养成好习惯,先赞后看哦~🎈🎈 所属专栏:Linux学习 贝蒂的主页:Betty’s blog 1. 进程终止 1.1 进程退出的场景 进程退出只有以下三种情况: 代码运行完毕,结果正确。代码运行完毕,结果不正确。代码异常终止(进程崩溃)。 1.2 进程退出码 在编程中,我们通常认为main函数是代码的入口,但实际上它只是用户级

【Linux】应用层http协议

一、HTTP协议 1.1 简要介绍一下HTTP        我们在网络的应用层中可以自己定义协议,但是,已经有大佬定义了一些现成的,非常好用的应用层协议,供我们直接使用,HTTP(超文本传输协议)就是其中之一。        在互联网世界中,HTTP(超文本传输协议)是一个至关重要的协议,他定义了客户端(如浏览器)与服务器之间如何进行通信,以交换或者传输超文本(比如HTML文档)。

如何编写Linux PCIe设备驱动器 之二

如何编写Linux PCIe设备驱动器 之二 功能(capability)集功能(capability)APIs通过pci_bus_read_config完成功能存取功能APIs参数pos常量值PCI功能结构 PCI功能IDMSI功能电源功率管理功能 功能(capability)集 功能(capability)APIs int pcie_capability_read_wo