As per
struct ext4_inode {
.....
__le16 i_extra_isize;
.....
}
I see that this can be used to store extended attributes, given the fact that I am using the inode size = 256 bytes. Few questions:
- How do I know if my FS inode size is 256 or 128 bytes?
- How do I set the small extended attributes (<10 bytes) and get it stored in the extra region? (Reason: Performance matters), as I believe there will be not extra IO block read as its contiguous. What's the Fileystem/C lib call for that? Will the typical System call "setattr" do this? I have been setting using command line "setfattr" and not being sure if its goind to extra area allocated after inode 128 bytes.
- Whats the in-memory structure for mapping the extra bytes after 128 bytes of inode, the place where I want to store my small extended attributes.
Ext3/4 supports configurable inode sizes (from the -I option mkfs.ext{3,4} cmd parameter), but the default inode size is 128 bytes. Ext4 will default to 256 bytes. This is needed to accommodate some extra fields (like nanosecond timestamps or inode versioning), and the remaining space of the inode will be used to store extend attributes that are small enough to fit it that space. Also you may want to look into the function implemented fs/ext4/file.c:struct inode_operations{.setattr,.getattr}.
Refer API's
setxattr(), lsetxattr(), fsetxattr()
for setting the extended attributes programmatic. Use commandsattr, lsattr, chattr
for testing the extended attributes on the set files. Also you may want to look intoRefer fs/ext4/xattr.c
"
"