SlideShare a Scribd company logo
1 of 83
Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Chapter 3: Processes
3.2 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Processes
1. Process Concept (OSC: chap 3)
2. Process Scheduling (OSC: chap 3)
3. A refresher: Loadable kernel module
1. 75 pages book will be provided
2. proc file system
3. 3 Loadable kernel modules
4. Related functions
5. Relevant commands
4. Discussion on Linux process management
1. Robert Love book
2. sched.h and task_struct (kernel source)
3. Relevant Commands
5. Class Task: Compile Linux kernel and run in Virtual machine
6. Class Task: Compile Linux kernel and run in Virtual machine
7. Discussion on next programming assigment
3.3 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Concept
 An operating system executes a variety of programs:
 Batch system – jobs
 Time-shared systems – user programs or tasks
 Textbook uses the terms job and process almost
interchangeably
 Process – a program in execution; process execution
must progress in sequential fashion
 Multiple parts
 The program code, also called text section
 Current activity including program counter, processor
registers
 Stack containing temporary data
Function parameters, return addresses, local
variables
 Data section containing global variables
 Heap containing memory dynamically allocated during
run time
3.4 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
What goes where
3.5 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
3.6 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are
fixed?
Text and data
So
Stack and Heap can
expand and shrink.
Why?
3.7 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function
call
Each stack frame contains
Function parameters, return
addresses, local variables
When is stack frame added?
3.8 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function
call
Each stack frame contains
Function parameters, return
addresses, local variables
When is stack frame added?
When a function calls another
function
Stack frame is removed on ........
3.9 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function
call
Each stack frame contains
Function parameters, return
addresses, local variables
When is stack frame added?
When a function calls another
function
Stack frame is removed on function
return
3.10 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function call
Each stack frame contains Function parameters,
return addresses, local variables
When stack frame is added?
When a function calls another function
Stack frame is removed on function return
Why and when heap expands?
3.11 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function call
Each stack frame contains Function parameters,
return addresses, local variables
When stack frame is added?
When a function calls another function
Stack frame is removed on function return
Why and when heap expands?
When a process demands
memory dynamically
How a process demands memory?
3.12 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function call
Each stack frame contains Function parameters,
return addresses, local variables
When stack frame is added?
When a function calls another function
Stack frame is removed on function return
how heap expands?
When a process demands
memory dynamically
How a process demands memory?
Using malloc and related
functions
How heap shrinks?
3.13 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process in Memory
Which sections are fixed?
Text and data
So
Stack and Heap can expand and
shrink. Why?
Stack stores stack frame/function call
Each stack frame contains Function parameters,
return addresses, local variables
When stack frame is added?
When a function calls another function
Stack frame is removed on function return
how heap expands?
When a process demands
memory dynamically
How a process demands memory?
Using malloc and related
functions
How heap shrinks?
when a process calls free
3.14 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Concept (Cont.)
 Program is passive entity stored on disk (executable
file), process is active
 Program becomes process when executable file
loaded into memory
 Execution of program started via GUI mouse clicks,
command line entry of its name, etc
 One program can be several processes
 Consider multiple users executing the same
program
3.15 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process State
 As a process executes, it changes state
 new: The process is being created
 running: Instructions are being executed
 waiting: The process is waiting for some event to
occur
 ready: The process is waiting to be assigned to a
processor
 terminated: The process has finished execution
3.16 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Diagram of Process State- Generic
3.17 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
TASK_RUNNING —The process is runnable; it is
either currently running or on a run-queue waiting
to run.
TASK_INTERRUPTIBLE —The process is sleeping
(that is, it is blocked), waiting for some condition to
exist. When this condition exists, the kernel sets
the process’s state to TASK_RUNNING. The process
also awakes prematurely and becomes runnable if it
receives a signal.
Process State in Linux (Robert Love)
3.18 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
TASK_UNINTERRUPTIBLE —This state is identical to
TASK_INTERRUPTIBLE except that it does not wake up and
become runnable if it receives a signal. This is used in
situations where the process must wait without interruption or
when the event is expected to occur quite quickly. Because
the task does not respond to signals in this state,
TASK_UNINTERRUPTIBLE is less often used than
TASK_INTERRUPTIBLE .
__TASK_TRACED —The process is being traced by another
process, such as a debug-ger, via ptrace.
__TASK_STOPPED —Process execution has stopped; the
task is not running nor is it eligible to run.This occurs if the
task receives the SIGSTOP , SIGTSTP , SIGTTIN , or
SIGTTOU signal or if it receives any signal while it is being
debugged.
Process State in Linux (Robert Love)
3.19 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process State in Linux (Robert Love)
3.20 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
86 #define TASK_RUNNING 0
87 #define TASK_INTERRUPTIBLE 1
88 #define TASK_UNINTERRUPTIBLE 2
89 #define TASK_ZOMBIE 4
90 #define TASK_STOPPED 8
Process State in Linux (sched.h)
3.21 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
3.22 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process State: Zombie vs Orphan
TASK_ZOMBIE. Process execution is
terminated, but the parent process has not yet
issued a wait()-like system call (see wait(2)) to
return information about the dead process.
Every process first becomes zombie process before
wipping out from system. The parent process reads
the exit status of the child process which reaps off
the child process entry from the process table.
A process whose parent process no more exists i.e.
either finished or terminated without waiting for its
child process to terminate is called an orphan
process. (Process is still running)
However, the orphan process is soon adopted by
init process, once its parent process dies.
3.23 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Control Block (PCB)
Information associated with each
process
(also called task control block)
 Process state – running, waiting, etc
 Program counter – location of
instruction to next execute
 CPU registers – contents of all
process-centric registers
 CPU scheduling information-
priorities, scheduling queue pointers
 Memory-management information –
memory allocated to the process
 Accounting information – CPU used,
clock time elapsed since start, time
limits
 I/O status information – I/O devices
allocated to process, list of open
files
3.24 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Linux Process Descriptor
3.25 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
CPU Switch From Process to Process
3.26 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Threads
 So far, process has a single thread of execution
 Consider having multiple program counters per
process
 Multiple locations can execute at once
Multiple threads of control -> threads
 Must then have storage for thread details, multiple
program counters in PCB
 We will further Discuss at suitable time
3.27 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Representation in Linux
Represented by the C structure task_struct
pid t_pid; /* process identifier */
long state; /* state of the process */
unsigned int time_slice /* scheduling information */
struct task_struct *parent; /* this process’s parent */
struct list_head children; /* this process’s children */
struct files_struct *files; /* list of open files */
struct mm_struct *mm; /* address space of this process */
3.28 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Scheduling
 Maximize CPU use, quickly switch processes onto CPU for
time sharing
 Process scheduler selects among available processes for
next execution on CPU
 Maintains scheduling queues of processes
 Job queue – set of all processes in the system
 Ready queue – set of all processes residing in main
memory, ready and waiting to execute
 Device queues – set of processes waiting for an I/O device
 Processes migrate among the various queues
3.29 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
struct list_head {
struct list_head *next
struct list_head *prev;
};
struct fox {
unsigned long tail_length;
unsigned long weight;
bool is_fantastic;
struct list_head list;
};
I strongly suggest to read chapter 6 of
Robert Love
To Understand next slide
3.30 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Ready Queue And Various I/O Device Queues
3.31 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Events for a Process
• Process is Terminated
• execution is completed
• some bug is generated
• Is Interrupted: time slice on CPU is completed
• I/O request: Waiting for completion of I/O request
• Waiting for Child status: forked child and child is still in execution
3.32 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Representation of Process Scheduling
 Queueing diagram represents queues, resources, flows
3.33 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Schedulers
 Short-term scheduler (or CPU scheduler) – selects which process should
be executed next and allocates CPU
 Sometimes the only scheduler in a system
 Short-term scheduler is invoked frequently (milliseconds)  (must be
fast)
 Long-term scheduler (or job scheduler) – selects which processes should
be brought into the ready queue
 Long-term scheduler is invoked infrequently (seconds, minutes) 
(may be slow)
 The long-term scheduler controls the degree of multiprogramming
 Processes can be described as either:
 I/O-bound process – spends more time doing I/O than computations,
many short CPU bursts
 CPU-bound process – spends more time doing computations; few very
long CPU bursts
 Long-term scheduler strives for good process mix
3.34 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Addition of Medium Term Scheduling
 Medium-term scheduler can be added if degree of multiple
programming needs to decrease
 Remove process from memory, store on disk, bring back in
from disk to continue execution: swapping
What is CPU Thrashing??
What is working set of a process?
3.35 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Multitasking in Mobile Systems
 Some mobile systems (e.g., early version of iOS) allow only one
process to run, others suspended
 Due to screen real estate, user interface limits iOS for
 Single foreground process- controlled via user interface
 Multiple background processes– in memory, running, but not
on the display, and with limits
 Limits include single, short task, receiving notification of events,
specific long-running tasks like audio playback
 Presently due to good specs, these limits are lessen
 Android runs foreground and background, with fewer limits
 Background process uses a service to perform tasks without
being foreground
 Service can keep running even if background process is
suspended eg. playing audio
 Service has no user interface, small memory use
3.36 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Context Switch
 When CPU switches to another process, the system must save
the state of the old process and load the saved state for the
new process via a context switch
 Context of a process represented in the PCB
 Context-switch time is overhead; the system does no useful
work while switching
 The more complex the OS and the PCB  the longer the
context switch
 Time dependent on hardware support
 Some hardware provides multiple sets of registers per CPU
 multiple contexts loaded at once
3.37 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Important Info
Snapshots
sharing folder between virtualbox and host
kernel headers
kernel name
Spaces in the path of kernel module are troublesome
Linux File System Hierarchy
cat /proc/sys/kernel/printk // to check printk levels
ps -e -f // list all processes
ps -l // to check zombie process
3.38 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
pr_info("Info message no. %dn", msg_num);
3.39 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
LINUX TIMERS (Not included but read)
On Linux systems, the kernel configuration parameter HZ specifies the fre-
quency of timer interrupts. An HZ value of 250 means that the timer
generates 250 interrupts per second, or one interrupt every 4 milliseconds.
The value of HZ depends upon how the kernel is configured, as well the
machine type and architecture on which it is running. A related kernel
variable is jiffies , which represent the number of timer interrupts that have
occurred since the system was booted. A programming project in Chapter 2
further explores timing in the Linux kernel
A variable timer is generally implemented by a fixed-rate clock and a
counter.
The operating system sets the counter. Every time the clock ticks, the
counter is decremented
3.40 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
How many processe can be created
Limit is attached with available physical memory
cat /proc/sys/kernel/threads-max
for_each_task(p) { ... }
Scrap slide
3.41 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Programmers use functions they don't define all the time. A prime
example of this is printf(). You use these library functions which are
provided by the standard C library, libc. The definitions for these
functions don't actually enter your program until the linking stage,
which insures that the code (for printf() forexample) is available, and
fixes the call instruction to point to that code.
Kernel modules are different here, too. In the hello world example, you
might have noticed that we used a function, printk() but didn't include
a standard I/O library. That's because modules are object files
whose symbols get resolved upon insmod'ing. The definition for
the symbols comes from the kernel itself; the only external functions
you can use are the ones provided by the kernel. If you're curious
about what symbols have been exported by your kernel, take a look at
/proc/ksyms (its actually /proc/kallsyms).
excerpt from lkmp book (discussed in previous
lecture)
3.42 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
One point to keep in mind is the difference between library functions
and system calls. Library functions are higher level, run completely in
user space and provide a more convenient interface for the
programmer to the functions that do the real work−−−system calls.
System calls run in kernel mode on the user's behalf and are provided
by the kernel itself. The library function printf() may look like a very
general printing function,but all it really does is format the data into
strings and write the string data using the low−level system call
write(), which then sends the data to standard output
excerpt from lkmp book....
3.43 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Create a /proc entry when is read
Display name of the process who has performed read on your created proc
entry
display the names of all process with their pid
Display name, pid and state of the all processes in the system
WHO IS READING YOUR CREATED PROC ENTRY
good start and understanding https://tldp.org/LDP/lki/lki-2.html
Programming Assignment
3.44 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Operations on Processes
 System must provide mechanisms for:
 process creation,
 process termination,
 and so on as detailed next
3.45 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Creation
 Parent process create children processes, which, in turn create other
processes, forming a tree of processes
 Generally, process identified and managed via a process identifier
(pid)
 Resource sharing options (what are resources?-> Cpu time, memory,
files, signals, I/O devices)
 Parent and children share all resources
 Children share subset of parent’s resources
 Parent and child share no resources
 Copy-on-Write: share the address space till child performs write.
The pages of memory are marked as COW and if any of these
processes modify the page, new page is created
 Fork bomb
 Execution options
 Parent and children execute concurrently
 Parent waits until children terminate
 How fork and vfork are implemented in Linux are must teaching in my
track but I am only recommending that as self reading for enthusiastics
 (Robert Love pa 31-40 and relevant functions in kernel source)
3.46 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
A Tree of Processes in Linux (systemd)
3.47 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
A Tree of Processes in Linux
init
pid = 1
sshd
pid = 3028
login
pid = 8415
kthreadd
pid = 2
sshd
pid = 3610
pdflush
pid = 200
khelper
pid = 6
tcsch
pid = 4005
emacs
pid = 9204
bash
pid = 8416
ps
pid = 9298
3.48 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Creation (Cont.)
 Address space
 Child duplicate of parent
 Child has a program loaded into it
 UNIX examples
 fork() system call creates new process
 exec() system call used after a fork() to replace the
process’ memory space with a new program
 wait() and waitpid()
 man wait: understand difference between both and
execute the given example
3.49 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
C Program Forking Separate Process
3.50 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Termination
 Process executes last statement and then asks the operating system to
delete it using the exit() system call.
 Returns status data from child to parent (via wait())
 Process’ resources are deallocated by operating system (p 31-40)
 Parent may terminate the execution of children processes using the
abort() system call. Some reasons for doing so:
 Child has exceeded allocated resources
 limits are configurable
 limits can be checked with ulimit -a
 Task assigned to child is no longer required
 The parent is exiting and the operating systems does not allow a
child to continue if its parent terminates
3.51 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Process Termination
 Some operating systems do not allow child to exists if its parent
has terminated. If a process terminates, then all its children must
also be terminated.
 cascading termination. All children, grandchildren, etc. are
terminated.
 The termination is initiated by the operating system.
 The parent process may wait for termination of a child process by
using the wait()system call. The call returns status information
and the pid of the terminated process
pid = wait(&status);
 If no parent waiting (did not invoke wait()) process is a zombie
 If parent terminated without invoking wait , process is an orphan
3.52 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Multiprocess Architecture – Chrome Browser
 Many web browsers ran as single process (some still do)
 Honestly I dont know about single process browser but i think
lynx is single process but not sure. What I am sure is that Lynx is
the lightweight browser
 If one web site causes trouble, entire browser can hang or crash
 Google Chrome Browser is multiprocess with 3 different types of
processes:
 Browser process manages user interface, disk and network I/O
 Renderer process renders web pages, deals with HTML,
Javascript. A new renderer created for each website opened
 Runs in sandbox restricting disk and network I/O, minimizing
effect of security exploits
 Plug-in process for each type of plug-in
3.53 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Interprocess Communication
 Processes within a system may be independent or cooperating
 Independent process cannot affect or be affected by the execution
of another process
 Cooperating process can affect or be affected by the execution of
another process
 Reasons for cooperating processes:
 Information sharing- same info/data is required by e.g.
copy/paste
 Computation speedup e.g. as discussed earlier distributed
computation on GPU cores
 Modularity/Convenience: for future enhancements and easy
management
 Cooperating processes need interprocess communication (IPC)
 Two models of IPC
 Shared memory: on same machine, fast, more programmer
involvement, high data
 Message passing: on different machines, less programming
efforts, slow (kernel involvement, slow physical link), short
data(messages)
 Note: In shared-memory systems, system calls are required only to
establish shared memory regions.
3.54 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Communications Models
(a) Message passing. (b) shared memory.
3.55 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Producer-Consumer Problem
 Paradigm for cooperating processes, producer process produces
information that is consumed by a consumer process
 compiler produces assembly code that is consumed by assembler
to generate object files that are consumed by loader or linker
 Client-Server paradign: server (e.g. web server) produces
contents (HTML pages) that are consumed by client (browser)
 A shared buffer (memory) is created that is filled by producer and
emptied by consumer
 unbounded-buffer places no practical limit on the size of the
buffer: No wait for producer but consumer may have to wait for
new items
 bounded-buffer assumes that there is a fixed buffer size:
Consumer waits if buffer is empty and producer waits if buffer is
full
3.56 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Bounded-Buffer – Shared-Memory Solution
 Shared data
#define BUFFER_SIZE 10
typedef struct {
. . .
} item;
item buffer[BUFFER_SIZE];
int in = 0;
int out = 0;
 Solution is correct, but can only use
BUFFER_SIZE-1 elements
3.57 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Bounded-Buffer – Producer
item next_produced;
while (true) {
/* produce an item in next produced */
while (((in + 1) % BUFFER_SIZE) ==
out)
; /* do nothing */
buffer[in] = next_produced;
in = (in + 1) % BUFFER_SIZE;
}
3.58 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Bounded Buffer – Consumer
item next_consumed;
while (true) {
while (in == out)
; /* do nothing */
next_consumed = buffer[out];
out = (out + 1) % BUFFER_SIZE;
/* consume the item in next
consumed */
}
3.59 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Interprocess Communication – Shared Memory
 An area of memory shared among the processes that wish
to communicate
 The communication is under the control of the users
processes not the operating system.
 Major issues is to provide mechanism that will allow the
user processes to synchronize their actions when they
access shared memory.
 Synchronization is discussed in great details in Chapter 5.
3.60 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Interprocess Communication – Message Passing
 Mechanism for processes to communicate and to synchronize
their actions
 Message system – processes communicate with each other
without resorting to shared variables
 IPC facility provides two operations:
 send(message)
 receive(message)
 The message size is either fixed or variable
3.61 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Message Passing (Cont.)
 If processes P and Q wish to communicate, they need to:
 Establish a communication link between them
 Exchange messages via send/receive
 Implementation issues:
 How are links established?
 Can a link be associated with more than two processes?
 How many links can there be between every pair of
communicating processes?
 What is the capacity of a link?
 Is the size of a message that the link can accommodate fixed or
variable?
 Is a link unidirectional or bi-directional?
3.62 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Message Passing (Cont.)
 Implementation of communication link
 Physical:
 Shared memory
 Hardware bus
 Network
 Logical:
 Direct or indirect
 Synchronous or asynchronous
 Automatic or explicit buffering
3.63 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Direct Communication
 Processes must name each other explicitly:
 send (P, message) – send a message to process P
 receive(Q, message) – receive a message from process Q
 Properties of communication link
 Links are established automatically
 A link is associated with exactly one pair of communicating
processes
 Between each pair there exists exactly one link
 The link may be unidirectional, but is usually bi-directional
3.64 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Indirect Communication
 Messages are directed and received from mailboxes (also referred
to as ports)
 Each mailbox has a unique id
 Processes can communicate only if they share a mailbox
 Properties of communication link
 Link established only if processes share a common mailbox
 A link may be associated with many processes
 Each pair of processes may share several communication links
 Link may be unidirectional or bi-directional
3.65 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Indirect Communication
 Operations
 create a new mailbox (port)
 send and receive messages through mailbox
 destroy a mailbox
 Primitives are defined as:
send(A, message) – send a message to mailbox A
receive(A, message) – receive a message from mailbox A
3.66 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Indirect Communication
 Mailbox sharing
 P1, P2, and P3 share mailbox A
 P1, sends; P2 and P3 receive
 Who gets the message?
 Solutions
 Allow a link to be associated with at most two processes
 Allow only one process at a time to execute a receive
operation
 Allow the system to select arbitrarily the receiver.
Sender is notified who the receiver was.
3.67 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
https://w3.cs.jmu.edu/kirkpams/OpenCSF/Books/csf/html/MQue
ues.html
Programming interface chapter 52
To download headerfile tlpi_hdr.h used in book examples
https://man7.org/tlpi/code/online/dist/lib/tlpi_hdr.h.html
Examples and explanation of message passing in
Linux- part of course
3.68 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Synchronization
 Message passing may be either blocking or non-blocking
 Blocking is considered synchronous
 Blocking send -- the sender is blocked until the message is
received
 Blocking receive -- the receiver is blocked until a message
is available
 Non-blocking is considered asynchronous
 Non-blocking send -- the sender sends the message and
continue
 Non-blocking receive -- the receiver receives:
 A valid message, or
 Null message
 Different combinations possible
 If both send and receive are blocking, we have a rendezvous
3.69 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Synchronization (Cont.)
 Producer-consumer becomes trivial
message next_produced;
while (true) {
/* produce an item in next produced */
send(next_produced);
}
message next_consumed;
while (true) {
receive(next_consumed);
/* consume the item in next consumed */
}
3.70 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Buffering
 Queue of messages attached to the link.
 implemented in one of three ways
1. Zero capacity – no messages are queued on a link.
Sender must wait for receiver (rendezvous)
2. Bounded capacity – finite length of n messages
Sender must wait if link full
3. Unbounded capacity – infinite length
Sender never waits
3.71 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Examples of IPC Systems - POSIX
 POSIX Shared Memory
 Process first creates shared memory segment
shm_fd = shm_open(name, O CREAT | O RDWR, 0666);
 Also used to open an existing segment to share it
 Set the size of the object
ftruncate(shm fd, 4096);
 Now the process could write to the shared memory
sprintf(shared memory, "Writing to shared
memory");
3.72 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
IPC POSIX Producer
3.73 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
IPC POSIX Consumer
3.74 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Important Note: Below is just recap but anyhing we have
discussed in class and not listed here is also part of exam.
Programs part of exam:
(Logic, basic syntax and combination of different arguments and
effect of these arguments)
1.process creation: fork, exec family function especially
execve.
2.Wait and waitpid: Both concepts and programming
3.private memory
4.threads (only done part no need to further digg for exam)
5.Pointers, structs, pointers to struct, linked lists, char
pointers
6.kernel modules with proc filesystem
7.Shared memory
8.Posix message passing
9.pipes
Midterm Paper
3.75 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Theory and concepts:
All topics discussed in the class and relevant reading
chapters and material
Paper Format:
The paper will be a mixture of following
1.MCQs and T/F
2.short answers
3.a few long Questions
4.2/3 tricky questions
5.2/3 annoying questions :)
Midterm Paper
3.76 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Pipes
 Acts as a conduit allowing two processes to communicate
 Issues:
 Is communication unidirectional or bidirectional?
 In the case of two-way communication, is it half or full-duplex?
 Must there exist a relationship (i.e., parent-child) between the
communicating processes?
 Can the pipes be used over a network?
 Ordinary pipes – cannot be accessed from outside the process that
created it. Typically, a parent process creates a pipe and uses it to
communicate with a child process that it created.
 Named pipes – can be accessed without a parent-child relationship.
3.77 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Ordinary Pipes
 Ordinary Pipes allow communication in standard producer-consumer
style
 Producer writes to one end (the write-end of the pipe)
 Consumer reads from the other end (the read-end of the pipe)
 Ordinary pipes are therefore unidirectional
 Require parent-child relationship between communicating processes
 Windows calls these anonymous pipes
 See Unix and Windows code samples in textbook
3.78 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
int fd[2];
/* create the pipe */
if ( pipe (fd) == -1) {
fprintf(stderr,"Pipe failed");
return 1;
}
// creates two file descriptor fd[0] and fd[1]
3.79 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Named Pipes
 Named Pipes are more powerful than ordinary pipes
 Communication is bidirectional
 No parent-child relationship is necessary between
the communicating processes
 Several processes can use the named pipe for
communication
 Provided on both UNIX and Windows systems
 man 3 mkfifo
3.80 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Communications in Client-Server Systems
 Sockets
 Remote Procedure Calls
 Pipes
 Remote Method Invocation (Java)
3.81 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Sockets
 A socket is defined as an endpoint for communication
 A pair of processes communicating over a network employs a pair of
sockets—one for each process.
 Concatenation of IP address and port – a number included at start of
message packet to differentiate network services on a host
 The socket 161.25.19.8:1625 refers to port 1625 on host 161.25.19.8
 Communication consists between a pair of sockets
 All ports below 1024 are well known, used for standard services
 Special IP address 127.0.0.1 (loopback) to refer to system on which
process is running
3.82 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Socket Communication
Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
End of Chapter 3

More Related Content

Similar to 5 - ch3.pptx

Similar to 5 - ch3.pptx (20)

Lecture_Process.ppt
Lecture_Process.pptLecture_Process.ppt
Lecture_Process.ppt
 
ch3.ppt
ch3.pptch3.ppt
ch3.ppt
 
ch3.ppt
ch3.pptch3.ppt
ch3.ppt
 
ch3 s ppt
ch3 s                                  pptch3 s                                  ppt
ch3 s ppt
 
cs8493 - operating systems unit 2
cs8493 - operating systems unit 2cs8493 - operating systems unit 2
cs8493 - operating systems unit 2
 
Processes
ProcessesProcesses
Processes
 
Operating System
Operating SystemOperating System
Operating System
 
process management.ppt
process management.pptprocess management.ppt
process management.ppt
 
ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 c...
ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 c...ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 c...
ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 ch3 c...
 
ch3_smu.ppt
ch3_smu.pptch3_smu.ppt
ch3_smu.ppt
 
ch3-lect7.pptx
ch3-lect7.pptxch3-lect7.pptx
ch3-lect7.pptx
 
ch3.ppt
ch3.pptch3.ppt
ch3.ppt
 
Process threads operating system.
Process threads operating system.Process threads operating system.
Process threads operating system.
 
Ch3OperSys
Ch3OperSysCh3OperSys
Ch3OperSys
 
OperatingSystemChp3
OperatingSystemChp3OperatingSystemChp3
OperatingSystemChp3
 
ch03.pptx
ch03.pptxch03.pptx
ch03.pptx
 
ch8.pdf operating systems by galvin to learn
ch8.pdf operating systems by  galvin to learnch8.pdf operating systems by  galvin to learn
ch8.pdf operating systems by galvin to learn
 
ch3_LU6_LU7_Lecture_1691052564579.pptx
ch3_LU6_LU7_Lecture_1691052564579.pptxch3_LU6_LU7_Lecture_1691052564579.pptx
ch3_LU6_LU7_Lecture_1691052564579.pptx
 
14712-l4.pptx
14712-l4.pptx14712-l4.pptx
14712-l4.pptx
 
OS-operating systems- ch03
OS-operating systems- ch03OS-operating systems- ch03
OS-operating systems- ch03
 

Recently uploaded

VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...Suhani Kapoor
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Niya Khan
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceSanjay Bokadia
 
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...Suhani Kapoor
 
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Suhani Kapoor
 
Zeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effectZeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effectPriyanshuRawat56
 
Resumes, Cover Letters, and Applying Online
Resumes, Cover Letters, and Applying OnlineResumes, Cover Letters, and Applying Online
Resumes, Cover Letters, and Applying OnlineBruce Bennett
 
Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...
Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...
Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...shivangimorya083
 
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
PM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring ChapterPM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring ChapterHector Del Castillo, CPM, CPMM
 
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsSonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsNiya Khan
 
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfExperience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfSoham Mondal
 
VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...Suhani Kapoor
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...Suhani Kapoor
 
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big BoodyDubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boodykojalkojal131
 
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen DatingDubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Datingkojalkojal131
 
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...Suhani Kapoor
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)Soham Mondal
 
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackVIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackSuhani Kapoor
 

Recently uploaded (20)

VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector Experience
 
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
 
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
 
Zeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effectZeeman Effect normal and Anomalous zeeman effect
Zeeman Effect normal and Anomalous zeeman effect
 
Resumes, Cover Letters, and Applying Online
Resumes, Cover Letters, and Applying OnlineResumes, Cover Letters, and Applying Online
Resumes, Cover Letters, and Applying Online
 
Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...
Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...
Delhi Call Girls Preet Vihar 9711199171 ☎✔👌✔ Whatsapp Body to body massage wi...
 
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
PM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring ChapterPM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring Chapter
 
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsSonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
 
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfExperience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
 
VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Saharanpur Aishwarya 8250192130 Independent Escort Ser...
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
 
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big BoodyDubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
 
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen DatingDubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
 
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)
 
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Alandi Road Call Me 7737669865 Budget Friendly No Advance Booking
 
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackVIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
 

5 - ch3.pptx

  • 1. Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Chapter 3: Processes
  • 2. 3.2 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Processes 1. Process Concept (OSC: chap 3) 2. Process Scheduling (OSC: chap 3) 3. A refresher: Loadable kernel module 1. 75 pages book will be provided 2. proc file system 3. 3 Loadable kernel modules 4. Related functions 5. Relevant commands 4. Discussion on Linux process management 1. Robert Love book 2. sched.h and task_struct (kernel source) 3. Relevant Commands 5. Class Task: Compile Linux kernel and run in Virtual machine 6. Class Task: Compile Linux kernel and run in Virtual machine 7. Discussion on next programming assigment
  • 3. 3.3 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Concept  An operating system executes a variety of programs:  Batch system – jobs  Time-shared systems – user programs or tasks  Textbook uses the terms job and process almost interchangeably  Process – a program in execution; process execution must progress in sequential fashion  Multiple parts  The program code, also called text section  Current activity including program counter, processor registers  Stack containing temporary data Function parameters, return addresses, local variables  Data section containing global variables  Heap containing memory dynamically allocated during run time
  • 4. 3.4 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition What goes where
  • 5. 3.5 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed?
  • 6. 3.6 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why?
  • 7. 3.7 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When is stack frame added?
  • 8. 3.8 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When is stack frame added? When a function calls another function Stack frame is removed on ........
  • 9. 3.9 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When is stack frame added? When a function calls another function Stack frame is removed on function return
  • 10. 3.10 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When stack frame is added? When a function calls another function Stack frame is removed on function return Why and when heap expands?
  • 11. 3.11 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When stack frame is added? When a function calls another function Stack frame is removed on function return Why and when heap expands? When a process demands memory dynamically How a process demands memory?
  • 12. 3.12 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When stack frame is added? When a function calls another function Stack frame is removed on function return how heap expands? When a process demands memory dynamically How a process demands memory? Using malloc and related functions How heap shrinks?
  • 13. 3.13 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process in Memory Which sections are fixed? Text and data So Stack and Heap can expand and shrink. Why? Stack stores stack frame/function call Each stack frame contains Function parameters, return addresses, local variables When stack frame is added? When a function calls another function Stack frame is removed on function return how heap expands? When a process demands memory dynamically How a process demands memory? Using malloc and related functions How heap shrinks? when a process calls free
  • 14. 3.14 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Concept (Cont.)  Program is passive entity stored on disk (executable file), process is active  Program becomes process when executable file loaded into memory  Execution of program started via GUI mouse clicks, command line entry of its name, etc  One program can be several processes  Consider multiple users executing the same program
  • 15. 3.15 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process State  As a process executes, it changes state  new: The process is being created  running: Instructions are being executed  waiting: The process is waiting for some event to occur  ready: The process is waiting to be assigned to a processor  terminated: The process has finished execution
  • 16. 3.16 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Diagram of Process State- Generic
  • 17. 3.17 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition TASK_RUNNING —The process is runnable; it is either currently running or on a run-queue waiting to run. TASK_INTERRUPTIBLE —The process is sleeping (that is, it is blocked), waiting for some condition to exist. When this condition exists, the kernel sets the process’s state to TASK_RUNNING. The process also awakes prematurely and becomes runnable if it receives a signal. Process State in Linux (Robert Love)
  • 18. 3.18 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition TASK_UNINTERRUPTIBLE —This state is identical to TASK_INTERRUPTIBLE except that it does not wake up and become runnable if it receives a signal. This is used in situations where the process must wait without interruption or when the event is expected to occur quite quickly. Because the task does not respond to signals in this state, TASK_UNINTERRUPTIBLE is less often used than TASK_INTERRUPTIBLE . __TASK_TRACED —The process is being traced by another process, such as a debug-ger, via ptrace. __TASK_STOPPED —Process execution has stopped; the task is not running nor is it eligible to run.This occurs if the task receives the SIGSTOP , SIGTSTP , SIGTTIN , or SIGTTOU signal or if it receives any signal while it is being debugged. Process State in Linux (Robert Love)
  • 19. 3.19 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process State in Linux (Robert Love)
  • 20. 3.20 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition 86 #define TASK_RUNNING 0 87 #define TASK_INTERRUPTIBLE 1 88 #define TASK_UNINTERRUPTIBLE 2 89 #define TASK_ZOMBIE 4 90 #define TASK_STOPPED 8 Process State in Linux (sched.h)
  • 21. 3.21 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition
  • 22. 3.22 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process State: Zombie vs Orphan TASK_ZOMBIE. Process execution is terminated, but the parent process has not yet issued a wait()-like system call (see wait(2)) to return information about the dead process. Every process first becomes zombie process before wipping out from system. The parent process reads the exit status of the child process which reaps off the child process entry from the process table. A process whose parent process no more exists i.e. either finished or terminated without waiting for its child process to terminate is called an orphan process. (Process is still running) However, the orphan process is soon adopted by init process, once its parent process dies.
  • 23. 3.23 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Control Block (PCB) Information associated with each process (also called task control block)  Process state – running, waiting, etc  Program counter – location of instruction to next execute  CPU registers – contents of all process-centric registers  CPU scheduling information- priorities, scheduling queue pointers  Memory-management information – memory allocated to the process  Accounting information – CPU used, clock time elapsed since start, time limits  I/O status information – I/O devices allocated to process, list of open files
  • 24. 3.24 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Linux Process Descriptor
  • 25. 3.25 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition CPU Switch From Process to Process
  • 26. 3.26 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Threads  So far, process has a single thread of execution  Consider having multiple program counters per process  Multiple locations can execute at once Multiple threads of control -> threads  Must then have storage for thread details, multiple program counters in PCB  We will further Discuss at suitable time
  • 27. 3.27 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Representation in Linux Represented by the C structure task_struct pid t_pid; /* process identifier */ long state; /* state of the process */ unsigned int time_slice /* scheduling information */ struct task_struct *parent; /* this process’s parent */ struct list_head children; /* this process’s children */ struct files_struct *files; /* list of open files */ struct mm_struct *mm; /* address space of this process */
  • 28. 3.28 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Scheduling  Maximize CPU use, quickly switch processes onto CPU for time sharing  Process scheduler selects among available processes for next execution on CPU  Maintains scheduling queues of processes  Job queue – set of all processes in the system  Ready queue – set of all processes residing in main memory, ready and waiting to execute  Device queues – set of processes waiting for an I/O device  Processes migrate among the various queues
  • 29. 3.29 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition struct list_head { struct list_head *next struct list_head *prev; }; struct fox { unsigned long tail_length; unsigned long weight; bool is_fantastic; struct list_head list; }; I strongly suggest to read chapter 6 of Robert Love To Understand next slide
  • 30. 3.30 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Ready Queue And Various I/O Device Queues
  • 31. 3.31 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Events for a Process • Process is Terminated • execution is completed • some bug is generated • Is Interrupted: time slice on CPU is completed • I/O request: Waiting for completion of I/O request • Waiting for Child status: forked child and child is still in execution
  • 32. 3.32 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Representation of Process Scheduling  Queueing diagram represents queues, resources, flows
  • 33. 3.33 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Schedulers  Short-term scheduler (or CPU scheduler) – selects which process should be executed next and allocates CPU  Sometimes the only scheduler in a system  Short-term scheduler is invoked frequently (milliseconds)  (must be fast)  Long-term scheduler (or job scheduler) – selects which processes should be brought into the ready queue  Long-term scheduler is invoked infrequently (seconds, minutes)  (may be slow)  The long-term scheduler controls the degree of multiprogramming  Processes can be described as either:  I/O-bound process – spends more time doing I/O than computations, many short CPU bursts  CPU-bound process – spends more time doing computations; few very long CPU bursts  Long-term scheduler strives for good process mix
  • 34. 3.34 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Addition of Medium Term Scheduling  Medium-term scheduler can be added if degree of multiple programming needs to decrease  Remove process from memory, store on disk, bring back in from disk to continue execution: swapping What is CPU Thrashing?? What is working set of a process?
  • 35. 3.35 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Multitasking in Mobile Systems  Some mobile systems (e.g., early version of iOS) allow only one process to run, others suspended  Due to screen real estate, user interface limits iOS for  Single foreground process- controlled via user interface  Multiple background processes– in memory, running, but not on the display, and with limits  Limits include single, short task, receiving notification of events, specific long-running tasks like audio playback  Presently due to good specs, these limits are lessen  Android runs foreground and background, with fewer limits  Background process uses a service to perform tasks without being foreground  Service can keep running even if background process is suspended eg. playing audio  Service has no user interface, small memory use
  • 36. 3.36 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Context Switch  When CPU switches to another process, the system must save the state of the old process and load the saved state for the new process via a context switch  Context of a process represented in the PCB  Context-switch time is overhead; the system does no useful work while switching  The more complex the OS and the PCB  the longer the context switch  Time dependent on hardware support  Some hardware provides multiple sets of registers per CPU  multiple contexts loaded at once
  • 37. 3.37 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Important Info Snapshots sharing folder between virtualbox and host kernel headers kernel name Spaces in the path of kernel module are troublesome Linux File System Hierarchy cat /proc/sys/kernel/printk // to check printk levels ps -e -f // list all processes ps -l // to check zombie process
  • 38. 3.38 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition pr_info("Info message no. %dn", msg_num);
  • 39. 3.39 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition LINUX TIMERS (Not included but read) On Linux systems, the kernel configuration parameter HZ specifies the fre- quency of timer interrupts. An HZ value of 250 means that the timer generates 250 interrupts per second, or one interrupt every 4 milliseconds. The value of HZ depends upon how the kernel is configured, as well the machine type and architecture on which it is running. A related kernel variable is jiffies , which represent the number of timer interrupts that have occurred since the system was booted. A programming project in Chapter 2 further explores timing in the Linux kernel A variable timer is generally implemented by a fixed-rate clock and a counter. The operating system sets the counter. Every time the clock ticks, the counter is decremented
  • 40. 3.40 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition How many processe can be created Limit is attached with available physical memory cat /proc/sys/kernel/threads-max for_each_task(p) { ... } Scrap slide
  • 41. 3.41 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Programmers use functions they don't define all the time. A prime example of this is printf(). You use these library functions which are provided by the standard C library, libc. The definitions for these functions don't actually enter your program until the linking stage, which insures that the code (for printf() forexample) is available, and fixes the call instruction to point to that code. Kernel modules are different here, too. In the hello world example, you might have noticed that we used a function, printk() but didn't include a standard I/O library. That's because modules are object files whose symbols get resolved upon insmod'ing. The definition for the symbols comes from the kernel itself; the only external functions you can use are the ones provided by the kernel. If you're curious about what symbols have been exported by your kernel, take a look at /proc/ksyms (its actually /proc/kallsyms). excerpt from lkmp book (discussed in previous lecture)
  • 42. 3.42 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition One point to keep in mind is the difference between library functions and system calls. Library functions are higher level, run completely in user space and provide a more convenient interface for the programmer to the functions that do the real work−−−system calls. System calls run in kernel mode on the user's behalf and are provided by the kernel itself. The library function printf() may look like a very general printing function,but all it really does is format the data into strings and write the string data using the low−level system call write(), which then sends the data to standard output excerpt from lkmp book....
  • 43. 3.43 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Create a /proc entry when is read Display name of the process who has performed read on your created proc entry display the names of all process with their pid Display name, pid and state of the all processes in the system WHO IS READING YOUR CREATED PROC ENTRY good start and understanding https://tldp.org/LDP/lki/lki-2.html Programming Assignment
  • 44. 3.44 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Operations on Processes  System must provide mechanisms for:  process creation,  process termination,  and so on as detailed next
  • 45. 3.45 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Creation  Parent process create children processes, which, in turn create other processes, forming a tree of processes  Generally, process identified and managed via a process identifier (pid)  Resource sharing options (what are resources?-> Cpu time, memory, files, signals, I/O devices)  Parent and children share all resources  Children share subset of parent’s resources  Parent and child share no resources  Copy-on-Write: share the address space till child performs write. The pages of memory are marked as COW and if any of these processes modify the page, new page is created  Fork bomb  Execution options  Parent and children execute concurrently  Parent waits until children terminate  How fork and vfork are implemented in Linux are must teaching in my track but I am only recommending that as self reading for enthusiastics  (Robert Love pa 31-40 and relevant functions in kernel source)
  • 46. 3.46 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition A Tree of Processes in Linux (systemd)
  • 47. 3.47 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition A Tree of Processes in Linux init pid = 1 sshd pid = 3028 login pid = 8415 kthreadd pid = 2 sshd pid = 3610 pdflush pid = 200 khelper pid = 6 tcsch pid = 4005 emacs pid = 9204 bash pid = 8416 ps pid = 9298
  • 48. 3.48 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Creation (Cont.)  Address space  Child duplicate of parent  Child has a program loaded into it  UNIX examples  fork() system call creates new process  exec() system call used after a fork() to replace the process’ memory space with a new program  wait() and waitpid()  man wait: understand difference between both and execute the given example
  • 49. 3.49 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition C Program Forking Separate Process
  • 50. 3.50 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Termination  Process executes last statement and then asks the operating system to delete it using the exit() system call.  Returns status data from child to parent (via wait())  Process’ resources are deallocated by operating system (p 31-40)  Parent may terminate the execution of children processes using the abort() system call. Some reasons for doing so:  Child has exceeded allocated resources  limits are configurable  limits can be checked with ulimit -a  Task assigned to child is no longer required  The parent is exiting and the operating systems does not allow a child to continue if its parent terminates
  • 51. 3.51 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Process Termination  Some operating systems do not allow child to exists if its parent has terminated. If a process terminates, then all its children must also be terminated.  cascading termination. All children, grandchildren, etc. are terminated.  The termination is initiated by the operating system.  The parent process may wait for termination of a child process by using the wait()system call. The call returns status information and the pid of the terminated process pid = wait(&status);  If no parent waiting (did not invoke wait()) process is a zombie  If parent terminated without invoking wait , process is an orphan
  • 52. 3.52 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Multiprocess Architecture – Chrome Browser  Many web browsers ran as single process (some still do)  Honestly I dont know about single process browser but i think lynx is single process but not sure. What I am sure is that Lynx is the lightweight browser  If one web site causes trouble, entire browser can hang or crash  Google Chrome Browser is multiprocess with 3 different types of processes:  Browser process manages user interface, disk and network I/O  Renderer process renders web pages, deals with HTML, Javascript. A new renderer created for each website opened  Runs in sandbox restricting disk and network I/O, minimizing effect of security exploits  Plug-in process for each type of plug-in
  • 53. 3.53 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Interprocess Communication  Processes within a system may be independent or cooperating  Independent process cannot affect or be affected by the execution of another process  Cooperating process can affect or be affected by the execution of another process  Reasons for cooperating processes:  Information sharing- same info/data is required by e.g. copy/paste  Computation speedup e.g. as discussed earlier distributed computation on GPU cores  Modularity/Convenience: for future enhancements and easy management  Cooperating processes need interprocess communication (IPC)  Two models of IPC  Shared memory: on same machine, fast, more programmer involvement, high data  Message passing: on different machines, less programming efforts, slow (kernel involvement, slow physical link), short data(messages)  Note: In shared-memory systems, system calls are required only to establish shared memory regions.
  • 54. 3.54 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Communications Models (a) Message passing. (b) shared memory.
  • 55. 3.55 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Producer-Consumer Problem  Paradigm for cooperating processes, producer process produces information that is consumed by a consumer process  compiler produces assembly code that is consumed by assembler to generate object files that are consumed by loader or linker  Client-Server paradign: server (e.g. web server) produces contents (HTML pages) that are consumed by client (browser)  A shared buffer (memory) is created that is filled by producer and emptied by consumer  unbounded-buffer places no practical limit on the size of the buffer: No wait for producer but consumer may have to wait for new items  bounded-buffer assumes that there is a fixed buffer size: Consumer waits if buffer is empty and producer waits if buffer is full
  • 56. 3.56 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Bounded-Buffer – Shared-Memory Solution  Shared data #define BUFFER_SIZE 10 typedef struct { . . . } item; item buffer[BUFFER_SIZE]; int in = 0; int out = 0;  Solution is correct, but can only use BUFFER_SIZE-1 elements
  • 57. 3.57 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Bounded-Buffer – Producer item next_produced; while (true) { /* produce an item in next produced */ while (((in + 1) % BUFFER_SIZE) == out) ; /* do nothing */ buffer[in] = next_produced; in = (in + 1) % BUFFER_SIZE; }
  • 58. 3.58 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Bounded Buffer – Consumer item next_consumed; while (true) { while (in == out) ; /* do nothing */ next_consumed = buffer[out]; out = (out + 1) % BUFFER_SIZE; /* consume the item in next consumed */ }
  • 59. 3.59 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Interprocess Communication – Shared Memory  An area of memory shared among the processes that wish to communicate  The communication is under the control of the users processes not the operating system.  Major issues is to provide mechanism that will allow the user processes to synchronize their actions when they access shared memory.  Synchronization is discussed in great details in Chapter 5.
  • 60. 3.60 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Interprocess Communication – Message Passing  Mechanism for processes to communicate and to synchronize their actions  Message system – processes communicate with each other without resorting to shared variables  IPC facility provides two operations:  send(message)  receive(message)  The message size is either fixed or variable
  • 61. 3.61 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Message Passing (Cont.)  If processes P and Q wish to communicate, they need to:  Establish a communication link between them  Exchange messages via send/receive  Implementation issues:  How are links established?  Can a link be associated with more than two processes?  How many links can there be between every pair of communicating processes?  What is the capacity of a link?  Is the size of a message that the link can accommodate fixed or variable?  Is a link unidirectional or bi-directional?
  • 62. 3.62 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Message Passing (Cont.)  Implementation of communication link  Physical:  Shared memory  Hardware bus  Network  Logical:  Direct or indirect  Synchronous or asynchronous  Automatic or explicit buffering
  • 63. 3.63 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Direct Communication  Processes must name each other explicitly:  send (P, message) – send a message to process P  receive(Q, message) – receive a message from process Q  Properties of communication link  Links are established automatically  A link is associated with exactly one pair of communicating processes  Between each pair there exists exactly one link  The link may be unidirectional, but is usually bi-directional
  • 64. 3.64 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Indirect Communication  Messages are directed and received from mailboxes (also referred to as ports)  Each mailbox has a unique id  Processes can communicate only if they share a mailbox  Properties of communication link  Link established only if processes share a common mailbox  A link may be associated with many processes  Each pair of processes may share several communication links  Link may be unidirectional or bi-directional
  • 65. 3.65 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Indirect Communication  Operations  create a new mailbox (port)  send and receive messages through mailbox  destroy a mailbox  Primitives are defined as: send(A, message) – send a message to mailbox A receive(A, message) – receive a message from mailbox A
  • 66. 3.66 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Indirect Communication  Mailbox sharing  P1, P2, and P3 share mailbox A  P1, sends; P2 and P3 receive  Who gets the message?  Solutions  Allow a link to be associated with at most two processes  Allow only one process at a time to execute a receive operation  Allow the system to select arbitrarily the receiver. Sender is notified who the receiver was.
  • 67. 3.67 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition https://w3.cs.jmu.edu/kirkpams/OpenCSF/Books/csf/html/MQue ues.html Programming interface chapter 52 To download headerfile tlpi_hdr.h used in book examples https://man7.org/tlpi/code/online/dist/lib/tlpi_hdr.h.html Examples and explanation of message passing in Linux- part of course
  • 68. 3.68 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Synchronization  Message passing may be either blocking or non-blocking  Blocking is considered synchronous  Blocking send -- the sender is blocked until the message is received  Blocking receive -- the receiver is blocked until a message is available  Non-blocking is considered asynchronous  Non-blocking send -- the sender sends the message and continue  Non-blocking receive -- the receiver receives:  A valid message, or  Null message  Different combinations possible  If both send and receive are blocking, we have a rendezvous
  • 69. 3.69 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Synchronization (Cont.)  Producer-consumer becomes trivial message next_produced; while (true) { /* produce an item in next produced */ send(next_produced); } message next_consumed; while (true) { receive(next_consumed); /* consume the item in next consumed */ }
  • 70. 3.70 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Buffering  Queue of messages attached to the link.  implemented in one of three ways 1. Zero capacity – no messages are queued on a link. Sender must wait for receiver (rendezvous) 2. Bounded capacity – finite length of n messages Sender must wait if link full 3. Unbounded capacity – infinite length Sender never waits
  • 71. 3.71 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Examples of IPC Systems - POSIX  POSIX Shared Memory  Process first creates shared memory segment shm_fd = shm_open(name, O CREAT | O RDWR, 0666);  Also used to open an existing segment to share it  Set the size of the object ftruncate(shm fd, 4096);  Now the process could write to the shared memory sprintf(shared memory, "Writing to shared memory");
  • 72. 3.72 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition IPC POSIX Producer
  • 73. 3.73 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition IPC POSIX Consumer
  • 74. 3.74 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Important Note: Below is just recap but anyhing we have discussed in class and not listed here is also part of exam. Programs part of exam: (Logic, basic syntax and combination of different arguments and effect of these arguments) 1.process creation: fork, exec family function especially execve. 2.Wait and waitpid: Both concepts and programming 3.private memory 4.threads (only done part no need to further digg for exam) 5.Pointers, structs, pointers to struct, linked lists, char pointers 6.kernel modules with proc filesystem 7.Shared memory 8.Posix message passing 9.pipes Midterm Paper
  • 75. 3.75 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Theory and concepts: All topics discussed in the class and relevant reading chapters and material Paper Format: The paper will be a mixture of following 1.MCQs and T/F 2.short answers 3.a few long Questions 4.2/3 tricky questions 5.2/3 annoying questions :) Midterm Paper
  • 76. 3.76 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Pipes  Acts as a conduit allowing two processes to communicate  Issues:  Is communication unidirectional or bidirectional?  In the case of two-way communication, is it half or full-duplex?  Must there exist a relationship (i.e., parent-child) between the communicating processes?  Can the pipes be used over a network?  Ordinary pipes – cannot be accessed from outside the process that created it. Typically, a parent process creates a pipe and uses it to communicate with a child process that it created.  Named pipes – can be accessed without a parent-child relationship.
  • 77. 3.77 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Ordinary Pipes  Ordinary Pipes allow communication in standard producer-consumer style  Producer writes to one end (the write-end of the pipe)  Consumer reads from the other end (the read-end of the pipe)  Ordinary pipes are therefore unidirectional  Require parent-child relationship between communicating processes  Windows calls these anonymous pipes  See Unix and Windows code samples in textbook
  • 78. 3.78 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition int fd[2]; /* create the pipe */ if ( pipe (fd) == -1) { fprintf(stderr,"Pipe failed"); return 1; } // creates two file descriptor fd[0] and fd[1]
  • 79. 3.79 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Named Pipes  Named Pipes are more powerful than ordinary pipes  Communication is bidirectional  No parent-child relationship is necessary between the communicating processes  Several processes can use the named pipe for communication  Provided on both UNIX and Windows systems  man 3 mkfifo
  • 80. 3.80 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Communications in Client-Server Systems  Sockets  Remote Procedure Calls  Pipes  Remote Method Invocation (Java)
  • 81. 3.81 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Sockets  A socket is defined as an endpoint for communication  A pair of processes communicating over a network employs a pair of sockets—one for each process.  Concatenation of IP address and port – a number included at start of message packet to differentiate network services on a host  The socket 161.25.19.8:1625 refers to port 1625 on host 161.25.19.8  Communication consists between a pair of sockets  All ports below 1024 are well known, used for standard services  Special IP address 127.0.0.1 (loopback) to refer to system on which process is running
  • 82. 3.82 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Socket Communication
  • 83. Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition End of Chapter 3