Difference between revisions of "Operating Systems 2019W: Assignment 2"

From Soma-notes
Jump to navigation Jump to search
Line 33: Line 33:
     fusermount -u scs-files
     fusermount -u scs-files
     rm -f scs-files/testdir/test.txt
     rm -f scs-files/testdir/test.txt
'''EXTRA CREDIT (4 points):''' Make a file upper.bin that, when loaded by 3000run, prints out the upper case version of the string given as an argument.

Revision as of 00:06, 1 February 2019

This assignment is not yet finalized. Please do not answer these questions yet, they are subject to change.

Please submit the answers to the following questions via CULearn by 4 PM on Monday, February 11, 2019. There are 20 points in 9 questions.

Submit your answers as a single text file named "<username>-comp3000-assign2.txt" (where username is your MyCarletonOne username). The first four lines of this file should be "COMP 3000 Assignment 2", your name, student number, and the date of submission. You may wish to format your answers in Markdown to improve their appearance.

No other formats will be accepted. Submitting in another format will likely result in your assignment not being graded and you receiving no marks for this assignment. In particular do not submit an MS Word or OpenOffice file as your answers document!

Don't forget to include what outside resources you used to complete each of your answers, including other students, man pages, and web resources. You do not need to list help from the instructor, TA, or information found in the textbook.

Questions

  1. [2] Assume you have a file A. You type ln A B in order to create file B. If you delete A, what happens when you try to read A? Why?
  2. [2] Assume you have a file A. You type ln -s A B in order to create file B. If you delete A, what happens when you try to read A? Why?
  3. [2] What does fsck do if it finds an allocated inode that no file refers to? How could this problem arise?
  4. [2] Describe a situation where a UNIX sparse file could cause problems for a backup program (that didn't specially treat sparse files).
  5. [3] Modify 3000test.c so it can report on what access the current user has to the file. Give your code as a "diff -c" relative to the original 3000test.c.
  6. [3] Create a program 3000run.c (based on 3000test.c) that attempts to run the contents of a file by mmap'ing it into an array, converts the array pointer into a function pointer for a function that takes one argument, a standard C string (char *) and then calls the function, passing it a string. Test your code on print.bin which contains the machine code for a function that prints the given string to standard out.
  7. [2] Is a filesystem's superblock accessed frequently in normal operation? Why or why not?
  8. [2] When first connecting to a remote host via ssh, you will normally get a message saying something similar to this: "The authenticity of host 'access.scs.carleton.ca (134.117.29.72)' can't be established. RSA key fingerprint is SHA256:MexEKZF0Os0Vl6VTObN70lRf2DFsGfD8DTQ7FKKqVJ4. Are you sure you want to continue connecting (yes/no)?"
    • Is it normally safe to say yes to this question? Why?
    • Describe a situation when you should say no. Give a specific example of a "bad thing" that could be happening.
  9. [2] You run the commands below, replacing <scs-username> with your SCS username. After running these commands (and assuming the sshfs command succeeds), how many copies of "test.txt" exist? Where are they stored?
    echo "This is random text" > test.txt
    mkdir scs-files
    cp test.txt scs-files
    sshfs <scs-username>@access.scs.carleton.ca:. scs-files
      <login to access.scs.carleton.ca>
    mkdir scs-files/testdir
    cp test.txt scs-files/testdir
    rm -f scs-files/test.txt
    fusermount -u scs-files
    rm -f scs-files/testdir/test.txt

EXTRA CREDIT (4 points): Make a file upper.bin that, when loaded by 3000run, prints out the upper case version of the string given as an argument.