Inter Process Communication (IPC) | Operating System - Computer Science Engineering (CSE) PDF Download

A process can be of two types:

  • Independent process.
  • Co-operating process.

An independent process is not affected by the execution of other processes while a co-operating process can be affected by other executing processes. Though one can think that those processes, which are running independently, will execute very efficiently, in reality, there are many situations when co-operative nature can be utilized for increasing computational speed, convenience, and modularity. Inter-process communication (IPC) is a mechanism that allows processes to communicate with each other and synchronize their actions. The communication between these processes can be seen as a method of co-operation between them. Processes can communicate with each other through both:

  1. Shared Memory
  2. Message passing

Figure 1 below shows a basic structure of communication between processes via the shared memory method and via the message passing method.
An operating system can implement both methods of communication. First, we will discuss the shared memory methods of communication and then message passing. Communication between processes using shared memory requires processes to share some variable, and it completely depends on how the programmer will implement it. One way of communication using shared memory can be imagined like this: Suppose process1 and process2 are executing simultaneously, and they share some resources or use some information from another process. Process1 generates information about certain computations or resources being used and keeps it as a record in shared memory. When process2 needs to use the shared information, it will check in the record stored in shared memory and take note of the information generated by process1 and act accordingly. Processes can use shared memory for extracting information as a record from another process as well as for delivering any specific information to other processes. 

Let’s discuss an example of communication between processes using the shared memory method.

Shared Memory and Message PassingShared Memory and Message Passing

  1. Shared Memory Method
    Ex: Producer-Consumer problem 
    There are two processes: Producer and Consumer. The producer produces some items and the Consumer consumes that item. The two processes share a common space or memory location known as a buffer where the item produced by the Producer is stored and from which the Consumer consumes the item if needed. There are two versions of this problem: the first one is known as the unbounded buffer problem in which the Producer can keep on producing items and there is no limit on the size of the buffer, the second one is known as the bounded buffer problem in which the Producer can produce up to a certain number of items before it starts waiting for Consumer to consume it. We will discuss the bounded buffer problem. First, the Producer and the Consumer will share some common memory, then the producer will start producing items. If the total produced item is equal to the size of the buffer, the producer will wait to get it consumed by the Consumer. Similarly, the consumer will first check for the availability of the item. If no item is available, the Consumer will wait for the Producer to produce it. If there are items available, Consumer will consume them. The pseudo-code to demonstrate is provided below:
    Shared Data between the two Processes 
    // C Program
    #define buff_max 25
    #define mod %
        struct item{
            // different member of the produced data
            // or consumed data  
            ---------
        }
        // An array is needed for holding the items.
        // This is the shared place which will be
        // access by both process  
        // item shared_buff [ buff_max ];
        // Two variables which will keep track of
        // the indexes of the items produced by producer
        // and consumer The free index points to
        // the next free index. The full index points to
        // the first full index.
        int free_index = 0;
        int full_index = 0;
    Producer Process Code 
    // C Program
    item nextProduced;
        while(1){
            // check if there is no space
            // for production.
            // if so keep waiting.
            while((free_index+1) mod buff_max == full_index);
            shared_buff[free_index] = nextProduced;
            free_index = (free_index + 1) mod buff_max;
        }
    Consumer Process Code
    // C Program
    item nextConsumed;
      while(1){  
            // check if there is an available
            // item  for consumption.
            // if not keep on waiting for
            // get them produced.
            while((free_index == full_index);
            nextConsumed = shared_buff[full_index];
            full_index = (full_index + 1) mod buff_max;
        }
    In the above code, the Producer will start producing again when the (free_index+1) mod buff max will be free because if it it not free, this implies that there are still items that can be consumed by the Consumer so there is no need to produce more. Similarly, if free index and full index point to the same index, this implies that there are no items to consume.
  2. Messaging Passing Method
    Now, We will start our discussion of the communication between processes via message passing. In this method, processes communicate with each other without using any kind of shared memory. If two processes p1 and p2 want to communicate with each other, they proceed as follows:
    • Establish a communication link (if a link already exists, no need to establish it again.)
    • Start exchanging messages using basic primitives.
    • We need at least two primitives:
      (i) send(message, destination) or send(message)
      (ii) receive(message, host) or receive(message)
      Inter Process Communication (IPC) | Operating System - Computer Science Engineering (CSE)The message size can be of fixed size or of variable size. If it is of fixed size, it is easy for an OS designer but complicated for a programmer and if it is of variable size then it is easy for a programmer but complicated for the OS designer. A standard message can have two parts: header and body. 
      The header part is used for storing message type, destination id, source id, message length, and control information. The control information contains information like what to do if runs out of buffer space, sequence number, priority. Generally, message is sent using FIFO style.

Message Passing through Communication Link

Direct and Indirect Communication link: 
Now, We will start our discussion about the methods of implementing communication links. While implementing the link, there are some questions that need to be kept in mind like : 

  1. How are links established?
  2. Can a link be associated with more than two processes?
  3. How many links can there be between every pair of communicating processes?
  4. What is the capacity of a link? Is the size of a message that the link can accommodate fixed or variable?
  5. Is a link unidirectional or bi-directional?

A link has some capacity that determines the number of messages that can reside in it temporarily for which every link has a queue associated with it which can be of zero capacity, bounded capacity, or unbounded capacity. In zero capacity, the sender waits until the receiver informs the sender that it has received the message. In non-zero capacity cases, a process does not know whether a message has been received or not after the send operation. For this, the sender must communicate with the receiver explicitly. Implementation of the link depends on the situation, it can be either a direct communication link or an in-directed communication link. 

Direct Communication links are implemented when the processes use a specific process identifier for the communication, but it is hard to identify the sender ahead of time.
For example the print server.

In-direct Communication is done via a shared mailbox (port), which consists of a queue of messages. The sender keeps the message in mailbox and the receiver picks them up.

Message Passing through Exchanging the Messages


Synchronous and Asynchronous Message Passing: 
A process that is blocked is one that is waiting for some event, such as a resource becoming available or the completion of an I/O operation. IPC is possible between the processes on same computer as well as on the processes running on different computer i.e. in networked/distributed system. In both cases, the process may or may not be blocked while sending a message or attempting to receive a message so message passing may be blocking or non-blocking. Blocking is considered synchronous and blocking send means the sender will be blocked until the message is received by receiver. Similarly, blocking receive has the receiver block until a message is available. Non-blocking is considered asynchronous and Non-blocking send has the sender sends the message and continue. Similarly, Non-blocking receive has the receiver receive a valid message or null. After a careful analysis, we can come to a conclusion that for a sender it is more natural to be non-blocking after message passing as there may be a need to send the message to different processes. However, the sender expects acknowledgment from the receiver in case the send fails. Similarly, it is more natural for a receiver to be blocking after issuing the receive as the information from the received message may be used for further execution. At the same time, if the message send keep on failing, the receiver will have to wait indefinitely. That is why we also consider the other possibility of message passing. There are basically three preferred combinations:

  • Blocking send and blocking receive
  • Non-blocking send and Non-blocking receive
  • Non-blocking send and Blocking receive (Mostly used)

In Direct message passing, The process which wants to communicate must explicitly name the recipient or sender of the communication.
Example: send(p1, message) means send the message to p1.
Similarly, receive(p2, message) means to receive the message from p2.
In this method of communication, the communication link gets established automatically, which can be either unidirectional or bidirectional, but one link can be used between one pair of the sender and receiver and one pair of sender and receiver should not possess more than one pair of links. Symmetry and asymmetry between sending and receiving can also be implemented i.e. either both processes will name each other for sending and receiving the messages or only the sender will name the receiver for sending the message and there is no need for the receiver for naming the sender for receiving the message. The problem with this method of communication is that if the name of one process changes, this method will not work.

In Indirect message passing, processes use mailboxes (also referred to as ports) for sending and receiving messages. Each mailbox has a unique id and processes can communicate only if they share a mailbox. Link established only if processes share a common mailbox and a single link can be associated with many processes. Each pair of processes can share several communication links and these links may be unidirectional or bi-directional. Suppose two processes want to communicate through Indirect message passing, the required operations are: create a mailbox, use this mailbox for sending and receiving messages, then destroy the mailbox. The standard primitives used are: send(A, message) which means send the message to mailbox A. The primitive for the receiving the message also works in the same way example: received (A, message). There is a problem with this mailbox implementation. Suppose there are more than two processes sharing the same mailbox and suppose the process p1 sends a message to the mailbox, which process will be the receiver? This can be solved by either enforcing that only two processes can share a single mailbox or enforcing that only one process is allowed to execute the receive at a given time or select any process randomly and notify the sender about the receiver. A mailbox can be made private to a single sender/receiver pair and can also be shared between multiple sender/receiver pairs. Port is an implementation of such mailbox that can have multiple senders and a single receiver. It is used in client/server applications (in this case the server is the receiver). The port is owned by the receiving process and created by OS on the request of the receiver process and can be destroyed either on request of the same receiver processor when the receiver terminates itself. Enforcing that only one process is allowed to execute the receive can be done using the concept of mutual exclusion. Mutex mailbox is created which is shared by n process. The sender is non-blocking and sends the message. The first process which executes the receive will enter in the critical section and all other processes will be blocking and will wait.
Now, let’s discuss the Producer-Consumer problem using the message passing concept. The producer places items (inside messages) in the mailbox and the consumer can consume an item when at least one message present in the mailbox. The code is given below:
Producer Code 
//C Program
void Producer(void){
         int item;
        Message m;
        while(1){
            receive(Consumer, &m);
            item = produce();
            build_message(&m , item ) ;
            send(Consumer, &m);
        }
    }
Consumer Code
//C Program
void Consumer(void){
        int item;
        Message m;
        while(1){
            receive(Producer, &m);
            item = extracted_item();
            send(Producer, &m);
            consume_item(item);
        }
    }

Examples of IPC systems 

  1. Posix: uses shared memory method.
  2. Mach: uses message passing
  3. Windows XP: uses message passing using local procedural calls

Communication in client/server Architecture
There are various mechanism: 

  • Pipe
  • Socket
  • Remote Procedural calls (RPCs)
The document Inter Process Communication (IPC) | Operating System - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Operating System.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
10 videos|99 docs|33 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Inter Process Communication (IPC) - Operating System - Computer Science Engineering (CSE)

1. What is IPC and why is it important in computer systems?
Ans. IPC, or Inter Process Communication, refers to the mechanisms and techniques used by different processes to communicate and exchange data with each other in a computer system. It is crucial in computer systems as it allows processes to cooperate, share resources, and coordinate their activities. IPC enables efficient multitasking, facilitates inter-process synchronization, and enhances system performance.
2. What are the different types of IPC mechanisms?
Ans. There are several types of IPC mechanisms, including shared memory, message passing, pipes, sockets, and remote procedure calls (RPC). Shared memory allows processes to access the same region of memory, enabling fast communication. Message passing involves sending and receiving messages between processes. Pipes provide a unidirectional communication channel between processes. Sockets facilitate communication between processes over a network. RPC allows processes to call procedures in a different address space, transparently handling the communication details.
3. How does shared memory work in IPC?
Ans. Shared memory is a form of IPC where multiple processes can access the same region of memory. It involves creating a shared memory segment and attaching it to the address space of multiple processes. These processes can then read from and write to the shared memory segment, allowing them to exchange data efficiently. Proper synchronization mechanisms, such as semaphores or mutexes, are required to ensure data consistency and prevent race conditions.
4. What is the difference between synchronous and asynchronous IPC?
Ans. Synchronous IPC refers to a communication mechanism where the sender process blocks until the receiver process acknowledges the message or completes the requested operation. It ensures that the sender and receiver are synchronized in their actions. On the other hand, asynchronous IPC allows the sender process to continue its execution immediately after sending the message, without waiting for a response from the receiver. The receiver can handle the message at its own pace, making asynchronous IPC more flexible and non-blocking.
5. How can IPC be used in distributed systems?
Ans. IPC plays a crucial role in distributed systems, where processes may be running on different machines connected over a network. Mechanisms like sockets and RPC enable communication between processes across machines. Sockets allow processes to establish network connections and exchange data using protocols like TCP or UDP. RPC enables processes to invoke procedures on remote machines as if they were local, abstracting the network communication details. IPC in distributed systems enables coordination, resource sharing, and distributed computing.
10 videos|99 docs|33 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Free

,

Previous Year Questions with Solutions

,

Inter Process Communication (IPC) | Operating System - Computer Science Engineering (CSE)

,

shortcuts and tricks

,

study material

,

Inter Process Communication (IPC) | Operating System - Computer Science Engineering (CSE)

,

Extra Questions

,

Summary

,

Exam

,

MCQs

,

Semester Notes

,

practice quizzes

,

ppt

,

mock tests for examination

,

Inter Process Communication (IPC) | Operating System - Computer Science Engineering (CSE)

,

Objective type Questions

,

past year papers

,

Sample Paper

,

video lectures

,

Viva Questions

,

pdf

,

Important questions

;