क्या कोई कमांड है जो किसी भी फाइल के शुरुआती और अंतिम ब्लॉक को आउटपुट करेगा?
क्या कोई कमांड है जो किसी भी फाइल के शुरुआती और अंतिम ब्लॉक को आउटपुट करेगा?
जवाबों:
मुझे 100% यकीन नहीं है कि यह वही है जो आप ढूंढ रहे हैं, लेकिन मेरा मानना है कि आप इसे कमांड का उपयोग करके कर सकते हैं hdparm
, विशेष रूप से इसके --fibmap
स्विच के साथ ।
अंश
--fibmap
When used, this must be the only option given. It requires a
file path as a parameter, and will print out a list of the block
extents (sector ranges) occupied by that file on disk. Sector
numbers are given as absolute LBA numbers, referenced from sector
0 of the physical device rather than from the partition or
filesystem. This information can then be used for a variety of
purposes, such as examining the degree of fragmenation of larger
files, or determining appropriate sectors to deliberately corrupt
during fault-injection testing procedures.
This option uses the new FIEMAP (file extent map) ioctl() when
available, and falls back to the older FIBMAP (file block
map) ioctl() otherwise. Note that FIBMAP suffers from a 32-bit
block-number interface, and thus not work beyond 8TB or 16TB.
FIBMAP is also very slow, and does not deal well with
preallocated uncommitted extents in ext4/xfs filesystems, unless a
sync() is done before using this option.
कहें कि हमारे पास एक नमूना फ़ाइल है।
$ echo "this is a test file" > afile
अब जब हम दौड़ते हैं hdparm
।
$ sudo hdparm --fibmap afile
afile:
filesystem blocksize 4096, begins at LBA 0; assuming 512 byte sectors.
byte_offset begin_LBA end_LBA sectors
0 282439184 282439191 8
फ़ाइल की शुरुआत और समाप्ति ब्लॉकों का पता लगाने के लिए एक और अच्छा तरीका है filefrag
। वांछित आउटपुट प्राप्त करने के लिए आपको उपयुक्त स्विच का उपयोग करना होगा। इस टूल का एक पहलू यह hdparm
है कि कोई भी उपयोगकर्ता इसे चला सकता है, इसलिए sudo
इसकी आवश्यकता नहीं है। आपको -b512
स्विच का उपयोग करने की आवश्यकता होगी ताकि 512 बाइट ब्लॉक में आउटपुट प्रदर्शित हों। साथ ही हमें filefrag
क्रिया को बताने की आवश्यकता है ।
$ filefrag -b512 -v afile
Filesystem type is: ef53
File size of afile is 20 (8 block of 512 bytes)
ext: logical_offset: physical_offset: length: expected: flags:
0: 0.. 7: 282439184.. 282439191: 8: eof
afile: 1 extent found
एक फ़ाइल LBA पाने के लिए एक तीसरी विधि का उपयोग करना है debugfs
। इस पद्धति के लिए थोड़ा गणित की आवश्यकता होगी, लेकिन मैंने यह दिखाना महत्वपूर्ण समझा कि debugfs
एलबीए द्वारा बताए गए विलुप्त होने वाले मूल्य से कैसे परिवर्तित किया जा सकता है, जो कि उत्सुक हो सकते हैं।
तो चलिए फाइल के इनोड से शुरू करते हैं।
$ ls -i afile
6560281 afile
नोट: हम फ़ाइल के नाम का भी उपयोग कर सकते हैं, debugfs
लेकिन इस प्रदर्शन के लिए मैं इनकोड का उपयोग करने जा रहा हूं।
अब आइए हमारे इनोड के बारे में stat
जानकारी प्राप्त करते हैं debugfs
।
$ sudo debugfs -R "stat <6560281>" /dev/mapper/fedora_greeneggs-home
debugfs 1.42.7 (21-Jan-2013)
Inode: 6560281 Type: regular Mode: 0664 Flags: 0x80000
Generation: 1999478298 Version: 0x00000000:00000001
User: 1000 Group: 1000 Size: 20
File ACL: 0 Directory ACL: 0
Links: 1 Blockcount: 8
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x52be10c3:a640e994 -- Fri Dec 27 18:44:03 2013
atime: 0x52bff8a1:a9f08020 -- Sun Dec 29 05:25:37 2013
mtime: 0x52be0fe7:18a2f344 -- Fri Dec 27 18:40:23 2013
crtime: 0x52be0dd8:64394b00 -- Fri Dec 27 18:31:36 2013
Size of extra inode fields: 28
Extended attributes stored in inode body:
selinux = "unconfined_u:object_r:user_home_t:s0\000" (37)
EXTENTS:
(0):35304898
महत्वपूर्ण जानकारी विस्तार अनुभाग में है। ये वास्तव में फाइल सिस्टम ब्लॉक हैं जो इस इनोड द्वारा उपयोग किए जा रहे हैं। हमें बस उन्हें LBA में बदलने की आवश्यकता है। हम इसे निम्नलिखित समीकरण के माध्यम से कर सकते हैं।
नोट: यह मानते हुए कि हमारा फाइलसिस्टम 4k ब्लॉक आकार का उपयोग करता है और अंतर्निहित हार्डवेयर 512 बाइट इकाइयों का उपयोग करता है, हमें एक्सटेंस को 8 से गुणा करना होगा।
beginning LBA = (BEGIN EXTENT) * 8
ending LBA = (((ENDING EXTENT) + 1) * 8) - 1
इसलिए हमारे उदाहरण में हमारी शुरुआत और समाप्ति सीमा एक ही है, क्योंकि हमारी फ़ाइल एक सीमा के भीतर फिट होती है।
beginning LBA = 35304898 * 8 = 282439184
ending LBA = ((35304898 + 1) * 8) - 1 = 282439191
तो हमारा LBA 282439184..282439191 है।
filefrag
।
debugfs
।
filefrag
1024 और 2048 के उपलब्ध ब्लॉक्स के साथ कोशिश की .. debugfs
एक बड़ी फ़ाइल के साथ : 0 - 12187 .. मैं अपना समय लूंगा और समझूंगा .. यह एक बहुत बड़ी मदद है, धन्यवाद ...
(ध्यान दें कि hdparm --fibmap
पूरे डिस्क के सापेक्ष है, विभाजन या जो भी अन्य ब्लॉकदेव एफएस नहीं रखता है। उसे रूट की भी आवश्यकता होती है।)
filefrag -e
अच्छी तरह से काम करता है, और सामान्य और कुशल FIEMAP
ioctl का उपयोग करता है , इसलिए इसे बहुत अधिक किसी भी फाइल सिस्टम पर काम करना चाहिए (अक्सर-अजीब बीटीआरएफएस, यहां तक कि बीटीआरएफएस-संकुचित फ़ाइलों के लिए भी)। यह FIEMAP समर्थन के बिना फाइलसिस्टम / गुठली के लिए वापस FIBMAP पर गिर जाएगा।
$ filefrag xpsp3.vdi # some old sparse disk image I had lying around
xpsp3.vdi: 110 extents found
$ filefrag -e xpsp3.vdi
Filesystem type is: 58465342
File size of xpsp3.vdi is 5368730112 (1310726 blocks of 4096 bytes)
ext: logical_offset: physical_offset: length: expected: flags:
0: 0.. 5: 1322629241..1322629246: 6:
1: 13.. 13: 1322620799..1322620799: 1: 1322629247:
2: 15.. 47: 1323459271..1323459303: 33: 1322620800:
...
160: 899498.. 915839: 1325792977..1325809318: 16342: 1325725438:
161: 1307294.. 1307391: 1323938199..1323938296: 98: 1325809319: last
xpsp3.vdi: 110 extents found
यदि आप एक्सएफ़एस का उपयोग कर रहे हैं, तो xfs_bmap
इसमें अच्छे आउटपुट हैं: यह आपको दिखाता है कि जहां छेद हैं, वहीं filefrag
बस बाद के क्षेत्र में शुरू होने वाली अगली सीमा है। यह 512B ब्लॉक का उपयोग करता है, न कि फाइलसिस्टम को वास्तव में जो भी ब्लॉक करता है। (आमतौर पर लिनक्स पर 4k)। यह आपको दिखाता है कि प्रत्येक सीमा किस आवंटन-समूह में है, और यह RAID स्ट्रिप सीमाओं पर कैसे संरेखित है।
$ xfs_bmap -vvpl xpsp3.vdi # the extra -v prints a key to the flags
xpsp3.vdi:
EXT: FILE-OFFSET BLOCK-RANGE AG AG-OFFSET TOTAL FLAGS
0: [0..47]: 10581033928..10581033975 13 (83912..83959) 48 01111
1: [48..103]: hole 56
2: [104..111]: 10580966392..10580966399 13 (16376..16383) 8 01010
3: [112..119]: hole 8
...
322: [10458352..10459135]: 10591505592..10591506375 13 (10555576..10556359) 784 01111
323: [10459136..10485807]: hole 26672
FLAG Values: # this part is only here with -vv
010000 Unwritten preallocated extent
001000 Doesn't begin on stripe unit
000100 Doesn't end on stripe unit
000010 Doesn't begin on stripe width
000001 Doesn't end on stripe width
-l
जब -v
उपयोग किया जाता है तो बेमानी है, लेकिन किसी कारण से मैं हमेशा टाइप करता हूं -vpl
। -pl
अधिक कॉम्पैक्ट आउटपुट है।
filefrag
और xfs_bmap
आपको विलुप्त होने का उपदेश देते हैं।$ fallocate --length $((1024*1024*8)) prealloced_file
$ filefrag -e prealloced_file
Filesystem type is: 58465342
File size of prealloced_file is 8388608 (2048 blocks of 4096 bytes)
ext: logical_offset: physical_offset: length: expected: flags:
0: 0.. 2047: 1325371648..1325373695: 2048: last,unwritten,eof
prealloced_file: 1 extent found
$ xfs_bmap -vvpl prealloced_file
prealloced_file:
EXT: FILE-OFFSET BLOCK-RANGE AG AG-OFFSET TOTAL FLAGS
0: [0..16383]: 10602973184..10602989567 13 (22023168..22039551) 16384 10010
FLAG Values:
010000 Unwritten preallocated extent
001000 Doesn't begin on stripe unit
000100 Doesn't end on stripe unit
000010 Doesn't begin on stripe width
000001 Doesn't end on stripe width
$ dd if=/dev/zero of=prealloced_file conv=notrunc bs=4k count=10 seek=10000
40960 bytes (41 kB) copied, 0.000335111 s, 122 MB/s
$ xfs_bmap -vpl prealloced_file
prealloced_file:
EXT: FILE-OFFSET BLOCK-RANGE AG AG-OFFSET TOTAL FLAGS
0: [0..16383]: 10602973184..10602989567 13 (22023168..22039551) 16384 10010
1: [16384..79999]: hole 63616
2: [80000..80895]: 10603013120..10603014015 13 (22063104..22063999) 896 00111
# oops, wrote past EOF and extended the file, instead of in the middle of the preallocated extent
$ dd if=/dev/zero of=prealloced_file conv=notrunc bs=4k count=10 seek=100
40960 bytes (41 kB) copied, 0.000212986 s, 192 MB/s
$ xfs_bmap -vpl prealloced_file
prealloced_file:
EXT: FILE-OFFSET BLOCK-RANGE AG AG-OFFSET TOTAL FLAGS
0: [0..16383]: 10602973184..10602989567 13 (22023168..22039551) 16384 10010
1: [16384..79999]: hole 63616
2: [80000..80895]: 10603013120..10603014015 13 (22063104..22063999) 896 00111
# If you check *right away*, XFS's delayed allocation hasn't happened yet.
# FIEMAP on xfs only reflects allocations, which lag behind completed writes. fsync first if you need it, IIRC.
$ xfs_bmap -vpl prealloced_file
prealloced_file:
EXT: FILE-OFFSET BLOCK-RANGE AG AG-OFFSET TOTAL FLAGS
0: [0..799]: 10602973184..10602973983 13 (22023168..22023967) 800 10111
1: [800..879]: 10602973984..10602974063 13 (22023968..22024047) 80 01111
2: [880..16383]: 10602974064..10602989567 13 (22024048..22039551) 15504 11010
3: [16384..79999]: hole 63616
4: [80000..80895]: 10603013120..10603014015 13 (22063104..22063999) 896 00111
$ filefrag -e prealloced_file
Filesystem type is: 58465342
File size of prealloced_file is 41000960 (10010 blocks of 4096 bytes)
ext: logical_offset: physical_offset: length: expected: flags:
0: 0.. 99: 1325371648..1325371747: 100: unwritten
1: 100.. 109: 1325371748..1325371757: 10:
2: 110.. 2047: 1325371758..1325373695: 1938: unwritten
3: 10000.. 10111: 1325376640..1325376751: 112: 1325373696: last,eof
prealloced_file: 2 extents found
hdparm --fibmap
केवल तभी उपयोगी है जब आप संपूर्ण हार्ड ड्राइव के सापेक्ष एक सेक्टर नंबर चाहते हैं , न कि विभाजन के भीतर फाइल सिस्टम चालू है। यह सॉफ्टवेयर के शीर्ष पर काम नहीं करता है RAID (या संभवतः फ़ाइल सिस्टम और हार्ड ड्राइव के बीच कुछ और)। इसके लिए रूट की भी आवश्यकता होती है। विकल्प के नाम के बावजूद, यह वास्तव में FIEMAP
उपलब्ध होने पर उपयोग करता है (नया हद-नक्शा ioctl, पुराना धीमा ब्लॉक-नक्शा ioctl नहीं)।
# hdparm --fibmap ..../xpsp3.vdi
Unable to determine start offset LBA for device, aborting.
इसलिए, किसी दिए गए फ़ाइल के लिए, आप जानना चाहते हैं कि कौन सी डिस्क ब्लॉक संख्या में उस फ़ाइल का प्रारंभ और अंत शामिल है।
debugfs (8) ext2 / 3/4 FSes के लिए आशाजनक लग रहा है
स्टेट (1), ls -i, lsof (8) इनोड नंबर प्रदान करता है, लेकिन डिस्क ब्लॉक के बारे में और अधिक नहीं।
हेड / टेल - बाइट्स = 1024 फ़ाइल सामग्री के लिए उपयोगी है, लेकिन डिस्क ब्लॉक नहीं।
dd (1) वह होगा जो आप ब्लॉक सामग्री का निरीक्षण करना चाहते हैं - साक = और स्किप = मापदंडों के बीच अंतर के प्रति सतर्क रहें, और = / dev / ... से बचें जब तक कि आप वास्तव में आउटपुट फ़ाइल डिवाइस नहीं बनना चाहते। ।
hdparm --fibmap
एक फ़ाइल में रहने वाले ब्लॉक को सूचीबद्ध करेगा। ध्यान दें कि वे सन्निहित नहीं हो सकते हैं, इसलिए "प्रारंभ और अंत" का कोई मतलब नहीं है।
--fibmap
। इसके अलावा, आपको फ़ाइल नाम w / यह निर्दिष्ट करने की आवश्यकता है। उदाहरण: hdparm --fibmap afile
।
hdparm
एक पूरे ड्राइव स्तर पर था, इससे पहले कभी भी इसका इस्तेमाल फाइलों के लिए नहीं किया गया था।