NAME |LIBRARY |SYNOPSIS |DESCRIPTION |RETURN VALUE |ERRORS |STANDARDS |HISTORY |EXAMPLES |SEE ALSO |COLOPHON | |
ioctl_fsmap(2) System Calls Manualioctl_fsmap(2)ioctl_fsmap, FS_IOC_GETFSMAP - retrieve the physical layout of the filesystem
Standard C library (libc,-lc)
#include <linux/fsmap.h>/* Definition ofFS_IOC_GETFSMAP,FM?_OF_*, and*FMR_OWN_*constants */#include <sys/ioctl.h>int ioctl(intfd, FS_IOC_GETFSMAP, struct fsmap_head *arg);
Thisioctl(2) operation retrieves physical extent mappings for a filesystem. This information can be used to discover which files are mapped to a physical block, examine free space, or find known bad blocks, among other things. The sole argument to this operation should be a pointer to a singlestruct fsmap_head: struct fsmap { __u32 fmr_device; /* Device ID */ __u32 fmr_flags; /* Mapping flags */ __u64 fmr_physical; /* Device offset of segment */ __u64 fmr_owner; /* Owner ID */ __u64 fmr_offset; /* File offset of segment */ __u64 fmr_length; /* Length of segment */ __u64 fmr_reserved[3]; /* Must be zero */ }; struct fsmap_head { __u32 fmh_iflags; /* Control flags */ __u32 fmh_oflags; /* Output flags */ __u32 fmh_count; /* # of entries in array incl. input */ __u32 fmh_entries; /* # of entries filled in (output) */ __u64 fmh_reserved[6]; /* Must be zero */ struct fsmap fmh_keys[2]; /* Low and high keys for the mapping search */ struct fsmap fmh_recs[]; /* Returned records */ }; The twofmh_keys array elements specify the lowest and highest reverse-mapping key for which the application would like physical mapping information. A reverse mapping key consists of the tuple (device, block, owner, offset). The owner and offset fields are part of the key because some filesystems support sharing physical blocks between multiple files and therefore may return multiple mappings for a given physical block. Filesystem mappings are copied into thefmh_recs array, which immediately follows the header data.Fields of struct fsmap_head Thefmh_iflags field is a bit mask passed to the kernel to alter the output. No flags are currently defined, so the caller must set this value to zero. Thefmh_oflags field is a bit mask of flags set by the kernel concerning the returned mappings. IfFMH_OF_DEV_Tis set, then thefmr_device field represents adev_t structure containing the major and minor numbers of the block device. Thefmh_count field contains the number of elements in the array being passed to the kernel. If this value is 0,fmh_entries will be set to the number of records that would have been returned had the array been large enough; no mapping information will be returned. Thefmh_entries field contains the number of elements in thefmh_recs array that contain useful information. Thefmh_reserved fields must be set to zero.Keys The two key records infsmap_head.fmh_keys specify the lowest and highest extent records in the keyspace that the caller wants returned. A filesystem that can share blocks between files likely requires the tuple (device,physical,owner,offset,flags) to uniquely index any filesystem mapping record. Classic non-sharing filesystems might be able to identify any record with only (device,physical,flags). For example, if the low key is set to (8:0, 36864, 0, 0, 0), the filesystem will only return records for extents starting at or above 36 KiB on disk. If the high key is set to (8:0, 1048576, 0, 0, 0), only records below 1 MiB will be returned. The format offmr_device in the keys must match the format of the same field in the output records, as defined below. By convention, the fieldfsmap_head.fmh_keys[0] must contain the low key andfsmap_head.fmh_keys[1] must contain the high key for the operation. For convenience, iffmr_length is set in the low key, it will be added tofmr_block orfmr_offset as appropriate. The caller can take advantage of this subtlety to set up subsequent calls by copyingfsmap_head.fmh_recs[fsmap_head.fmh_entries - 1] into the low key. The functionfsmap_advance (defined inlinux/fsmap.h) provides this functionality.Fields of struct fsmap Thefmr_device field uniquely identifies the underlying storage device. If theFMH_OF_DEV_Tflag is set in the header'sfmh_oflags field, this field contains adev_t from which major and minor numbers can be extracted. If the flag is not set, this field contains a value that must be unique for each unique storage device. Thefmr_physical field contains the disk address of the extent in bytes. Thefmr_owner field contains the owner of the extent. This is an inode number unlessFMR_OF_SPECIAL_OWNERis set in thefmr_flags field, in which case the value is determined by the filesystem. See the section below about owner values for more details. Thefmr_offset field contains the logical address in the mapping record in bytes. This field has no meaning if theFMR_OF_SPECIAL_OWNERorFMR_OF_EXTENT_MAPflags are set infmr_flags. Thefmr_length field contains the length of the extent in bytes. Thefmr_flags field is a bit mask of extent state flags. The bits are:FMR_OF_PREALLOC The extent is allocated but not yet written.FMR_OF_ATTR_FORK This extent contains extended attribute data.FMR_OF_EXTENT_MAP This extent contains extent map information for the owner.FMR_OF_SHARED Parts of this extent may be shared.FMR_OF_SPECIAL_OWNER Thefmr_owner field contains a special value instead of an inode number.FMR_OF_LAST This is the last record in the data set. Thefmr_reserved field will be set to zero.Owner values Generally, the value of thefmr_owner field for non-metadata extents should be an inode number. However, filesystems are under no obligation to report inode numbers; they may instead reportFMR_OWN_UNKNOWNif the inode number cannot easily be retrieved, if the caller lacks sufficient privilege, if the filesystem does not support stable inode numbers, or for any other reason. If a filesystem wishes to condition the reporting of inode numbers based on process capabilities, it is strongly urged that theCAP_SYS_ADMINcapability be used for this purpose. The following special owner values are generic to all filesystems:FMR_OWN_FREE Free space.FMR_OWN_UNKNOWN This extent is in use but its owner is not known or not easily retrieved.FMR_OWN_METADATA This extent is filesystem metadata. XFS can return the following special owner values:XFS_FMR_OWN_FREE Free space.XFS_FMR_OWN_UNKNOWN This extent is in use but its owner is not known or not easily retrieved.XFS_FMR_OWN_FS Static filesystem metadata which exists at a fixed address. These are the AG superblock, the AGF, the AGFL, and the AGI headers.XFS_FMR_OWN_LOG The filesystem journal.XFS_FMR_OWN_AG Allocation group metadata, such as the free space btrees and the reverse mapping btrees.XFS_FMR_OWN_INOBT The inode and free inode btrees.XFS_FMR_OWN_INODES Inode records.XFS_FMR_OWN_REFC Reference count information.XFS_FMR_OWN_COW This extent is being used to stage a copy-on-write.XFS_FMR_OWN_DEFECTIVE: This extent has been marked defective either by the filesystem or the underlying device. ext4 can return the following special owner values:EXT4_FMR_OWN_FREE Free space.EXT4_FMR_OWN_UNKNOWN This extent is in use but its owner is not known or not easily retrieved.EXT4_FMR_OWN_FS Static filesystem metadata which exists at a fixed address. This is the superblock and the group descriptors.EXT4_FMR_OWN_LOG The filesystem journal.EXT4_FMR_OWN_INODES Inode records.EXT4_FMR_OWN_BLKBM Block bit map.EXT4_FMR_OWN_INOBM Inode bit map.On error, -1 is returned, anderrno is set to indicate the error.
The error placed inerrno can be one of, but is not limited to, the following:EBADFfd is not open for reading.EBADMSG The filesystem has detected a checksum error in the metadata.EFAULTThe pointer passed in was not mapped to a valid memory address.EINVALThe array is not long enough, the keys do not point to a valid part of the filesystem, the low key points to a higher point in the filesystem's physical storage address space than the high key, or a nonzero value was passed in one of the fields that must be zero.ENOMEMInsufficient memory to process the operation.EOPNOTSUPP The filesystem does not support this operation.EUCLEAN The filesystem metadata is corrupt and needs repair.
Linux. Not all filesystems support it.
Linux 4.12.
Seeio/fsmap.c in thexfsprogs distribution for a sample program.
ioctl(2)
This page is part of theman-pages (Linux kernel and C library user-space interface documentation) project. Information about the project can be found at ⟨https://www.kernel.org/doc/man-pages/⟩. If you have a bug report for this manual page, see ⟨https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/CONTRIBUTING⟩. This page was obtained from the tarball man-pages-6.15.tar.gz fetched from ⟨https://mirrors.edge.kernel.org/pub/linux/docs/man-pages/⟩ on 2025-08-11. If you discover any rendering problems in this HTML version of the page, or you believe there is a better or more up- to-date source for the page, or you have corrections or improvements to the information in this COLOPHON (which isnot part of the original manual page), send a mail to man-pages@man7.orgLinux man-pages 6.15 2025-05-17ioctl_fsmap(2)Pages that refer to this page:ioctl(2)
HTML rendering created 2025-09-06 byMichael Kerrisk, author ofThe Linux Programming Interface. For details of in-depthLinux/UNIX system programming training courses that I teach, lookhere. Hosting byjambit GmbH. | ![]() |