diff --git a/docs/contribute/development/rust/certification/index.rst b/docs/contribute/development/rust/certification/index.rst
index c9b484270ab..ab83535a5ea 100644
--- a/docs/contribute/development/rust/certification/index.rst
+++ b/docs/contribute/development/rust/certification/index.rst
@@ -15,6 +15,34 @@
Certification
##############
+
+Rust Certification Guidance
+===========================
+
+This section summarizes certification-relevant guidance for Rust and its
+tooling, especially in the context of ISO 26262 and RTCA DO-178C/DO-332.
+
+Key points for practice:
+
+* Determine tool confidence per S-CORE Tool Management process (TI/TD -> TCL).
+ TCL is HIGH unless TI=YES and TD=NO; in that case TCL is LOW.
+* If TCL is LOW, tool qualification is required. Apply the "validation of
+ software tool" method with requirements, tests, and report updates in the
+ Tool Verification Report workflow.
+* Confidence/qualification evidence is valid only for the exact tool version,
+ target architecture, and relevant tool configuration; changes require impact
+ analysis and re-validation as needed.
+* Proven-in-use is not used as a safety argument in S-CORE (tailored out in
+ platform safety management).
+* Use stable toolchains for safety-related development; nightly features are
+ not recommended.
+* Configuration management must include compiler, as well as tools like rustup/cargo, clippy/rustdoc,
+ CodeQL, runtime libraries, and external crates.
+
+For SCORE, this baseline guidance should be used for certification
+strategy, while project-specific safety case evidence is documented in the
+corresponding plans and work products.
+
.. toctree::
:maxdepth: 1
diff --git a/docs/contribute/development/rust/coding_guidelines.rst b/docs/contribute/development/rust/coding_guidelines.rst
index 9bfcc920fdd..b12ad0bfc53 100644
--- a/docs/contribute/development/rust/coding_guidelines.rst
+++ b/docs/contribute/development/rust/coding_guidelines.rst
@@ -23,8 +23,49 @@ Writing Rust Code incl. Coding Guidelines
:realizes: wp__sw_development_plan
+Safety Rust
+===========
+
+For writing Rust code in SCORE, especially for safety- and
+security-relevant software, the following guidance and tooling references
+apply.
+
+This page provides the rationale, the guideline and tooling landscape, and a
+project-wide set of practices for writing Rust in SCORE. The concrete,
+enforceable rules (the ``rustc`` / Clippy lint configuration and the release
+profile) are maintained centrally in the ``score_rust_policies`` repository and
+are referenced from the `Conclusions for S-CORE`_ section below.
+
+
Coding Guidelines
-=================
+-----------------
+
+The following coding guidelines and reference documents are relevant for
+Rust development in SCORE:
+
+* A safety- and cybersecurity-oriented Rust baseline (referred to as "the
+ baseline" throughout this document) is used as the primary reference for
+ safety- and security-related development and for arguing safety according to
+ ISO 26262 or RTCA DO-178C combined with RTCA DO-332. It provides a
+ comprehensive set of recommendations for using Rust in safety-critical
+ systems, including language features, coding practices, and tool usage.
+* `Safety-Critical Rust Coding Guidelines `_
+ are still under development and currently only define a subset of the
+ desired rules.
+* `Secure Rust Guidelines (unstable) `_
+ complement this baseline. ANSSI focuses more on process and architecture
+ guidance, while the baseline is more concrete regarding tool usage and
+ enforceable checks.
+* `Linux Kernel Rules `_
+ mainly define formatting and documentation requirements for Rust in the
+ Linux kernel and do not provide broader static code analysis rules.
+* `MISRA C:2025 Addendum 6, Applicability of MISRA C:2025 to the Rust Programming Language `_
+ overlaps strongly with this baseline and is therefore primarily relevant as an
+ additional cross-reference.
+
+
+State of Rust Safety-Critical Tooling
+-------------------------------------
The Safety-Critical Rust Consortium aims to make Rust suitable for use in
automotive and other safety-critical environments by building and maintaining a
@@ -52,60 +93,33 @@ enable certification and safe use of Rust in automotive applications.
`Rust language `_
-
-State of Rust Safety-Critical Tooling
-#####################################
-
-The linked document provides a current overview of the tooling landscape for
-certifying Rust in safety-critical applications, presenting a
-community-approved list of essential tools and tracking their development
-status. It also explores whether developing specialized training curricula for
-safety-critical Rust is necessary, potentially requiring a separate
-subcommittee. The document details the state of specific tools—such as
-compilers and analysis utilities—by outlining their intended purposes,
-certification requirements, and their availability or progress. While some
-tools, such as the Ferrocene compiler, are already available or being actively
-developed, others remain under evaluation or are not yet accessible.
-
`Mission Statement - Tooling Subcommittee `_
-Explanation of ARA Applications in Rust
-#######################################
-
-AUTOSAR also shares a public available document that explains how to use Rust in
-ARA applications as Rust is offering safety and performance advantages. While
-ecosystem support is still maturing, Rust-based ARA applications can lead to
-safer, more reliable automotive software, especially in safety-critical and
-high-performance domains.
-
-`AUTOSAR ARA Applications in Rust `_
-
-
-MISRA vs Cert
-#############
+MISRA vs CERT
+-------------
-This issue contrasts the MISRA and CERT coding standards, highlighting their
-different approaches to software safety and security. MISRA is noted for its
-restrictive language subsetting and complex compliance process, often imposing
-outdated or ineffective rules that do not guarantee improved safety or
-security. This can create unnecessary work for developers without clear
-benefits and is sometimes inconsistent across languages. CERT, on the other
-hand, is praised for its focus on practical, consensus-based rules that target
-real security vulnerabilities in existing code, avoiding excessive constraints.
-The overall recommendation is to favor guidelines like CERT’s—practical,
-evidence-based, and focused on real-world issues—over rigid, untested standards
-that hinder adoption and developer productivity.
+MISRA and CERT represent two different approaches to safety- and
+security-oriented coding standards. MISRA relies on restrictive language
+subsetting and a formal compliance process, which can add effort without a
+proportional safety or security benefit and is not always consistent across
+languages. CERT focuses on practical, consensus-based rules that target real
+security vulnerabilities in existing code. For Rust in SCORE the CERT-style
+approach — practical, evidence-based and focused on real-world issues — is
+preferred over rigid language subsetting, which is consistent with the Clippy-
+and compiler-based enforcement used in this project.
`MISRA vs Cert `_
-In 2026 the Coding Guidelines Subcommittee of the SCRC are aiming to have MISRA C and CERT C mapped to Rust, with
+In 2026 the Coding Guidelines Subcommittee of the SCRC are aiming to have
+MISRA C and CERT C mapped to Rust, with
-- a bulk of the coding guidelines written
-- a bulk of the Clippy lints necessary written to check the guidelines
+* a bulk of the coding guidelines written
+* a bulk of the Clippy lints necessary written to check the guidelines
-Link to Clippy
-##############
+
+Rust Tooling: Clippy
+--------------------
Rust Clippy is a collection of lints (code style and correctness checks) for
the Rust programming language. It helps developers identify common mistakes,
@@ -117,8 +131,36 @@ tool for writing clean, idiomatic, and efficient Rust code.
`Link to Clippy `_
-Link to Miri
-############
+Rust Tooling: CodeQL
+--------------------
+
+CodeQL is a code analysis platform based on the QL query language and
+associated tooling. It supports Rust (see
+`CodeQL supported languages and frameworks `_
+and `CodeQL Rust CWE query help `_).
+
+Typical problem classes detected by CodeQL for Rust include:
+
+* injection vulnerabilities (e.g., SQL injection, path traversal,
+ regex injection, log injection, XSS)
+* insecure communication and transport usage (e.g., non-HTTPS URLs,
+ disabled TLS certificate checks)
+* cryptographic weaknesses (e.g., hard-coded cryptographic values,
+ weak algorithms or weak hashing)
+* sensitive data exposure (e.g., cleartext logging, cleartext
+ transmission or storage)
+* request and input abuse patterns (e.g., SSRF, uncontrolled allocation
+ size from untrusted input)
+* unsafe memory-related patterns relevant at Rust unsafe boundaries
+ (e.g., access-after-lifetime-ended, invalid pointer access,
+ constructor initialization issues)
+
+CodeQL's key strength is inter-procedural data-flow/taint tracking,
+which complements compiler and lint checks.
+
+
+Rust Tooling: Miri
+------------------
Miri is an Undefined Behavior detection tool for Rust. It can run binaries
and test suites of cargo projects and detect unsafe code that fails to
@@ -126,17 +168,208 @@ uphold its safety requirements.
`Link to Miri `_
+
Conclusions for S-CORE
-######################
+----------------------
+
+The current baseline includes general Rust safety and security topics together
+with related rules and recommendations. The results summarized below show how
+each topic is captured in practice, including automated checks (by tool and tool option) and supporting
+process measures. Where no automated check exists, coverage is captured
+through manual review, process controls, or architecture decisions.
+
+S-CORE Assurance Model
+~~~~~~~~~~~~~~~~~~~~~~
+
+S-CORE structures Rust guideline compliance around release assurance goals
+instead of a document-lifecycle order. The objective is to keep the argument
+auditable while clearly separating what can be enforced by tools from what must
+be argued by engineering process.
+
+Toolchain confidence strategy
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+For compilers, analyzers, and relevant build tooling, S-CORE applies the
+Tool Management process (see :doc:`/platform_management_plan/tool_management`)
+with the defined TI/TD/TCL sequence:
+
+* Determine tool impact (TI).
+* Determine tool error detection/prevention (TD).
+* Derive TCL from TI and TD.
+
+TCL is HIGH unless TI is YES and TD is NO. If TCL is LOW, tool qualification is
+required. Qualification evidence is produced via requirements, verification
+tests, and report updates in the Tool Verification Report workflow.
+
+For Rust, this applies to the compiler toolchain, linting/static analysis
+tooling, and relevant build tooling used in safety-relevant work products.
+
+Evidence validity boundaries
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+In S-CORE, qualification and confidence evidence is valid only within the
+released configuration baseline documented in the corresponding Tool
+Verification Report.
+
+This baseline includes the documented tool state, the approved deployment
+context, and the project-relevant build/tool settings. Changes are handled
+through configuration and change management (see
+:doc:`/platform_management_plan/config_management` and
+:doc:`/platform_management_plan/tool_management`).
+
+Before reusing existing evidence after a change, an impact analysis is required;
+the verification scope is updated where needed.
+
+Decision levels used in S-CORE
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+S-CORE uses three governance levels:
+
+* **Gate:** mandatory release condition; deviations require an approved and
+ traceable justification.
+* **Guidance:** recommended engineering practice; deviations should be
+ documented when they are intentional.
+* **Record:** explicit project decision with rationale and outcome must be
+ documented.
+
+For external traceability, these correspond to common labels
+*Required/Advisory/Document*.
+
+This label mapping follows the MISRA-style compliance classification used for
+traceability in safety-oriented coding guidance.
+
+Coverage Summary in S-CORE
+^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The assessment combines automated checks (CodeQL, Clippy, ``rustc`` and related
+tooling) with process controls (reviews, architecture records, focused tests).
+
+Coverage status is summarized as follows:
+
+* High coverage for automated coding checks and security/supply-chain checks,
+ including lint profiles, CodeQL analysis, and dependency controls.
+* High coverage for runtime robustness controls (panic policy, overflow checks,
+ and ``Result``/``Option`` usage patterns).
+* Medium to High coverage for tool confidence activities via TI/TD/TCL
+ determination and qualification workflow where required.
+* Medium coverage for topics that remain system-context dependent, in
+ particular timing/WCET arguments and change-triggered re-validation scope.
+
+No topic is currently assessed as Low.
+
+Practical Traceability to Automated Checks
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+To keep the link from safety-oriented requirements to enforceable checks
+explicit, S-CORE uses the following mapping from MISRA-style objective areas to
+tool evidence:
+
+* **Unsafe scope and API boundary robustness:**
+ ``rustc`` ``unsafe_op_in_unsafe_fn``, Clippy
+ ``undocumented_unsafe_blocks``, plus CodeQL data-flow checks at unsafe/FFI
+ boundaries.
+* **Controlled runtime failure behavior:**
+ Clippy ``missing_panics_doc``, ``panic_in_result_fn``, policy constraints on
+ ``unwrap`` usage, and release ``overflow-checks``.
+* **Deterministic and reviewable interfaces:**
+ Clippy ``wildcard_imports``, rustc ``unreachable_pub`` and ``missing_docs``,
+ and documentation/review process controls.
+* **Type and conversion correctness:**
+ Clippy ``cast_*`` checks (for truncation/sign/wrap/alignment risk) and
+ project guidance to prefer explicit fallible/infallible conversions.
+* **Security and supply-chain integrity:**
+ CodeQL security queries, dependency scanning (audit/deny/vet), SBOM, and
+ feature/profile checks in CI.
+* **Change and qualification traceability:**
+ TI/TD/TCL evaluation, Tool Verification Reports, and change-triggered
+ re-validation via configuration management.
+
+This mapping is intentionally operational: requirement intent is linked to
+specific automated checks and to the process evidence needed where automation is
+not sufficient.
During the S-CORE project formatting and clippy checks are enforced. Miri can
-be used to detect undefined behaviors. Also the code should compile with zero warnings.
-Additional guidelines by the Rust Community, the Rust Foundation and the Safety-Critical
-Rust Consortium are applied where applicable but not enforced. If possible the usage
-of `unsafe` is avoided. To keep the code `panic`-free only APIs with a proper return value
-should be used. The goal is to have coding guidelines for Rust suitable for safety-critial
-systems by Safety-Critical Rust Consortium by the end of 2026. Until that, please also use
-Slack score-rust-community channel for discussions and participation in the SCRC.
+be used to detect undefined behaviors. Also the code should compile with zero
+warnings. Additional guidelines by the Rust Community, the Rust Foundation and
+the Safety-Critical Rust Consortium are applied where applicable but not
+enforced. If possible the usage of `unsafe` is avoided. To keep the code
+`panic`-free only APIs with a proper return value should be used. The goal is
+to have coding guidelines for Rust suitable for safety-critical systems by the
+Safety-Critical Rust Consortium by the end of 2026. Until that, please also
+use Slack score-rust-community channel for discussions and participation in the
+SCRC.
+
+Source usage note: normative decisions in this document are based on the
+S-CORE process and MISRA references (including
+`MISRA C:2025 Addendum 6 Applicability of MISRA C:2025 to the Rust Programming Language `_).
+Research sources such as
+`MISRust (arXiv:2605.23490v1), Table 3 `_
+are used as supporting rationale for topic prioritization, not as normative
+compliance criteria.
The adaption of these guidelines will be documented in the S-CORE project
documentation.
+
+The recommended ``[lints.rust]``, ``[lints.clippy]``, and ``[profile.release]``
+settings are maintained centrally in the
+`score_rust_policies repository `_:
+
+CodeQL is handled separately from this repository; see *Rust Tooling: CodeQL*
+above and :doc:`/platform_management_plan/software_verification`.
+
+* `Practical baseline (relaxed) `_ —
+ suitable for general SCORE components.
+* `Strict / ASIL variant `_ —
+ for safety-critical code requiring stricter enforcement.
+
+
+Tooling Evidence and References
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The ``rustc`` and Clippy lints, the Clippy configuration and the release
+profile selected in ``score_rust_policies`` all correspond to documented,
+upstream features. The following authoritative, openly available sources back
+those choices and can be used as evidence for the safety and security argument
+(the CodeQL sources are already linked in the *Rust Tooling: CodeQL* section
+above):
+
+* `Clippy lint index `_ —
+ the complete, searchable catalogue of Clippy lints. Every Clippy lint selected
+ in ``score_rust_policies`` (for example ``undocumented_unsafe_blocks``,
+ ``missing_panics_doc``, ``wildcard_imports``, ``declare_interior_mutable_const``,
+ ``unwrap_used``, ``panic_in_result_fn``, ``let_underscore_must_use``,
+ ``wildcard_enum_match_arm`` and the ``cast_*``, ``shadow_*`` and pointer-cast
+ families) is listed here with its lint group and default level.
+* `Clippy configuration `_ —
+ documents the ``clippy.toml`` options used by the policy, including ``msrv``
+ and per-lint configuration, and how lint levels are applied.
+* `rustc lint listing `_ —
+ the compiler's built-in lints, split into
+ `allowed-by-default `_
+ and `warn-by-default `_.
+ This documents the ``rustc`` lints enabled by the policy, including
+ ``unsafe_op_in_unsafe_fn`` (denied in the strict profile), ``unreachable_pub``,
+ ``missing_docs``, ``unused_results``, ``let_underscore_drop``,
+ ``elided_lifetimes_in_paths``, ``single_use_lifetimes``,
+ ``trivial_numeric_casts``, ``unit_bindings``, ``unnameable_types``,
+ ``variant_size_differences`` and the ``unused`` group.
+* `Cargo manifest: the [lints] section `_ —
+ documents the ``[lints.rust]`` and ``[lints.clippy]`` tables and the
+ ``level`` / ``priority`` semantics used by the policy profiles.
+* `Cargo profiles reference `_ —
+ documents the ``overflow-checks`` profile setting used in the policy's
+ ``[profile.release]`` (``overflow-checks = true``). Note that Cargo's release
+ profile defaults to ``overflow-checks = false``, so the policy sets it
+ explicitly.
+
+
+Explanation of ARA Applications in Rust
+---------------------------------------
+
+AUTOSAR also shares a publicly available document that explains how to use Rust
+in ARA applications as Rust offers safety and performance advantages. While
+ecosystem support is still maturing, Rust-based ARA applications can lead to
+safer, more reliable automotive software, especially in safety-critical and
+high-performance domains.
+
+`AUTOSAR ARA Applications in Rust `_
diff --git a/docs/contribute/development/rust/index.rst b/docs/contribute/development/rust/index.rst
index 6f3e5b7b988..b96edc6dee4 100644
--- a/docs/contribute/development/rust/index.rst
+++ b/docs/contribute/development/rust/index.rst
@@ -15,6 +15,11 @@
Rust
####
+For safety- and security-related Rust development, SCORE uses
+widely adopted safety- and cybersecurity-oriented Rust guidance as a
+baseline reference for recommended practices, in addition to the
+project-specific guidance linked below.
+
.. toctree::
:maxdepth: 1