Chapter 14: File-System Implementation

Slides:



Advertisements
Similar presentations
Chapter 12: File System Implementation
Advertisements

File Management.
Chapter 4 : File Systems What is a file system?
Allocation Methods - Contiguous
Chapter 11: File System Implementation
File System Implementation
File System Implementation
File System Implementation CSCI 444/544 Operating Systems Fall 2008.
Chapter 12: File System Implementation
1 Operating Systems Chapter 7-File-System File Concept Access Methods Directory Structure Protection File-System Structure Allocation Methods Free-Space.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 11: File System Implementation.
File System Structure §File structure l Logical storage unit l Collection of related information §File system resides on secondary storage (disks). §File.
Chapter 12: File System Implementation
04/05/2004CSCI 315 Operating Systems Design1 File System Implementation.
File System Implementation
File Concept §Contiguous logical address space §Types: l Data: Numeric Character Binary l Program.
Contiguous Allocation of Disk Space. Linked Allocation.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts– 8 th Edition Chapter 11: File System Implementation.
Operating Systems CMPSC 473 I/O Management (4) December 09, Lecture 25 Instructor: Bhuvan Urgaonkar.
Chapter 11: File System Implementation Hung Q. Ngo KyungHee University Spring 2009
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 11: File System Implementation.
File System Implementation Chapter 12. File system Organization Application programs Application programs Logical file system Logical file system manages.
Silberschatz, Galvin and Gagne ©2011 Operating System Concepts Essentials– 8 th Edition Chapter 10: File System Implementation.
Chapter 11: File System Implementation Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Jan 1, 2005 File-System Structure.
CSC 322 Operating Systems Concepts Lecture - 20: by Ahmed Mumtaz Mustehsan Special Thanks To: Tanenbaum, Modern Operating Systems 3 e, (c) 2008 Prentice-Hall,
Dr. T. Doom 11.1 CEG 433/633 - Operating Systems I Chapter 11: File-System Implementation File structure –Logical storage unit –Collection of related information.
Free Space Management.
Silberschatz and Galvin  Operating System Concepts File-System Implementation File-System Structure Allocation Methods Free-Space Management.
Page 111/15/2015 CSE 30341: Operating Systems Principles Chapter 11: File System Implementation  Overview  Allocation methods: Contiguous, Linked, Indexed,
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 12: File System Implementation File System Structure File System Implementation.
File System Implementation
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 11: File System Implementation.
12.1 Silberschatz, Galvin and Gagne ©2003 Operating System Concepts with Java Chapter 12: File System Implementation Chapter 12: File System Implementation.
Chapter 11: File System Implementation Silberschatz, Galvin and Gagne ©2005 Operating System Concepts Chapter 11: File System Implementation Chapter.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 12: File System Implementation File System Structure File System Implementation.
Disk & File System Management Disk Allocation Free Space Management Directory Structure Naming Disk Scheduling Protection CSE 331 Operating Systems Design.
10.1 CSE Department MAITSandeep Tayal 10 :File-System Implementation File-System Structure Allocation Methods Free-Space Management Directory Implementation.
1 CS.217 Operating System By Ajarn..Sutapart Sappajak,METC,MSIT Chapter 11 File-System Implementation Slide 1 Chapter 11: File-System Implementation.
Page 112/7/2015 CSE 30341: Operating Systems Principles Chapter 11: File System Implementation  Overview  File system structure – layered, block based.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition File System Implementation.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 11: File System Implementation.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 12: File System Implementation File System Structure File System Implementation.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edition Chapter 12: File System Implementation.
11.1 Silberschatz, Galvin and Gagne ©2005 Operating System Principles 11.5 Free-Space Management Bit vector (n blocks) … 012n-1 bit[i] =  1  block[i]
Allocation Methods An allocation method refers to how disk blocks are allocated for files: Contiguous allocation Linked allocation Indexed allocation.
Operating Systems Files, Directory and File Systems Operating Systems Files, Directory and File Systems.
FILE SYSTEM IMPLEMENTATION 1. 2 File-System Structure File structure Logical storage unit Collection of related information File system resides on secondary.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edition Chapter 12: File System Implementation.
File-System Management
File System Implementation
Chapter 12: File System Implementation
Unit V File-System.
File-System Implementation
Chapter 11: File System Implementation
Chapter 11: File System Implementation
Chapter 11: Implementing File Systems
File System Implementation
Chapter 11: File System Implementation
Operating Systems (CS 340 D)
Chapter 12: File System Implementation
Chapter 12: File System Implementation
Chapter 14: File System Implementation
Chapter 11: File System Implementation
Chapter 11: File System Implementation
Outline Allocation Free space management Memory mapped files
Overview: File system implementation (cont)
File-System Structure
Chapter 14: File System Implementation
Chapter 11: File System Implementation
File System Implementation
Presentation transcript:

Chapter 14: File-System Implementation

Chapter 14: File-System Implementation Directory Implementation Allocation Methods Free-Space Management Efficiency and Performance Recovery

Objectives To describe the details of implementing local file systems and directory structures To describe the implementation of remote file systems To discuss block allocation and free-block algorithms and trade-offs

Disk Space Allocation Methods A disk is a direct-access device and thus gives us flexibility in the implementation of files. The main issue is how to allocate space to these files so that disk space is utilized effectively and files can be accessed quickly. Three major methods of allocating disk space are in wide Contiguous Linked Indexed

Contiguous Allocation Each file occupies a set of contiguous blocks Best performance in most cases Simple – only starting location (block #) and length (number of blocks) are required Problems include: Finding space for file, Knowing file size (max size), External fragmentation, Need for compaction Off-line (downtime) or On-line

Contiguous Allocation (Cont.) Mapping from logical to physical (assume block size if 512) Block to be accessed = “starting address” + Q Displacement into block = R LA/512 Q R

Extent-Based Systems Many newer file systems (i.e., Veritas File System) use a modified contiguous allocation scheme Extent-based file systems allocate disk blocks in chunks called extents. An extent is a contiguous block of disks Extents are allocated for file allocation A file consists of one or more extents

Linked Allocation Each file is a linked list of blocks No external fragmentation Each block contains pointer to next block Free space management system called when new block needed Locating a block can take many I/Os and disk seeks Reliability can be a problem (what if one of the pointers get corrupted?) Improve efficiency by clustering blocks into groups but increases internal fragmentation

Linked Allocation (Cont.) Each file is a linked list of disk blocks: blocks may be scattered anywhere on the disk pointer block = Mapping: Block to be accessed is the Qth block in the linked chain of blocks representing the file Displacement into block = R + 1 LA/511 Q R

Linked Allocation (Cont.)

Indexed Allocation Indexed allocation Each file has its own index block(s) of pointers to its data blocks Logical view

Example of Indexed Allocation

Indexed Allocation (Cont.) Need an index table Random access Dynamic access without external fragmentation, but have overhead of index block Mapping from logical to physical in a file of maximum size of 256K bytes and block size of 512 bytes. We need only 1 block for index table Q = displacement into index table R = displacement into block LA/512 Q R

Indexed Allocation – Large Files Mapping from logical to physical in a file of unbounded length (block size of 512 words) Can be accomplished with 3 different methods: Linked scheme. Multilevel index Combined scheme.

Indexed Allocation – Linked Scheme Link blocks of index table LA / (512 x 511) Q1 R1 Q1 = block of index table R1 is used as follows: R1 / 512 Q2 R2 Q2 = displacement into block of index table R2 displacement into block of file:

Indexed Allocation – Multilevel Index Two-level index (4K blocks could store 1,024 four-byte pointers in outer index  1,048,567 data blocks and file size of up to 4GB) LA / (512 x 512) Q1 R1 Q1 = displacement into outer-index R1 is used as follows: R1 / 512 Q2 R2 Q2 = displacement into block of index table R2 displacement into block of file:

Indexed Allocation – Multilevel (Cont.)

Combined Scheme: UNIX UFS 4K bytes per block, 32-bit addresses Keep the first 15 pointers of the index block in the file’s inode The first 12 of these point to direct blocks; i.e., they contain addresses of the first 12 data blocks of the file. No need for a separate index block small files (of no more than 12 blocks). Up to 48 KB of data can be accessed directly. The next three pointers point to indirect blocks. The first points to a single indirect block, which is an index block containing not data but the addresses of blocks that do contain data. The second points to a double indirect block, which contains the address of a block that contains the addresses of blocks that contain pointers to the actual data blocks. The last pointer contains the address of a triple indirect block.

Combined Scheme: UNIX UFS Example

Performance Best method depends on file access type Contiguous great for sequential and random Linked good for sequential, not random Declare access type at creation -> select either contiguous or linked Indexed more complex Single block access could require 2 index block reads then data block read

Performance (Cont.) Adding instructions to the execution path to save one disk I/O is reasonable Intel Core i7 Extreme Edition 990x (2011) at 3.46Ghz = 159,000 MIPS http://en.wikipedia.org/wiki/Instructions_per_second Typical disk drive at 250 I/Os per second 159,000 MIPS / 250 = 630 million instructions during one disk I/O Fast SSD drives provide 60,000 IOPS 159,000 MIPS / 60,000 = 2.65 millions instructions during one disk I/O

Free-Space Management File system maintains free-space list to track available blocks/clusters (Using term “block” for simplicity) Four different methods: Bit map Free list Grouping Counting

Free-Space Management – bit map Bit vector or bit map (n blocks) … 1 2 n-1 bit[i] =  1  block[i] free 0  block[i] occupied Block number calculation (number of bits per word) * (number of 0-value words) + offset of first 1 bit CPUs have instructions to return offset within word of first “1” bit

Bit Map (Cont.) Bit map requires extra space Example: block size = 4KB = 212 bytes disk size = 240 bytes (1 terabyte) n = 240/212 = 228 bits (or 32MB) if clusters of 4 blocks -> 8MB of memory But -- easy to get contiguous files

Free List Linked list (free list) Cannot get contiguous space easily No waste of space No need to traverse the entire list (if # free blocks recorded)

Grouping and Counting Grouping Modify linked list to store address of next n-1 free blocks in first free block, plus a pointer to next block that contains free-block-pointers (like this one) Counting Because space is frequently contiguously used and freed, with contiguous-allocation allocation, extents, or clustering Keep address of first free block and count of following free blocks Free space list then has entries containing addresses and counts

Recovery Consistency checking – compares data in directory structure with data blocks on disk, and tries to fix inconsistencies Can be slow and sometimes fails Use system programs to back up data from disk to another storage device (magnetic tape, other magnetic disk, optical) Recover lost file or disk by restoring data from backup

End of Chapter 14