CS代考 Operating Systems – CSCI 402 – cscodehelp代写

Operating Systems – CSCI 402
More On Naming
(Almost) everything has a path name
files
directories
devices (known as special files)
keyboards, displays, disks, etc. Uniformity
// opening a normal file
int file = open(“/home/bc/data”, O_RDWR);
// opening a device (one¡¯s terminal or window)
int device = open(“/dev/tty”, O_RDWR);
int bytes = read(file, buffer, sizeof(buffer));
write(device, buffer, bytes);
in warmup1, we saw that you can open a directory
read(open(“/etc”, O_RDONLY), buf, sizeof(buf));
although reading from a directory is not standardized
29
321 0
Copyright ý . Systems – CSCI 402
Directories
A directory is a file
interprets differently by the OS as containing references to other files/directories
a file is represented as an index node (or inode) in the file system
unix
etc
home
proc
dev
passwd
motd
bc
A directory maps a file name to an inode number
maps a string to an integer
done inside Virtual File System in weenix
An inode maps an inode number to disk address
done inside Actual File System in weenix
321 0
unix

lecture1
lecture2
directory inode file inode
30
Copyright ý . Representation
A root directory entry example
parent inode number = its own inode number
Operating Systems – CSCI 402
Component Name
Inode number
directory entry
.
..
unix
etc
home
proc
dev

bc
.
1
..
1
unix
117
etc
4
home
18
proc
36
dev
93
passwd
motd
unix

lecture1
lecture2
directory inode file inode
this is what a S5FS (and RAMFS) directory looks like in weenix
321 0
Tree structured hierarchy
31
Copyright ý . Up Inode Number Of A Path
Ex: how do figure out the inode number of “/home/bc/foo.c”? this process is called pathname resolution
/
Operating Systems – CSCI 402
home
Copyright ý . FS creates an inode pointer to represent the directory file
321 0
32

Look Up Inode Number Of A Path
Ex: how do figure out the inode number of “/home/bc/foo.c”? this process is called pathname resolution
/
Operating Systems – CSCI 402
home
18
Copyright ý . Cheng
33
321 0

Look Up Inode Number Of A Path
Ex: how do figure out the inode number of “/home/bc/foo.c”? this process is called pathname resolution
/ /home
Operating Systems – CSCI 402
home
18
bc
34
321 0
Copyright ý . Up Inode Number Of A Path
Ex: how do figure out the inode number of “/home/bc/foo.c”? this process is called pathname resolution
/ /home
Operating Systems – CSCI 402
home
18
bc
?
35
321 0
Copyright ý . Cheng

/
/home
Operating Systems – CSCI 402
Look Up Inode Number Of A Path
Ex: how do figure out the inode number of “/home/bc/foo.c”? this process is called pathname resolution
home
18
bc
?
/home/bc
foo.c
36
321 0
Copyright ý . Cheng

/
/home
Operating Systems – CSCI 402
Look Up Inode Number Of A Path
Ex: how do figure out the inode number of “/home/bc/foo.c”? this process is called pathname resolution
home
18
bc
?
/home/bc
foo.c
?
37
321 0
Copyright ý . Cheng

straight-forward algorithm to traverse directory hierarchy efficiently
321 0
Operating Systems – CSCI 402
Directory Hierarchy
Unix and many other OSes allow limited deviation from trees
hard links
reference to a file in one directory that also appears in another can use the link() system call or the “ln” shell command to add a hard link to a file (but not a directory)
soft links or symbolic links
a special kind of file containing the name of another file or directory
can use the symlink() system call or the “ln -s” shell command to add a symbolic link to any type of file
Why link() cannot be used on a directory?
to avoid cycles
Unix directory hierarchy can be viewed as a directed acyclic graph (DAG)
38
Copyright ý . Systems – CSCI 402
Hard Links
create “image” in “/etc” to link to “/unix”
% ln /unix /etc/image
.
1
..
1
unix
117
etc
4
home
18
proc
36
dev
93
unix
etc
home
proc
dev
motd bc
unix

.
4
..
1
motd
33
lecture1
lecture2
directory inode file inode
39
321 0
Copyright ý . Systems – CSCI 402
Hard Links
create “image” in “/etc” to link to “/unix”
% ln /unix /etc/image
.
1
..
1
unix
117
etc
4
home
18
proc
36
dev
93
unix
etc
home
proc
dev
image
motd
bc
unix

.
4
..
1
motd
33
image
117
lecture1
lecture2
directory inode file inode
40
321 0
Copyright ý . Systems – CSCI 402
Soft Links
% ln -s /unix /home/bc/mylink
create “mylink” in “/home/bc” to soft-link to “/unix”
unix
etc
home
proc
dev
imoagtde bc
unix

lecture1
lecture2
directory inode file inode
41
321 0
Copyright ý . Systems – CSCI 402
Soft Links
% ln -s /unix /home/bc/mylink
create “mylink” in “/home/bc” to soft-link to “/unix”
unix
etc
home
proc
dev
imoagtde bc
unix

mylink
lecture1
lecture2
directory inode file inode
“/unix”
42
321 0
Copyright ý . Systems – CSCI 402
Soft Links
% ln -s /unix /home/bc/mylink
% ln -s /home/bc /etc/bc
create “bc” in “/etc” to soft-link to “/home/bc”
unix
etc
home
proc
dev
imoagtde bc
unix

mylink
lecture1
lecture2
directory inode file inode
“/unix”
43
321 0
Copyright ý . Systems – CSCI 402
Soft Links
% ln -s /unix /home/bc/mylink
% ln -s /home/bc /etc/bc
create “bc” in “/etc” to soft-link to “/home/bc”
unix
etc
home
proc
dev
imoagtde
bc
bc
unix

mylink
“/home/bc”
directory inode file inode
“/unix”
lecture1
lecture2
44
321 0
Copyright ý . Cheng

see “access protection” later
Operating Systems – CSCI 402
Soft Links
% ls -l /etc/bc/unix/lecture1
same as “ls -l /home/bc/unix/lecture1”, or is it?
yes for the “root” account, may be no for the “bc” account
unix
etc
home
proc
dev
imoagtde
bc
bc
unix

mylink
“/home/bc”
directory inode file inode
“/unix”
lecture1
lecture2
45
321 0
Copyright ý . Systems – CSCI 402
Working Directory
When you type “ls” in a Terminal, what directory content are you listing?
how does the shell know what directory content to list?
Working Directory: maintained in kernel for each process paths not starting from “/” start with the working directory get by using the getcwd() system call
set by using the chdir() system call
that¡¯s what the “cd” shell command does (clearly, “cd” cannot
be a program)
displayed (via shell) using “pwd”
46
321 0
Copyright ý . Cheng

read the ramfs code read kernel 2 FAQ
321 0
Operating Systems – CSCI 402
Kernel 2
Now you have everything you need to complete kernel 2
if you are not familiar with a function, look at Linux man page
keep in mind that weenix is not Linux
your goal is to pass all the tests in the grading guidelines
New things in kernel 2
reference counting (not as easy as it sounds)
if you have a reference counting bug, will get a kernel panic
C++ polymorphism implemented in C
the VFS layer is AFS-independent
can the VFS layer read data from disk?
no way
it needs to ask AFS to do it because only AFS knows what data structure is used on disk
need to invoke AFS in a FS-independent way
47
Copyright ý . Cheng

Leave a Reply

Your email address will not be published. Required fields are marked *