Chapter 11 - File System Implementation

WayneJonesJnr 24,549 views 55 slides Apr 20, 2009
Slide 1
Slide 1 of 55
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21
Slide 22
22
Slide 23
23
Slide 24
24
Slide 25
25
Slide 26
26
Slide 27
27
Slide 28
28
Slide 29
29
Slide 30
30
Slide 31
31
Slide 32
32
Slide 33
33
Slide 34
34
Slide 35
35
Slide 36
36
Slide 37
37
Slide 38
38
Slide 39
39
Slide 40
40
Slide 41
41
Slide 42
42
Slide 43
43
Slide 44
44
Slide 45
45
Slide 46
46
Slide 47
47
Slide 48
48
Slide 49
49
Slide 50
50
Slide 51
51
Slide 52
52
Slide 53
53
Slide 54
54
Slide 55
55

About This Presentation

File-System Structure
File-System Implementation
Directory Implementation
Allocation Methods
Free-Space Management
Efficiency and Performance
Recovery
Log-Structured File Systems
NFS
Example: WAFL File System


Slide Content

Chapter 11: File System Chapter 11: File System
ImplementationImplementation

11.2 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Chapter 11: File System ImplementationChapter 11: File System Implementation
nFile-System Structure
nFile-System Implementation
nDirectory Implementation
nAllocation Methods
nFree-Space Management
nEfficiency and Performance
nRecovery
nLog-Structured File Systems
nNFS
nExample: WAFL File System

11.3 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
ObjectivesObjectives
nTo describe the details of implementing local file systems and
directory structures
nTo describe the implementation of remote file systems
nTo discuss block allocation and free-block algorithms and trade-offs

11.4 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
File-System StructureFile-System Structure
nFile structure
lLogical storage unit
lCollection of related information
nFile system resides on secondary storage (disks)
nFile system organized into layers
nFile control block – storage structure consisting of information
about a file

11.5 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Layered File SystemLayered File System

11.6 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
A Typical File Control BlockA Typical File Control Block

11.7 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
In-Memory File System StructuresIn-Memory File System Structures
nThe following figure illustrates the necessary file system structures
provided by the operating systems.
nFigure 12-3(a) refers to opening a file.
nFigure 12-3(b) refers to reading a file.

11.8 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
In-Memory File System StructuresIn-Memory File System Structures

11.9 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Virtual File SystemsVirtual File Systems
nVirtual File Systems (VFS) provide an object-oriented way of
implementing file systems.
nVFS allows the same system call interface (the API) to be used for
different types of file systems.
nThe API is to the VFS interface, rather than any specific type of file
system.

11.10 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Schematic View of Virtual File Schematic View of Virtual File
SystemSystem

11.11 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Directory ImplementationDirectory Implementation
nLinear list of file names with pointer to the data blocks.
lsimple to program
ltime-consuming to execute
nHash Table – linear list with hash data structure.
ldecreases directory search time
lcollisions – situations where two file names hash to the same
location
lfixed size

11.12 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Allocation MethodsAllocation Methods
nAn allocation method refers to how disk blocks are allocated for
files:
nContiguous allocation
nLinked allocation
nIndexed allocation

11.13 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Contiguous AllocationContiguous Allocation
nEach file occupies a set of contiguous blocks on the disk
nSimple – only starting location (block #) and length (number
of blocks) are required
nRandom access
nWasteful of space (dynamic storage-allocation problem)
nFiles cannot grow

11.14 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Contiguous AllocationContiguous Allocation
nMapping from logical to physical
LA/512
Q
R
Block to be accessed = ! + starting address
Displacement into block = R

11.15 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Contiguous Allocation of Disk SpaceContiguous Allocation of Disk Space

11.16 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Extent-Based SystemsExtent-Based Systems
nMany newer file systems (I.e. Veritas File System) use a modified
contiguous allocation scheme
nExtent-based file systems allocate disk blocks in extents
nAn extent is a contiguous block of disks
lExtents are allocated for file allocation
lA file consists of one or more extents.

11.17 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Linked AllocationLinked Allocation
nEach file is a linked list of disk blocks: blocks may be scattered
anywhere on the disk.
pointerblock =

11.18 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Linked Allocation (Cont.)Linked Allocation (Cont.)
nSimple – need only starting address
nFree-space management system – no waste of space
nNo random access
nMapping
Block to be accessed is the Qth block in the linked chain of
blocks representing the file.
Displacement into block = R + 1
File-allocation table (FAT) – disk-space allocation used by MS-DOS
and OS/2.
LA/511
Q
R

11.19 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Linked AllocationLinked Allocation

11.20 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
File-Allocation TableFile-Allocation Table

11.21 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Indexed AllocationIndexed Allocation
nBrings all pointers together into the index block.
nLogical view.
index table

11.22 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Example of Indexed AllocationExample of Indexed Allocation

11.23 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Indexed Allocation (Cont.)Indexed Allocation (Cont.)
nNeed index table
nRandom access
nDynamic access without external fragmentation, but have
overhead of index block.
nMapping from logical to physical in a file of maximum size of
256K words and block size of 512 words. We need only 1
block for index table.
LA/512
Q
R
Q = displacement into index table
R = displacement into block

11.24 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Indexed Allocation – Mapping Indexed Allocation – Mapping
(Cont.)(Cont.)
nMapping from logical to physical in a file of unbounded
length (block size of 512 words).
nLinked scheme – Link blocks of index table (no limit on
size).
LA / (512 x 511)
Q
1
R
1
Q
1
= block of index table
R
1
is used as follows:
R
1
/ 512
Q
2
R
2
Q
2
= displacement into block of index table
R
2 displacement into block of file:

11.25 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Indexed Allocation – Mapping Indexed Allocation – Mapping
(Cont.)(Cont.)
nTwo-level index (maximum file size is 512
3
)
LA / (512 x 512)
Q
1
R
1
Q
1
= displacement into outer-index
R
1
is used as follows:
R
1
/ 512
Q
2
R
2
Q
2
= displacement into block of index table
R
2 displacement into block of file:

11.26 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Indexed Allocation – Mapping Indexed Allocation – Mapping
(Cont.)(Cont.)

outer-index
index table file

11.27 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Combined Scheme: UNIX (4K bytes per Combined Scheme: UNIX (4K bytes per
block)block)

11.28 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Free-Space ManagementFree-Space Management
nBit vector (n blocks)

012 n-1
bit[i] =

0 Þ block[i] free
1 Þ block[i] occupied
Block number calculation
(number of bits per word) *
(number of 0-value words) +
offset of first 1 bit

11.29 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Free-Space Management (Cont.)Free-Space Management (Cont.)
nBit map requires extra space
lExample:
block size = 2
12
bytes
disk size = 2
30
bytes (1 gigabyte)
n = 2
30
/2
12
= 2
18
bits (or 32K bytes)
nEasy to get contiguous files
nLinked list (free list)
lCannot get contiguous space easily
lNo waste of space
nGrouping
nCounting

11.30 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Free-Space Management (Cont.)Free-Space Management (Cont.)
nNeed to protect:
lPointer to free list
lBit map
Must be kept on disk
Copy in memory and disk may differ
Cannot allow for block[i] to have a situation where
bit[i] = 1 in memory and bit[i] = 0 on disk
lSolution:
Set bit[i] = 1 in disk
Allocate block[i]
Set bit[i] = 1 in memory

11.31 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Directory ImplementationDirectory Implementation
nLinear list of file names with pointer to the data blocks
lsimple to program
ltime-consuming to execute
nHash Table – linear list with hash data structure
ldecreases directory search time
lcollisions – situations where two file names hash to the same
location
lfixed size

11.32 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Linked Free Space List on DiskLinked Free Space List on Disk

11.33 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Efficiency and PerformanceEfficiency and Performance
nEfficiency dependent on:
ldisk allocation and directory algorithms
ltypes of data kept in file’s directory entry
nPerformance
ldisk cache – separate section of main memory for frequently
used blocks
lfree-behind and read-ahead – techniques to optimize
sequential access
limprove PC performance by dedicating section of memory as
virtual disk, or RAM disk

11.34 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Page CachePage Cache
nA page cache caches pages rather than disk blocks using virtual
memory techniques
nMemory-mapped I/O uses a page cache
nRoutine I/O through the file system uses the buffer (disk) cache
nThis leads to the following figure

11.35 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
I/O Without a Unified Buffer CacheI/O Without a Unified Buffer Cache

11.36 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Unified Buffer CacheUnified Buffer Cache
nA unified buffer cache uses the same page cache to cache both
memory-mapped pages and ordinary file system I/O

11.37 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
I/O Using a Unified Buffer CacheI/O Using a Unified Buffer Cache

11.38 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
RecoveryRecovery
nConsistency checking – compares data in directory structure with
data blocks on disk, and tries to fix inconsistencies
nUse system programs to back up data from disk to another
storage device (floppy disk, magnetic tape, other magnetic disk,
optical)
nRecover lost file or disk by restoring data from backup

11.39 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Log Structured File SystemsLog Structured File Systems
nLog structured (or journaling) file systems record each update to
the file system as a transaction
nAll transactions are written to a log
l A transaction is considered committed once it is written to
the log
lHowever, the file system may not yet be updated
nThe transactions in the log are asynchronously written to the file
system
l When the file system is modified, the transaction is removed
from the log
nIf the file system crashes, all remaining transactions in the log must
still be performed

11.40 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
The Sun Network File System (NFS)The Sun Network File System (NFS)
nAn implementation and a specification of a software system for
accessing remote files across LANs (or WANs)
nThe implementation is part of the Solaris and SunOS operating
systems running on Sun workstations using an unreliable datagram
protocol (UDP/IP protocol and Ethernet

11.41 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
NFS (Cont.)NFS (Cont.)
nInterconnected workstations viewed as a set of independent
machines with independent file systems, which allows sharing
among these file systems in a transparent manner
lA remote directory is mounted over a local file system directory
 The mounted directory looks like an integral subtree of the
local file system, replacing the subtree descending from the
local directory
lSpecification of the remote directory for the mount operation is
nontransparent; the host name of the remote directory has to
be provided
 Files in the remote directory can then be accessed in a
transparent manner
lSubject to access-rights accreditation, potentially any file
system (or directory within a file system), can be mounted
remotely on top of any local directory

11.42 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
NFS (Cont.)NFS (Cont.)
nNFS is designed to operate in a heterogeneous environment of
different machines, operating systems, and network architectures;
the NFS specifications independent of these media
nThis independence is achieved through the use of RPC primitives
built on top of an External Data Representation (XDR) protocol
used between two implementation-independent interfaces
nThe NFS specification distinguishes between the services provided
by a mount mechanism and the actual remote-file-access services

11.43 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Three Independent File SystemsThree Independent File Systems

11.44 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Mounting in NFS Mounting in NFS
Mounts Cascading mounts

11.45 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
NFS Mount ProtocolNFS Mount Protocol
nEstablishes initial logical connection between server and client
nMount operation includes name of remote directory to be mounted and
name of server machine storing it
lMount request is mapped to corresponding RPC and forwarded to
mount server running on server machine
lExport list – specifies local file systems that server exports for
mounting, along with names of machines that are permitted to
mount them
nFollowing a mount request that conforms to its export list, the server
returns a file handle—a key for further accesses
nFile handle – a file-system identifier, and an inode number to identify
the mounted directory within the exported file system
nThe mount operation changes only the user’s view and does not affect
the server side

11.46 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
NFS ProtocolNFS Protocol
nProvides a set of remote procedure calls for remote file operations.
The procedures support the following operations:
lsearching for a file within a directory
lreading a set of directory entries
lmanipulating links and directories
laccessing file attributes
lreading and writing files
nNFS servers are stateless; each request has to provide a full set
of arguments
(NFS V4 is just coming available – very different, stateful)
nModified data must be committed to the server’s disk before results
are returned to the client (lose advantages of caching)
nThe NFS protocol does not provide concurrency-control
mechanisms

11.47 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Three Major Layers of NFS Three Major Layers of NFS
Architecture Architecture
nUNIX file-system interface (based on the open, read, write, and
close calls, and file descriptors)
nVirtual File System (VFS) layer – distinguishes local files from
remote ones, and local files are further distinguished according to
their file-system types
lThe VFS activates file-system-specific operations to handle
local requests according to their file-system types
lCalls the NFS protocol procedures for remote requests
nNFS service layer – bottom layer of the architecture
lImplements the NFS protocol

11.48 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Schematic View of NFS Architecture Schematic View of NFS Architecture

11.49 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
NFS Path-Name TranslationNFS Path-Name Translation
nPerformed by breaking the path into component names and
performing a separate NFS lookup call for every pair of component
name and directory vnode
nTo make lookup faster, a directory name lookup cache on the
client’s side holds the vnodes for remote directory names

11.50 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
NFS Remote OperationsNFS Remote Operations
nNearly one-to-one correspondence between regular UNIX system
calls and the NFS protocol RPCs (except opening and closing files)
nNFS adheres to the remote-service paradigm, but employs
buffering and caching techniques for the sake of performance
nFile-blocks cache – when a file is opened, the kernel checks with
the remote server whether to fetch or revalidate the cached
attributes
lCached file blocks are used only if the corresponding cached
attributes are up to date
nFile-attribute cache – the attribute cache is updated whenever new
attributes arrive from the server
nClients do not free delayed-write blocks until the server confirms
that the data have been written to disk

11.51 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Example: WAFL File SystemExample: WAFL File System
nUsed on Network Appliance “Filers” – distributed file system
appliances
n“Write-anywhere file layout”
nServes up NFS, CIFS, http, ftp
nRandom I/O optimized, write optimized
lNVRAM for write caching
nSimilar to Berkeley Fast File System, with extensive modifications

11.52 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
The WAFL File LayoutThe WAFL File Layout

11.53 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
Snapshots in WAFLSnapshots in WAFL

11.54 Silberschatz, Galvin and Gagne
©2005
Operating System Concepts – 7
th
Edition, Jan 1, 2005
11.0211.02

End of Chapter 11End of Chapter 11