Spring 2017 :: CSE 506
Virtual File System (VFS)
Nima Honarmand
Virtual File System (VFS) Nima Honarmand Spring 2017 :: CSE 506 - - PowerPoint PPT Presentation
Spring 2017 :: CSE 506 Virtual File System (VFS) Nima Honarmand Spring 2017 :: CSE 506 History Early OSes provided a single file system In general, system was tailored to target hardware People became interested in supporting more
Spring 2017 :: CSE 506
Nima Honarmand
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
VFS ext4 Page Cache Block Device IO Scheduler Driver Disk
Kernel User
btrfs fat32 nfs Network
Spring 2017 :: CSE 506
/home)
system
Spring 2017 :: CSE 506
attributes)
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
(whether device, remote system, or other/none)
Spring 2017 :: CSE 506
developer
Spring 2017 :: CSE 506
Source: Understanding Linux kernel, 3rd Ed
Spring 2017 :: CSE 506
almost always)
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
metadata on disk
Spring 2017 :: CSE 506
struct myfs_inode { int ondisk_blocks[]; /* other stuff*/ struct inode vfs_inode; }
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
[myself@newcastle ~/tmp]% ln -s "silly example" mydata [myself@newcastle ~/tmp]% ls -l lrwxrwxrwx 1 myself mygroup 23 Oct 24 02:42 mydata -> silly example
Spring 2017 :: CSE 506
sockets!
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
directory with sticky bit
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
exec()
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
pages)
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
int open(char *path, int flags, int mode);
Spring 2017 :: CSE 506
access anything outside of the directory
use to start searching (fs or pwd)
/lib/libc.so)
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
Spring 2017 :: CSE 506
pointers to file objects
Spring 2017 :: CSE 506
int read(int fd, void *buf, size_t bytes);
Cache” lecture
Spring 2017 :: CSE 506
How to…
Spring 2017 :: CSE 506
How to…
Spring 2017 :: CSE 506