8 1-os file system implementation

rx178titan 1,107 views 48 slides Nov 19, 2018
Slide 1
Slide 1 of 48
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

About This Presentation

file system implementation


Slide Content

File-System Implementation

| (OS: Operating Systems) | (File-System Implementation) | 2
Chapter 12: File System Implementation
File System Structure
File System Implementation
Directory Implementation
Allocation Methods
Free-Space Management
Efficiency and Performance
Recovery
Log-Structured File Systems
NFS

| (OS: Operating Systems) | (File-System Implementation) | 3
File-System Structure
File structure
(Logical storage unit)

-(secondary storage-disks)

File control block –

| (OS: Operating Systems) | (File-System Implementation) | 4
Layered File System

| (OS: Operating Systems) | (File-System Implementation) | 5
A Typical File Control Block

| (OS: Operating Systems) | (File-System Implementation) | 6
In-Memory File System Structures
OS
Figure 12-3(a)
Figure 12-3(b)

| (OS: Operating Systems) | (File-System Implementation) | 7
In-Memory File System Structures

| (OS: Operating Systems) | (File-System Implementation) | 8
Virtual File Systems
Virtual File Systems (VFS)
VFS (Application Program Interface-API)
API (VFS interface),

| (OS: Operating Systems) | (File-System Implementation) | 9
Schematic View of Virtual File
System

| (OS: Operating Systems) | (File-System Implementation) | 10
Directory Implementation
(Linear list) (data blocks)

 execute
(Hash Table) – (hash data structure)
directory
(collisions) – 2
(fixed size)

| (OS: Operating Systems) | (File-System Implementation) | 11
Allocation Methods

(Contiguous allocation)
(Linked allocation)
(Indexed allocation)

| (OS: Operating Systems) | (File-System Implementation) | 12
Contiguous Allocation

– (block #) (number of blocks)
(Random access)
(dynamic storage-allocation problem)
(Files cannot grow)

| (OS: Operating Systems) | (File-System Implementation) | 13
Contiguous Allocation of Disk
Space

| (OS: Operating Systems) | (File-System Implementation) | 14
Extent-Based Systems
(I.e. Veritas File System)
Extent-based file systems (extents)
(extent) (extents)

| (OS: Operating Systems) | (File-System Implementation) | 15
Linked Allocation
(linked list)
pointerblock =

| (OS: Operating Systems) | (File-System Implementation) | 16
Linked Allocation (Cont.)
– (starting address)
(Free-space management system) –
(random access)
(Mapping)
Qth block
Displacement into block = R + 1
File-allocation table (FAT) – (disk-space allocation) MS-DOS
OS/2.
LA/511
Q
R

| (OS: Operating Systems) | (File-System Implementation) | 17
Linked Allocation

| (OS: Operating Systems) | (File-System Implementation) | 18
File-Allocation Table

| (OS: Operating Systems) | (File-System Implementation) | 19
Indexed Allocation
pointers index block.
(Logical view)
index table

| (OS: Operating Systems) | (File-System Implementation) | 20
Example of Indexed Allocation

| (OS: Operating Systems) | (File-System Implementation) | 21
Indexed Allocation (Cont.)
(index table)
(Random access)
(Dynamic access) (external fragmentation), overhead
index block
Mapping 256K words block size of 512 words 1 block
index table
LA/512
Q
R
Q = displacement into index table
R = displacement into block

| (OS: Operating Systems) | (File-System Implementation) | 22
Indexed Allocation – Mapping
(Cont.)
Mapping (block size of 512 words)
(Linked scheme) – Link blocks index table ()
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:

| (OS: Operating Systems) | (File-System Implementation) | 23
Indexed Allocation – Mapping
(Cont.)
2 (Two-level index) 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:

| (OS: Operating Systems) | (File-System Implementation) | 24
Indexed Allocation – Mapping
(Cont.)

outer-index
index table file

| (OS: Operating Systems) | (File-System Implementation) | 25
Combined Scheme: UNIX (4K bytes per
block)

| (OS: Operating Systems) | (File-System Implementation) | 26
Free-Space Management
Bit 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

| (OS: Operating Systems) | (File-System Implementation) | 27
Free-Space Management (Cont.)
Bit map Example:
block size = 2
12
bytes
disk size = 2
30
bytes (1 gigabyte)
n = 2
30
/2
12
= 2
18
bits (or 32K bytes)

Linked list (free list)


Grouping
Counting

| (OS: Operating Systems) | (File-System Implementation) | 28
Free-Space Management (Cont.)
(protect)
Pointer (free list)
Bit map


block[i] bit[i] = 1 bit[i] = 0
Solution:
Set bit[i] = 1 in disk.
Allocate block[i]
Set bit[i] = 1 in memory

| (OS: Operating Systems) | (File-System Implementation) | 29
Linked Free Space List on Disk

| (OS: Operating Systems) | (File-System Implementation) | 30
Efficiency and Performance
(Efficiency) :

(file’s directory entry)
(Performance)
(disk cache) –
free-behind and read-ahead – (optimize sequential access)
dedicating section (virtual disk, or RAM disk)

| (OS: Operating Systems) | (File-System Implementation) | 31
Various Disk-Caching Locations

| (OS: Operating Systems) | (File-System Implementation) | 32
Page Cache
(page cache) virtual memory
Memory-mapped I/O page cache
Routine I/O file system buffer (disk) cache

| (OS: Operating Systems) | (File-System Implementation) | 33
I/O Without a Unified Buffer Cache

| (OS: Operating Systems) | (File-System Implementation) | 34
Unified Buffer Cache
A unified buffer cache memory-mapped pages ordinary
file system I/O

| (OS: Operating Systems) | (File-System Implementation) | 35
I/O Using a Unified Buffer Cache

| (OS: Operating Systems) | (File-System Implementation) | 36
Recovery
(Consistency checking) –
system programs back up (floppy disk, magnetic tape).
restoring

| (OS: Operating Systems) | (File-System Implementation) | 37
Log Structured File Systems
Log structured ( journaling) (transaction)
log (committed) log file system
log (asynchronously written) file system file system log
(crashes) log

| (OS: Operating Systems) | (File-System Implementation) | 38
The Sun Network File System
(NFS)
An implementation and a specification of a software
system for accessing remote files across LANs (or
WANs).
The implementation is part of the Solaris and SunOS
operating systems running on Sun workstations using an
unreliable datagram protocol (UDP/IP protocol and
Ethernet.

| (OS: Operating Systems) | (File-System Implementation) | 39
NFS (Cont.)
Interconnected workstations viewed as a set of
independent machines with independent file systems,
which allows sharing among these file systems in a
transparent manner.
A 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.
Specification 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.
Subject to access-rights accreditation, potentially any file
system (or directory within a file system), can be mounted
remotely on top of any local directory.

| (OS: Operating Systems) | (File-System Implementation) | 40
NFS (Cont.)
NFS is designed to operate in a heterogeneous
environment of different machines, operating systems,
and network architectures; the NFS specifications
independent of these media.
This 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.
The NFS specification distinguishes between the services
provided by a mount mechanism and the actual remote-
file-access services.

| (OS: Operating Systems) | (File-System Implementation) | 41
Three Independent File Systems

| (OS: Operating Systems) | (File-System Implementation) | 42
Mounting in NFS
Mounts Cascading mounts

| (OS: Operating Systems) | (File-System Implementation) | 43
NFS Mount Protocol
Establishes initial logical connection between server and
client.
Mount operation includes name of remote directory to be
mounted and name of server machine storing it.
Mount request is mapped to corresponding RPC and forwarded
to mount server running on server machine.
Export list – specifies local file systems that server exports for
mounting, along with names of machines that are permitted to
mount them.
Following a mount request that conforms to its export list,
the server returns a file handle—a key for further accesses.
File handle – a file-system identifier, and an inode number to
identify the mounted directory within the exported file
system.
The mount operation changes only the user’s view and does
not affect the server side.

| (OS: Operating Systems) | (File-System Implementation) | 44
NFS Protocol
Provides a set of remote procedure calls for remote file
operations. The procedures support the following operations:
searching for a file within a directory
reading a set of directory entries
manipulating links and directories
accessing file attributes
reading and writing files
NFS servers are stateless; each request has to provide a full set
of arguments.
Modified data must be committed to the server’s disk before
results are returned to the client (lose advantages of caching).
The NFS protocol does not provide concurrency-control
mechanisms.

| (OS: Operating Systems) | (File-System Implementation) | 45
Three Major Layers of NFS
Architecture
UNIX file-system interface (based on the open, read,
write, and close calls, and file descriptors).
Virtual File System (VFS) layer – distinguishes local files
from remote ones, and local files are further distinguished
according to their file-system types.
The VFS activates file-system-specific operations to handle
local requests according to their file-system types.
Calls the NFS protocol procedures for remote requests.
NFS service layer – bottom layer of the architecture;
implements the NFS protocol.

| (OS: Operating Systems) | (File-System Implementation) | 46
Schematic View of NFS
Architecture

| (OS: Operating Systems) | (File-System Implementation) | 47
NFS Path-Name Translation
Performed by breaking the path into component names
and performing a separate NFS lookup call for every pair
of component name and directory vnode.
To make lookup faster, a directory name lookup cache on
the client’s side holds the vnodes for remote directory
names.

| (OS: Operating Systems) | (File-System Implementation) | 48
NFS Remote Operations
Nearly one-to-one correspondence between regular UNIX
system calls and the NFS protocol RPCs (except opening and
closing files).
NFS adheres to the remote-service paradigm, but employs
buffering and caching techniques for the sake of performance.
File-blocks cache – when a file is opened, the kernel checks
with the remote server whether to fetch or revalidate the cached
attributes. Cached file blocks are used only if the corresponding
cached attributes are up to date.
File-attribute cache – the attribute cache is updated whenever
new attributes arrive from the server.
Clients do not free delayed-write blocks until the server confirms
that the data have been written to disk.
Tags