gpt4 book ai didi

linux - 将 ext4 文件系统的文件名大小限制扩展到 1012 个字符

转载 作者:IT王子 更新时间:2023-10-29 00:21:29 64 4
gpt4 key购买 nike

我正在从服务器提取数据,其中一个文件夹名称超过 256 字节,因此我的 CentOS 抛出了名称太长的错误。我在整个互联网上搜索过,但找不到任何方法可以在 ext2/ext3/ext4 文件系统下创建大小超过 256 字节的文件夹/文件名。

但是,一个解决方案建议创建 reiserfs 文件系统和 ext4 来处理文件\文件夹的较长名称。这个解决方案可能有效,但我刚刚在其中一本书中读到,如果需要,可以将文件名大小的限制从 255 个字符扩展到 1012 个字符。

The maximal file name size is 255 characters. This limit could be extended to `1012` if needed. 

来源: Google

但我找不到任何网站解释如何修改文件系统以将大小扩展到 1012

有人可以帮我吗?

最佳答案

不知道在哪里找到 1012(在 http://e2fsprogs.sourceforge.net/ext2intro.html - 第二个扩展文件系统的设计与实现,ISBN 90-367-0385-9.1995 中提到),但在现代 Linux 内核文件名中固定在 struct ext2_dir_entry_2 最多 255 个字符(字节):

https://elixir.bootlin.com/linux/v4.10/source/fs/ext2/ext2.h#L600

/*
* The new version of the directory entry. Since EXT2 structures are
* stored in intel byte order, and the name_len field could never be
* bigger than 255 chars, it's safe to reclaim the extra byte for the
* file_type field.
*/
struct ext2_dir_entry_2 {
__le32 inode; /* Inode number */
__le16 rec_len; /* Directory entry length */
__u8 name_len; /* Name length */
__u8 file_type;
char name[]; /* File name, up to EXT2_NAME_LEN */
};

struct ext2_dir_entry 的文件名长度更长,但是 name_len 的额外字节被重新定义为 file_type

      __le16    name_len;       /* Name length */

因此,ext2 的当前最大文件名长度为 255

https://elixir.bootlin.com/linux/v4.10/source/include/linux/ext2_fs.h#L22

#define EXT2_NAME_LEN 255

https://elixir.bootlin.com/linux/v4.10/source/fs/ext2/namei.c#L62

if (dentry->d_name.len > EXT2_NAME_LEN)
return ERR_PTR(-ENAMETOOLONG);

ext3/ext4 相同:

https://elixir.bootlin.com/linux/v4.10/source/fs/ext4/ext4.h#L1892

/*
* Structure of a directory entry
*/
#define EXT4_NAME_LEN 255

https://elixir.bootlin.com/linux/v4.10/source/fs/ext4/namei.c

  * `len <= EXT4_NAME_LEN' is guaranteed by caller.
if (namelen > EXT4_NAME_LEN)
return NULL;
if (dentry->d_name.len > EXT4_NAME_LEN)
return ERR_PTR(-ENAMETOOLONG);

磁盘格式也用 8 位 file_name 描述(file_type 在旧文档中仅使用 3 位 - EXT2_FT_MAX,但现代驱动程序不会处理超过 255 个文件名。ext4 has extra FT of 0xde):

http://www.nongnu.org/ext2-doc/ext2.html#IFDIR-NAME-LEN "4.1.3. name_len - 8 位无符号值,表示名称中包含多少字节的字符数据。"

http://cs.smith.edu/~nhowe/262/oldlabs/ext2.html#direntry "file_type 字段表示条目所指的文件类型......文件名的最大长度为 EXT2_NAME_LEN,通常为 255。"

https://oss.oracle.com/projects/ocfs2/dist/documentation/disklayout.pdf#page=16 “__u8 name_len”

关于linux - 将 ext4 文件系统的文件名大小限制扩展到 1012 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34980895/

64 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com