在Linux平臺找出某個目錄下建立時間最早的檔案,測試驗證指令碼結果是否準確的過程中發現一個很有意思的現象,stat命令在一些平臺下Birth欄位有值,而在一些平臺則為空值,如下所示:
RHEL 8.7下, XFS檔案系統
[mysql@mysqlu02 ~]$ more /etc/redhat-release
Red Hat Enterprise Linux release 8.7 (Ootpa)
[mysql@mysqlu02 ~]$ touch test.txt
[mysql@mysqlu02 ~]$ stat test.txt
File: test.txt
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd05h/64773d Inode: 144 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 801/ mysql) Gid: ( 800/ mysql)
Access: 2023-05-06 17:09:44.428050549 +0800
Modify: 2023-05-06 17:09:44.428050549 +0800
Change: 2023-05-06 17:09:44.428050549 +0800
Birth: 2023-05-06 17:09:44.428050549 +0800
RHEL 7.9 XFS檔案系統
[oracle@KerryDB ~]$ more /etc/redhat-release
Red Hat Enterprise Linux Server release 7.9 (Maipo)
[oracle@KerryDB ~]$ touch test.txt
[oracle@KerryDB ~]$ stat test.txt
File: ‘test.txt’
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd03h/64771d Inode: 4238838 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 700/ oracle) Gid: ( 600/oinstall)
Access: 2023-05-06 17:03:42.964517675 +0800
Modify: 2023-05-06 17:03:42.964517675 +0800
Change: 2023-05-06 17:03:42.964517675 +0800
Birth: -
[oracle@KerryDB ~]$
stat命令的Birth欄位表示檔案的建立時間,該屬性是ext4的新功能(當然也適用於xfs檔案系統),也稱為crtime或btime,但是當前兩個測試環境的檔案系統為xfs,之前也在xfs檔案系統中測試過,發現xfs不支援creation time. 但是從xfs v5開始,xfs已經支援creation time,檔案[1]中已有闡述,如下所示:
/* version 5 filesystem (inode version 3) fields start here */
__le32 di_crc;
__be64 di_changecount;
__be64 di_lsn;
__be64 di_flags2;
__be32 di_cowextsize;
__u8 di_pad2[12];
xfs_timestamp_t di_crtime;
__be64 di_ino;
uuid_t di_uuid;
};
*di_crtime*::
Specifies the time when this inode was created.
但是上面這個差異現象,還是讓我有點好奇,因為兩個測試環境對應的xfs版本都是v5,如下所示。
KerryDB這臺機器的xfs版本資訊:
Oracle使用者:
$ uname -r
3.10.0-1160.80.1.el7.x86_64
$ dmesg | grep -iE 'xfs.*\s+mounting' | head -1
[ 4.041026] XFS (dm-0): Mounting V5 Filesystem
root使用者:
# xfs_db -r /dev/mapper/vg00-home
xfs_db> version
versionnum [0xb4b5+0x18a] = V5,NLINK,DIRV2,ATTR,ALIGN,LOGV2,EXTFLG,MOREBITS,ATTR2,LAZYSBCOUNT,PROJID32BIT,CRC,FTYPE
xfs_db>
mysqlu02這臺機器的xfs版本資訊:
mysql使用者:
$ dmesg | grep -iE 'xfs.*\s+mounting' | head -1
[ 7.654324] XFS (dm-0): Mounting V5 Filesystem
root使用者:
# xfs_db -r /dev/mapper/vg00-home
xfs_db> version
versionnum [0xb4b5+0x18a] = V5,NLINK,DIRV2,ATTR,ALIGN,LOGV2,EXTFLG,MOREBITS,ATTR2,LAZYSBCOUNT,PROJID32BIT,CRC,FTYPE,FINOBT,SPARSE_INODES,REFLINK
xfs_db>
那麼到底是什麼原因導致。Google搜尋了相關資料,原來,如果stat命令檢視xfs檔案系統的檔案時,如果要Birth欄位不顯示空置,必須滿足幾個條件,一個是xfs的版本為v5,另外,對作業系統核心版本也有要求(如下所示)
stat 「now prints file creation time when supported by the file system, on GNU Linux systems with glibc >= 2.28 and kernel >= 4.11.」
KerryDB這臺伺服器核心資訊如下所示
$ uname -r
3.10.0-1160.80.1.el7.x86_64
mysqlu02這臺伺服器的核心資訊如下所示:
$ uname -r
4.18.0-425.3.1.el8.x86_64
如上所示,stat命令Birth欄位為空置的作業系統核心版本為3.10.0,不滿足條件kernerl >=4.11 所以stat命令顯示空值。
1: https://git.kernel.org/pub/scm/fs/xfs/xfs-documentation.git/tree/design/XFS_Filesystem_Structure/ondisk_inode.asciidoc