10 p4 layered block structured file system
play

10-P4: Layered Block-Structured File System Slides originally by - PowerPoint PPT Presentation

10-P4: Layered Block-Structured File System Slides originally by Prof. van Renesse Current version by Anne Bracy 1 Intro Underneath any file system, database system, etc. is more block stores Block store abstraction doesnt deal with


  1. 10-P4: Layered Block-Structured File System Slides originally by Prof. van Renesse Current version by Anne Bracy 1

  2. Intro • Underneath any file system, database system, etc. is more block stores • Block store abstraction doesn’t deal with file naming Application Library File System API File System and Performance Block Store Block Cache Block Device Interface Device Driver Device Access Memory-Mapped I/O, DMA, Interrupts Physical Device 2

  3. Block Store Abstraction • Provides a disk-like interface: – a sequence of blocks numbered 0, 1, … (typically a few kilobytes) – you can read or write 1 block at a time 10-P4 has you work with multiple versions/ instantiations of this abstraction. 3

  4. Block Store Benefits • Performance: – Caches recently read blocks – Buffers recently written blocks (to be written later) • Synchronization: – all requests for a given block go through block cache – For each entry, OS includes information to: • prevent a process from reading block while another writes • ensure that a given block is only fetched from storage device once, even if it is simultaneously read by many processes 4

  5. Heads up about the code! This entire code base is what happens when you want object oriented programming, but you only have C. Put on your C++ / Java Goggles! block_if (a block interface) is essentially an abstract class 5

  6. Contents of block_if.h #define BLOCK_SIZE 512 // # bytes in a block typedef unsigned int block_no; // index of a block struct block { char bytes[BLOCK_SIZE]; }; typedef struct block block_t; ß pointer to the interface typedef struct block_if *block_if; ß poor man’s class struct block_if { void *state; int (*nblocks)(block_if bif); int (*read)(block_if bif, block_no offset, block_t *block); int (*write)(block_if bif, block_no offset, block_t *block); int (*setsize)(block_if bif, block_no size); void (*destroy)(block_if bif); }; None of this is data! All typedefs! 6

  7. block_if : Block Store Interface ß “constructor” • xxx_init(…) à block_if – Name & signature varies, sets up all the fn pointers • nblocks() à integer – returns size of the block store in #blocks • read(block number) à block – returns the contents of the given block number • write(block number, block) – writes the block contents at the given block number • setsize(nblocks) – sets the size of the block store • destroy() ß “destructor” – frees everything associated with this block store 7

  8. Simple block stores • disk : simulated disk stored on a Linux file – block_if bif = disk_init(char *filename, int nblocks) (could also use real disk using /dev/*disk devices) • ramdisk : a simulated disk in memory – block_if bif = ramdisk_init(block_t *blocks, nblocks) • Fast but volatile 8

  9. Sample Program #include ... #include “block_if.h” int main(){ block_if disk = disk_init(“disk.dev”, 1024); block_t block; strcpy(block.bytes, “Hello World”); (*disk->write)(disk, 0, &block); (*disk->destroy)(disk); return 0; } gcc -g block_if.c sample.c gdb then check out disk.dev 9

  10. Block Stores can be Layered! Each layer presents a block store abstraction block_if keeps a cache of CACHEDISK recently used blocks keeps track of #reads STATDISK and #writes for statistics keeps blocks in a DISK Linux file 10

  11. Example code with layers #define CACHE_SIZE 10 // #blocks in cache block_t cache[CACHE_SIZE]; int main(){ block_if disk = disk_init(“disk.dev”, 1024); block_if sdisk = statdisk_init(disk); block_if cdisk = cachedisk_init(sdisk, cache, CACHE_SIZE); CACHEDISK block_t block; strcpy(block.bytes, “Hello World”); (*cdisk->write)(cdisk, 0, &block); STATDISK (*cdisk->destroy)(cdisk); (*sdisk->destroy)(sdisk); DISK (*disk->destroy)(disk); return 0; } gcc -g block_if.c statdisk.c cachedisk.c layer.c 11

  12. Example Layers block_if clockdisk_init(block_if below, block_t *blocks, block_no nblocks); // implements CLOCK cache allocation / eviction block_if statdisk_init(block_if below); // counts all reads and writes block_if debugdisk_init(block_if below, char *descr); // prints all reads and writes block_if checkdisk_init(block_if below); // checks that what’s read is what was written 12

  13. How to write a layer struct statdisk_state { block_if below; // block store below unsigned int nread, nwrite; // stats }; block_if statdisk_init(block_if below){ struct statdisk_state *sds = calloc(1, sizeof(*sds)); sds->below = below; block_if bi = calloc(1, sizeof(*bi)); bi->state = sds; bi->nblocks = statdisk_nblocks; bi->setsize = statdisk_setsize; bi->read = statdisk_read; bi->write = statdisk_write; bi->destroy = statdisk_destroy; return bi; } 13

  14. statdisk implementation, cont’d int statdisk_read(block_if bi, block_no offset, block_t *block){ struct statdisk_state *sds = bi->state; sds->nread++; return (*sds->below->read)(sds->below, offset, block); } int statdisk_write(block_if bi, block_no offset, block_t *block){ struct statdisk_state *sds = bi->state; sds->nwrite++; return (*sds->below->write)(sds->below, offset, block); } void statdisk_destroy(block_if bi){ free(bi->state); Why don’t we destroy the below? free(bi); } 14 all 3 functions declared static

  15. Sharing a Block Store • One could create multiple partitions, one for each file, but that has very similar problems to partitioning physical memory among processes • You want something similar to paging – more efficient and flexible sharing – techniques are very similar! File #1 File #3 File #2 Solution: File Systems! 15

  16. Treedisk • A file system, similar to Unix file systems ( this Thursday ) • Initialized to support N virtual block stores (AKA files) • Underlying block store (below) partitioned into 3 sections: 1. Superblock: block #0 2. Fixed number of i-node blocks: starts at block #1 – Function of N (enough to store N i-nodes) 3. Remaining blocks: starts after i-node blocks – data blocks, free blocks, indirect blocks, freelist blocks block number 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 blocks: super i-node Remaining blocks 16 block blocks

  17. Types of Blocks in Treedisk union treedisk_block { block_t datablock; struct treedisk_superblock superblock; struct treedisk_inodeblock inodeblock; struct treedisk_freelistblock freelistblock; struct treedisk_indirblock indirblock; }; • Superblock: the 0 th block below • Freelistblock: list of all unused blocks below • I-nodeblock: list of inodes • Indirblock: list of blocks • Datablock: just data 17

  18. treedisk Superblock block number 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 blocks: inode blocks remaining blocks superblock n_inodeblocks 4 // one per underlying block store free_list ? struct treedisk_superblock { (some green box) block_no n_inodeblocks; block_no free_list; // 1 st block on free list // 0 means no free blocks }; Notice: there are no pointers. Everything is a block number. 18

  19. treedisk Free List block number 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 blocks: 4 13 inode blocks remaining blocks superblock 5 0 9 struct treedisk_freelistblock { 10 6 14 block_no refs[REFS_PER_BLOCK]; 11 7 15 12 8 }; 0 Suppose REFS_PER_BLOCK = 4 refs[0]: # of another freelistblock or 0 if end of list refs[i]: # of free block for i > 1, 0 if slot empty 19

  20. treedisk free list freelist block n_inodeblocks # superblock: free_list 0 0 0 freelist block 0 free block free block free block free block 20

  21. treedisk I-node block block number 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 blocks: inode blocks remaining blocks superblock 1 9 inode[0] 15 14 Suppose 0 0 REFS_PER_BLOCK = 4 inode[1] 0 0 struct treedisk_inodeblock { struct treedisk_inode inodes[INODES_PER_BLOCK]; }; What if the file is bigger than 1 block? struct treedisk_inode { block_no nblocks; // # blocks in virtual block store block_no root; // block # of root node of tree (or 0) }; 21

  22. treedisk Indirect block block number 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 blocks: inode blocks remaining blocks superblock 1 13 nblocks inode[0] Suppose 15 12 root INODES_PER_BLOCK = 2 11 3 nblocks inode[1] 0 14 root struct treedisk_indirblock { block_no refs[REFS_PER_BLOCK]; }; 22

  23. virtual block store: 3 blocks i-node: nblocks 3 root indirect block data block data block data block What if the file is bigger than 3 blocks? 23

  24. treedisk virtual block store (double) indirect block nblocks #### i-node: root indirect block indirect block data block data block data block How do I know if this is data or a block number? 24

  25. treedisk virtual block store • all data blocks at bottom level • #levels: ceil(log RPB (#blocks)) + 1 RPB = REFS_PER_BLOCK • For example, if rpb = 16: #blocks #levels 0 0 1 1 2 - 16 2 17 - 256 3 257 - 4096 4 REFS_PER_BLOCK more commonly at least 128 or so 25

  26. virtual block store: with hole indirect block nblocks 3 i-node: 0 root data block data block • Hole appears as a virtual block filled with null bytes • pointer to indirect block can be 0 too • virtual block store can be much larger than the “physical” block store underneath! 26

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend