Week 08 Tutorial Questions

Objectives

  1. We say that the Unix filesystem is tree-structured, with the directory called / as the root of the tree, e.g.,

    Answer the following based on the above diagram:

    1. What is the full pathname of COMP1521's web directory?

    2. Which directory is ~jas/../..?

    3. Links to the children of a given directory are stored as entries in the directory structure. Where is the link to the parent directory stored?

    4. What kind of filesystem object is cat?

    5. What kind of filesystem object is home?

    6. What kind of filesystem object is tty0?

    7. What kind of filesystem object is a symbolic link? What value does it contain?

    8. Symbolic links change the filesystem from a tree structure to a graph structure. How do they do this?

  2. Write a C program, fgrep.c, which is given 1+ command-line arguments which is a string to search for.

    If there is only 1 command-line argument it should read lines from stdin and print them to stdout iff they contain the string specified as the first command line argument.

    If there are 2 or more command line arguments, it should treat arguments after the first as filenames and print any lines they contain which contain the string specified as the first command line arguments.

    When printing lines your program should prefix them with a line number.

    It should print suitable error messages if given an incorrect number of arguments or if there is an error opening a file.

  3. What does fopen(3) do? What are its parameters?

  4. What are some circumstances when fopen(3) returns NULL?

  5. How do you print the specific reason that caused fopen(3) to return NULL?

  6. Write a C program, first_line.c, which is given one command-line argument, the name of a file, and which prints the first line of that file to stdout. If given an incorrect number of arguments, or if there was an error opening the file, it should print a suitable error message.

  7. Write a C program, write_line.c, which is given one command-line argument, the name of a file, and which reads a line from stdin, and writes it to the specified file; if the file exists, it should be overwritten.

  8. Write a C program, append_line.c, which is given one command-line argument, the name of a file, and which reads a line from stdin and appends it to the specified file.

  9. Why should you not use fgets(3) or fputs(3) with binary data?

  10. What does the following printf(3) statement display?

    printf ("%c%c%c%c%c%c", 72, 101, 0x6c, 108, 111, 0x0a);
    

    Try to work it out without simply compiling and running the code. The ascii(7) manual page will help with this; read it by running man 7 ascii. Then, check your answer by compiling and running.

  11. How many different values can fgetc(3) return?

  12. Why are the names of fgetc(3), fputc(3), getc(3), putc(3), putchar(3), and getchar(3) misleading?

  13. For each of the following calls to the fopen() library function, give an open() system call that has equivalent semantics relative to the state of the file.

    1. fopen(FilePath, "r")
    2. fopen(FilePath, "a")
    3. fopen(FilePath, "w")
    4. fopen(FilePath, "r+")
    5. fopen(FilePath, "w+")

    Obviously, fopen() returns a FILE*, and open() returns an integer file descriptor. Ignore this for the purposes of the question; focus on the state of the open file.

  14. Consider the lseek(fd, offset, whence) function.

    1. What is its purpose?

    2. When would it be useful?

    3. What does its return value represent?

  15. Consider a file of size 10000 bytes, open for reading on file descriptor fd, initially positioned at the start of the file (offset 0). What will be the file position after each of these calls to lseek()? Assume that they are executed in sequence, and one will change the file state that the next one deals with.

    1. lseek(fd, 0, SEEK_END);
    2. lseek(fd, -1000, SEEK_CUR);
    3. lseek(fd, 0, SEEK_SET);
    4. lseek(fd, -100, SEEK_SET);
    5. lseek(fd, 1000, SEEK_SET);
    6. lseek(fd, 1000, SEEK_CUR);
  16. If a file xyz contains 2500 bytes, and it is scanned using the following code:

    int fd;         // open file descriptor
    int nb;         // # bytes read
    int ns = 0;     // # spaces
    char buf[BUFSIZ]; // input buffer
    
    fd = open ("xyz", O_RDONLY);
    assert (fd >= 0);
    while ((nb = read (fd, buf, 1000)) > 0) {
        for (int i = 0; i < nb; i++)
            if (isspace (buf[i]))
                ns++;
    }
    close (fd);
    

    Assume that all of the relevant #include's are done.

    How many calls with be made to the read() function, and what is the value of nb after each call?

Revision questions

The following questions are primarily intended for revision, either this week or later in session.
Your tutor may still choose to cover some of these questions, time permitting.