From nobody Thu Feb 12 22:03:10 2026 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 46F62144D29 for ; Fri, 7 Jun 2024 04:29:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.187 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717734593; cv=none; b=hcVrfPG0BrOuI1nkrK5DQjSoqk5B2OYAKMd7zcUYkinKaeGjf2R1cs/Q0szNuGCQoA2otqZAIm8VK5F5IV42NFAye11Z37UYaLm9F2X59h5R2SEgTVt+ehxbLEkRNd2IXOTKnS0ucja3mtEm+jLQMI3LVPW5TjcQWtMknf7jeuY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717734593; c=relaxed/simple; bh=OHBOnXS3Vbg+gjeKQV1wYFxsVGNRu2ITmYbBt9sisGg=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Oyw2RfAACWMST/OjUd3pBimPGfuxa4A1/VgNzVDQD9I4Z2K3Y504+TaiphCQ/CXZUCLub6cU2M0E+e5tGa4u2SJyCWcZwchraY90cQVePZrJaatN8pbtSXSY4cpS6MBWk9CsG1eIn9u54jKEAJgWoSV2Ql1y3ZLxp8IIh7zV/kU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.187 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.88.105]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4VwSmt38L9zwRql; Fri, 7 Jun 2024 12:25:50 +0800 (CST) Received: from kwepemm600013.china.huawei.com (unknown [7.193.23.68]) by mail.maildlp.com (Postfix) with ESMTPS id 5C561140124; Fri, 7 Jun 2024 12:29:34 +0800 (CST) Received: from huawei.com (10.175.104.67) by kwepemm600013.china.huawei.com (7.193.23.68) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Fri, 7 Jun 2024 12:27:40 +0800 From: Zhihao Cheng To: , , , , , CC: , Subject: [RFC PATCH mtd-utils 100/110] tests: ubifs_tools: fsck_tests: Add authentication refusing test Date: Fri, 7 Jun 2024 12:26:05 +0800 Message-ID: <20240607042615.2069840-101-chengzhihao1@huawei.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240607042615.2069840-1-chengzhihao1@huawei.com> References: <20240607042615.2069840-1-chengzhihao1@huawei.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To kwepemm600013.china.huawei.com (7.193.23.68) Content-Type: text/plain; charset="utf-8" Authenticated UBIFS image is not supported in fsck, add testcase to check that. Signed-off-by: Zhihao Cheng --- .gitignore | 1 + configure.ac | 3 +- tests/ubifs_tools-tests/Makemodule.am | 3 +- .../fsck_tests/authentication_refuse.sh.in | 66 ++++++++++++++++++= ++++ 4 files changed, 71 insertions(+), 2 deletions(-) create mode 100755 tests/ubifs_tools-tests/fsck_tests/authentication_refus= e.sh.in diff --git a/.gitignore b/.gitignore index de0fce1f..799290a4 100644 --- a/.gitignore +++ b/.gitignore @@ -114,6 +114,7 @@ tests/fs-tests/stress/fs_stress01.sh tests/ubi-tests/runubitests.sh tests/ubi-tests/ubi-stress-test.sh tests/ubifs_tools-tests/lib/common.sh +tests/ubifs_tools-tests/fsck_tests/authentication_refuse.sh =20 # # Files generated by autotools diff --git a/configure.ac b/configure.ac index d32541a1..160fa812 100644 --- a/configure.ac +++ b/configure.ac @@ -290,7 +290,8 @@ AC_CONFIG_FILES([tests/fs-tests/fs_help_all.sh tests/fs-tests/stress/fs_stress01.sh tests/ubi-tests/runubitests.sh tests/ubi-tests/ubi-stress-test.sh - tests/ubifs_tools-tests/lib/common.sh]) + tests/ubifs_tools-tests/lib/common.sh + tests/ubifs_tools-tests/fsck_tests/authentication_refuse.sh]) =20 AC_OUTPUT([Makefile]) =20 diff --git a/tests/ubifs_tools-tests/Makemodule.am b/tests/ubifs_tools-test= s/Makemodule.am index 265c9cc7..6b533982 100644 --- a/tests/ubifs_tools-tests/Makemodule.am +++ b/tests/ubifs_tools-tests/Makemodule.am @@ -1,2 +1,3 @@ test_SCRIPTS +=3D \ - tests/ubifs_tools-tests/lib/common.sh + tests/ubifs_tools-tests/lib/common.sh \ + tests/ubifs_tools-tests/fsck_tests/authentication_refuse.sh diff --git a/tests/ubifs_tools-tests/fsck_tests/authentication_refuse.sh.in= b/tests/ubifs_tools-tests/fsck_tests/authentication_refuse.sh.in new file mode 100755 index 00000000..268a7de1 --- /dev/null +++ b/tests/ubifs_tools-tests/fsck_tests/authentication_refuse.sh.in @@ -0,0 +1,66 @@ +#!/bin/sh +# Copyright (c), 2024, Huawei Technologies Co, Ltd. +# Author: Zhihao Cheng +# +# Test Description: +# Refuse checking authenticated UBIFS image +# Running time: 10s + +TESTBINDIR=3D@TESTBINDIR@ +source $TESTBINDIR/common.sh + +ID=3D"0xec,0xa1,0x00,0x15" # 128M 128KB 2KB 512-sub-page + +function run_test() +{ + echo "Do authentication_refused test" + + modprobe nandsim id_bytes=3D$ID + mtdnum=3D"$(find_mtd_device "$nandsim_patt")" + flash_eraseall /dev/mtd$mtdnum + + modprobe ubi mtd=3D"$mtdnum,2048" || fatal "modprobe ubi fail" + ubimkvol -N vol_test -m -n 0 /dev/ubi$UBI_NUM || fatal "mkvol fail" + modprobe ubifs || fatal "modprobe ubifs fail" + + mount_ubifs $DEV $MNT "authentication" || fatal "mount ubifs failed" + fsstress -d $MNT/fsstress -l0 -p4 -n10000 & + sleep $((RANDOM % 5)) + + ps -e | grep -w fsstress > /dev/null 2>&1 + while [ $? -eq 0 ] + do + killall -9 fsstress > /dev/null 2>&1 + sleep 1 + ps -e | grep -w fsstress > /dev/null 2>&1 + done + + while true + do + res=3D`mount | grep "$MNT"` + if [[ "$res" =3D=3D "" ]] + then + break; + fi + umount $MNT + sleep 0.1 + done + + fsck.ubifs -a $DEV # 'fsck.ubifs $DEV' is fine too. + res=3D$? + if [[ $res =3D=3D $FSCK_OK ]] + then + fatal "fsck should not be success!" + fi + + modprobe -r ubifs + modprobe -r ubi + modprobe -r nandsim +} + +start_t=3D$(date +%s) +run_test +end_t=3D$(date +%s) +time_cost=3D$(( end_t - start_t )) +echo "Success, cost $time_cost seconds" +exit 0 --=20 2.13.6