public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] generic/35[67]: update selinux context for mkswap
@ 2016-12-06  8:09 Eryu Guan
  2016-12-06 22:54 ` Dave Chinner
  0 siblings, 1 reply; 2+ messages in thread
From: Eryu Guan @ 2016-12-06  8:09 UTC (permalink / raw)
  To: fstests; +Cc: Eryu Guan

With selinux enabled & the default selinux context in fstests,
mkswap is denied, generic/35[67] fail as:

+mkswap: unable to relabel /mnt/testarea/scratch/test-357/file1 to system_u:object_r:swapfile_t:s0: Operation not supported

So mount SCRATCH_DEV with swapfile selinux context if selinux is
enabled (SELINUX_MOUNT_OPTIONS not empty).

Signed-off-by: Eryu Guan <eguan@redhat.com>
---
 tests/generic/356 | 4 ++++
 tests/generic/357 | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/tests/generic/356 b/tests/generic/356
index 6bb90c0..8bebad2 100755
--- a/tests/generic/356
+++ b/tests/generic/356
@@ -49,6 +49,10 @@ _require_cp_reflink
 
 echo "Format and mount"
 _scratch_mkfs > $seqres.full 2>&1
+# the default selinux context won't allow mkswap
+if [ "$SELINUX_MOUNT_OPTIONS" != "" ]; then
+	export SELINUX_MOUNT_OPTIONS="-o context=system_u:object_r:swapfile_t:s0"
+fi
 _scratch_mount >> $seqres.full 2>&1
 
 testdir=$SCRATCH_MNT/test-$seq
diff --git a/tests/generic/357 b/tests/generic/357
index 439b314..8941927 100755
--- a/tests/generic/357
+++ b/tests/generic/357
@@ -49,6 +49,10 @@ _require_cp_reflink
 
 echo "Format and mount"
 _scratch_mkfs > $seqres.full 2>&1
+# the default selinux context won't allow mkswap
+if [ "$SELINUX_MOUNT_OPTIONS" != "" ]; then
+	export SELINUX_MOUNT_OPTIONS="-o context=system_u:object_r:swapfile_t:s0"
+fi
 _scratch_mount >> $seqres.full 2>&1
 
 testdir=$SCRATCH_MNT/test-$seq
-- 
2.9.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-12-06 22:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-06  8:09 [PATCH] generic/35[67]: update selinux context for mkswap Eryu Guan
2016-12-06 22:54 ` Dave Chinner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox