1 / 16

File Drivers and I/O Caching

File Drivers and I/O Caching. A Typical Unix File Tree. Each volume is a set of directories and files; a host’s file tree is the set of directories and files visible to processes on a given host. /. File trees are built by grafting volumes from different volumes or from network servers.

jenna
Download Presentation

File Drivers and I/O Caching

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. File Drivers and I/O Caching

  2. A Typical Unix File Tree Each volume is a set of directories and files; a host’s file tree is the set of directories and files visible to processes on a given host. / File trees are built by grafting volumes from different volumes or from network servers. bin etc tmp usr vmunix In Unix, the graft operation is the privileged mount system call, and each volume is a filesystem. ls sh project users packages mount point • mount (coveredDir, volume) • coveredDir: directory pathname • volume: device specifier or network volume • volume root contents become visible at pathname coveredDir (volume root) tex emacs

  3. Filesystems • Each file volume (filesystem) has a type, determined by its disk layout or the network protocol used to access it. • ufs (ffs), lfs, nfs, rfs, cdfs, etc. • Filesystems are administered independently. • Modern systems also include “logical” pseudo-filesystems in the naming tree, accessible through the file syscalls. • procfs: the /proc filesystem allows access to process internals. • mfs: the memory file system is a memory-based scratch store. • Processes access filesystems through common system calls.

  4. user space syscall layer (file, uio, etc.) Virtual File System (VFS) network protocol stack (TCP/IP) FFS LFS NFS *FS etc. etc. device drivers VFS: the Filesystem Switch • Sun Microsystems introduced the virtual file system interface in 1985 to accommodate diverse filesystem types cleanly. • VFS allows diverse specific file systems to coexist in a file tree, isolating all FS-dependencies in pluggable filesystem modules. VFS was an internal kernel restructuring with no effect on the syscall interface. Incorporates object-oriented concepts: a generic procedural interface with multiple implementations. Based on abstract objects with dynamic method binding by type...in C. Other abstract interfaces in the kernel: device drivers, file objects, executable files, memory objects.

  5. syscall layer free vnodes NFS UFS Vnodes • In the VFS framework, every file or directory in active use is represented by a vnode object in kernel memory. Each vnode has a standard file attributes struct. Generic vnode points at filesystem-specific struct (e.g., inode, rnode), seen only by the filesystem. Each specific file system maintains a cache of its resident vnodes. Vnode operations are macros that vector to filesystem-specific procedures.

  6. CPS 210 Vnode Operations and Attributes vnode attributes (vattr) type (VREG, VDIR, VLNK, etc.) mode (9+ bits of permissions) nlink (hard link count) owner user ID owner group ID filesystem ID unique file ID file size (bytes and blocks) access time modify time generation number directories only vop_lookup (OUT vpp, name) vop_create (OUT vpp, name, vattr) vop_remove (vp, name) vop_link (vp, name) vop_rename (vp, name, tdvp, tvp, name) vop_mkdir (OUT vpp, name, vattr) vop_rmdir (vp, name) vop_symlink (OUT vpp, name, vattr, contents) vop_readdir (uio, cookie) vop_readlink (uio) files only vop_getpages (page**, count, offset) vop_putpages (page**, count, sync, offset) vop_fsync () generic operations vop_getattr (vattr) vop_setattr (vattr) vhold() vholdrele()

  7. Memory/Storage Hierarchy 101 Very fast 1ns clock Multiple Instructions per cycle P SRAM, Fast, Small Expensive (cache, registers) $ “CPU-DRAM gap” memory system architecture (CPS 104) DRAM, Slow, Big,Cheaper (called physical or main) $1000-$2000 per GB or so Memory volatile “I/O bottleneck” VM and file caching (CPS 110) Magnetic, Rotational, Really Slow Seeks, Really Big, Really Cheap ($25 - $40 per GB) nonvolatile => Cost Effective Memory System (Price/Performance)

  8. I/O Caching 101 free/inactive list head HASH(object) Data items from secondary storage are cached in memory for faster access time. methods: object = get(tag) Locate object if in the cache, else find a free slot and bring it into the cache. release(object) Release cached object so its slot may be reused for some other object. hash function hash chains hash bucket array free/inactive list tail I/O cache: a hash table with an integrated free/inactive list (i.e., an ordered list of eviction candidates).

  9. Rationale for I/O Cache Structure • Goal: maintain Kslots in memory as a cache over a collection of m items on secondary storage (K << m). • 1. What happens on the first access to each item? • Fetch it into some slot of the cache, use it, and leave it there to speed up access if it is needed again later. • 2. How to determine if an item is resident in the cache? • Maintain a directory of items in the cache: a hash table. • Hash on a unique identifier (tag) for the item (fully associative). • 3. How to find a slot for an item fetched into the cache? • Choose an unused slot, or select an item to replace according to some policy, and evict it from the cache, freeing its slot.

  10. Mechanism for Cache Eviction/Replacement • Typical approach: maintain an ordered free/inactive list of slots that are candidates for reuse. • Busy items in active use are not on the list. • E.g., some in-memory data structure holds a pointer to the item. • E.g., an I/O operation is in progress on the item. • The best candidates are slots that do not contain valid items. • Initially all slots are free, and they may become free again as items are destroyed (e.g., as files are removed). • Other slots are listed in order of value of the items they contain. • These slots contain items that are valid but inactive: they are held in memory only in the hope that they will be accessed again later.

  11. Replacement Policy • The effectiveness of a cache is determined largely by the policy for ordering slots/items on the free/inactive list. • defines the replacement policy • A typical cache replacement policy is Least Recently Used. • Assume hot items used recently are likely to be used again. • Move the item to the tail of the free list on every release. • The item at the front of the list is the coldest inactive item. • Other alternatives: • FIFO: replace the oldest item. • MRU/LIFO: replace the most recently used item.

  12. Example: V/Inode Cache VFS free list head HASH(fsid, fileid) Active vnodes are reference- counted by the structures that hold pointers to them. - system open file table - process current directory - file system mount points - etc. Each specific file system maintains its own hash of vnodes (BSD). - specific FS handles initialization - free list is maintained by VFS vget(vp): reclaim cached inactive vnode from VFS free list vref(vp): increment reference count on an active vnode vrele(vp): release reference count on a vnode vgone(vp): vnode is no longer valid (file is removed)

  13. Example: File Block Buffer Cache HASH(vnode, logical block) Buffers with valid data are retained in memory in a buffer cache or file cache. Each item in the cache is a buffer header pointing at a buffer . Blocks from different files may be intermingled in the hash chains. System data structures hold pointers to buffers only when I/O is pending or imminent. - busy bit instead of refcount - most buffers are “free” Most systems use a pool of buffers in kernel memory as a staging area for memory<->disk transfers.

  14. Why Are File Caches Effective? • 1. Locality of reference: storage accesses come in clumps. • spatial locality: If a process accesses data in block B, it is likely to reference other nearby data soon. • (e.g., the remainder of block B) • example: reading or writing a file one byte at a time • temporal locality: Recently accessed data is likely to be used again. • 2. Read-ahead: if we can predict what blocks will be needed soon, we can prefetch them into the cache. • most files are accessed sequentially

  15. Handling Updates in the File Cache • 1. Blocks may be modified in memory once they have been brought into the cache. • Modified blocks are dirty and must (eventually) be written back. • 2. Once a block is modified in memory, the write back to disk may not be immediate (synchronous). • Delayed writes absorb many small updates with one disk write. • How long should the system hold dirty data in memory? • Asynchronous writes allow overlapping of computation and disk update activity (write-behind). • Do the write call for block n+1 while transfer of block n is in progress. • Thus file caches also can improve performance for writes.

  16. Synchronization Problems for a Cache • 1. What if two processes try to get the same block concurrently, and the block is not resident? • 2. What if a process requests to write block A while a put is already in progress on block A? • 3. What if a get must replace a dirty block A in order to allocate a buffer to fetch block B? • This will happen if the block/buffer at the head of the free list is dirty. • What if another process requests to getA during the put? • 4. How to handle read/write requests on shared files atomically? • Unix guarantees that a read will not return the partial result of a concurrent write, and that concurrent writes do not interleave.

More Related