auto caas model based fault prediction and diagnosis of
play

AUTO-CAAS: Model-Based Fault Prediction and Diagnosis of Automotive - PowerPoint PPT Presentation

. AUTO-CAAS: Model-Based Fault Prediction and Diagnosis of Automotive Software . Wojciech Mostowski Halmstad University, Sweden . AstaZero Researchers Day 2016 . hh.se . . . . . Outline 1 Project overview 2 Consortium 3 Model-based


  1. . AUTO-CAAS: Model-Based Fault Prediction and Diagnosis of Automotive Software . Wojciech Mostowski Halmstad University, Sweden . AstaZero Researchers Day 2016 . hh.se . .

  2. . . . Outline 1 Project overview 2 Consortium 3 Model-based testing of AUTOSAR 4 Fault model learning 5 Status & next steps . 2 hh.se

  3. . . . Motivation Automotive Open System Architecture – AUTOSAR To enable pluggable components and multiple vendors Room for interpretation and optimisation Intentional and inadvertent specification loopholes Specific implementations differ (from each other and from the specification) Results in non-conformant components Can lead to potentially serious problems in the software Research question – find the consequences . 3 hh.se

  4. . . . Goals In the context of the AUTOSAR standard: 1 Given a non-conformant set of components how can we show that there exists a selection in a given (complex) system that leads to a failure (bottom-up) 2 Given a failure of the system and the knowledge that non-conformant components were used, identify the one that is the root cause of the failure (top-down) Using Model-Based Testing (MBT) techniques . 4 hh.se

  5. . . . Goals In the context of the AUTOSAR standard: 1 Given a non-conformant set of components how can we show that there exists a selection in a given (complex) system that leads to a failure (bottom-up) 2 Given a failure of the system and the knowledge that non-conformant components were used, identify the one that is the root cause of the failure (top-down) . Using Model-Based Testing (MBT) techniques 4 hh.se

  6. . libraries (e.g. PWM / ADC), … hardware abstraction memory access interfaces, CAN-bus stack, FlexRay stack, Examples: ~3k pages of text basic software components / In particular, description of building automotive software A comprehensive standard for . . . 5 hh.se

  7. . Quviq A.B., Sweden Funded by open source AUTOSAR implementation AUTOSAR development environment, ArcCore A.B., Sweden AUTOSAR models and testing expertise Model-based testing tool QuickCheck, and software verification Research in model-based testing Halmstad University Partners & Funding . . . 6 hh.se

  8. . What happens when: Requested size or available space? Or even… what is actually returned in normal conditions? The pointer? The available space is smaller than the requested size? The requested size is 0 or negative? . . Example . /* Given the requested size of a buffer, return the available space. */ size_t get_buffer_size( size_t req_size); /* Return the pointer to the array. */ uint8_t* get_buffer_array(); 7 hh.se

  9. . What happens when: Requested size or available space? what is actually returned in normal conditions? Or even… The pointer? The available space is smaller than the requested size? The requested size is 0 or negative? . . Example . /* Given the requested size of a buffer, return the available space. */ size_t get_buffer_size( size_t req_size); /* Return the pointer to the array. */ uint8_t* get_buffer_array(); 7 hh.se

  10. . What happens when: Requested size or available space? Or even… what is actually returned in normal conditions? The pointer? The available space is smaller than the requested size? The requested size is 0 or negative? . . Example . /* Given the requested size of a buffer, return the available space. */ size_t get_buffer_size( size_t req_size); /* Return the pointer to the array. */ uint8_t* get_buffer_array(); 7 hh.se

  11. . . . Where is the Problem? Fine as long the surrounding environment is aware of the particular choice… When intermixing implementations things will go bad! Typical problems: Treatment of corner cases Indexes and timing off by one … . 8 hh.se

  12. . . . Where is the Problem? Fine as long the surrounding environment is aware of the particular choice… When intermixing implementations things will go bad! Typical problems: Treatment of corner cases Indexes and timing off by one … . 8 hh.se

  13. . . . Where is the Problem? Fine as long the surrounding environment is aware of the particular choice… When intermixing implementations things will go bad! Typical problems: Treatment of corner cases Indexes and timing off by one … . 8 hh.se

  14. . . . Model Based Testing with QuickCheck Erlang based tool for guided random test generation Based on a state-full model / specification Can test functions in separation, but also interacting Hundreds of tests are generated and executed, minimal counter Very snappy . examples reported for the failed ones 9 hh.se

  15. put_pre(S, [ _P, _E ] ) -> S#state.ptr /= undefined andalso length (S#state.elements) < S#state.size. put_next(S, _R, [ _P, E ] ) -> S#state { elements = S#state.elements ++ [ E ] } . put_post(_S, [ _P, E ] , R) -> R == E. prop_q() -> ?FORALL(Cmds, commands(?MODULE), begin { H, S, Res } = run_commands(?MODULE, Cmds), collect(S, pretty_commands(?MODULE, Cmds, { H, S, Res } , Res == ok )) end ). . QuickCheck Model – Queue of Integers . . . -record(state, { ptr, size, elements } ). initial_state() -> #state { elements= [] } . 10 hh.se

  16. prop_q() -> ?FORALL(Cmds, commands(?MODULE), begin { H, S, Res } = run_commands(?MODULE, Cmds), collect(S, pretty_commands(?MODULE, Cmds, { H, S, Res } , Res == ok )) end ). . . QuickCheck Model – Queue of Integers . . -record(state, { ptr, size, elements } ). initial_state() -> #state { elements= [] } . ... put_pre(S, [ _P, _E ] ) -> S#state.ptr /= undefined andalso length (S#state.elements) < S#state.size. put_next(S, _R, [ _P, E ] ) -> S#state { elements = S#state.elements ++ [ E ] } . put_post(_S, [ _P, E ] , R) -> R == E. 10 hh.se

  17. . . QuickCheck Model – Queue of Integers . . -record(state, { ptr, size, elements } ). initial_state() -> #state { elements= [] } . ... put_pre(S, [ _P, _E ] ) -> S#state.ptr /= undefined andalso length (S#state.elements) < S#state.size. put_next(S, _R, [ _P, E ] ) -> S#state { elements = S#state.elements ++ [ E ] } . put_post(_S, [ _P, E ] , R) -> R == E. ... prop_q() -> ?FORALL(Cmds, commands(?MODULE), begin { H, S, Res } = run_commands(?MODULE, Cmds), collect(S, pretty_commands(?MODULE, Cmds, { H, S, Res } , Res == ok )) end ). 10 hh.se

  18. . . . CanIf . FlexRay . . FxNm . FxSm . FxTp FxIf . . Ethernet . EthSa . EthNm . EthSm . EthIf . . CanTp CanSm . . . . AUTOSAR Models by Multiplicity of models for basic AUTOSAR software Implementations of clients tested for conformance Bugs found (obviously), but also problems with the specification Base for the work ahead of us . . LIN . LinNm . LinSm . LinIf . LinTrcv . Lin . CAN . CanNm 11 hh.se

  19. . Verify them (manually) to be a non-conformance of an What are the other failing behaviours? How can they be described? Failed test gives only one counter example non-conformance 2 is about learning something more about the Part model) implementation (rather than a problem in the specification or Use QuickCheck and AUTOSAR models to find failures 1 is relatively easy: Problem 2 Summarise / generalise / formalise them 1 Detect and classify non-conformances First Steps in the Project . . . 12 hh.se

  20. . Verify them (manually) to be a non-conformance of an What are the other failing behaviours? How can they be described? Failed test gives only one counter example non-conformance 2 is about learning something more about the Part model) implementation (rather than a problem in the specification or Use QuickCheck and AUTOSAR models to find failures 1 is relatively easy: Problem 2 Summarise / generalise / formalise them 1 Detect and classify non-conformances First Steps in the Project . . . 12 hh.se

  21. . Verify them (manually) to be a non-conformance of an What are the other failing behaviours? How can they be described? Failed test gives only one counter example non-conformance 2 is about learning something more about the Part model) implementation (rather than a problem in the specification or Use QuickCheck and AUTOSAR models to find failures 1 is relatively easy: Problem 2 Summarise / generalise / formalise them 1 Detect and classify non-conformances First Steps in the Project . . . 12 hh.se

  22. . The result is a Mealy machine – automata with inputs and outputs: Devise this process so that it is feasible and the result is readable Challenge failure state States represent the states of the correct behaviour plus one Outputs are the success / failure of the test so far Inputs are abstracted concrete inputs of the system under test Through the automata learning process Build from the information about single counter examples execution traces a component will lead to a failure State-full specification showing under which circumstances / Failure Models . . . 13 hh.se

  23. . The result is a Mealy machine – automata with inputs and outputs: Devise this process so that it is feasible and the result is readable Challenge failure state States represent the states of the correct behaviour plus one Outputs are the success / failure of the test so far Inputs are abstracted concrete inputs of the system under test Through the automata learning process Build from the information about single counter examples execution traces a component will lead to a failure State-full specification showing under which circumstances / Failure Models . . . 13 hh.se

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend