From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 400D5C3F2C6 for ; Sat, 29 Feb 2020 20:38:30 +0000 (UTC) Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1B6AF20880 for ; Sat, 29 Feb 2020 20:38:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1B6AF20880 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-nvdimm-bounces@lists.01.org Received: from ml01.vlan13.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id ACED510FC36FE; Sat, 29 Feb 2020 12:39:21 -0800 (PST) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=192.55.52.43; helo=mga05.intel.com; envelope-from=dan.j.williams@intel.com; receiver= Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 1448E10FC3413 for ; Sat, 29 Feb 2020 12:39:20 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Feb 2020 12:38:28 -0800 X-IronPort-AV: E=Sophos;i="5.70,501,1574150400"; d="scan'208";a="285978870" Received: from dwillia2-desk3.jf.intel.com (HELO dwillia2-desk3.amr.corp.intel.com) ([10.54.39.16]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Feb 2020 12:38:28 -0800 Subject: [ndctl PATCH 26/36] ndctl/test: Fix typos / loss of tpm.handle in security test From: Dan Williams To: linux-nvdimm@lists.01.org Cc: Dave Jiang , vishal.l.verma@intel.com Date: Sat, 29 Feb 2020 12:22:22 -0800 Message-ID: <158300774283.2141307.10046883321054705021.stgit@dwillia2-desk3.amr.corp.intel.com> In-Reply-To: <158300760415.2141307.14060353322051900501.stgit@dwillia2-desk3.amr.corp.intel.com> References: <158300760415.2141307.14060353322051900501.stgit@dwillia2-desk3.amr.corp.intel.com> User-Agent: StGit/0.18-3-g996c MIME-Version: 1.0 Message-ID-Hash: LU5UJ4KTNTLJJXDOH2POY5E32CM7FHZE X-Message-ID-Hash: LU5UJ4KTNTLJJXDOH2POY5E32CM7FHZE X-MailFrom: dan.j.williams@intel.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.1.1 Precedence: list List-Id: "Linux-nvdimm developer list." Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit The DIMM security test confuses "tmp" and "tpm" in multiple places. It saves the current tpm.handle file to tmp.handle.bak and tries to restore it from tmp.handle.bak to tmp.handle. Replace all occurrences of "tmp" with "tpm". Cc: Dave Jiang Signed-off-by: Dan Williams --- test/security.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/security.sh b/test/security.sh index 771135b7ab18..8e2d870c0d43 100755 --- a/test/security.sh +++ b/test/security.sh @@ -39,7 +39,7 @@ setup_keys() backup_key=1 fi if [ -f "$keypath/tpm.handle" ]; then - mv "$keypath/tpm.handle" "$keypath/tmp.handle.bak" + mv "$keypath/tpm.handle" "$keypath/tpm.handle.bak" backup_handle=1 fi @@ -71,7 +71,7 @@ post_cleanup() mv "$masterpath.bak" "$masterpath" fi if [ "$backup_handle" -eq 1 ]; then - mv "$keypath/tpm.handle.bak" "$keypath/tmp.handle" + mv "$keypath/tpm.handle.bak" "$keypath/tpm.handle" fi } _______________________________________________ Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org To unsubscribe send an email to linux-nvdimm-leave@lists.01.org