Operating Systems. Lecture 4 - Concurrency and Synchronization. Master of Computer Science PUF - Hồ Chí Minh 2016/2017

Similar documents
Synchronization: semaphores and some more stuff. Operating Systems, Spring 2018, I. Dinur, D. Hendler and R. Iakobashvili

Dealing with Issues for Interprocess Communication

CS Operating Systems

CS Operating Systems

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

Background. The Critical-Section Problem Synchronisation Hardware Inefficient Spinning Semaphores Semaphore Examples Scheduling.

Recap: Thread. What is it? What does it need (thread private)? What for? How to implement? Independent flow of control. Stack

Implementing Mutual Exclusion. Sarah Diesburg Operating Systems CS 3430

Background. Old Producer Process Code. Improving the Bounded Buffer. Old Consumer Process Code

Synchronization I. Jo, Heeseung

CS 31: Introduction to Computer Systems : Threads & Synchronization April 16-18, 2019

Interprocess Communication By: Kaushik Vaghani

C09: Process Synchronization

Chapter 6: Process Synchronization

Chapter 6: Synchronization. Chapter 6: Synchronization. 6.1 Background. Part Three - Process Coordination. Consumer. Producer. 6.

Chapter 6: Synchronization. Operating System Concepts 8 th Edition,

Chapters 5 and 6 Concurrency

SYNCHRONIZATION M O D E R N O P E R A T I N G S Y S T E M S R E A D 2. 3 E X C E P T A N D S P R I N G 2018

Chapter 6: Process Synchronization. Operating System Concepts 8 th Edition,

Chapter 5 Asynchronous Concurrent Execution

Chapter 5: Process Synchronization. Operating System Concepts Essentials 2 nd Edition

CIS Operating Systems Synchronization based on Busy Waiting. Professor Qiang Zeng Spring 2018

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

CHAPTER 6: PROCESS SYNCHRONIZATION

Lesson 6: Process Synchronization

Synchronization. CSE 2431: Introduction to Operating Systems Reading: Chapter 5, [OSC] (except Section 5.10)

Chapter 5: Process Synchronization. Operating System Concepts 9 th Edition

Chapter 6: Process Synchronization

Chapter 5 Concurrency: Mutual Exclusion and Synchronization

Concurrency. Chapter 5

CS370 Operating Systems

CS370 Operating Systems

Synchronization I. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Interprocess Communication and Synchronization

IV. Process Synchronisation

Concurrency and Synchronisation. Leonid Ryzhyk

Concurrency: Deadlock and Starvation. Chapter 6

CSE 4/521 Introduction to Operating Systems

Concurrency: Deadlock and Starvation

Process Synchronization

Locks. Dongkun Shin, SKKU

Chapter 6 Concurrency: Deadlock and Starvation

PROCESS SYNCHRONIZATION

Chapter 6: Process Synchronization

Synchronization for Concurrent Tasks

Mutual Exclusion and Synchronization

ENGR 3950U / CSCI 3020U UOIT, Fall 2012 Quiz on Process Synchronization SOLUTIONS

CSE 451: Operating Systems Winter Lecture 7 Synchronization. Steve Gribble. Synchronization. Threads cooperate in multithreaded programs

Semaphore. Originally called P() and V() wait (S) { while S <= 0 ; // no-op S--; } signal (S) { S++; }

CSC Operating Systems Spring Lecture - XII Midterm Review. Tevfik Ko!ar. Louisiana State University. March 4 th, 2008.

CS533 Concepts of Operating Systems. Jonathan Walpole

Lecture 5: Synchronization w/locks

Concurrent Processes Rab Nawaz Jadoon

Operating Systems. Operating Systems Summer 2017 Sina Meraji U of T

COMP 3430 Robert Guderian

Chapter 5 Concurrency: Mutual Exclusion. and. Synchronization. Operating Systems: Internals. and. Design Principles

Synchronization. Disclaimer: some slides are adopted from the book authors slides with permission 1

IT 540 Operating Systems ECE519 Advanced Operating Systems

CS420: Operating Systems. Process Synchronization

Synchronization Principles

CS 550 Operating Systems Spring Concurrency Semaphores, Condition Variables, Producer Consumer Problem

What is the Race Condition? And what is its solution? What is a critical section? And what is the critical section problem?

Process Synchronization

Process Synchronization. CISC3595, Spring 2015 Dr. Zhang

Concurrency: Signaling and Condition Variables

CSE 451: Operating Systems Winter Lecture 7 Synchronization. Hank Levy 412 Sieg Hall

Synchronization COMPSCI 386

Chapter 6: Process [& Thread] Synchronization. CSCI [4 6] 730 Operating Systems. Why does cooperation require synchronization?

Concurrency, Mutual Exclusion and Synchronization C H A P T E R 5

Operating Systems. User OS. Kernel & Device Drivers. Interface Programs. Interprocess Communication (IPC)

Resource management. Real-Time Systems. Resource management. Resource management

Introduction to OS Synchronization MOS 2.3

Operating Systems Antonio Vivace revision 4 Licensed under GPLv3

Chapter 6: Process Synchronization. Module 6: Process Synchronization

Module 6: Process Synchronization. Operating System Concepts with Java 8 th Edition

CS 333 Introduction to Operating Systems. Class 3 Threads & Concurrency. Jonathan Walpole Computer Science Portland State University

Last Class: Synchronization

Concurrency: Mutual Exclusion (Locks)

Process Management And Synchronization

Concurrency: Mutual Exclusion and

Module 6: Process Synchronization

Dept. of CSE, York Univ. 1

Synchronization 1. Synchronization

Learning Outcomes. Concurrency and Synchronisation. Textbook. Concurrency Example. Inter- Thread and Process Communication. Sections & 2.

Subject: Operating System (BTCOC403) Class: S.Y.B.Tech. (Computer Engineering)

Real-Time Programming

! Why is synchronization needed? ! Synchronization Language/Definitions: ! How are locks implemented? Maria Hybinette, UGA

Concept of a process

Midterm on next week Tuesday May 4. CS 361 Concurrent programming Drexel University Fall 2004 Lecture 9

Chapter 6: Process Synchronization

EI 338: Computer Systems Engineering (Operating Systems & Computer Architecture)

Concurrency and Synchronisation

Today: Synchronization. Recap: Synchronization

Models of concurrency & synchronization algorithms

Process Co-ordination OPERATING SYSTEMS

Operating Systems ECE344

CS5460: Operating Systems

Chapter 6 Process Synchronization

Real-Time Systems. Lecture #4. Professor Jan Jonsson. Department of Computer Science and Engineering Chalmers University of Technology

Page 1. Goals for Today" Atomic Read-Modify-Write instructions" Examples of Read-Modify-Write "

Transcription:

Operating Systems Lecture 4 - Concurrency and Synchronization Adrien Krähenbühl Master of Computer Science PUF - Hồ Chí Minh 2016/2017

Mutual exclusion Hardware solutions Semaphores IPC: Message passing Deadlocks

Concurrency Concurrent threads/processes (informal) Two processes are concurrent if they run at the same time or if their execution is interleaved in any order Asynchronous The processes require occasional synchronization Independent They do not have any reliance on each other Synchronous Frequent synchronization with each other Order of execution is guaranteed Parallel Processes run at the same time on separate processors Operating Systems 4 - Concurrency and Synchronization 2/46

Race conditions A race condition is a bug: The outcome of concurrent threads are unexpectedly dependent on a specific sequence of events. Example: Your current bank balance is $1,000. Withdraw $500 from an ATM machine while a $5,000 direct deposit is coming in Execute concurrently: Possible total balance: Operating Systems 4 - Concurrency and Synchronization 3/46

Race conditions A race condition is a bug: The outcome of concurrent threads are unexpectedly dependent on a specific sequence of events. Example: Your current bank balance is $1,000. Withdraw $500 from an ATM machine while a $5,000 direct deposit is coming in Execute concurrently: Possible total balance: $5500 or $500 or $6000 Operating Systems 4 - Concurrency and Synchronization 3/46

Synchronization Synchronization deals with developing techniques to avoid race conditions Something as simple as x = x + 1; Compiles to this and may cause a race condition: movl _x (% rip ), % eax <---------- Potential points of addl $1, % eax preemption for a <---------- race condition movl %eax, _x (% rip ) Operating Systems 4 - Concurrency and Synchronization 4/46

Mutual exclusion Critical section Region in a program where race conditions can arise Mutual exclusion Allow only one thread to access a critical section at a time Deadlock A thread is perpetually blocked (circular dependency on resources) Starvation A thread is perpetually denied resources Livelock Threads run but with no progress in execution Operating Systems 4 - Concurrency and Synchronization 5/46

Avoid race conditions with locks Grab and release locks around critical sections Wait if you cannot get a lock Operating Systems 4 - Concurrency and Synchronization 6/46

The critical section problem Design a protocol to allow threads to enter a critical section Operating Systems 4 - Concurrency and Synchronization 7/46

Conditions for a solution Mutual exclusion: No threads may be inside the same critical sections simultaneously Progress: If no thread is executing in its critical section but one or more threads want to enter, the selection of a thread cannot be delayed indefinitely. If one thread wants to enter, it should be permitted to enter. If multiple threads want to enter, exactly one should be selected. Bounded waiting: No thread should wait forever to enter a critical section No thread running outside its critical section may block others A good solution will make no assumptions on: No assumptions on # processors No assumption on # threads/processes Relative speed of each thread Operating Systems 4 - Concurrency and Synchronization 8/46

Critical sections & the kernel Multiprocessors Multiple processes on different processors may access the kernel simultaneously Interrupts may occur on multiple processors simultaneously Preemptive kernels Preemptive kernel: process can be preempted while running in kernel mode (the scheduler may preempt a process even if it is running in the kernel) Non preemptive kernel: processes running in kernel mode cannot be preempted (but interrupts can still occur!) Single processor, non preemptive kernel Free from race conditions! Operating Systems 4 - Concurrency and Synchronization 9/46

Solution #1: Disable interrupts Disable all system interrupts before entering a critical section and re-enable them when leaving Bad! Gives the thread too much control over the system Stops time updates and scheduling What if the logic in the critical section goes wrong? What if the critical section has a dependency on some other interrupt, thread, or system call? What about multiple processors? Disabling interrupts affects just one processor Advantage Simple, guaranteed to work Was often used in the uniprocessor kernels Operating Systems 4 - Concurrency and Synchronization 10/46

Solution #2: Software Test & Set Locks Keep a shared lock variable: while ( locked ) ; locked = 1; /* do critical section */ locked = 0; Disadvantage Buggy! There s a race condition in setting the lock Advantage Simple to understand. It s been used for things such as locking mailbox files Operating Systems 4 - Concurrency and Synchronization 11/46

Solution #3: Lockstep Synchronization Take turns Thread 0 while ( turn!= 0); critical_ section (); turn = 1; Thread 1 while ( turn!= 1); critical_ section (); turn = 0; Disadvantage: Forces strict alternation. if thread 2 is really slow, thread 1 is slowed down with it. Turns asynchronous threads into synchronous threads Operating Systems 4 - Concurrency and Synchronization 12/46

Software solutions for mutual exclusion Peterson s solution, Dekker s, & others Disadvantages: Difficult to implement correctly Have to rely on volatile data types to ensure that compilers don t make the wrong optimizations Difficult to implement for an arbitrary number of threads Operating Systems 4 - Concurrency and Synchronization 13/46

Mutual exclusion Hardware solutions Semaphores IPC: Message passing Deadlocks

Help from the processor Atomic (indivisible) CPU instructions that help us get locks Test-and-set Compare-and-swap Fetch-and-Increment These instructions execute in their entirety: they cannot be interrupted or preempted partway through their execution Operating Systems 4 - Concurrency and Synchronization 14/46

Test & Set Set the lock but get told if it already was set (in which case you don t have it) int test_and_set ( int *x) { last_ value = * x; * x = 1; - Atomic return last_ value ; } How you use it to lock a critical section (i.e., enforce mutual exclusion): // 1) spin while ( test_and_set (& lock ) == 1) ; /* do critical section */ // 2) release the lock lock = 0; Operating Systems 4 - Concurrency and Synchronization 15/46

Compare & swap (CAS) Compare the value of a memory location with an old value. If they match then replace with a new value. int CaS ( int *x, int old, int new ) { int save = * x; if ( save == old ) * x = new ; - Atomic return save ; } How you use it to grab a critical section? It avoid the race condition set locked to 1 only if locked was still set to 0. // 1) spin until locked == 0 while ( CaS ( & locked, 0, 1 )!= 0 ); // If we got here, locked == 1 and we have it /* do critical section */ // 2) release the lock locked = 0; Operating Systems 4 - Concurrency and Synchronization 16/46

Fetch & increment Increment a memory location and return previous value int fetch_ and_ increment ( int * x) { last_ value = * x; * x = * x + 1; - Atomic return last_ value ; } Ticket lock check that it s your turn for the critical section. int ticket = 0; int turn = 0;... int myturn = fetch_ and_ increment (& ticket ); while ( turn!= myturn ) ; /* do critical section */ fetch_and_increment (& turn ); Operating Systems 4 - Concurrency and Synchronization 17/46

The problem with spin locks All these solutions require busy waiting Tight loop that spins waiting for a turn: busy waiting or spin lock Nothing useful gets done! Wastes CPU cycles Operating Systems 4 - Concurrency and Synchronization 18/46

Priority inversion Spin locks may lead to priority inversion The process with the lock may not be allowed to run! Suppose a lower priority process obtained a lock Higher priority process is always ready to run but loops on trying to get the lock Scheduler always schedules the higher-priority process Priority inversion If the low priority process would get to run and release its lock, it would then accelerate the time for the high priority process to get a chance to get the lock and do useful work Try explaining that to a scheduler! Operating Systems 4 - Concurrency and Synchronization 19/46

Priority Inheritance Technique to avoid priority inversion Increase the priority of any process in a critical section to the maximum of any process waiting on any resource for which the process has a lock When the lock is released, the priority goes to its normal level Operating Systems 4 - Concurrency and Synchronization 20/46

Mutual exclusion Hardware solutions Semaphores IPC: Message passing Deadlocks

Spin locks aren t great

How about this? public class Lock { private int val = UNLOCKED ; private ThreadQueue waitqueue = new ThreadQueue (); } public void acquire () { Thread me = Thread. currentthread (); while ( TestAndSet ( val ) == LOCKED ) { waitqueue. waitforaccess ( me); // In queue me. sleep (); // Put self to sleep } // Got the lock } public void release () { Thread next = waitqueue. nextthread (); val = UNLOCKED ; if ( next!= null ) next. ready (); // Wake up a waiting thread } Operating Systems 4 - Concurrency and Synchronization 21/46

Sorry... Mutual exclusion Hardware solutions Semaphores IPC: Message passing Deadlocks Accessing the wait queue is a critical section Need to add mutual exclusion Need extra lock check in acquire Thread may find the lock busy Another thread may release the lock but before the first thread enqueues itself This can get ugly! Operating Systems 4 - Concurrency and Synchronization 22/46

The semaphores

Semaphores Count # of wake-ups saved for future use Two atomic operations: down ( sem s) { if (s > 0) s = s - 1; else sleep on event s } up(sem s) { if ( someone is waiting on s) wake up one thread else s = s + 1; } // initialize mutex = 1; down (& mutex ) // critical section up (& mutex ) Binary semaphore Operating Systems 4 - Concurrency and Synchronization 23/46

Semaphores Count the number of threads that may enter a critical section at any given time. Each down decreases the number of future accesses When no more are allowed, processes have to wait Each up lets a waiting process get in Operating Systems 4 - Concurrency and Synchronization 24/46

Producer-consumer example Producer Generates items that go into a buffer Maximum buffer capacity = N If the producer fills the buffer, it must wait (sleep) Consumer Consumes things from the buffer If there s nothing in the buffer, it must wait (sleep) This is known as the Bounded-Buffer Problem. Operating Systems 4 - Concurrency and Synchronization 25/46

Producer-consumer example int sem mutex =1, empty =N, full =0; producer () { for (;;) { produce_ item (& item ); // produce something down(&empty); // decrement empty count down(&mutex); // start critical section enter_ item ( item ); // put item in buffer up(&mutex); // end critical section up(&full); // +1 full slot }} consumer () { for (;;) { down(&full); // one less item down(&mutex); // start critical section remove_ item ( item ); // get item from buffer up(&mutex); // end critical section up(&empty); // one more empty slot consume_ item ( item ); // consume it }} Operating Systems 4 - Concurrency and Synchronization 26/46

Readers-writers example Shared data store (e.g., database) Multiple processes can read concurrently Allow only one process to write at a time And no readers can read while the writer is writing Operating Systems 4 - Concurrency and Synchronization 27/46

Readers-writers example sem mutex =1; // CS used only by the reader sem canwrite =1; // CS for N readers vs. 1 writer int readcount = 0; // number of concurrent readers writer () { for (;;) { down(&canwrite); // block if we cannot write // write data up(&canwrite); // end critical section } } Operating Systems 4 - Concurrency and Synchronization 28/46

Readers-writers example sem mutex =1; // CS used only by the reader sem canwrite =1; // CS for N readers vs. 1 writer int readcount = 0; // number of concurrent readers reader () { for (;;) { down(&mutex); readcount ++; if ( readcount == 1) // first reader down ( canwrite ); // sleep or disallow the writer from writing up(&mutex); // do the read down(&mutex); readcount - -; if ( readcount == 0) up( canwrite ); // no more readers! Allow the writer access up(&mutex); }} Operating Systems 4 - Concurrency and Synchronization 29/46

Event counters Avoid race conditions without using mutual exclusion An event counter is an integer Three operations: read(e) return the current value of event counter E advance(e) increment E (atomically) await(e, v) wait until E v Operating Systems 4 - Concurrency and Synchronization 30/46

Producer-consumer example # define N 4 // four slots in the buffer int in =0; // number of items inserted into buffer int out =0; // number of items removed from buffer producer () { int item, seq =0; for (;;) { produce_ item (& item );// produce something seq ++; // item # of item produced await(out, seq-n); // wait until there s room enter_ item ( item ); // put item in buffer advance(&in); // to consumer : one more item }} consumer () { int item, seq =0; for (;;) { seq ++; // item # we want to consume await(in, seq); // wait until item present remove_ item ( item ); // get the item from buffer advance(&out); // to producer : item s gone consume_ item ( item ); // consume it }} Operating Systems 4 - Concurrency and Synchronization 31/46

Producer-consumer example # define N 4 // four slots in the buffer int in =0, out =0; // number of items inserted / removed producer () { int item, seq =0; for (;;) { produce_ item (& item );// produce something seq ++; // item # of item produced await(out, seq-n); // wait until there s room enter_ item ( item ); // put item in buffer advance(&in); // to consumer : one more item }} Suppose the producer runs for a while and the consumer does not: It. 1: out=0, seq=1, await(0, 1-4): continue since 0 3 in=1 It. 2: out=0, seq=2, await(0, 2-4): continue since 0 2 in=2 It. 3: out=0, seq=3, await(0, 3-4): continue since 0 1 in=3 It. 4: out=0, seq=4, await(0, 4-4): continue since 0 0 in=4 It. 5: out=0, seq=5, await(0, 5-4): wait since 0 < 1 Operating Systems 4 - Concurrency and Synchronization 32/46

Producer-consumer example # define N 4 // four slots in the buffer int in =0, out =0; // number of items inserted / removed producer () { int item, seq =0; for (;;) { produce_ item (& item );// produce something seq ++; // item # of item produced await(out, seq-n); // wait until there s room enter_ item ( item ); // put item in buffer advance(&in); // to consumer : one more item }} Suppose the consumer runs first: Iteration 1: sequence = 1, await(0, 1) sleep since 0 < 1 When the producer runs its first iteration, it will increment in The consumer s await will wake up since it s now await(1,1) and 1 1 Operating Systems 4 - Concurrency and Synchronization 33/46

Condition variables / Monitors Higher-level synchronization primitive Implemented by the programming language / APIs Two operations: wait(condition_variable) Block until condition_variable is signaled signal(condition_variable) Wake up one process that is waiting on the condition variable Also called notify Operating Systems 4 - Concurrency and Synchronization 34/46

Mutual exclusion Hardware solutions Semaphores IPC: Message passing Deadlocks

Communicating processes Must: Synchronize Exchange data Message passing offers: Data communication Synchronization (via waiting for messages) Works with processes on different machines Operating Systems 4 - Concurrency and Synchronization 35/46

Message passing Two primitives: send(destination, message) receive(source, message) Operations may or may not be blocking Operating Systems 4 - Concurrency and Synchronization 36/46

Producer-consumer example # define N 4 // number of slots in the buffer */ consumer () { int item, i; message m; for ( i =0; i < N; ++ i) send(prod, &m); // send N empty messages for (;;) { receive(prod, &m); // get a message with item take_ item (& m, & item );// take item out of message send(prod, &m); // send an empty reply consume_ item ( item ); // consume it }} producer () { int item ; message m; for (;;) { produce_ item (& item ); // produce something receive(consumer, &m); // wait for an empty message build_ mess (& m, item ); // construct the message send(consumer, &m); // send it off }} Operating Systems 4 - Concurrency and Synchronization 37/46

Messaging: rendezvous Sending process blocked until receive occurs Receive blocks until a send occurs Advantages Disadvantage No need for message buffering if on same system Easy and efficient to implement Allows for tight synchronization Forces sender and receiver to run in lockstep Operating Systems 4 - Concurrency and Synchronization 38/46

Messaging: Direct Addressing Sending process identifies receiving process Receiving process can identify sending process Or can receive it as a parameter Operating Systems 4 - Concurrency and Synchronization 39/46

Messaging: Indirect Addressing Messages sent to an intermediary data structure of FIFO queues Each queue is a mailbox Simplifies multiple readers Operating Systems 4 - Concurrency and Synchronization 40/46

Mailboxes 1 sender, 1 reader M senders, 1 reader 1 sender, N readers M senders, N readers Operating Systems 4 - Concurrency and Synchronization 41/46

Mutual exclusion Hardware solutions Semaphores IPC: Message passing Deadlocks

Other common IPC mechanisms Shared files File locking allows concurrent access control Mandatory or advisory Signal A simple poke Pipe Two-way data stream using file descriptors (but not names) Need a common parent or threads in the same process Named pipe (FIFO file) Like a pipe but opened like a file Shared memory Operating Systems 4 - Concurrency and Synchronization 42/46

Conditions for deadlock Four conditions must hold: 1. Mutual exclusion Only one thread can access a critical section (resource) at a time 2. Hold and wait A thread holds a resource but waits for another resource 3. Non-preemption of resources Resources can only be released voluntarily 4. Circular wait There is a cyclic dependency of threads waiting on resources Operating Systems 4 - Concurrency and Synchronization 43/46

Deadlock Resource allocation Resource R 1 is allocated to process P 1 : assignment edge Resource R 1 is requested by process P 1 : request edge Deadlock is present when the graph has cycles Operating Systems 4 - Concurrency and Synchronization 44/46

Deadlock example Circular dependency among four processes and four resources leads to deadlock. Operating Systems 4 - Concurrency and Synchronization 45/46

Dealing with deadlock Deadlock prevention Ensure that at least one of necessary conditions cannot hold Deadlock avoidance Provide advance information to the OS on which resources a process will request. OS can then decide if the process should wait But knowing which resources will be used (and when) is hard! (impossible, really) Deadlock detection Detect when a deadlock occurs and then deal with it Ignore the problem Let the user deal with it (most common approach) Operating Systems 4 - Concurrency and Synchronization 46/46