Difference between revisions of "COMP3000 Operating Systems W24: Tutorial 2"

From Soma-notes
Jump to navigation Jump to search
(Created page with "In this tutorial, you will revisit the lifecyle of a program, from source code, to an executable (binary image), and further to loading it into the address space. Then from a different angle, you can see when in execution, how the program (now a process) makes different types of calls to function, and how its memory is laid out. Meanwhile, we can also see how a programmer can make use of existing code (libraries). ==General Instructions (same for all tutorials)== <div...")
 
 
Line 59: Line 59:
#: <tt>gcc -O2 -z lazy hello.c -o hello.dynamic</tt>
#: <tt>gcc -O2 -z lazy hello.c -o hello.dynamic</tt>
#:How does the size of hello.dynamic compare with that of hello.static? <u>Why?</u>
#:How does the size of hello.dynamic compare with that of hello.static? <u>Why?</u>
# Compile the other flavor of hello.c: [https://people.scs.carleton.ca/~lianyingzhao/comp3000/w23/tut2/syscall-hello.c syscall-hello.c]. Build one static version and one dynamic version as well.  
# Compile the other flavor of hello.c: [https://people.scs.carleton.ca/~lianyingzhao/comp3000/w24/tut2/syscall-hello.c syscall-hello.c]. Build one static version and one dynamic version as well.  
#: Now considering hello.dynamic, hello.static, syscall-hello.dynamic and syscall-hello.static, see what system calls each program produces by running <tt>strace -o sys-somename.log ./somename.static</tt> (or <tt>./somename.dynamic</tt>). Which version generates more system calls? <u>Why?</u>  
#: Now considering hello.dynamic, hello.static, syscall-hello.dynamic and syscall-hello.static, see what system calls each program produces by running <tt>strace -o sys-somename.log ./somename.static</tt> (or <tt>./somename.dynamic</tt>). Which version generates more system calls? <u>Why?</u>  
#: Note: system calls are saved in the log file <tt>sys-somename.log</tt>. Feel free to save them in a different file for each version.
#: Note: system calls are saved in the log file <tt>sys-somename.log</tt>. Feel free to save them in a different file for each version.

Latest revision as of 13:43, 18 January 2024

In this tutorial, you will revisit the lifecyle of a program, from source code, to an executable (binary image), and further to loading it into the address space. Then from a different angle, you can see when in execution, how the program (now a process) makes different types of calls to function, and how its memory is laid out. Meanwhile, we can also see how a programmer can make use of existing code (libraries).

General Instructions (same for all tutorials)

Click on Expand to view.

Tutorials are graded based on participation and effort (so no need to struggle to have the “correct” answers — what matters is the attempts and sufficient thinking reflected in your answers), but you should still turn in your work. Submit your answers on Brightspace as a single text file named "<username>-comp3000-t<n>.txt" (where username is your MyCarletonOne username and n is the tutorial number). The first four lines of this file should be "COMP 3000 Tutorial <n>", your name, student number, and the date of submission. Your submitted answers must at least respond to all the items in the Tasks/Questions section.

The deadline is usually four days after the tutorial date (see the actual deadline on the submission entry). Note that the submission entry is enforced by the system, so you may fail to get the effort marks even if it is one minute past the deadline.

You should also check in with your assigned TA (in person or by responding to a poll if online). Your TA will be your first point of contact when you have questions or encounter any issues during the tutorial session.

You get 1.5 marks for submitting answers that shows your effort and 0.5 for checking in, making this tutorial worth 2 points total.

Read through the instructions before starting your work to get an overall picture. When source files are needed, you can download them by clicking on the hyperlink.

Building Your Program

Assuming you use a compiled programming language like C, you will involve the following steps (implicitly) to build your program:

  • Compile source (C) code into assembly code (.s files).
    You can see it using gcc -S -O2 hello.c.
  • Assemble assembly code into machine code placed in object code files (.o files).
    To avoid the .o file being deleted automatically, you can do the compilation alone without linking by: gcc -c -O2 hello.c.
  • Link object code files together to create a runnable binary image (ELF files, no extension name).
    This is the way you did it in Tutorial 1.

Talking to the OS Kernel via System Calls

A process on its own has limited access to the system. It cannot directly access any external devices or data sources (e.g., files, keyboard, the screen, networks) on its own. To access these external resources, to allocate memory, or otherwise change its runtime environment, it must make system calls. So we can say system calls are one way for the contained process to request OS services. Note that system calls run code outside of a process and thus cannot be called like regular function calls. The standard C library provides function wrappers for most commonly-used system calls so they can be accessed like regular C functions. Under the hood, however, these functions make use of special compiler directives in order to generate the machine code necessary to invoke system calls. We will take a closer look later this term.

You can see the system calls produced by a process using the strace command.

Keep in mind that this can be a good example to show the orthogonal relationship between root/non-root users and kernel/user modes. System calls are requesting the kernel to do something in the kernel mode on behalf of the calling process. Therefore, any user (even non-root) process making a system call will at certain point run in the kernel mode.

Static & Dynamic Libraries

Because of abstraction (e.g., for portability or ease of development), most applications are not self-contained. For instance, you call just a simple printf() to output a message instead of drawing pixels on a display using a lot of low-level code. Hence, your program relies on lots of external code. In compiled languages such as C, external code can be brought into the process through linking. There are two basic types of linking, static and dynamic linking:

  • With static linking, code is brought in at compile time (specifically, in the link stage above) and added to the executable. The code is now the same as other application code. (Static libraries are more .o files like hello.o; in practice, you may see more often .a files, which are "archives" of multiple .o files.)
  • With dynamic linking, a reference to the library code is added to the binary. The actual library code has to later be loaded when the program is executed. This loading will happen before main() is called (you will notice a lot of noisy system calls at the beginning to achieve this). Then, at runtime, calling functions in such dynamic libraries will take the form of library calls (which only happens within this process in user space, as opposed to system calls in kernel space).

The dynamic libraries associated with a program binary can be found using the ldd command. You can use ltrace to see calls to functions that are dynamically linked.

Tasks/Questions

Part A

Here you will see assembly code, but for now, you do not need to read and understand each line (and it will not be the focus of this course). What you will learn is the ability to extract useful information by skimming the assembly code. In general, such assembly code is divided into three colums: starting at position/character 1 will be labels/symbols (which you can refer to), followed by mnemonics (instruction opcodes) and last corresponding arguments (operands). If you find it necessary, you can turn to related documentation/manuals like: x86 Assembly/GNU assembly syntax

  1. Looking at the .s file produced from gcc -S -O2 hello.c, do you see anything familiar and discussed in the lectures of our first week?
  2. Where (e.g., at which line) is it supposed to call that printf()? If it is not doing that, why? (you can just mention what you think/believe)
  3. Generate the .s file for syscall-hello.c as well. Observing the two .s files, what do you think is the key difference?
  4. You can play around by trying to see: how a function in C is reflected in assembly; how to return from a function; how variables/literals are represented; what are symbols (refer to commands like nm); etc.

Part B

  1. By default, gcc-produced binaries are dynamically linked (so at runtime they will require dynamic libraries to be present on the system). To compile a binary that is statically linked (so it has no external runtime library dependencies), instead do this:
    gcc -O2 -static hello.c -o hello.static
    Then compile a dynamically linked version:
    gcc -O2 -z lazy hello.c -o hello.dynamic
    How does the size of hello.dynamic compare with that of hello.static? Why?
  2. Compile the other flavor of hello.c: syscall-hello.c. Build one static version and one dynamic version as well.
    Now considering hello.dynamic, hello.static, syscall-hello.dynamic and syscall-hello.static, see what system calls each program produces by running strace -o sys-somename.log ./somename.static (or ./somename.dynamic). Which version generates more system calls? Why?
    Note: system calls are saved in the log file sys-somename.log. Feel free to save them in a different file for each version.
  3. See what library calls each program produces by running ltrace -o lib-somename.log ./somename.dynamic (or ./somename.static). Which version generates more library calls? Why?
  4. Remember when building hello in Tutorial 1 you did not use -z lazy. Comparing hello with hello.dynamic, any difference? Why this difference?
  5. Use ldd to find out what dynamic library dependencies dynamic versions have. What about static versions?
  6. You did not need to specify the dynamic library dependencies listed by ldd but the system figured them out. But this is not always the case. Add the following lines of code to hello.c. Now, if you compile it with gcc -z lazy hello.c -o hello (do not use any optimization like -O2), what will happen? How can you tell gcc to link with the right library? (Hint: use the option "-l".) What is the corresponding library's file name?
   #include <math.h>
   double val = 9;
   printf("The square root of 9 is %f\n", sqrt(val));

Part C

Compile and run 3000memview.c, then consider the following questions (if they turn out to be difficult, document your exploration and get some thinking).

  1. Why are the addresses inconsistent between runs?
  2. Roughly where does the stack seem to be? The heap? Code? Global variables? (Hints: recall the memory image layout of a process discussed in the lecture; local variables go to the stack; initialized data and global variables go to the data segment, data allocated at runtime go to the heap.)