Three Basic Mechanisms for Creating Concurrent Flows. Systemprogrammering 2009 Föreläsning 10 Concurrent Servers. Process-Based Concurrent Server

Similar documents
Concurrent Servers Dec 2, 2009"

Iterative Servers The course that gives CMU its Zip! Iterative servers process one request at a time. Concurrent Servers

call connect call read call connect ret connect call fgets Client 2 blocks waiting to complete its connection request until after lunch!

Concurrent Programming April 21, 2005

Concurrent Programming November 28, 2007

Concurrent Programming. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Concurrent Programming

Computer Systems Laboratory Sungkyunkwan University

Concurrent Programming is Hard! Concurrent Programming. Reminder: Iterative Echo Server. The human mind tends to be sequential

Concurrent Programming

Lecture #23 Concurrent Programming

Carnegie Mellon. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

CONCURRENT PROGRAMMING. Lecture 5

Concurrent Programming

Concurrent Programming

Concurrent Programming

Concurrent Programming

Total Score is updated. The score of PA4 will be changed! Please check it. Will be changed

Concurrent programming

CONCURRENCY MODEL. UNIX Programming 2014 Fall by Euiseong Seo

Concurrent Programming

Approaches to Concurrency

Concurrent Programming

Concurrent Programming

Concurrent Programming

The course that gives CMU its Zip! Concurrency I: Threads April 10, 2001

Announcement (1) Due date for PA3 is changed (~ next week) PA4 will also be started in the next class. Not submitted. Not scored

Proxy: Concurrency & Caches

Network Programming September 6, 2005

Concurrency. Alan L. Cox Some slides adapted from CMU slides

Threading Language and Support. CS528 Multithreading: Programming with Threads. Programming with Threads

I/O Models. Kartik Gopalan

Carnegie Mellon Performance of Mul.threaded Code

CS 475. Process = Address space + one thread of control Concurrent program = multiple threads of control

CISC2200 Threads Spring 2015

Today. Threads review Sharing Mutual exclusion Semaphores

Network Programming November 3, 2008

Threads. CS 475, Spring 2018 Concurrent & Distributed Systems

POSIX threads CS 241. February 17, Copyright University of Illinois CS 241 Staff

Outline. CS4254 Computer Network Architecture and Programming. Introduction 2/4. Introduction 1/4. Dr. Ayman A. Abdel-Hamid.

Any of the descriptors in the set {1, 4} have an exception condition pending

Threads. Jo, Heeseung

CS 5523 Operating Systems: Midterm II - reivew Instructor: Dr. Tongping Liu Department Computer Science The University of Texas at San Antonio

CMPSC 311- Introduction to Systems Programming Module: Concurrency

CS333 Intro to Operating Systems. Jonathan Walpole

Carnegie Mellon. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Recitation 14: Proxy Lab Part 2

CS510 Operating System Foundations. Jonathan Walpole

CS 3305 Intro to Threads. Lecture 6

CSC209H Lecture 10. Dan Zingaro. March 18, 2015

CMPSC 311- Introduction to Systems Programming Module: Concurrency

CS 5523 Operating Systems: Thread and Implementation

Synchronization: Basics

CMPSC 311- Introduction to Systems Programming Module: Concurrency

Threads. What is a thread? Motivation. Single and Multithreaded Processes. Benefits

Εργαστήριο 9 I/O Multiplexing

Internetworking II: Network programming. April 20, 2000

Threads (SGG 4) Outline. Traditional Process: Single Activity. Example: A Text Editor with Multi-Activity. Instructor: Dr.

CS Operating Systems: Threads (SGG 4)

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

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

Overview. Administrative. * HW 2 Grades. * HW 3 Due. Topics: * What are Threads? * Motivating Example : Async. Read() * POSIX Threads

Internet protocol stack. Internetworking II: Network programming. April 20, UDP vs TCP. Berkeley Sockets Interface.

NETWORK AND SYSTEM PROGRAMMING. I/O Multiplexing: select and poll function

Introduction to PThreads and Basic Synchronization

CPSC 341 OS & Networks. Threads. Dr. Yingwu Zhu

Client-server model The course that gives CMU its Zip! Network programming Nov 27, Using ports to identify services.

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

pthreads CS449 Fall 2017

CS 3723 Operating Systems: Final Review

Recitation 14: Proxy Lab Part 2

CSE 306/506 Operating Systems Threads. YoungMin Kwon

CS510 Operating System Foundations. Jonathan Walpole

THREADS. Jo, Heeseung

pthreads Announcement Reminder: SMP1 due today Reminder: Please keep up with the reading assignments (see class webpage)

CS370 Operating Systems

Threads. lightweight processes

Threads. Jo, Heeseung

Synchronization: Advanced

Synchronization: Basics

Last class: Today: Thread Background. Thread Systems

CS24: INTRODUCTION TO COMPUTING SYSTEMS. Spring 2018 Lecture 20

Assignment 2 Group 5 Simon Gerber Systems Group Dept. Computer Science ETH Zurich - Switzerland

Inter-Process Communication. Disclaimer: some slides are adopted from the book authors slides with permission 1

CSC209: Software tools. Unix files and directories permissions utilities/commands Shell programming quoting wild cards files

CSC209: Software tools. Unix files and directories permissions utilities/commands Shell programming quoting wild cards files. Compiler vs.

Network Programming / : Introduc2on to Computer Systems 21 st Lecture, April. 4, Instructors: Todd Mowry and Anthony Rowe

LSN 13 Linux Concurrency Mechanisms

Threads. studykorner.org

CSE 333 Lecture fork, pthread_create, select

ANSI/IEEE POSIX Standard Thread management

Processes, Threads, SMP, and Microkernels

9/13/2007. Motivations for Sockets What s in a Socket? Working g with Sockets Concurrent Network Applications Software Engineering for Project 1

What is concurrency? Concurrency. What is parallelism? concurrency vs parallelism. Concurrency: (the illusion of) happening at the same time.

ECE 650 Systems Programming & Engineering. Spring 2018

Concurrency. Johan Montelius KTH

Concurrent Programming. Concurrent Programming with Processes and Threads

Reading Assignment 4. n Chapter 4 Threads, due 2/7. 1/31/13 CSE325 - Processes 1

Concurrency on x86-64; Threads Programming Tips

Operating System Structure

Transcription:

Systemprogrammering 2009 Föreläsning 10 Concurrent Servers Topics! Limitations of iterative servers! Process-based concurrent servers! Event-based concurrent servers! Threads-based concurrent servers Three Basic Mechanisms for Creating Concurrent Flows 1. Processes! Kernel automatically interleaves multiple logical flows.! Each flow has its own private address space. 2. I/O multiplexing with select() or poll()! User manually interleaves multiple logical flows.! Each flow shares the same address space.! Popular for high-performance server designs. 3. Threads! Kernel automatically interleaves multiple logical flows.! Each flow shares the same address space.! Hybrid of processes and I/O multiplexing! F10 2 Systemprogrammering 2009 Process-Based Concurrent Server * echoserverp.c - A concurrent echo server based on processes * Usage: echoserverp <port> #include <ics.h> #define BUFSIZE 1024 void echo(int connfd); void sigchld_handler(int sig); int main(int argc, char **argv) int listenfd, connfd, port, clientlen; struct sockaddr_in clientaddr; if (argc!= 2) fprintf(stderr, "usage: %s <port>\n", argv[0]); exit(0); port = atoi(argv[1]); listenfd = Open_listenfd(port); Process-Based Concurrent Server (cont) Signal(SIGCHLD, sigchld_handler); parent must reap children! main server loop while (1) clientlen = sizeof(struct sockaddr_in); connfd = Accept(listenfd, (struct sockaddr *) &clientaddr, &clientlen)); if (Fork() == 0) Close(listenfd); child closes its listening socket echo(connfd); child reads and echoes input line Close(connfd); child is done with this client exit(0); child exits Close(connfd); parent must close connected socket! F10 3 Systemprogrammering 2009 F10 4 Systemprogrammering 2009

Process-Based Concurrent Server (cont) sigchld_handler - reaps children as they terminate void sigchld_handler(int sig) while ((waitpid(-1, NULL, WNOHANG)) > 0) ; return; Implementation Issues With Process-Based Designs Server should restart accept call if it is interrupted by a transfer of control to the SIGCHLD handler! Not necessary for systems with POSIX signal handling. "Our Signal wrapper tells kernel to automatically restart accept! Required for portability on some older Unix systems. Server must reap zombie children! to avoid fatal memory leak.! Can be avoided by the Double fork trick. Server must close its copy of connfd.! Kernel keeps reference for each socket.! After fork, refcnt(connfd) = 2.! Connection will not be closed until refcnt(connfd)=0. F10 5 Systemprogrammering 2009 F10 6 Systemprogrammering 2009 Pros and Cons of Process-Based Designs + Handles multiple connections concurrently + Clean sharing model! descriptors (no)! file tables (yes)! global variables (no) + Simple and straightforward. - Additional overhead for process control. - Nontrivial to share data between processes.! Requires IPC (interprocess communication) mechanisms FIFO s (named pipes), System V shared memory and semaphores I/O multiplexing provides more control with less overhead... Event-Based Concurrent Servers Using I/O Multiplexing Maintain a pool of connected descriptors. Repeat the following forever:! Use the Unix select function to block until: "(a) New connection request arrives on the listening descriptor. "(b) New data arrives on an existing connected descriptor.! If (a), add the new connection to the pool of connections.! If (b), read any available data from the connection "Close connection on EOF and remove it from the pool. F10 7 Systemprogrammering 2009 F10 8 Systemprogrammering 2009

The select Function select() sleeps until one or more file descriptors in the set readset are ready for reading. #include <sys/select.h> int select(int maxfdp1, fd_set *readset, NULL, NULL, NULL); readset Opaque bit vector (max FD_SETSIZE bits) that indicates membership in descriptor set. If bit k is 1, then descriptor k is a member of the descriptor set. maxfdp1 Maximum descriptor in descriptor set plus 1. Tests descriptors 0, 1, 2,..., maxfdp1-1 for set membership. select() returns the number of ready descriptors and sets each bit of readset to indicate the ready status of its corresponding descriptor. a Macros for Manipulating Set Descriptors void FD_ZERO(fd_set *fdset);! Turn off all bits in fdset. void FD_SET(int fd, fd_set *fdset);! Turn on bit fd in fdset. void FD_CLR(int fd, fd_set *fdset);! Turn off bit fd in fdset. int FD_ISSET(int fd, *fdset);! Is bit fd in fdset turned on? F10 9 Systemprogrammering 2009 F10 10 Systemprogrammering 2009 select Example * main loop: wait for connection request or stdin command. * If connection request, then echo input line * and close connection. If stdin command, then process. printf("server> "); fflush(stdout); fdset readfs; while (notdone) * select: check if the user typed something to stdin or * if a connection request arrived. FD_ZERO(&readfds); initialize the fd set FD_SET(listenfd, &readfds); add socket fd FD_SET(0, &readfds); add stdin fd (0) Select(listenfd+1, &readfds, NULL, NULL, NULL); select Example (cont) First we check for a pending event on stdin. if the user has typed a command, process it if (FD_ISSET(0, &readfds)) fgets(buf, BUFSIZE, stdin); switch (buf[0]) case 'c': print the connection count printf("received %d conn. requests so far.\n", connectcnt); printf("server> "); fflush(stdout); break; case 'q': terminate the server notdone = 0; break; default: bad input printf("error: unknown command\n"); printf("server> "); fflush(stdout); F10 11 Systemprogrammering 2009 F10 12 Systemprogrammering 2009

select Example (cont) Next we check for a pending connection request. if a connection request has arrived, process it if (FD_ISSET(listenfd, &readfds)) connfd = Accept(listenfd, (struct sockaddr *) &clientaddr, &clientlen); connectcnt++; bzero(buf, BUFSIZE); Rio_readn(connfd, buf, BUFSIZE); Rio_writen(connfd, buf, strlen(buf)); Close(connfd); while Event-based Concurrent Echo Server * echoservers.c - A concurrent echo server based on select #include "csapp.h" typedef struct represents a pool of connected descriptors int maxfd; largest descriptor in read_set fd_set read_set; set of all active descriptors fd_set ready_set; subset of descriptors ready for reading int nready; number of ready descriptors from select int maxi; highwater index into client array int clientfd[fd_setsize]; set of active descriptors rio_t clientrio[fd_setsize]; set of active read buffers pool; void init_pool(int listenfd, pool *p); void add_client(int connfd, pool *p); void check_clients(pool *p); int byte_cnt = 0; counts total bytes received by server F10 13 Systemprogrammering 2009 F10 14 Systemprogrammering 2009 Event-based Concurrent Server (cont) int main(int argc, char **argv) int listenfd, connfd, clientlen; struct sockaddr_in clientaddr; static pool pool; if (argc!= 2) fprintf(stderr, usage: %s <port>\n, argv[0]); exit(0); port = atoi(argv[1]); listenfd = Open_listenfd(port); init_pool(listenfd, &pool); while (1) pool.ready_set = pool.read_set; pool.nready = Select(pool.maxfd+1, &pool.ready_set, NULL, NULL, NULL); if (FD_ISSET(listenfd, &pool.ready_set)) clientlen = sizeof(struct sockaddr_in); connfd = Accept(listenfd, (SA *)&clientaddr, &clientlen); add_client(connfd, &pool); check_clients(&pool); Event-based Concurrent Server (cont) initialize the descriptor pool void init_pool(int listenfd, pool *p) Initially, there are no connected descriptors int i; p->maxi = -1; for (i=0; i< FD_SETSIZE; i++) p->clientfd[i] = -1; Initially, listenfd is only member of select read set p->maxfd = listenfd; FD_ZERO(&p->read_set); FD_SET(listenfd, &p->read_set); F10 15 Systemprogrammering 2009 F10 16 Systemprogrammering 2009

Event-based Concurrent Server (cont) void add_client(int connfd, pool *p) add connfd to pool p int i; p->nready--; for (i = 0; i < FD_SETSIZE; i++) Find available slot if (p->clientfd[i] < 0) p->clientfd[i] = connfd; Rio_readinitb(&p->clientrio[i], connfd); FD_SET(connfd, &p->read_set); Add desc to read set if (connfd > p->maxfd) Update max descriptor num p->maxfd = connfd; if (i > p->maxi) Update pool high water mark p->maxi = i; break; if (i == FD_SETSIZE) Couldn't find an empty slot app_error("add_client error: Too many clients"); Event-based Concurrent Server (cont) void check_clients(pool *p) echo line from ready descs in pool p int i, connfd, n; char buf[maxline]; rio_t rio; for (i = 0; (i <= p->maxi) && (p->nready > 0); i++) connfd = p->clientfd[i]; If the descriptor is ready, echo a text line from it if ((connfd > 0) && (FD_ISSET(connfd, &p->ready_set))) rio = p->clientrio[i]; p->nready--; if ((n = Rio_readlineb(&rio, buf, MAXLINE))!= 0) byte_cnt += n; Rio_writen(connfd, buf, n); else EOF detected, remove descriptor from pool Close(connfd); FD_CLR(connfd, &p->read_set); p->clientfd[i] = -1; F10 17 Systemprogrammering 2009 F10 18 Systemprogrammering 2009 Pro and Cons of Event-Based Designs + One logical control flow. + Can single-step with a debugger. + No process or thread control overhead.! Design of choice for high-performance Web servers and search engines. - Significantly more complex to code than process- or thread-based designs. - Can be vulnerable to denial of service attack! How? Threads provide a middle ground between processes and I/O multiplexing... Traditional View of a Process Process = process context + code, data, and stack Process context Program context: Data registers Condition codes Stack pointer (SP) Program counter (PC) Kernel context: VM structures Descriptor table brk pointer SP brk PC 0 Code, data, and stack stack shared libraries run-time heap read/write data read-only code/data F10 19 Systemprogrammering 2009 F10 20 Systemprogrammering 2009

Alternate View of a Process Process = thread + code, data, and kernel context SP Thread (main thread) stack Thread context: Data registers Condition codes Stack pointer (SP) Program counter (PC) shared libraries run-time heap F10 21 Systemprogrammering 2009 brk PC 0 Code and Data read/write data read-only code/data Kernel context: VM structures Descriptor table brk pointer A Process With Multiple Threads Multiple threads can be associated with a process! Each thread has its own logical control flow (sequence of PC values)! Each thread shares the same code, data, and kernel context! Each thread has its own thread id (TID) Thread 1 (main thread) Shared code and data shared libraries Thread 2 (peer thread) stack 1 run-time heap stack 2 read/write data Thread 1 context: read-only code/data Thread 2 context: Data registers Data registers Condition codes 0 Condition codes SP1 SP2 Kernel context: PC1 PC2 VM structures Descriptor table brk pointer F10 22 Systemprogrammering 2009 Logical View of Threads Threads associated with a process form a pool of peers.! Unlike processes which form a tree hierarchy Threads associated with process foo Process hierarchy Concurrent Thread Execution Two threads run concurrently (are concurrent) if their logical flows overlap in time. Otherwise, they are sequential. T1 T2 shared code, data and kernel context T4 P0 P1 sh sh sh Examples:! Concurrent: A & B, A&C! Sequential: B & C Time Thread A Thread B Thread C T5 T3 foo bar F10 23 Systemprogrammering 2009 F10 24 Systemprogrammering 2009

Threads vs. Processes How threads and processes are similar! Each has its own logical control flow.! Each can run concurrently.! Each is context switched. How threads and processes are different! Threads share code and data, processes (typically) do not.! Threads are somewhat less expensive than processes. "Process control (creating and reaping) is twice as expensive as thread control. "Linux/Pentium III numbers:» ~20K cycles to create and reap a process.» ~10K cycles to create and reap a thread. Posix Threads (Pthreads) Interface Pthreads: Standard interface for ~60 functions that manipulate threads from C programs.! Creating and reaping threads. "pthread_create "pthread_join! Determining your thread ID "pthread_self! Terminating threads "pthread_cancel "pthread_exit "exit [terminates all threads], ret [terminates current thread]! Synchronizing access to shared variables "pthread_mutex_init "pthread_mutex_[un]lock "pthread_cond_init "pthread_cond_[timed]wait F10 25 Systemprogrammering 2009 F10 26 Systemprogrammering 2009 The Pthreads "hello, world" Program Execution of Threaded hello, world * hello.c - Pthreads "hello, world" program #include "csapp.h" void *thread(void *vargp); int main() pthread_t tid; Pthread_create(&tid, NULL, thread, NULL); Pthread_join(tid, NULL); exit(0); thread routine void *thread(void *vargp) printf("hello, world!\n"); return NULL; Thread attributes (usually NULL) Thread arguments (void *p) return value (void **p) call Pthread_create() Pthread_create() returns call Pthread_join() main thread waits for peer thread to terminate Pthread_join() returns exit() terminates main thread and any peer threads main thread peer thread printf() return NULL; (peer thread terminates) F10 27 Systemprogrammering 2009 F10 28 Systemprogrammering 2009

Thread-Based Concurrent Echo Server int main(int argc, char **argv) int listenfd, *connfdp, port, clientlen; struct sockaddr_in clientaddr; pthread_t tid; if (argc!= 2) fprintf(stderr, "usage: %s <port>\n", argv[0]); exit(0); port = atoi(argv[1]); listenfd = open_listenfd(port); while (1) clientlen = sizeof(struct sockaddr_in); connfdp = Malloc(sizeof(int)); *connfdp = Accept(listenfd, (SA *) &clientaddr, &clientlen); Pthread_create(&tid, NULL, thread, connfdp); Thread-Based Concurrent Server (cont) * thread routine void *thread(void *vargp) int connfd = *((int *)vargp); Pthread_detach(pthread_self()); Free(vargp); echo_r(connfd); reentrant version of echo() Close(connfd); return NULL; F10 29 Systemprogrammering 2009 F10 30 Systemprogrammering 2009 Issues With Thread-Based Servers Must run detached to avoid memory leak.! At any point in time, a thread is either joinable or detached.! Joinable thread can be reaped and killed by other threads. "must be reaped (with pthread_join) to free memory resources.! Detached thread cannot be reaped or killed by other threads. "resources are automatically reaped on termination.! Default state is joinable. "use pthread_detach(pthread_self()) to make detached. Must be careful to avoid unintended sharing.! For example, what happens if we pass the address of connfd to the thread routine? "Pthread_create(&tid, NULL, thread, (void *)&connfd); All functions called by a thread must be thread-safe! (next lecture) Pros and Cons of Thread-Based Designs + Easy to share data structures between threads! e.g., logging information, file cache. + Threads are more efficient than processes. --- Unintentional sharing can introduce subtle and hard-to- reproduce errors!! The ease with which data can be shared is both the greatest strength and the greatest weakness of threads.! (next lecture) F10 31 Systemprogrammering 2009 F10 32 Systemprogrammering 2009