Unit 6-coos dead locks and file system
Unit 6-coos dead locks and file system
• You can't get a job without experience; you can't get experience without a job.
BACKGROUND:
The cause of deadlocks: Each process needing what another process has. This results
from sharing resources such as memory, devices, links.
Mutual exclusion
One or more than one resource must be held by a process in a non-sharable
(exclusive) mode.
No Preemption
There is only voluntary release of a resource - nobody else can make a process
give up a resource.
Circular Wait
Process A waits for Process B waits for Process C .... waits for Process A.
DEADLOCKS RESOURCE
ALLOCATION GRAPH
A visual ( mathematical ) way to determine if a deadlock has, or may occur.
V Nodes consist of processes = { P1, P2, P3, ...} and resource types
{ R1, R2, ...}
An arrow from the process to resource indicates the process is requesting the
resource. An arrow from resource to process shows an instance of the resource
has been allocated to the process.
R3 Assigned to P3
P2 Requests P3
DEADLOCKS RESOURCE
ALLOCATION GRAPH
Mutual exclusion:
a) Automatically holds for printers and other non-sharables.
b) Shared entities (read only files) don't need mutual exclusion (and aren’t
susceptible to deadlock.)
c) Prevention not possible, since some devices are intrinsically non-sharable.
No preemption:
a) Release any resource already being held if the process can't get an
additional resource.
b) Allow preemption - if a needed resource is held by another process, which
is also waiting on some resource, steal it. Otherwise wait.
Circular wait:
Safe state A state is safe if a sequence of processes exist such that there are
enough resources for the first to finish, and as each finishes and
releases its resources there are enough for the next to finish.
The rule is simple: If a request allocation would cause an unsafe state, do not honor that
request.
NOTE: All deadlocks are unsafe, but all unsafes are NOT deadlocks.
DEADLOCKS Deadlock
Avoidance
NOTE: All deadlocks are unsafe, but all unsafes are NOT deadlocks.
UNSAFE
SAFE
DEADLOCK
Complexity is of order m * n * n.
EXAMPLE
We have three resources, A, B, and C. A has 7 instances, B has 2 instances, and C has 6
instances. At this time, the allocation, etc. looks like this:
EXAMPLE
Suppose the Request matrix is changed like this. In other words, the maximum amounts to be allocated are
initially declared so that this request matrix results.
Is there now a
sequence that will Alloc Req Avail
allow deadlock to be
avoided? A B C A B C A B C
P0 0 1 0 0 0 0 0 0 0
USAGE OF THIS P1 2 0 0 2 0 2
DETECTION ALGORITHM P2 3 0 3 0 0 1#
Frequency of check P3 2 1 1 1 0 0
depends on how often a
deadlock occurs and how P4 0 0 2 0 0 2
many processes will be
affected.
DEADLOCKS Deadlock Recovery
So, the deadlock has occurred. Now, how do we get the resources back and gain forward
progress?
PROCESS TERMINATION:
RESOURCE PREEMPTION:
• Type of resource may dictate best deadlock handling. Look at ease of implementation, and
effect on performance.
• Cases include:
• Types:
• Data
• numeric
• character
• binary
• Program
File Structure
• None - sequence of words, bytes
• Simple record structure
• Lines
• Fixed length
• Variable length
• Complex Structures
• Formatted document
• Relocatable load file
• Can simulate last two with first method by
inserting appropriate control characters
• Who decides:
• Operating system
• Program
File Attributes
• Name – only information kept in human-readable
form
• Identifier – unique tag (number) identifies file within
file system
• Type – needed for systems that support different
types
• Location – pointer to file location on device
• Size – current file size
• Protection – controls who can do reading, writing,
executing
• Time, date, and user identification – data for
protection, security, and usage monitoring
• Information about files are kept in the directory
structure, which is maintained on the disk
File Operations
• File is an abstract data type
• Create
• Write
• Read
• Reposition within file
• Delete
• Truncate
• Open(Fi) – search the directory structure on
disk for entry Fi, and move the content of
entry to memory
• Close (Fi) – move the content of entry Fi in
memory to directory structure on disk
Open Files
• Several pieces of data are needed to manage
open files:
• File pointer: pointer to last read/write location, per
process that has the file open
• File-open count: counter of number of times a file
is open – to allow removal of data from open-file
table when last processes closes it
• Disk location of the file: cache of data access
information
• Access rights: per-process access mode
information
Open File Locking
• Provided by some operating systems
and file systems
• Mediates access to a file
• Mandatory or advisory:
• Mandatory – access is denied depending
on locks held and requested
• Advisory – processes can find status of
locks and decide what to do
File Locking Example – Java
import java.io.*;
import java.nio.channels.*;
API
public class LockingExample {
public static final boolean EXCLUSIVE = false;
public static final boolean SHARED = true;
public static void main(String arsg[]) throws IOException {
FileLock sharedLock = null;
FileLock exclusiveLock = null;
try {
RandomAccessFile raf = new
RandomAccessFile("file.txt", "rw");
// get the channel for the file
FileChannel ch = raf.getChannel();
// this locks the first half of the file - exclusive
exclusiveLock = ch.lock(0, raf.length()/2,
EXCLUSIVE);
/** Now modify the data . . . */
// release the lock
exclusiveLock.release();
File Locking Example – Java
API (cont)
// this locks the second half of the file -
shared
sharedLock = ch.lock(raf.length()/2+1,
raf.length(), SHARED);
/** Now read the data . . . */
// release the lock
sharedLock.release();
} catch (java.io.IOException ioe) {
System.err.println(ioe);
}finally {
if (exclusiveLock != null)
exclusiveLock.release();
if (sharedLock != null)
sharedLock.release();
}
}
}
File Types – Name, Extension
Access Methods
• Sequential Access
read next
write next
reset
no read after last write
(rewrite)
• Direct Access
read n
write n
position to n
read next
write next
rewrite n
n = relative block number
Sequential-access File
Simulation of Sequential Access on
Direct-access File
Example of Index and Relative
Files
Directory Structure
• A collection of nodes containing information about all files
Directory
Files
F1 F2 F4
F3
Fn
• Each volume containing file system also tracks that file system’s info in
device directory or volume table of contents
Naming problem
Grouping problem
Two-Level Directory
• Separate directory for each user
Path name
Can have the same file name for different user
Efficient searching
No grouping capability
Tree-Structured Directories
Tree-Structured Directories
(Cont)
• Efficient searching
• Grouping Capability
Tend to be less complex due to disk I/O and network latency (for
remote file systems
• Andrew File System (AFS) implemented complex remote file
sharing semantics
• Unix file system (UFS) implements:
• Writes to an open file visible immediately to other users of the
same open file
• Sharing file pointer to allow multiple users to read and write
concurrently
• AFS has session semantics
• Writes only visible to sessions starting after the file is closed
Protection
• File owner/creator should be able to control:
• what can be done
• by whom
• Types of access
• Read
• Write
• Execute
• Append
• Delete
• List
Access Lists and Groups
• Mode of access: read, write, execute
• Three classes of users
RWX
a) owner access 7 111
RWX
b) group access 6 110
RWX
c) public access 1 001
• Ask manager to create a group (unique name), say G, and add some
users to the group.
• For a particular file (say game) or subdirectory, define an appropriate
access.
owner group public
Advantages:
•Easy to implement
•Excellent read
performance
Disadvantages:
•Disk will become
fragmented
•Difficult to grow
Non- Contiguous Allocation
Linked List
Non- Allocation
Contiguous
Allocation
Indexed Allocation
Advantages:
•No external fragmentation
•File size can increase
Disadvantages:
•Large seek time
•Random acess/direct
acess
•Overahead of pointers
Indexed Allocation
• In this scheme, a special block known as the Index
block contains the pointers to all the blocks occupied
by a file.
• Each file has its own index block. The ith entry in the
index block contains the disk address of the ith file
block.
Indexed Allocation
Advantages:
•Support direct
access/random access
•No external fragmentation
Disadvantages :
•Pointer over head
•Multilevel index block