|
@@ -121,6 +121,26 @@ xfs_iformat_fork(
|
|
|
return -EFSCORRUPTED;
|
|
|
}
|
|
|
|
|
|
+ if (unlikely(xfs_is_reflink_inode(ip) &&
|
|
|
+ (VFS_I(ip)->i_mode & S_IFMT) != S_IFREG)) {
|
|
|
+ xfs_warn(ip->i_mount,
|
|
|
+ "corrupt dinode %llu, wrong file type for reflink.",
|
|
|
+ ip->i_ino);
|
|
|
+ XFS_CORRUPTION_ERROR("xfs_iformat(reflink)",
|
|
|
+ XFS_ERRLEVEL_LOW, ip->i_mount, dip);
|
|
|
+ return -EFSCORRUPTED;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (unlikely(xfs_is_reflink_inode(ip) &&
|
|
|
+ (ip->i_d.di_flags & XFS_DIFLAG_REALTIME))) {
|
|
|
+ xfs_warn(ip->i_mount,
|
|
|
+ "corrupt dinode %llu, has reflink+realtime flag set.",
|
|
|
+ ip->i_ino);
|
|
|
+ XFS_CORRUPTION_ERROR("xfs_iformat(reflink)",
|
|
|
+ XFS_ERRLEVEL_LOW, ip->i_mount, dip);
|
|
|
+ return -EFSCORRUPTED;
|
|
|
+ }
|
|
|
+
|
|
|
switch (VFS_I(ip)->i_mode & S_IFMT) {
|
|
|
case S_IFIFO:
|
|
|
case S_IFCHR:
|
|
@@ -208,7 +228,8 @@ xfs_iformat_fork(
|
|
|
XFS_CORRUPTION_ERROR("xfs_iformat(8)",
|
|
|
XFS_ERRLEVEL_LOW,
|
|
|
ip->i_mount, dip);
|
|
|
- return -EFSCORRUPTED;
|
|
|
+ error = -EFSCORRUPTED;
|
|
|
+ break;
|
|
|
}
|
|
|
|
|
|
error = xfs_iformat_local(ip, dip, XFS_ATTR_FORK, size);
|