Decidable Race Condition and Open Coregions in HMSC Electronic Communications of the EASST Volume 29 (2010) Proceedings of the Ninth International Workshop on Graph Transformation and Visual Modeling Techniques (GT-VMT 2010) Decidable Race Condition and Open Coregions in HMSC Vojtěch Řehák Petr Slovák Jan Strejček Loïc Hélouët 12 pages Guest Editors: Jochen Küster, Emilio Tuosto Managing Editors: Tiziana Margaria, Julia Padberg, Gabriele Taentzer ECEASST Home Page: http://www.easst.org/eceasst/ ISSN 1863-2122 http://www.easst.org/eceasst/ ECEASST Decidable Race Condition and Open Coregions in HMSC Vojtěch Řehák1∗ Petr Slovák1† Jan Strejček1‡ Loïc Hélouët2 1Faculty of Informatics, Masaryk University, Brno, Czech Republic 2INRIA/IRISA, Rennes, France Abstract: Message Sequence Charts (MSCs) is a visual formalism for the descrip- tion of communication behaviour of distributed systems. An MSC specifies relations between communication events with partial orders. A situation when two visually ordered events may occur in any order during an execution of an MSC is called a race and is usually considered as a design error. While there is a quadratic time al- gorithm detecting races in a finite communication behaviours called Basic Message Sequence Charts (BMSCs), the race detection problem is undecidable for High-level Message Sequence Charts (HMSCs), an MSC formalism describing potentially infi- nite sets of potentially unbounded behaviours. To improve this negative situation for HMSCs, we introduce two new notions: a new concept of race called trace-race and an extension of the HMSC formalism with open coregions, i.e. coregions that can extend over more than one BMSC. We present three arguments showing benefits of our notions over the standard notions of race and HMSC. First, every trace-race-free HMSC is also race-free. Second, every race-free HMSC can be equivalently ex- pressed as a trace-race-free HMSC with open coregions. Last, the trace-race detec- tion problem for HMSC with open coregions is decidable and PSPACE-complete. Finally, the proposed extension of coregions allows to represent in a visual fash- ion whether an arbitrary number of racing events in the usual MSC formalism are concurrent or not. Keywords: HMSC; race condition; trace-race condition; open coregions; 1 Introduction Message Sequence Chart (MSC) [ITU04] is a popular visual formalism for specification of dis- tributed systems behaviours (e.g. communication protocols or multi-process systems). Its sim- plicity and intuitiveness come from the fact that MSC describes only exchange of messages between system components, while other aspects of the system (e.g. content of the messages, computation steps) are abstracted away. Even such an incomplete model can indicate serious errors in the designed system. This paper focuses on a common error called race condition. MSCs are based on composition of simple chronograms called Basic Message Sequence Charts (BMSCs). A BMSC consists of a finite number of processes and events. Processes are represented by vertical lines, and all events executed by some process are located on its lifeline ∗ Partially supported by Czech Science Foundation (GAČR), grants No. 201/08/P459 and No. P202/10/1469. † Partially supported by the research centre “Institute for Theoretical Computer Science (ITI)”, project No. 1M0545. ‡ Partially supported by Czech Science Foundation (GAČR), grant No. 201/08/P375, and Ministry of Education of the Czech Republic, project No. MSM0021622419. 1 / 12 Volume 29 (2010) Decidable Race Condition and Open Coregions in HMSC p q r Figure 1: A BMSC contain- ing a race p q r Figure 2: A similar BMSC containing a race s1 s2 r2 r1 p q r Figure 3: A BMSC containing a race between r1, r2 and ordered from top to bottom. Messages are represented by an arrow from a sending event to a receiving event. Total orderings of events on lifelines and messages form a visual order <, which provides graphically information on the respective ordering of events. However, the visual order can not always be enforced by the architecture of the modelled system. In addition to the visual order, there exists a causal order �, that is weaker than <. Intuitively, events e, f are in causal order e � f , if the BMSC enforces that e always precedes f . There are several definitions of causal order depending on the settings of the modelled system and semantics of the model. For example, if one process sends two messages to another process, the corresponding receive events are causally ordered if and only if the considered message transport protocol has the FIFO property: two messages sent from one process to another are always received in the same order. In this paper, we assume that every process has one unbounded buffer for all incoming messages and that the message transport protocol satisfies the FIFO property. A BMSC contains a race condition (or simply race) [AHP96] if there are two visually ordered events that are not causally ordered (i.e. they can actually occur in an arbitrary order). For example, Figure 1 depicts that the process q receives a message from r followed by a message from p. As processes and communication in BMSCs are always asynchronous, the messages can be also received in the opposite order as shown in Figure 2. In both figures, the two receive events are in race as they are ordered visually but not causally. Races in BMSC description should be considered as a design error, as they exhibit discrepancies between the intended ordering designed in a BMSC, and the ordering that a real implementation of this BMSC would enforce. Races in a BMSC can be detected in quadratic time [AHP96]. While a BMSC describes only a single and finite communication scenario, its extension called High-level Message Sequence Chart (HMSC) [RGG96, AHP96] can describe more complex interactions, with iterations and alternatives between several scenarios. An HMSC is a finite state transition system where each state is labelled by a BMSC or a reference to another HMSC. In the sequel, we will only consider HMSCs labelled by BMSCs. Each run (i.e. a path starting in the initial state and ending in a final state) of an HMSC can be understood as a single BMSC, which is a concatenation of the BMSCs labelling the states along the run. Hence, an HMSC represents a potentially infinite set of BMSCs of unbounded size. The definition of race was extended to HMSCs in [MP99]. Roughly speaking, an HMSC H has a race if some BMSC represented by H contains a race and H does not represent any BMSC where the two racing events are defined with the opposite visual order. Unfortunately, the problem whether a given HMSC contains a race is undecidable [MP99, ITU04]. In this paper, we propose an alternative definition of race for HMSCs called trace-race. In- tuitively, an HMSC has a trace-race if some BMSC represented by H contains a race. Clearly, Proc. GT-VMT 2010 2 / 12 ECEASST every trace-race-free HMSC is also race-free but not vice versa. To improve the expressive power of trace-race-free HMSCs, we extend the HMSC formalism with open coregions. A coregion is a standard part of the MSC formalism that allows some events on the same process in a BMSC to be visually unordered. In particular, coregions can be used to visually order only causally related events (hence making concurrency a visual property). While this application of core- gions can remove all races in BMSCs, it is not sufficient for removing all races in HMSCs. An open coregion is basically a coregion spread over several BMSCs. We present a transformation of an arbitrary race-free HMSC into an equivalent trace-race-free HMSC with open coregions, where equivalence means that the two HMSCs have the same linearizations. Finally, we show that the problem whether a given HMSC with open coregions contains a trace-race is decidable and PSPACE-complete. In fact, our algorithm is polynomial for HMSCs with fixed number of processes and gates. For definitions of gates and linearizations see Sections 2 and 3, respectively. The rest of the paper is organized as follows. Section 2 recalls the definitions of BMSCs, HMSCs, and race condition for BMSCs. The race and trace-race conditions for HMSCs are de- fined and compared in Section 3. Section 4 is devoted to the translation of race-free HMSCs into equivalent trace-race-free HMSCs. The decidability and complexity of the trace-race detection problem is discussed in Section 5. Section 6 briefly summarizes benefits of the presented no- tions. Due to the space limitations, we present only crucial lemmata and theorems accompanied by explanations of basic ideas. Proofs with all technical details can be found in [ŘSSH09]. 2 Preliminaries The following definitions omit some features of MSCs given by the ITU standard [ITU04], e.g. atomic actions, labelling of messages with names, timers etc. However, these restrictions are quite common, and our results can be extended to MSCs with atomic actions and message labelling using the technique of [DGH08]. 2.1 BMSCs with (open) coregions, gates, and general ordering The basic concepts of BMSCs are described in Section 1. In the visual representation of a BMSC, processes are depicted as vertical lines and messages are represented by arrows between these lines. Events located on the same process line are visually ordered from top to bottom. A process line may contain segments called coregions delimiting subsets of events. Events in a coregion are a priori not in visual order, but they can be visually ordered using a general ordering relation. (this relation need not be a partial order). Coregions are visually represented by rectangles and general ordering by dashed arrows between pairs of ordered events (see Figure 3). In existing MSC formalisms, coregions are limited to finite set of events located in a single BMSC. We extend the definition of BMSCs with open coregions and gates. These features allow coregions of arbitrary size, spread over several concatenated BMSCs. Gates enable events of different BMSCs to be generally ordered within the final joined coregion. Similar ideas for connecting orders using gates or predicates was already proposed for instance in [Pra86, GH07]. A coregion can be open on top (top-open coregion), on bottom (bottom-open coregion), or open on both sides. All processes use a common gate name space G. For each process p, we 3 / 12 Volume 29 (2010) Decidable Race Condition and Open Coregions in HMSC define the sets of top gates p.G ={p.g |g∈G} and bottom gates p.G ={p.g |g∈G} located on process p. Given a BMSC with a set of processes P, we set P.G = ⋃ p∈P p.G and P.G = ⋃ p∈P p.G to be the sets of all top and bottom gates in this BMSC, respectively. We also extend the general ordering to range over both events and gates within an open coregion. Definition 1 Let G be a finite gate name space. A BMSC over G is a tuple M = (P, ES, ER, P,{