adaptive contracts
play

Adaptive Contracts For the Internet of Things Antonio Iannopollo - PowerPoint PPT Presentation

Adaptive Contracts For the Internet of Things Antonio Iannopollo Advised by Prof. Sangiovanni-Vincentelli Marten Lohstroh Advised by Prof. Lee University of California, Berkeley CPS V&V I&F Workshop, CMU, Pittsburgh May 6, 2016


  1. Adaptive Contracts For the Internet of Things Antonio Iannopollo Advised by Prof. Sangiovanni-Vincentelli Marten Lohstroh Advised by Prof. Lee University of California, Berkeley CPS V&V I&F Workshop, CMU, Pittsburgh May 6, 2016 TerraSwarm Research Center 05/06/16

  2. Introduction Motivation The Internet of Things (IoT) poses unprecedented challenges to designers: ● Vast heterogeneity ; ● Variable utility ; ● “Perishable” environment assumptions . Goal: Adaptive Contracts ● Integrate dynamic re-configuration and re-purposing in the design process; ● Extend Contract Algebra , by defining an approximation relation . Means: Accessors, Platform-based Design, Contracts TerraSwarm Research Center 05/06/16

  3. Diverse Requirements TerraSwarm Research Center 05/06/16

  4. Unanticipated Use + = ? BROKEN IF SEALED! TerraSwarm Research Center 05/06/16

  5. Fluid Environments ? + = ? ● Mobility ● Evolving Infrastructure TerraSwarm Research Center 05/06/16

  6. A Tower of Babel? Pieter Bruegel (1563) TerraSwarm Research Center 05/06/16

  7. Standardization? TerraSwarm Research Center 05/06/16

  8. Accessors to tame the IoT Accessors provide access to any resource that is reachable through an arbitrary protocol and exposes some interface . Accessors • Wrap an existing thing or service • Export an actor interface • Are composable with other actors TerraSwarm Research Center 05/06/16

  9. Platform-Based Design (PBD) The application space includes the specification for the current mapping process. A specification can be provided Specs Application space by the designer or be the result of another PBD iteration Refinement The mapping process consists in the selection of a specific architectural Mapping and instance, evaluating costs and optimization functional/architectural constraints Abstraction The architectural space includes platform components (libraries) abstracted from Architectural space lower levels, connection rules and other properties such as component cost and C1 timing properties Cn TerraSwarm Research Center 05/06/16

  10. Platform-Based Design (PBD) Specs Application space Refinement Contracts to formally reason about horizontal and vertical Mapping and relations defined by PBD! optimization Abstraction Architectural space C1 Cn TerraSwarm Research Center 05/06/16

  11. Accessors: Semantic Adapters Accessor Discrete Events Horizontal Vertical Accessor Runtime (JavaScript) The accessor bridges two semantic domains : Discrete Events (DE) and the accessor runtime (AR). Each domain has its own rules. Most importantly, the AR uses the asynchronous atomic callback (AAC) pattern due to its implementation in JavaScript, in DE a component may only react when it is fired . “An Interface Theory for the Internet of Things”, Lohstroh and Lee (SEFM’15) TerraSwarm Research Center 05/06/16

  12. Beyond Interface Automata Other useful properties... ● For example, have responses from a Web server appear at the accessor’s output port in the same order as the corresponding requests arrived at its input port (in LTL): TerraSwarm Research Center 05/06/16

  13. Assume-Guarantee Contracts Albert Benveniste, Benoit Caillaud, Dejan Nickovic, Roberto Passerone, Jean-Baptiste Raclet, et al.. Contracts for System Design. ] RR-8147, INRIA. 2012 A contract C=(A, G) is characterized by: ● A set of variables, or ports Contract ● A set A of assumptions ● A set G of guarantees A and G represent sets of environment defines and system behaviors For a component M (also defined as a set of Component behaviors) we have that M ⊨ C iff A ∩ M ⊆ G A contract is saturated if in the form: Ω Ω Ω G G G C = (A, G ∪ ¬A) A A A M M M TerraSwarm Research Center 05/06/16

  14. Assume-Guarantee Contracts A/G Contract Theory specifies a number of operations to operate on contracts. We can recall a few of them: A G C1 C2 TerraSwarm Research Center 05/06/16

  15. LTL Assume-Guarantee Contracts Concrete representation of contracts using Linear Temporal Logic formulas ● Assumptions and guarantees of a contract represented by a pair of LTL formulas Given contracts ● Composition is ● Refinement is A G C 1 C 2 TerraSwarm Research Center 05/06/16

  16. Contracts in IoT systems Contracts are well suited for traditional systems design, but they can be problematic in more dynamic contexts... Example: security camera with remote analysis of the footage Contract C describes one aspect of the controller for the camera. cloud C Inputs: x (network bandwidth) Outputs: y (alarm notification delay) A: x ≥ 1 Mbps G: y < 10 sec In saturated form, guarantees are x < 1 Mbps ∨ y < 10 sec If the network is too slow, then the component is allowed to expose any behavior! TerraSwarm Research Center 05/06/16

  17. Adaptive Behavior (intuitively) Gradually degrade performance , according to current environment conditions Example: security camera with remote analysis of the footage If the network cannot satisfy the assumptions, then the component should guarantee lower performance C Inputs: x (network bandwidth) cloud Outputs: y (alarm notification delay) A: x ≥ 1 Mbps G: y < 10 sec 512Kbps C* Inputs: x (network bandwidth) Outputs: y (alarm notification delay) A: x ≥ 512 Kbps G: y < 20 sec C* represents an approximation of the original contract C TerraSwarm Research Center 05/06/16

  18. Adaptive Behavior (formally) We introduce the notion of Contract Approximation : ● This relation allows for the definition of a partial order on reliability levels of systems. ● A system implementing an approximate contract will be able to work with a wider set of assumptions at a cost of degraded guarantees. TerraSwarm Research Center 05/06/16

  19. Example Charging Station for Electric Cars A charging station for electric cars is able to optimize power delivery to connected cars. Knowing how many cars are charging, the controller delivers a certain amount of power to every car to optimize charging time ... A typical requirement for this scenario could be: ● ... ● If a single car is connected to the charging station, its charging time cannot exceed 3h. ● ... TerraSwarm Research Center 05/06/16 With Jun Jie Ng and Lucas Servén

  20. Example Charging Station for Electric Cars A charging station for electric cars is able to optimize power delivery to connected cars. Knowing how many cars are charging, the controller delivers a certain amount of power to every car to optimize charging time ... Spec: C2: Battery module C1: Charging module Input : n: # of cars (unitless) Input : n: # of cars (unitless) Input : p: charging power (W) Output : t: charging time (hours) Output : t: charging time (hours) Output : p: charging power (W) Assume : n = 1 Assume : 1000W ≤ p ≤ 5000W Assume : 0 ≤ n ≤ 2 Guarantee : 0 ≤ t ≤ 3h Guarantee : 0 ≤ t ≤ 2h Guarantee : 1500W ≤ p ≤ 5000W n p Vertical C1 Contract Relation t C2 Horizontal Contract Composition C1 ⊗ C2 TerraSwarm Research Center 05/06/16 With Jun Jie Ng and Lucas Servén

  21. Horizontal Composition: C1 ⊗ C2 Is C1 ⊗ C2 compatible ? Is C1 ⊗ C2 consistent ? C1 ⊗ C2 Assumptions: C1 ⊗ C2 Guarantees: (0 ≤ n ≤ 2 ∧ 1000W ≤ p ≤ 5000W) ∨ ¬ [1500W ≤ p ≤ 5000W ∨ ¬(0 ≤ n ≤ 2)] ∧ { [1500W ≤ p ≤ 5000W ∨ ¬(0 ≤ n ≤ 2)] ∧ [(0 ≤ t ≤ 2h) ∨ ¬(1000W ≤ p ≤ 5000W)] [(0 ≤ t ≤ 2h) ∨ ¬(1000W ≤ p ≤ 5000W)] } ✓ Compatible ✓ Consistent TerraSwarm Research Center 05/06/16

  22. Does C1 ⊗ C2 refine Spec? Refinement Check: Assumptions C1 ⊗ C2 Assumptions: (0 ≤ n ≤ 2 ∧ 1000W ≤ p ≤ 5000W) ∨ ¬ { [1500W ≤ p ≤ 5000W ∨ ¬(0 ≤ n ≤ 2)] ∧ [(0 ≤ t ≤ 2h) ∨ ¬(1000W ≤ p ≤ 5000W)] } ⊇ Spec Assumptions: n = 1 TerraSwarm Research Center 05/06/16

  23. Does C1 ⊗ C2 refine Spec? Refinement Check: Guarantees C1 ⊗ C2 Guarantees: [1500W ≤ p ≤ 5000W ∨ ¬(0 ≤ n ≤ 2)] ∧ [(0 ≤ t ≤ 2h) ∨ ¬(1000W ≤ p ≤ 5000W)] ⊇ Spec Guarantees: 0 ≤ t ≤ 3h ∨ ¬ (n = 1) ✓ Yes, C1 ⊗ C2 ≼ Spec TerraSwarm Research Center 05/06/16

  24. The System is Repurposed What happens if a charging station needs to charge more cars? (i.e. the requirement requires a guarantee for 3 cars) We need to approximate C1 and degrade system performance. Spec: C2: Battery module C1: Charging module Input : n: # of cars (unitless) Input : n: # of cars (unitless) Input : p: charging power (W) Output : t: charging time (hours) Output : t: charging time (hours) Output : p: charging power (W) Assume : n = 3 Assume : 1000W ≤ p ≤ 5000W Assume : 0 ≤ n ≤ 2 Guarantee : 0 ≤ t ≤ 3h Guarantee : 0 ≤ t ≤ 2h Guarantee : 1500W ≤ p ≤ 5000W n p C1 t C2 C1 ⊗ C2 TerraSwarm Research Center 05/06/16

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