7bf807
From 2d5d2b7570b0f44c14b34b5dc831f174205c10f2 Mon Sep 17 00:00:00 2001
7bf807
From: Tomas Bzatek <tbzatek@redhat.com>
7bf807
Date: Wed, 15 Sep 2021 14:34:49 +0200
7bf807
Subject: [PATCH] mount options: Always use errors=remount-ro for ext
7bf807
 filesystems
7bf807
7bf807
Default mount options are focused primarily on data safety, mounting
7bf807
damaged ext2/3/4 filesystem as readonly would indicate something's wrong.
7bf807
---
7bf807
 data/builtin_mount_options.conf            | 9 +++++++++
7bf807
 src/tests/dbus-tests/test_80_filesystem.py | 6 ++++++
7bf807
 2 files changed, 15 insertions(+)
7bf807
7bf807
diff --git a/data/builtin_mount_options.conf b/data/builtin_mount_options.conf
7bf807
index 37715cfa4..e0bd0ee1f 100644
7bf807
--- a/data/builtin_mount_options.conf
7bf807
+++ b/data/builtin_mount_options.conf
7bf807
@@ -27,3 +27,12 @@ f2fs_allow=discard,nodiscard,compress_algorithm,compress_log_size,compress_exten
7bf807
 btrfs_allow=compress,compress-force,datacow,nodatacow,datasum,nodatasum,degraded,device,discard,nodiscard,subvol,subvolid,space_cache
7bf807
 
7bf807
 f2fs_allow=discard,nodiscard,compress_algorithm,compress_log_size,compress_extension,alloc_mode
7bf807
+
7bf807
+ext2_defaults=errors=remount-ro
7bf807
+ext2_allow=errors=remount-ro
7bf807
+
7bf807
+ext3_defaults=errors=remount-ro
7bf807
+ext3_allow=errors=remount-ro
7bf807
+
7bf807
+ext4_defaults=errors=remount-ro
7bf807
+ext4_allow=errors=remount-ro
7bf807
diff --git a/src/tests/dbus-tests/test_80_filesystem.py b/src/tests/dbus-tests/test_80_filesystem.py
7bf807
index 019880f57..2d1933240 100644
7bf807
--- a/src/tests/dbus-tests/test_80_filesystem.py
7bf807
+++ b/src/tests/dbus-tests/test_80_filesystem.py
7bf807
@@ -321,6 +321,8 @@ def test_mount_auto(self):
7bf807
         _ret, out = self.run_command('mount | grep %s' % block_fs_dev)
7bf807
         self.assertIn(mnt_path, out)
7bf807
         self.assertIn('ro', out)
7bf807
+        if self._fs_name.startswith('ext'):
7bf807
+            self.assertIn('errors=remount-ro', out)
7bf807
 
7bf807
         # dbus mountpoint
7bf807
         dbus_mounts = self.get_property(block_fs, '.Filesystem', 'MountPoints')
7bf807
@@ -478,6 +480,10 @@ def test_custom_option(self, should_fail, dbus_option, should_be_present, config
7bf807
         if self._fs_name == "udf":
7bf807
             test_custom_option(self, False, None, False, "[defaults]\ndefaults=\nallow=exec,noexec,nodev,nosuid,atime,noatime,nodiratime,ro,rw,sync,dirsync,noload,uid=ignore,uid=forget\n")
7bf807
             test_custom_option(self, True, "uid=notallowed", True, "[defaults]\nallow=exec,noexec,nodev,nosuid,atime,noatime,nodiratime,ro,rw,sync,dirsync,noload,uid=ignore\n")
7bf807
+        if self._fs_name.startswith("ext"):
7bf807
+            test_custom_option(self, False, "errors=remount-ro", True, "", match_mount_option="errors=remount-ro")
7bf807
+            test_custom_option(self, True, "errors=panic", False, "")
7bf807
+            test_custom_option(self, True, "errors=continue", False, "")
7bf807
 
7bf807
         # udev rules overrides
7bf807
         test_readonly(self, False, "", udev_rules_content = { "UDISKS_MOUNT_OPTIONS_DEFAULTS": "rw" })