From nobody Sat May 18 06:04:14 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1708349144762200.58781045661704; Mon, 19 Feb 2024 05:25:44 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.682852.1062047 (Exim 4.92) (envelope-from ) id 1rc3e7-00089n-Gl; Mon, 19 Feb 2024 13:25:23 +0000 Received: by outflank-mailman (output) from mailman id 682852.1062047; Mon, 19 Feb 2024 13:25:23 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rc3e7-00089g-DG; Mon, 19 Feb 2024 13:25:23 +0000 Received: by outflank-mailman (input) for mailman id 682852; Mon, 19 Feb 2024 13:25:22 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rc3e6-00089a-Mg for xen-devel@lists.xenproject.org; Mon, 19 Feb 2024 13:25:22 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id 54b036c9-cf2a-11ee-8a52-1f161083a0e0; Mon, 19 Feb 2024 14:25:21 +0100 (CET) Received: from Dell.bugseng.com (unknown [37.161.73.215]) by support.bugseng.com (Postfix) with ESMTPSA id E01804EE073A; Mon, 19 Feb 2024 14:25:19 +0100 (CET) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 54b036c9-cf2a-11ee-8a52-1f161083a0e0 From: Federico Serafini To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Federico Serafini , Simone Ballarin , Doug Goldstein , Stefano Stabellini , Andrew Cooper , George Dunlap , Jan Beulich , Julien Grall , Wei Liu Subject: [XEN PATCH] automation/eclair: add deviation for MISRA C:2012 Rule 16.3 Date: Mon, 19 Feb 2024 14:24:41 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1708349147188100001 Content-Type: text/plain; charset="utf-8" Update ECLAIR configuration to consider safe switch clauses ending with __{get,put}_user_bad(). Update docs/misra/deviations.rst accordingly. Signed-off-by: Federico Serafini --- automation/eclair_analysis/ECLAIR/deviations.ecl | 4 ++++ docs/misra/deviations.rst | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/automation/eclair_analysis/ECLAIR/deviations.ecl b/automation/= eclair_analysis/ECLAIR/deviations.ecl index fd32ff8a9c..831b5d4c67 100644 --- a/automation/eclair_analysis/ECLAIR/deviations.ecl +++ b/automation/eclair_analysis/ECLAIR/deviations.ecl @@ -368,6 +368,10 @@ safe." -config=3DMC3R1.R16.3,reports+=3D{safe, "any_area(end_loc(any_exp(text(/BU= G\\(\\);/))))"} -doc_end =20 +-doc_begin=3D"Switch clauses ending with constructs \"__get_user_bad()\" a= nd \"__put_user_bad()\" are safe: they denote an unreachable program point." +-config=3DMC3R1.R16.3,reports+=3D{safe, "any_area(end_loc(any_exp(text(/__= (put|get)_user_bad\\(\\);/))))"} +-doc_end + -doc_begin=3D"Switch clauses not ending with the break statement are safe = if an explicit comment indicating the fallthrough intention is present." -config=3DMC3R1.R16.3,reports+=3D{safe, "any_area(end_loc(any_exp(text(^(?= s).*/\\* [fF]all ?through.? \\*/.*$,0..1))))"} diff --git a/docs/misra/deviations.rst b/docs/misra/deviations.rst index 123c78e20a..58f4fac18e 100644 --- a/docs/misra/deviations.rst +++ b/docs/misra/deviations.rst @@ -307,6 +307,12 @@ Deviations related to MISRA C:2012 Rules: - Switch clauses ending with failure method \"BUG()\" are safe. - Tagged as `safe` for ECLAIR. =20 + * - R16.3 + - Switch clauses ending with constructs + \"__get_user_bad()\" and \"__put_user_bad()\" are safe: + they denote an unreachable program point. + - Tagged as `safe` for ECLAIR. + * - R16.3 - Existing switch clauses not ending with the break statement are saf= e if an explicit comment indicating the fallthrough intention is present. --=20 2.34.1