Inter-Process Communication, Advanced I/O (Chap 12, 14 in the book “Advanced Programming in the UNIX Environment”) Acknowledgement : Prof. Y. Moon at Kangwon.

Slides:



Advertisements
Similar presentations
Florida State UniversityCOP5570 – Advanced Unix Programming IPC mechanisms Pipes Sockets System V IPC –Message Queues –Semaphores –Shared Memory.
Advertisements

Unix IPC and Synchronization. Pipes and FIFOs Pipe: a circular buffer of fixed size written by one process and read by another int pipe(int fildes[2])
Shared Memory  Creating a Shared Memory Segment Allocated in byte amounts  Shared Memory Operations Create Attach Detach  Shared Memory Control Remove.
XSI IPC Message Queues Semaphores Shared Memory. XSI IPC Each XSI IPC structure has two ways to identify it An internal (within the Kernel) non negative.
Shared memory. Process A Process B Physical Memory Virtual address space A Virtual address space B Share Instruction memory Data Instruction memory Data.
Inter-process communication (IPC) using Shared Memory & Named Pipes CSE 5520/4520 Wireless Networks.
System V IPC (InterProcess Communication) Messages Queue, Shared Memory, and Semaphores.
Unix programming Term: III B.Tech II semester Unit-V II PPT Slides Text Books: (1)unix the ultimate guide by Sumitabha Das (2)Advanced programming.
NCHU System & Network Lab Lab 15 Record Locking. NCHU System & Network Lab Record Locking (1/4) What happens when two process attempt to edit the same.
Daemon Processes Long lived utility processes Often started at system boot and ended when system shuts down Run in the background with no controlling terminal.
Process Control Hua LiSystems ProgrammingCS2690Process Control Page 1 of 41.
Inter Process Communication:  It is an essential aspect of process management. By allowing processes to communicate with each other: 1.We can synchronize.
UNIX IPC CSE 121 Spring 2003 Keith Marzullo. CSE 121 Spring 2003Review of Concurrency2 Creating a UNIX process A process is created by making an exact.
NCHU System & Network Lab Lab 10 Message Queue and Shared Memory.
Inter Process Communication. Introduction Traditionally describe mechanism for message passing between different processes that are running on some operating.
Unix IPC Unix has three major IPC constructs to facilitate interaction between processes: Message Queues (this PowerPoint document) permit exchange of.
Inter-Process Communication: Message Passing
CS162B: Semaphores (and Shared Memory) Jacob T. Chan.
1 Chapter 6 Interprocess Communications. 2 Contents u Introduction u Universal IPC Facilities u System V IPC.
Lecture 6 Introduction to Distributed Programming System V IPC: Message Queues, Shared Memory, Semaphores.
Inter-Process Communication Mechanisms CSE331 Operating Systems Design.
Thread Synchronization with Semaphores
S -1 Shared Memory. S -2 Motivation Shared memory allows two or more processes to share a given region of memory -- this is the fastest form of IPC because.
System V IPC Provides three mechanisms for InterProcess Communication (IPC) : Messages : exchange messages with any process or server. Semaphores : allow.
Shell (Part 2). Example r What if we want to support something like this: m ps –le | sort r One process should execute ps –le and another should execute.
Pipes A pipe is a simple, synchronized way of passing information between processes A pipe is a special file/buffer that stores a limited amount of data.
TANNENBAUM SECTION 2.3 INTERPROCESS COMMUNICATION2 OPERATING SYSTEMS.
Lecture 7 Introduction to Distributed Programming System V IPC: Message Queues, Shared Memory, Semaphores.
Chapter 6 UNIX Special Files Source: Robbins and Robbins, UNIX Systems Programming, Prentice Hall, 2003.
CS162B: Pipes Jacob T. Chan. Pipes  These allow output of one process to be the input of another process  One of the oldest and most basic forms of.
Florida State UniversityCOP5570 – Advanced Unix Programming Today’s topics System V Interprocess communication (IPC) mechanisms –Message Queues –Semaphores.
1 Semaphores Chapter 7 from Inter-process Communications in Linux: The Nooks & Crannies by John Shapley Gray Publisher: Prentice Hall Pub Date: January.
1 Shared Memory. 2  Introduction  Creating a Shared Memory Segment  Shared Memory Control  Shared Memory Operations  Using a File as Shared Memory.
CE Operating Systems Lecture 13 Linux/Unix interprocess communication.
Semaphores Creating and Accessing Semaphore Sets Semaphore Operations
Interprocess Communication Bosky Agarwal CS 518. Presentation Layout Introduction Pipes FIFOs System V IPC 1.Using pipes 2.Working of pipes 3.Pipe Data.
File descriptor table File descriptor (integer)File name 0stdin 1stdout 2stderr Use open(), read(), write() system calls to access files Think what happens.
UNIX IPC CSC345.
Interprocess Communication Anonymous Pipes Named Pipes (FIFOs) popen() / pclose()
Inter Process Comunication in Linux by Dr P.Padmanabham Professor (CSE)&Director Bharat Institute of Engineering &Technology Hyderabad Mobile
Semaphores Chapter 7 from Inter-process Communications in Linux:
© 2006 RightNow Technologies, Inc. Synchronization September 15, 2006 These people do not actually work at RightNow.
Advanced UNIX IPC Facilities After Haviland, et al.’s book.
Slide 9-1 Copyright © 2004 Pearson Education, Inc. Inter process Communication Mechanisms  Allow arbitrary processes to exchange data and synchronize.
Interprocess Communication
IPC Message Queue. Data Structure msgque IP_NOUSED.
Linux/UNIX Programming APUE (Interprocess Communication) 문양세 강원대학교 IT 대학 컴퓨터과학전공.
Message Queues. Unix IPC Package ● Unix System V IPC package consists of three things – Messages – allows processes to send formatted data streams to.
Signals & Message queue Inter process mechanism in Linux system 3/24/
Interprocess Communication. Resource Sharing –Kernel: Data structures, Buffers –Processes: Shared Memory, Files Synchronization Methods –Kernel: Wait.
Shared Memory Dr. Yingwu Zhu. Overview System V shared memory Let multiple processes attach a segment of physical memory to their virtual address spaces,
Dup, dup2 An existing file descriptor ( filedes ) is duplicated The new file descriptor returned by dup is guaranteed to be the lowest numered available.
Advanced Programming in the UNIX Environment Hop Lee.
Textbook: Advanced Programming in the UNIX Environment, 2 nd Edition, W. Richard Stevens and Stephen A. Rago 1 Chapter 15. Interprocess Communication System.
Textbook: Advanced Programming in the UNIX Environment, 2 nd Edition, W. Richard Stevens and Stephen A. Rago 1 Chapter 15. Interprocess Communication System.
Linux/UNIX Programming APUE (Process Control) 문양세 강원대학교 IT 대학 컴퓨터과학전공.
Operating Systems Inter-Process Communication Shared Memory & Semaphores Moti Geva
Linux/UNIX Programming APUE (Interprocess Communication)
Message queue Inter process communication primitive
Unix IPC Unix has three major IPC constructs to facilitate interaction between processes: Message Queues (this PowerPoint document) permit exchange of.
Lock and IPC (Inter-Process Communication) (Chap 12, 14 in the book “Advanced Programming in the UNIX Environment”) Acknowledgement : Prof. Y. Moon at.
Shared Memory Dr. Yingwu Zhu.
Interprocess Communication-1
Interprocess Communication and Synchronization using System V IPC
Message Queues.
Inter Process Communication
Unix programming Term: Unit-V I PPT Slides
IPC Prof. Ikjun Yeom TA – Hoyoun
| Website for Students | VTU -NOTES -Question Papers
dup, dup2 An existing file descriptor (filedes) is duplicated
Presentation transcript:

Inter-Process Communication, Advanced I/O (Chap 12, 14 in the book “Advanced Programming in the UNIX Environment”) Acknowledgement : Prof. Y. Moon at Kangwon Nat’l Univ.

UNIX time 2 #include time_t time(time_t *calptr); Returns: value of time if OK, -1 on error struct tm *gmtime(const time_t *calptr); Returns: pointer to time structure time_t mktime(struct tm *tmptr); Returns : calendar time if OK, -1 on error char *asctime(const struct tm *tmptr); char *ctime(const time_t *calptr); Returns : pointer to null terminated string size_t strftime(char *buf, size_t maxsize, const char *format, const struct tm *tmptr); Returns : number of characters stored in array if room, else 0 struct tm { int tm_sec; int tm_min; int tm_hour; int tm_mday; /* [1,31] */ int tm_mon; /* [0,11] */ int tm_year; /* years since 1900 */ int tm_wday; /* days since Sunday [0, 6] */ int tm_yday; /* [0, 365] */ int tm_isdst; };

Lock a synchronization mechanism for enforcing limits on access to a resource in an environment where there are many threads of executionsynchronization Advisory lock Other processes can still access (read or write) to a locked resource There is a way to check whether a resource is locked Mandatory lock Prevent access to a locked resource 3

Advisory Locking Applies or removes an advisory lock on the file associated with the file descriptor fd Operation can be LOCK_SH LOCK_EX LOCK_NB LOCK_UN Locks entire file 4 #include int flock(int fd, int operation); Returns: 0 if OK, -1 otherwise

Advisory Record Locking struct flock { short l_type;/* F_RDLCK, F_WRLCK, or F_UNLCK */ off_t l_start;/* offset in bytes from l_whence */ short l_whence;/* SEEK_SET, SEEK_CUR, SEEK_END */ off_t l_len;/* length, in bytes; 0 means “lock to EOF */ pid_t l_pid;/* returned by F_GETLK */ } Lock types are : F_RDLCK : non-exclusive (read) lock; fails if write lock exists F_WRLCK : exclusive (write) lock; fails if any lock exists F_UNLCK : releases our lock on specified range 5 #include int fcntl(int fd, int cmd, struct flock* lock); Returns: depends on cmd if OK, -1 on error

Setting and Clearing a lock 6 struct flock fl; int fd; fl.l_type = F_WRLCK; /* F_RDLCK, F_WRLCK, F_UNLCK */ fl.l_whence = SEEK_SET; /* SEEK_SET, SEEK_CUR, SEEK_END */ fl.l_start = 0; /* Offset from l_whence */ fl.l_len = 0; /* length, 0 = to EOF */ fl.l_pid = getpid(); /* our PID */ fd = open("filename", O_WRONLY); fcntl(fd, F_SETLKW, &fl); /* F_GETLK, F_SETLK, F_SETLKW */ fl.l_type = F_UNLCK; /* tell it to unlock the region */ fcntl(fd, F_SETLK, &fl); /* set the region to unlocked */

Non-Blocking(Asynchronous) I/O A form of I/O that permits subsequent processing to continue before current processing has finished. Non Blocking I/O function returns immediately Two ways for specifying non-blocking I/O When calling “open” and specify O_NONBLOCK flag For a file descriptor that is already open, call fcntl to turn on O_NONBLOCK file status flag. 7

IPC Pipes FIFOs Message Queue Shared Memory Semaphores Page 8

Page 9 Contents Pipes FIFOs System V IPC Message Queues Shared Memory Semaphores APUE (Interprocess Communication

Page 10 IPC using Pipes IPC using regular files unrelated processes can share fixed size lack of synchronization IPC using pipes for transmitting data between related processes can transmit an unlimited amount of data automatic synchronization on open() APUE (Interprocess Communication

Page 11 Pipes in a UNIX Shell In a UNIX shell, the pipe symbol is: | (the vertical bar) In a shell, UNIX pipes look like: $ ls -alg | more where the standard output of the program at the left (i.e., the producer) becomes the standard input of the program at the right (i.e., the consumer). We can have longer pipes: $ pic paper.ms | tbl | eqn | ditroff -ms APUE (Interprocess Communication

Page 12 Example (1/2) $ who | sort APUE (Interprocess Communication

Page 13 Example (2/2) APUE (Interprocess Communication

Page 14 IPC using Pipes Data transmitting data is written into pipes using the write() system call data is read from a pipe using the read() system call automatic blocking when full or empty Types of pipes (unnamed) pipes named pipes (FIFOs) APUE (Interprocess Communication

Page 15 Pipes (1/4) In UNIX, pipes are the oldest form of IPC. Limitations of Pipes: Half duplex (data flows in one direction) Can only be used between processes that have a common ancestor (Usually used between the parent and child processes) Processes cannot pass pipes and must inherit them from their parent If a process creates a pipe, all its children will inherit it APUE (Interprocess Communication

Page 16 Pipes (2/4) Two file descriptors are returned through the fd argument fd[0]: can be used to read from the pipe, and fd[1]: can be used to write to the pipe Anything that is written on fd[1] may be read by fd[0]. This is of no use in a single process. However, between processes, it gives a method of communication The pipe() system call gives parent-child processes a way to communicate with each other. APUE (Interprocess Communication #include int pipe(int fd[2]) Returns: 0 if OK, -1 on error

Page 17 Pipes (3/4) APUE (Interprocess Communication parent  child: parent closes fd[0] child closes fd[1] parent  child: parent closes fd[1] child closes fd[0] pipe kernel fd[1] parent fd[0] child pipe kernel fd[0] parent fd[1] child

Page 18 Pipes (4/4) Read from a pipe with write end closed: (fd[1] 이 close 된 경우 ) returns 0 to indicate EOF Write to a pipe with read end closed: (fd[0] 가 close 된 경우 ) SIGPIPE generated, write() returns error (errno == EPIPE) APUE (Interprocess Communication

Page 19 example: pipe.c (1/2) #include // pipe.c #define READ 0 #define WRITE 1 char* phrase = "Stuff this in your pipe and smoke it"; main( ) { int fd[2], bytesRead; char message[100]; pipe(fd); if (fork() == 0) { // child close(fd[READ]); write(fd[WRITE], phrase, strlen(phrase)+1); fprintf(stdout, "[%d, child] write completed.\n", getpid()); close(fd[WRITE]); } else { // parent close(fd[WRITE]); bytesRead = read(fd[READ], message, 100); fprintf(stdout, "[%d, parent] read completed.\n", getpid()); printf("Read %d bytes: %s\n", bytesRead,message); close(fd[READ]); } APUE (Interprocess Communication

Page 20 example: pipe.c (2/2) APUE (Interprocess Communication 실행 결과

Page 21 Contents Pipes FIFOs System V IPC Message Queues Shared Memory Semaphores APUE (Interprocess Communication

Page 22 FIFOs (1/3) Pipes can be used only between related processes. (e.g., parent and child processes) FIFOs are "named pipes" that can be used between unrelated processes. A type of file stat.st_mode == FIFO Test with S_ISFIFO() macro APUE (Interprocess Communication

Page 23 FIFOs (2/3) APUE (Interprocess Communication Creating FIFOs is similar to creating a file. pathname: filename mode: permissons, same as for open() function Using a FIFO is similar to using a file. we can open, close, read, write, unlink, etc., to the FIFO. #include int mkfifo(const char *pathname, mode_t mode); Returns: 0 if OK, -1 on error

Page 24 FIFOs (3/3) if FIFO opened without O_NONBLOCK flag an open for read-only blocks until some other process opens the FIFO for writing an open for write-only blocks until some other process opens the FIFO for reading if O_NONBLOCK is specified (nonblocking) an open for read-only returns immediately if no process has the FIFO open for writing an open for write-only returns an error (errno=ENXIO) if no process has the FIFO open for reading Like a pipe, if we write to a FIFO that no process has open for reading, the signal SIGPIPE is generated. When the last writer for a FIFO closes the FIFO, an end of file (EOF) is generated for the reader of the FIFO. APUE (Interprocess Communication

Page 25 Uses of FIFOs Used by shell commands to pass data from one shell pipeline to another, without creating intermediate files. Used in client-server application to pass data between clients and server. APUE (Interprocess Communication

Page 26 Using FIFOs to Duplicate Output Streams APUE (Interprocess Communication tee(1) copies its standard input to both its standard output and to the file named on its command line. $ mkfifo fifo1 $ prog3 < fifo1 & $ prog1 < infile | tee fifo1 | prog2 prog1 tee prog2 prog3 fifo1 infile

Page 27 An Example using a FIFO APUE (Interprocess Communication

Page 28 Client-Server Communication Using a FIFO Server creates a “well-known” FIFO to communicate with clients. APUE (Interprocess Communication Problem: Server can't reply clients using a single “well-known” FIFO client well-known FIFO read request client server write request......

Page 29 Contents Pipes FIFOs System V IPC Message Queues Shared Memory Semaphores ( 간단히 ) APUE (Interprocess Communication

Page 30 System V IPC Message Queues Send and receive amount of data called “messages”. The sender classifies each message with a type. Shared Memory Shared memory allows two or more processes to share a given region of memory. Readers and writers may use semaphore for synchronization. Semaphores Process synchronization and resource management For example, a semaphore might be used to control access to a device like printer. APUE (Interprocess Communication

Page 31 Identifiers & Keys Identifier: each IPC structure has a nonnegative integer Key: when creating an IPC structure, a key must be specified ( key_t ) id = xxxget(key, …) How to access the same IPC?  key in a common header Define a key in a common header Client and server agree to use that key Server creates a new IPC structure using that key Problem when the key is already in use − (msgget, semget, shmget returns error) − Solution: delete existing key, create a new one again! APUE (Interprocess Communication

Page 32 IPC System Calls msg/sem/shm get Create new or open existing IPC structure. Returns an IPC identifier msg/sem/shm ctl Determine status, set options and/or permissions Remove an IPC identifier msg/sem/shm op Operate on an IPC identifier For example(Message queue) − add new msg to a queue (msgsnd) − receive msg from a queue (msgrcv) APUE (Interprocess Communication

Page 33 Permission Structure APUE (Interprocess Communication ipc_perm is associated with each IPC structure. Defines the permissions and owner. struct ipc_perm { uid_t uid; /* owner's effective user id */ gid_t gid; /* owner's effective group id */ uid_t cuid; /* creator's effective user id */ gid_t cgid; /* creator’s effective group id */ mode_t mode; /* access modes */ ulong seq; /* slot usage sequence number */ key_t key; /* key */ };

Page 34 Message Queues (1/2) Linked list of messages Stored in kernel Identified by message queue identifier (in kernel) msgget Create a new queue or open existing queue. msgsnd Add a new message to a queue msgrcv Receive a message from a queue Fetching order: based on type APUE (Interprocess Communication

Page 35 Message Queues (2/2) Each queue has a structure APUE (Interprocess Communication struct msqid_ds { struct ipc_perm msg_perm; struct msg *msg_first; /* ptr to first msg on queue */ struct msg *msg_last; /* ptr to last msg on queue */ ulong msg_cbytes; /* current # bytes on queue */ ulong msg_qnum; /* # msgs on queue */ ulong msg_qbytes; /* max # bytes on queue */ pid_t msg_lspid; /* pid of last msgsnd() */ pid_t msg_lrpid; /* pid of last msgrcv() */ time_t msg_stime; /* last-msgsnd() time */ time_t msg_rtime; /* last-msgrcv() time */ time_t msg_ctime; /* last-change time */ }; We can get the structure using msgctl() function. Actually, however, we don’t need to know the structure in detail.

Page 36 msgget() APUE (Interprocess Communication #include int msgget(key_t key, int flag); Returns: msg queue ID if OK, -1 on error Create new or open existing queue flag : ipc_perm.mode Example msg_qid = msgget(DEFINED_KEY, IPC_CREAT | 0666);

Page 37 msgctl() APUE (Interprocess Communication #include int msgctl(int msqid, int cmd, struct msqid_ds *buf); Returns: 0 if OK, -1 on error Performs various operations on a queue cmd = IPC_STAT: fetch the msqid_ds structure for this queue, storing it in buf cmd = IPC_SET: set the following four fields from buf: msg_perm.uid, msg_perm.gid, msg_perm.mode, and msg_qbytes cmd = IPC_RMID: remove the message queue.

Page 38 msgsnd() APUE (Interprocess Communication #include int msgsnd(int msqid, const void *ptr, size_t nbytes, int flag); Returns: 0 if OK, -1 on error msgsnd() places a message at the end of the queue. ptr: pointer that points to a message nbytes: length of message data if flag = IPC_NOWAIT: IPC_NOWAIT is similar to the nonblocking I/O flag for file I/O. Structure of messages struct mymesg { long mtype; /* positive message type */ char mtext[512]; /* message data, of length nbytes */ };

Page 39 msgrcv() APUE (Interprocess Communication #include int msgrcv(int msqid, void *ptr, size_t nbytes, long type, int flag); Returns: data size in message if OK, -1 on error msgrcv() retrieves a message from a queue. type == 0: the first message on the queue is returned type > 0: the first message on the queue whose message type equals type is returned type < 0: the first message on the queue whose message type is the lowest value less than or equal to the absolute value of type is returned flag may be given by IPC_NOWAIT

Page 40 example: sender.c receiver.c (1/4) APUE (Interprocess Communication #include // sender.c #include #define DEFINED_KEY 0x main(int argc, char **argv) { int msg_qid; struct { long mtype; char content[256]; } msg; fprintf(stdout, "=========SENDER==========\n"); if((msg_qid = msgget(DEFINED_KEY, IPC_CREAT | 0666)) < 0) { perror("msgget: "); exit(-1); } msg.mtype = 1; while(1) { memset(msg.content, 0x0, 256); gets(msg.content); if(msgsnd(msg_qid, &msg, sizeof(msg.content), 0) < 0) { perror("msgsnd: "); exit(-1); }

Page 41 example: sender.c receiver.c (2/4) APUE (Interprocess Communication #include // receiver.c #include #define DEFINED_KEY 0x main(int argc, char **argv) { int msg_qid; struct { long mtype; char content[256]; } msg; fprintf(stdout, "=========RECEIVER==========\n"); if((msg_qid = msgget(DEFINED_KEY, IPC_CREAT | 0666)) < 0) { perror("msgget: "); exit(-1); } while(1) { memset(msg.content, 0x0, 256); if(msgrcv(msg_qid, &msg, 256, 0, 0) < 0) { perror("msgrcv: "); exit(-1); } puts(msg.content); }

Page 42 example: sender.c receiver.c (3/4) APUE (Interprocess Communication

Page 43 example: sender.c receiver.c (4/4) APUE (Interprocess Communication Message Queue

Page 44 Shared Memory Allows multiple processes to share a region of memory Fastest form of IPC: no need of data copying between client & server If a shared memory segment is attached It become a part of a process data space, and shared among multiple processes Readers and writers may use semaphore to synchronize access to a shared memory segment APUE (Interprocess Communication

Page 45 Shared Memory Segment Structure Each shared memory has a structure APUE (Interprocess Communication struct shmid_ds { struct ipc_perm shm_perm; struct anon_map *shm_amp; /* pointer in kernel */ int shm_segsz; /* size of segment in bytes */ ushort shm_lkcnt; /* # of times segment is being locked */ pid_t shm_lpid; /* pid of last shmop() */ pid_t shm_cpid; /* pid of creator */ ulong shm_nattch; /* # of current attaches */ ulong shm_cnattch; /* used only for shminfo() */ time_t shm_atime; /* last-attach time */ time_t shm_dtime; /* last-detach time */ time_t shm_ctime; /* last-change time */ }; We can get the structure using shmctl() function. Actually, however, we don’t need to know the structure in detail.

Page 46 shmget() APUE (Interprocess Communication #include int shmget(key_t key, int size, int flag); Returns: shared memory ID if OK, -1 on error Obtain a shared memory identifier size: is the size of the shared memory segment flag: ipc_perm.mode Example shmId = shmget(key, size, PERM|IPC_CREAT|IPC_EXCL|0666);

Page 47 shmctl() APUE (Interprocess Communication #include int shmctl(int shmid, int cmd, struct shmid_ds *buf); Returns: 0 if OK, -1 on error Performs various shared memory operations cmd = IPC_STAT : fetch the shmid_ds structure into buf cmd = IPC_SET : set the following three fields from buf: shm_perm.uid, shm_perm.gid, and shm_perm.mode cmd = IPC_RMID : remove the shared memory segment set from the system

Page 48 shmat() APUE (Interprocess Communication #include void *shmat (int shmid, void *addr, int flag); Returns: pointer to shared memory segment if OK, -1 on error Attached a shared memory to an address flag = SHM_RDONLY: the segment is read-only addr==0: at the first address selected by the kernel (recommended!) addr!=0: at the address given by addr

Page 49 shared memory Memory Layout APUE (Interprocess Communication uninitialized data (bss) stack heap initialized data text high address low address command-line arguments and environment variables 0xf7fffb2c 0xf77e86a0 0xf77d0000 shared memory of 100,000 bytes 0x0003d2c8 0x00024c28 malloc of 100,000 bytes 0x0003d2c8 0x00024c28 array[] of 40,000 bytes

Page 50 shmdt() APUE (Interprocess Communication #include void shmdt (void *addr); Returns: 0 if OK, -1 on error Detach a shared memory segment

Page 51 example: tshm.c (1/2) APUE (Interprocess Communication #include // tshm.c #include #define ARRAY_SIZE #define MALLOC_SIZE #define SHM_SIZE err_sys(char *p) { perror(p); exit(-1); } char array[ARRAY_SIZE]; /* uninitialized data = bss */ int main(void) { int shmid; char *ptr, *shmptr; printf("array[] from %x to %x\n", &array[0], &array[ARRAY_SIZE]); printf("stack around %x\n", &shmid); if ((ptr = malloc(MALLOC_SIZE)) == NULL) err_sys("malloc error"); printf("malloced from %x to %x\n", ptr, ptr+MALLOC_SIZE); if ((shmid = shmget(0x , SHM_SIZE, IPC_CREAT | 0666)) < 0) err_sys("shmget error"); if ((shmptr = shmat(shmid, 0, 0)) == (void *) -1) err_sys("shmat error"); printf("shared memory attached from %x to %x\n", shmptr, shmptr+SHM_SIZE); // if (shmctl(shmid, IPC_RMID, 0) < 0) err_sys("shmctl error"); exit(0); }

Page 52 APUE (Interprocess Communication example: tshm.c (2/2)

Page 53 Semaphores A counter to provide access to shared data object for multiple processes To obtain a shared resource: 1. Test semaphore that controls the resource 2. If value > 0, value--, grant use 3. If value == 0, sleep until value > 0 4. Release resource, value ++ Step 1, 2 must be an atomic operation APUE (Interprocess Communication

Page 54 Semaphore Structure APUE (Interprocess Communication Each semaphore has a structure struct semid_ds { struct ipc_perm sem_perm; struct sem *sem_base; /*ptr to first semaphore in set */ ushort sem_nsems; /* # of semaphors in set */ time_t sem_otime; /* last-semop() time */ time_t sem_ctime; /* last-change time */ }; struct sem { ushort semval; /* semaphore value, always >= 0 */ pid_t sempid; /* pid for last operation */ ushort semncnt; /* # processes awaiting semval > currval */ ushort semzcnt; /* # processes awaiting semval = 0 */ }; We can get the structure using semctl() function. Actually, however, we don’t need to know the structure in detail.

Page 55 semget() APUE (Interprocess Communication #include int semget(key_t key, int nsems, int flag); Returns: semaphore ID if OK, -1 on error Obtain a semaphore ID nsems: sem_nsens (# of semaphores in set) flag: ipc_perm.mode

Page 56 semctl() APUE (Interprocess Communication #include int semctl(int semid, int semnum, int cmd, union semun arg); union semun { int val; /* for SETVAL */ struct semid_ds *buf; /* for IPC_START and IPC_SET */ ushort *array; /* for GETALL and SETALL */ }; To use semaphore, please refer to the textbook and manuals related semaphore.

Page 57 ipcs, ipcrm ipcs: checking status of System V IPC $ ipcs // check information of IPC (q, m, s) $ ipcs –q ($ ipcs –qa) // check information of Message Queue $ ipcs –m ($ ipcs –ma) // check information of Shared Memory $ ipcs –s ($ ipcs –sa) // check information of Semaphore ipcrm: delete a defined IPC $ ipcrm –q id // Delete Message Queue $ ipcrm –m id // Delete Shared Memory $ ipcrm –s id // Delete Semaphore APUE (Interprocess Communication

Page 58 Memory mapped file I/O APUE (Interprocess Communication #include caddr_t mmap (caddr_t addr, size_t len, int prot, int flag, int filedes, off_t off); Returns: starting address of mapped region if OK, -1 on error int munmap(caddr_t addr, size_t len); Returns : 0 if OK, -1 on error Memory mapped I/O lets us map a file on disk into a buffer in memory so that when we fetch bytes from the buffer, the corresponding bytes of the file are read. Similarly, when we store data in the buffer, the corresponding bytes are automatically written to the file. This lets us perform I/O without using read or write. To use this feature we have to tell the kernel to map a given file to a region in memory.