By Shifting Left with DevSecOps
In this era of connected systems, developing secure embedded software is a real challenge. In this article, LDRA’s Mark Pitchford explains how using DevSecOps principles help you “shift left” by designing and testing for security early and continuously in each software integration.
Connectivity has brought seismic change to embedded applications, with new opportunities for easier monitoring, upgrading, and enhancement. On the downside, connected systems present many more attack surfaces that are vulnerable to bad actors. Defending against such attacks is a daunting task, even for organizations well versed in functional safety. For those less familiar with the term, functional safety involves defending the world from a potentially flawed system, while cybersecurity defends a system from an imperfect world. Each presents its own unique challenges.
No single defense of a connected system can guarantee impenetrability; however, applying multiple levels of security ensures that if one level fails, others stand guard. Examples of such defense-in-depth approaches can include a mix of:
- Secure boot, which ensures the correct image loads
- Domain separation
- Multiple independent levels of security (MILS) design principles, such as least privilege
- Attack surface reduction
- Techniques for secure coding
- Security-focused testing such as static and dynamic analysis
Secure application code does little to defend a connected embedded system if the underlying architecture is unsecure. However, secure code has a key part to play in a system designed with security in mind. This remains true regardless of the preferred development life cycle design. Embedded development teams increasingly embrace DevOps principles, while others prefer the V model traditionally associated with functional safety standards such as DO-178C for aerospace, ISO 26262 for automotive and IEC 62304 for medical devices.
FROM DevOps TO DevSecOps
System connectivity has a big impact across all embedded software development, whether safety is critical or not. The days when a system could be developed, installed, and forgotten are long gone, and the need to respond to changing circumstances is paramount for many.
The DevOps approach owes much to lean manufacturing, which was designed specifically to be responsive to changing circumstances. Check out the sidebar “What is DevOps” at the end of this article. Initially popular in enterprise system development, this approach brings clear benefits to many embedded applications. New market demands can be met faster through more integrated product development. Perhaps most important is the speed with which application patches and updates can be applied.
The need for updates is commonplace across industry sectors. Examples include Over-The-Air (OTA) security updates to automotive software and revisions to production parameters and processes in predictive maintenance in manufacturing plants. DevSecOps expands on DevOps principles with a “shift left” principle—designing and testing for security early and continuously in each software iteration.
— ADVERTISMENT—
—Advertise Here—
THE V-MODEL
Traditionally, the practice for secure embedded code verification has been largely reactive. Code is developed in accordance with relatively loose guidelines and then subjected to performance, penetration, load and functional testing to identify vulnerabilities that will be addressed later.
A more proactive approach ensures code is secure by design. That implies a systematic development process, where the code is written in accordance with secure coding standards, is traceable to security requirements and is tested to demonstrate compliance with those requirements as development progresses.
This proactive approach integrates security-related best practices into the V-model software development life cycle that is familiar to developers in the functional safety domain. The resulting Secure Software Development Life Cycle (SSDLC) represents a shift left for security-focused application developers and provides a practical approach to ensuring that vulnerabilities are designed out of the system or addressed in a timely and thorough manner. Although the context differs between DevSecOps and the SSDLC, shift left therefore implies the same thing for both—that is, an early and ongoing consideration of security.
SHIFT LEFT IN PRACTICE
The concepts embraced by the shift-left principle are familiar to individuals and teams developing safety-critical applications. For many years, functional safety standards demanded a similar approach. Consequently, many best practices proven in the functional safety domain apply to security-critical applications:
- Establish functional and security requirements at the outset or before each iteration
- Bidirectionally trace requirements to all stages of development
- Use a secure language subset
- Adhere to a security standard
- Automate processes for SAST (static) and DAST (dynamic) security testing
- Test early and often
Establish requirements at the outset: Undocumented requirements lead to miscommunication on all sides and create rework, changes and bug fixes—as well as security vulnerabilities. To ensure smooth project development, all parts of the product and the process of its development must be understood by every team member in the same way. Clearly defined functional and security requirements help ensure that this is the case.
Such requirements are likely to define a complete system for V-model developers, and merely an iteration for those applying DevSecOps—but the principle remains the same. This is not to say that software can never be used as an “intellectual modeling clay” to create a proof of concept, but the ultimate result of such experimentation should be clearly defined requirements—and production code appropriately developed to fulfill them.
Provide bidirectional traceability: The IEEE Standard Glossary of Software Engineering Terminology defines traceability as “the degree to which a relationship can be established between two or more products of the development process, especially products having a predecessor-successor or master-subordinate relationship to one another.” Bidirectional traceability means that traceability paths are maintained both forward and backward (Figure 1).
Automation makes it much easier to maintain traceability in a changing project environment. Forward traceability demonstrates that all requirements are reflected at each stage of the development process, including implementation and test. The impact of any changes to requirements or of failed test cases can be assessed by applying impact analysis, which can then be addressed. The resulting implementation can then be retested to present evidence of continued adherence to the principles of bidirectional traceability.
Equally important is backward traceability, which highlights code that fulfills none of the specified requirements. Oversight, faulty logic, feature creep and the insertion of malicious backdoor methods can all introduce security vulnerabilities or errors.
— ADVERTISMENT—
—Advertise Here—
It is essential to remember that the life cycle of a secure embedded artifact continues until the last example in the field is no longer in use. Any compromise of such an artifact demands a response, a changed or new requirement, and one to which an immediate response is needed—often to source code that development engineers have not touched for a long time. In such circumstances, automated traceability can isolate what is needed and enable automatic testing of only the affected functions.
SECURE LANGUAGE SUBSET
For development in C or C++, research has long showed that roughly 80% of software defects stem from the incorrect usage of about 20% of the language. To address this, developers can use language subsets that improve both safety and security by disallowing problematic constructs.
Two common subsets are MISRA C and Carnegie Mellon Software Engineering Institute (SEI) CERT C, both of which help developers produce secure code. The two standards have similar goals but implement them differently. The biggest difference is the degree to which they demand adherence.
In general, development of new code with MISRA C results in fewer coding errors because it has stricter, more decidable rules that are defined in the basis of first principles. The ability to quickly and easily analyze software with reference to MISRA C coding standards can improve code quality and consistency and reduce time to deployment. By contrast, when developers need to apply rules to code retrospectively, CERT C may be a pragmatic choice. Analyzing code against CERT C identifies common programming errors behind most software security attacks.
Applying either MISRA C or CERT C results in more secure code. The manual enforcement of such standards on a code base of any significant size is not practical, so a static analysis tool is required to automate the job. An overview of the differences between MISRA C and CERT C is shown in Table 1.
SECURITY-FOCUSED STANDARDS
Security-focused standards provide another piece of the secure development solution. In safety-critical sectors, such standards frequently complement those focused on functional safety. For example, J3061 “Cybersecurity Guidebook for Cyber-Physical Vehicle Systems” (soon to be superseded by ISO/SAE 21434 “Road vehicles – Cybersecurity engineering”) complements the automotive ISO 26262 functional safety standard. Automated development tools can be integrated into developer workflows for security-critical systems and can accommodate functional safety demands concurrently, should the need arise.
Automate SAST (static) and DAST (dynamic) testing processes: Static analysis is a collective name for test regimes that involve the automated inspection of source code. By contrast, dynamic analysis involves the execution of some or all source code. The focus of such techniques on security issues results, respectively, in static analysis (or application) security testing (SAST) and dynamic analysis (or application) security testing.
There are wide variations within these groupings. For example, penetration, functional and fuzz tests are all black-box DAST tests that do not require access to source code to fulfill their function. Black-box DAST tests complement white-box DAST tests, which include unit, integration and system tests to reveal vulnerabilities in application source code through dynamic analysis.
TEST EARLY AND OFTEN
All the security-related tools, tests and techniques described here have a place in each life cycle model. In the V model, they are largely analogous and complementary to the processes usually associated with functional safety application development (Figure 2). In the DevSecOps model, the DevOps life cycle is superimposed with security-related activities throughout the continuous development process (Figure 3) [1].

Use of security test tools and techniques in the V-model based secure software development life cycle (SSDLC)
Requirements traceability is maintained throughout the development process in the case of the V-model, and for each development iteration in the case of the DevSecOps model (shown in orange in both Figure 2 and Figure 3). Some SAST tools are used to confirm adherence to coding standards, ensure that complexity is kept to a minimum and check that code is maintainable. Others are used to check for security vulnerabilities but only to the extent that such checks are possible on source code without the context of an execution environment.
White-box DAST enables compiled and executed code to be tested in the development environment or, better still, on the target hardware. Code coverage facilitates confirmation that all security and other requirements are fulfilled by the code, and that all code fulfils one or more requirements. These checks can even go to the level of object code if the criticality of the system requires it.
Robustness testing can be used within the unit test environment to help demonstrate that specific functions are resilient, whether in isolation on in the context of their call tree. Fuzz and penetration black-box testing techniques traditionally associated with software security remain of considerable value, but in this context are used to confirm and demonstrate the robustness of a system designed and developed with a foundation of security.
Automated development tools are a critical element in creating secure embedded software. Developers should have access to automated software tools to support their work through the entire software development life cycle from traceability and engineering to static and dynamic software analysis to unit and integration testing. The accuracy, determinism and formal reporting capabilities of these tools meet the assurance requirements for the development of reliable, security-critical software.
Automated tools are critical elements of a secure embedded software development environment, whether as part of a V-model (SSDLC) or to support lean and agile processes and CI/CD practices (DevSecOps). An entire team, including project managers, systems engineers, developers, QA managers and test and maintenance engineers can leverage these tools throughout the software development life cycle.
DEVELOP SECURE APPLICATION CODE
LDRA offers automated software testing tools to expedite development, certification and approval processes to:
— ADVERTISMENT—
—Advertise Here—
- Trace all requirements, design and verification artifacts throughout the software development life cycle
- Demonstrate compliance with coding standards (SAST)
- Automate unit test and system-level test (white-box DAST)
- Perform and report coverage analysis on all code down to the target level
- Plan for and execute requirements-based testing
- Integrate with other software across the tool chain
- Produce software certification and approval evidence automatically
Working with clients to achieve early error identification and elimination and full compliance with industry standards, LDRA traces requirements through static and dynamic analysis to unit testing and verification for a wide variety of hardware and software platforms.
LDRA products are designed to be used on safety- and security-critical applications, so they require high-quality assurance. The company’s Quality Management System has been ISO 9001 certified since 1993, and LDRA products were first TÜV approved in 2013. LDRA is among the first companies to support updates and new international guidelines and standards that ensure the safety and security of software-based electronics systems. The company offers sound advice to the industry, including consultation on the development of security-critical application code.
The company actively participates on standards groups and closely monitors security standards such as:
ISO/SAE 21434—LDRA will be among the first to support the automotive cybersecurity standard ISO/SAE 21434 [2] when its contents are confirmed.
CWE—LDRA has achieved Common Weakness Enumeration (CWE) [3] compatibility for the LDRA tool suite.
CERT—The LDRA static analysis secure coding standards tools for CERT C, CERT C++, and CERT Java [4] automate the security software development life cycle.
MISRA—The LDRA tool suite automates source code checking for conformance to any version of the MISRA [5] rules (MISRA C:2012, MISRA C++:2008, MISRA Compliance:2020).
A complete compliance matrix is available for every coding standard supported by LDRA, giving complete transparency of which rules are implemented within the tools. This matrix is designed to simplify comparison of tool compliance to multiple versions of each standard and to assess compliance with multiple standards.
DevOps environments integrate development and operations teams to reduce silos. DevOps teams commonly use lean and agile principles to encourage collaboration and deliver software in a continuous integration / continuous delivery (CI/CD) practice that enables responsiveness to market opportunities and customer feedback.
Core principles in DevOps environments are to:
- Develop and test against production-like systems
- Deploy with repeatable, reliable processes
- Monitor and validate operational quality
- Amplify feedback loops
- Use automation to support collaboration, testing and documentation
RESOURCES
References:
[1] Based on extract from US DoD Enterprise DevSecOps Reference Design version 1.0 12 August 2019
https://dodcio.defense.gov/Portals/0/Documents/DoD%20Enterprise%20DevSecOps%20Reference%20Design%20v1.0_Public%20Release.pdf?ver=2019-09-26-115824-583
[2] https://ldra.com/press/ldra-to-support-new-iso-sae-21434-automotive-cybersecurity-standard
[3] https://ldra.com/cwe/
[4] https://ldra.com/cert-c-cert-java/
[5] https://ldra.com/misra
LDRA | www.ldra.com
PUBLISHED IN CIRCUIT CELLAR MAGAZINE • JANUARY 2022 #378 – Get a PDF of the issue
Sponsor this ArticleMark Pitchford is a technical specialist at LDRA. Since 2001, he has worked with development teams looking to achieve compliant software development in safety and security critical environments, working with standards such as DO-178, IEC 61508, ISO 26262, IIRA and RAMI 4.0. Boasting a worldwide presence, LDRA has headquarters in the United Kingdom, United States, Germany and India coupled with an extensive distributor network.