Concurrent Systems (prof. Gorla) - AA 2022-2023

Teacher Daniele Gorla
Phone 06-49255431
Office Viale Regina Elena 295, 2nd floor, room 205
Email gorla@diNOSPAM.uniroma1.it

The class is focused on the foundational aspects and on the formal/mathematical semantics of concurrent systems. The class is structured in two main parts. The first part describes the main characteristics and the basilar problems of every concurrent system (mutual exclusion, synchronization, atomicity, deadlock/livelock/starvation, ...) and the relative solutions at the implementation level (semaphores, monitors, system primitives, ...). Furthermore, more evolute notions are shown, like: failure detectors, their implementation and their use to obtain wait-free implementations; universal object, consensus object and consensus number; transactional memory, ... The second part of the course describes the preliminary notions of a minimal concurrent language called CCS (execution of parallel processes through labelled transition systems, interleaving semantics, syntonization, non-determinism, process simulability) and presents a mathematical model, with different features for the specification and the analysis of systems written in such a language.

In the time left, we shall have lectures in the form of seminars where more advanced programming mechanisms (like name creation and exchange, type systems for the verification of properties, cryptography, distribution, truly concurrent semantics) will be presented.

The course integrates didactic parts to recent research problems.


Timetable

2nd semester (end of February --> end of May).

Timetable Lecture room
mon 8:15 - 11:00 Aula T1 (Viale Regina Elena, building E, ground floor)
tue 8:15 - 10:00 Aula T1 (Viale Regina Elena, building E, ground floor)


Text books

First part:

  • M. Raynal: Concurrent Programming: Algorithms, Principles and Foundations. Springer, 2013. (chapters 1, 2, 3, 4, 5, 10, 14, 16 and part of 17).

Second part:

  • R. Milner. Communicating and Mobile Systems. Cambridge University Press, 1999. (chapters: 1, 2 (no 2.3), 3, 4 (no 4.1, 4.4, 4.5 and 4.6), 5 (no prop. 5.2, ex 5.3, lemma 5.4/5.5, theor. 5.6, def. 5.17, prop. 5.18, prop. 5.23), 6 (no 6.3) and 7 (only 7.2 and 7.3).
  • R. Cleaveland and S. Smolka. Process Algebra. In Encyclopedia of Electrical Engineering, John Wiley & Sons, 1999. Available at http://www.cs.umd.edu/~rance/publications/papers/ee99.ps.gz. (sect. 3.2, 4.1 and 4.2).
  • R. Cleaveland and O. Sokolsky. Equivalence and Preorder Checking for Finite-State Systems. In "Handbook of Process Algebra," pp. 391-424, Elsevier, 2001. Available at http://www.cis.upenn.edu/~sokolsky/PAhandbook.pdf. (sect. 3.1).

Third part:


Detailed Program

The course is split into 3 parts:

  • The first part studies foundational problems of concurrent systems:
    • sequential vs concurrent programs
    • Process synchronization (competition vs cooperation)
    • Safety and liveness properties; a hierarchy of liveness properties (deadlock freedom, starvation freedom, bounded bypass)
    • Mutual exclusion: atomic registers (algorithms by Peterson and Lamport; how to obtain a starvation free lock object from a deadlock free lock object), with specialized hardware primitives (test&set, compare&swap, fetch&add) and with non-atomic registers (Bakery algorithm).
    • Semaphores, monitors and their use for solving classical problems (producers-consumers, readers-writers, rendezvous, dining philosophers)
    • Transactional memory
    • Atomicity and its properties
    • mutex-free concurrency: liveness revisited (obstruction freedom, non-blocking and wait-freedom); mutex-free implementation of an unbounded stack; failure detectors Omega_X and Diamond_P, and the associated construction of non-blocking and wait-free implementations from an obstruction free implementation; hints on how to implement the Omega failure detector.
    • Universal object; consensus object and its universality; primitives hierarchy based on the consensus number.

  • The second part is focused on CCS (Calculus of Communicating Systems [Milner:1980]):
    • non-determinism
    • Labeled transition systems
    • recursion
    • parallel composition (interleaving semantics)
    • synchronization
    • restriction
    • bisimulation: strong vs weak, axiomatization, logical characterization, algorithmic verification.

  • The third part will present possible enhancements of the previous material (every lecture will be on a different topic). By following the students' interests, some of the following topics can be presented:
    • communication: name creation and passage
    • polyadic communication (type system for correct communications and encodability in the base calculus)
    • asynchronous communication and encodability of synchrony
    • higher-order communication and its encodability in the base calculus
    • encoding of the lambda-calcolus
    • a model for object-oriented languages
    • concurrent calculi with cryptography or distribution
    • truly concurrent semantics


Diary

Here, [R] denotes Raynal's book; [CCS] and [PI] denote teacher's lecture notes on CCS and pi-calculus (that are a unified and coherent presentation of the texts for the second and the third part of the course listed above).

Feb 20th, 2023 ([R]: chapt.1, excluding sect.1.2.5; 2.1.1, 2.1.2, 2.1.3, 2.1.4): Sequential vs Multiprocess Program; process synchronization (competition and cooperation); the mutual exclusion problem; safety and liveness properties; a hierarchy of liveness properties (bounded bypass; starvation freedom; deadlock freedom). Atomic read/write registers; mutex for 2 processes (Peterson algorithm). Generalizing Peterson's algorithm to n processes.

Feb 21st, 2023 ([R]: 2.1.5 - only the idea, no algo, no proofs; 2.1.6; 2.1.7; 2.2.2): Algorithms with better performances when no concurrency is present: with a tournament tree of 2-processes competitions (O(log n)); Lamport's fast mutex algorithm (with constant time when there is no contention). From Deadlock freedom to Bounded bypass using atomic r/w-registers.

Feb 27th, 2023 ([R]: 2.2; 2.3.1, 2.3.2, 2.3.3): Mutex with specialized HW primitives (test&set; swap; compare&set; fetch&add). Safe registers: Lamport's Bakery algorithm and Aravind's bounded algorithm.

Feb 28th, 2023 ([R]: 3.1, 3.2.1, 3.2.2, 3.2.4, 3.3.1, 3.3.2, 3.3.4, 3.3.5. ): Concurrent objects. Semaphores and their implementation. Use of semaphores in the producer/consumer problem (both for single producer/consumer and for multiple ones) and in the readers/writers problem (both with weak/strong priority to the readers and with weak priority to the writers). Monitors: concept and implementation through semaphores; implementing rendez-vous through monitors. Readers/writers through monitors.

March 6th, 2023 ([R]: 10.1, 10.2, 10.3, 10.5): The problem of the "Dining Philosophers": solutions that break symmetry (through semaphores) and a symmetric solution (through monitors). Software Transactional Memory. Opacity and a Logical clock-based STM system (TL2). Virtual World Consistency and a vector clock-based STM system (REMARK: to better understand the difference between virtual world consistency and opacity, look at this paper: https://www.sciencedirect.com/science/article/pii/S0304397512004021/pdf?md5=78dd63551d097b6a3212285669d20ff8&pid=1-s2.0-S0304397512004021-main.pdf, sections 2.6 and 3.2).

March 7th, 2023 ([R]: chap. 4): Atomicity: formal definition and compositionality; possible variants and their non-composability.

March 14th, 2023 ([R]: 5.1, 5.2.1, 5.2.2, 5.2.5, 5.2.6. Lecture Notes): Mutex-free concurrency: problems of mutex and notion of mutex-freedom, progress conditions. Examples: splitter, timestamp generator and stack (based on swap plus fetch&add; based on compare&set); progress conditions for these examples.

March 15th, 2023 ([R]: 5.3.1, 5.3.2, 5.3.3, 5.3.4; 17.7, 17.7.1, 17.7.2 -- only the idea, not the formal protocol. Lecture Notes): From obstruction-freedom to non-blocking through failure detector Omega_X; hints on the implementation of Omega_X. From obstruction-freedom to wait-freedom through failure detector Diamond_P; hints on the implementation of Diamond_P.

March 20th, 2023 ([R]: 14.1, 14.2, 14.3, 14.5. Lecture Notes): Universal object and consensus object; universality of consensus (unbounded wait-free construction). Binary vs multivalued consensus.

March 21st, 2023 ([R]: 16.1, 16.2, 16.3, 16.4.1, 16.4.3, 16.4.4, 16.4.5 -- adapted to test&set -- 16.5.1, 16.6. Lecture Notes): Consensus number (for atomic R/W registers, test&set, swap, fetch&add, compare&swap) and consensus hierarchy.

March 27th, 2023 : 1st classwork

March 28th, 2023 ([CCS]: chapters 1 and 2.Lecture Notes and Lecture Notes): Automata for describing process behaviors (notion of LTS); inadequacy of trace equivalence for equating non-deterministic processes; simulation, double simulation and bisimulation. Properties of bisimilarity. Syntax for non-deterministic processes: from LTS to the syntax and vice versa. Examples: counter and queue.

April 17th, 2023 ([CCS]: chapter 3.1, 3.2, 3.3. Lecture Notes): Process interaction, parallel composition and name restriction. A first proof technique for proving properties of LTSs: the case of image-finiteness. A second proof technique for proving properties of LTSs: the case of closure under substitutions. A simple example that uses bisimilarity for proving an implementation equivalent to its specification. Congruence of Bisimilarity.

April 18th, 2023([CCS]: 4.3. Lecture Notes): Weak bisimilarity: basic properties, comparison with strong bisimilarity and fundamental laws.

May 9th, 2023 ([CCS]: 5.1. Lecture Notes): Examples using weak bisimilarity: the factory, the lottery and the scheduler.


Exam modalities

There are two possible ways to pass the exam:

  • First modality (better suited for students who regularly attend the classes): 2 classworks.
  • Second modality: written and oral exam on all the topics presented during the classes.


News

New webpage and Moodle platform

This page will become obsolete very soon. The NEW webpage of the course is https://sites.google.com/uniroma1.it/conc-sys/. Please, refer to this new page in the future.

-- DanieleGorla - 20 Jan 2016

-- DanieleGorla - 03 Mar 2005

Edit | Attach | Watch | Print version | History: r199 < r198 < r197 < r196 < r195 | Backlinks | Raw View | Raw edit | More topic actions
Topic revision: r199 - 2023-04-13 - DanieleGorla






 
Questo sito usa cookies, usandolo ne accettate la presenza. (CookiePolicy)
Torna al Dipartimento di Informatica
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback