* [PATCH v5.10] ext4: fix error code saved on super block during file system abort
@ 2024-07-23 6:47 Ajay Kaher
2024-07-23 6:47 ` [PATCH v5.10.y] ext4: Send notifications on error Ajay Kaher
2024-07-23 13:35 ` [PATCH v5.10] ext4: fix error code saved on super block during file system abort Greg KH
0 siblings, 2 replies; 3+ messages in thread
From: Ajay Kaher @ 2024-07-23 6:47 UTC (permalink / raw)
To: stable, gregkh
Cc: adilger.kernel, linux-ext4, linux-kernel, ajay.kaher,
alexey.makhalov, vasavi.sirnapalli, florian.fainelli,
Gabriel Krisman Bertazi, Theodore Ts'o
From: Gabriel Krisman Bertazi <krisman@collabora.com>
[ Upstream commit 124e7c61deb27d758df5ec0521c36cf08d417f7a ]
ext4_abort will eventually call ext4_errno_to_code, which translates the
errno to an EXT4_ERR specific error. This means that ext4_abort expects
an errno. By using EXT4_ERR_ here, it gets misinterpreted (as an errno),
and ends up saving EXT4_ERR_EBUSY on the superblock during an abort,
which makes no sense.
ESHUTDOWN will get properly translated to EXT4_ERR_SHUTDOWN, so use that
instead.
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
Link: https://lore.kernel.org/r/20211026173302.84000-1-krisman@collabora.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Ajay Kaher <ajay.kaher@broadcom.com>
---
fs/ext4/super.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 160e5824948270..0e8406f5bf0aa0 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -5820,7 +5820,7 @@ static int ext4_remount(struct super_block *sb, int *flags, char *data)
}
if (ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
- ext4_abort(sb, EXT4_ERR_ESHUTDOWN, "Abort forced by user");
+ ext4_abort(sb, ESHUTDOWN, "Abort forced by user");
sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
(test_opt(sb, POSIX_ACL) ? SB_POSIXACL : 0);
--
cgit 1.2.3-korg
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v5.10.y] ext4: Send notifications on error
2024-07-23 6:47 [PATCH v5.10] ext4: fix error code saved on super block during file system abort Ajay Kaher
@ 2024-07-23 6:47 ` Ajay Kaher
2024-07-23 13:35 ` [PATCH v5.10] ext4: fix error code saved on super block during file system abort Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Ajay Kaher @ 2024-07-23 6:47 UTC (permalink / raw)
To: stable, gregkh
Cc: adilger.kernel, linux-ext4, linux-kernel, ajay.kaher,
alexey.makhalov, vasavi.sirnapalli, florian.fainelli,
Gabriel Krisman Bertazi, Jan Kara
From: Gabriel Krisman Bertazi <krisman@collabora.com>
[ Upstream commit 9a089b21f79b47eed240d4da7ea0d049de7c9b4d ]
Send a FS_ERROR message via fsnotify to a userspace monitoring tool
whenever a ext4 error condition is triggered. This follows the existing
error conditions in ext4, so it is hooked to the ext4_error* functions.
Link: https://lore.kernel.org/r/20211025192746.66445-30-krisman@collabora.com
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
Acked-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Jan Kara <jack@suse.cz>
[Ajay: - Modified to apply on v5.10.y
- Added fsnotify for __ext4_abort()]
Signed-off-by: Ajay Kaher <ajay.kaher@broadcom.com>
---
fs/ext4/super.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 18a493f..02236f2 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -46,6 +46,7 @@
#include <linux/part_stat.h>
#include <linux/kthread.h>
#include <linux/freezer.h>
+#include <linux/fsnotify.h>
#include "ext4.h"
#include "ext4_extents.h" /* Needed for trace points definition */
@@ -699,6 +700,7 @@ void __ext4_error(struct super_block *sb, const char *function,
sb->s_id, function, line, current->comm, &vaf);
va_end(args);
}
+ fsnotify_sb_error(sb, NULL, error ? error : EFSCORRUPTED);
save_error_info(sb, error, 0, block, function, line);
ext4_handle_error(sb);
}
@@ -730,6 +732,7 @@ void __ext4_error_inode(struct inode *inode, const char *function,
current->comm, &vaf);
va_end(args);
}
+ fsnotify_sb_error(inode->i_sb, inode, error ? error : EFSCORRUPTED);
save_error_info(inode->i_sb, error, inode->i_ino, block,
function, line);
ext4_handle_error(inode->i_sb);
@@ -769,6 +772,7 @@ void __ext4_error_file(struct file *file, const char *function,
current->comm, path, &vaf);
va_end(args);
}
+ fsnotify_sb_error(inode->i_sb, inode, EFSCORRUPTED);
save_error_info(inode->i_sb, EFSCORRUPTED, inode->i_ino, block,
function, line);
ext4_handle_error(inode->i_sb);
@@ -837,7 +841,7 @@ void __ext4_std_error(struct super_block *sb, const char *function,
printk(KERN_CRIT "EXT4-fs error (device %s) in %s:%d: %s\n",
sb->s_id, function, line, errstr);
}
-
+ fsnotify_sb_error(sb, NULL, errno ? errno : EFSCORRUPTED);
save_error_info(sb, -errno, 0, 0, function, line);
ext4_handle_error(sb);
}
@@ -861,6 +865,7 @@ void __ext4_abort(struct super_block *sb, const char *function,
if (unlikely(ext4_forced_shutdown(EXT4_SB(sb))))
return;
+ fsnotify_sb_error(sb, NULL, error ? error : EFSCORRUPTED);
save_error_info(sb, error, 0, 0, function, line);
va_start(args, fmt);
vaf.fmt = fmt;
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v5.10] ext4: fix error code saved on super block during file system abort
2024-07-23 6:47 [PATCH v5.10] ext4: fix error code saved on super block during file system abort Ajay Kaher
2024-07-23 6:47 ` [PATCH v5.10.y] ext4: Send notifications on error Ajay Kaher
@ 2024-07-23 13:35 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2024-07-23 13:35 UTC (permalink / raw)
To: Ajay Kaher
Cc: stable, adilger.kernel, linux-ext4, linux-kernel, alexey.makhalov,
vasavi.sirnapalli, florian.fainelli, Gabriel Krisman Bertazi,
Theodore Ts'o
On Tue, Jul 23, 2024 at 12:17:19PM +0530, Ajay Kaher wrote:
> From: Gabriel Krisman Bertazi <krisman@collabora.com>
>
> [ Upstream commit 124e7c61deb27d758df5ec0521c36cf08d417f7a ]
>
> ext4_abort will eventually call ext4_errno_to_code, which translates the
> errno to an EXT4_ERR specific error. This means that ext4_abort expects
> an errno. By using EXT4_ERR_ here, it gets misinterpreted (as an errno),
> and ends up saving EXT4_ERR_EBUSY on the superblock during an abort,
> which makes no sense.
>
> ESHUTDOWN will get properly translated to EXT4_ERR_SHUTDOWN, so use that
> instead.
>
> Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
> Link: https://lore.kernel.org/r/20211026173302.84000-1-krisman@collabora.com
> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
> Signed-off-by: Ajay Kaher <ajay.kaher@broadcom.com>
> ---
Both now queued up, thanks.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-23 13:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-23 6:47 [PATCH v5.10] ext4: fix error code saved on super block during file system abort Ajay Kaher
2024-07-23 6:47 ` [PATCH v5.10.y] ext4: Send notifications on error Ajay Kaher
2024-07-23 13:35 ` [PATCH v5.10] ext4: fix error code saved on super block during file system abort Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).