Operating Systems

About

  • Module: Operating Systems (CO-562)
  • Semester: Fall 2023
  • Prerequisites: Algorithms and Data Structures (CH-231)
  • Prerequisites: Introduction to Computer Science (CH-232)
  • Instructor: Jürgen Schönwälder
  • Office Hours: Monday, 11:15-12:30 (Research I, Room 87)
  • TA (Group A): Muratovic, Haris
  • TA (Group B): Perial, Razvan Andrei
  • TA (Group C): Stefanovska, Tea
  • TA (Group D): Stratulat, Cristian-Mihai
  • Class: Tuesday, 14:15-15:30 (ICC-East Wing)
  • Class: Tuesday, 15:45-17:00 (ICC-East Wing)
  • Class: Thursday, 15:45-17:00 (RLH 172)
  • Tutorial: Thursday, 18:00-19:00 (East Hall 1)
  • 1st Module Exam: Saturday, 2023-12-16 12:30-14:30 (SCC Hall 1-2)
  • 2nd Module Exam: Monday, 2024-01-22 14:00-16:00 (ICC East Wing)

Content and Educational Aims

This module introduces concepts and principles used by operating systems to provide programming abstractions that enable an efficient and robust execution of application programs. Students will gain an understanding of how an operating system kernel manages hardware components and how it provides abstractions such as processes, threads, virtual memory, file systems, and inter-process communication facilities. Students learn the principles of event-driven and concurrent programming and the mechanisms that are necessary to solve synchronization and coordination problems, thereby avoiding race conditions, deadlocks, and resource starvation. The Linux kernel and runtime system will be used throughout the course to illustrate how key ideas and concepts have been implemented and how application programs can use them.

Intended Learning Outcomes

By the end of this module, students will be able to

  • explain the differences between processes, threads, application programs, libraries, and operating system kernels;
  • describe well-known mutual exclusion and coordination problems;
  • use semaphores to achieve mutual exclusion and solve coordination problems;
  • use mutual exclusion locks and condition variables to solve synchronization and coordination problems;
  • illustrate how deadlocks can be avoided, detected, and resolved;
  • summarize the different mechanisms to realize virtual memory and their trade-offs;
  • solve basic inter-process communication problems using signals and pipes;
  • use socket inter-process communication primitives;
  • multiplex I/O activities using suitable system calls and libraries;
  • describe file system programming interfaces and the design of file systems at the operating system kernel level;
  • explain how memory mapping can improve I/O performance;
  • restate the functionality of a linker and the difference between static linking and dynamic linking;
  • outline how different device types are supported by Unix-like kernels;
  • discuss virtualization mechanisms such as containers or virtual machines.

Literature

  • Abraham Silberschatz, Peter B. Galvin, Greg Gagne: "Applied Operating System Concepts", John Wiley, 2000
  • Andrew S. Tanenbaum, Herbert Bos: "Modern Operating Systems", Prentice Hall, 4th edition, Pearson, 2015
  • William Stallings: "Operating Systems: Internals and Design Principles", 8th edition, Pearson, 2014
  • Robert Love: "Linux Kernel Development", 3rd edition, Addison Wesley, 2010
  • Robert Love: "Linux System Programming: Talking Directly to the Kernel and C Library", 2nd edition, O'Reilly, 2013
  • Allen B. Downey: "The Little Book of Semaphores", Version 2.2.1, Green Tea Press, 2016
  • Sandra Loosemore et al.: The GNU C Library Reference Manual, Free Software Foundation, 2023

Schedule

Tue 14:15 Thu 15:45 Topics
2023-09-05 2023-09-07 Introduction, Library Calls vs System Calls
2023-09-12 2023-09-14 Architectures, Hardware, Memory Segments
2023-09-19 2023-09-21 Processes, Threads
2023-09-26 2023-09-28 Synchronization (Mutual Exclusion, Semaphores)
2023-10-03 2023-10-05 Synchronization (Condition Variables, Monitors)
2023-10-10 2023-10-12 Synchronization (Examples), Deadlocks
2023-10-17 2023-10-19 Scheduling, Linking
2023-10-24 2023-10-26 Memory Management (Segmentation, Paging, Working Sets)
2023-10-31 2023-11-02 Local Communication (Signals, Pipes)
2023-11-07 2023-11-09 Global Communication (Sockets)
2023-11-14 2023-11-16 Communication Programming (Event Loops)
2023-11-21 2023-11-23 File Systems
2023-11-28 2023-11-30 Block and Character Devices
2023-12-05 2023-12-07 Virtualization, Virtual Machines, Container

Assignments

Date/Due Name Topics
2023-09-15 Sheet 01 strsplit crash, strndup segments, env (coding - exec)
2023-09-22 Sheet 02 stack frame layout, bench (coding - fork, exec, wait)
2023-09-29 Sheet 03 semaphore usage, perfect numbers (coding - pthreads)
2023-10-06 Sheet 04 multi-threaded coin flipping (coding - pthreads, mutexes)
2023-10-13 Sheet 05 taxi stand offering shared rides (coding - mutexes, condition variables)
2023-10-20 Sheet 06 deadlock prevention and detection, scheduling strategies
2023-10-27 Sheet 07 positioning algorithms, buddy system, replacement algorithms
2023-11-03 Sheet 08 address spaces, paging and page tables, word count (coding - mmap)
2023-11-10 Sheet 09 multiple-choice quiz on computer science (coding - pipes, signals)
2023-11-17 Sheet 10 word guessing game server (coding - sockets, blocking, forking, threaded)
2023-11-24 Sheet 11 word guessing game server (coding - event-driven)
2023-12-01 Sheet 12 file permissions, inode file system updates, RAID configurations
2024-01-15 Sheet 13 extra sheet for students who did not manage to obtain 50/120 points

Rules

The grade is determined by the final exam (100%). To attend the final exam, it is necessary to collect 50 points in weekly assignments. There are ten regular assignments and two bonus assignments during the semester and there is another bonous assignment before the second module exam. Each assignment is worth 10 points. Hence, students have to obtain 50/120 points during the semester to qualify for the first module exam or 50/130 points to qualify for the second module exam. Once a module achievement has been obtained, it remains valid for all subsequent module exams.

Electronic submission is the preferred way to hand in homework solutions. Please submit documents (plain ASCII/UTF-8 text or PDF, no Word) and your source code (packed into a tar or zip archive after removing all binaries and temporary files) via the online submission system. If you have problems, please contact one of the TAs. Solutions for assignments may need to be defended in an oral interview.

Late submissions will not be accepted. In case you are ill, you have to follow the procedures defined in the university policies to obtain an official excuse. If you obtain an excuse, the new deadline will be calculated as follows:

  1. Determine the number of days you were excused until the deadline day, not counting excused weekend days.
  2. Determine the day of the end of your excuse and add the number of day you obtained in first step. This gives you the initial new deadline.
  3. If the period between the end of your excuse and the new deadline calculated in the second step includes weekend days, add them as well to the new deadline. (Iterate this step if necessary.)

For any questions stated on assignment sheets or exam sheets, we by default expect a reasoning for the answer given, unless explicitly stated otherwise.

Students must submit individual solutions. If you copy material verbatim from the Internet or other sources, you have to provide a proper reference. If we find your solution text on the Internet without a proper reference, you risk to lose your points. Any cheating cases will be reported to the registrar. In addition, you will lose the points (of course). These rules also apply to any generative AI tool, such as ChatGPT.

  1. You are discouraged from using AI tools UNLESS under direct instruction from your instructor to do so.
  2. If AI is permitted to be used, you must clearly state how AI was used in completing the assignments. No more than 25% of an assignment should be created with AI if the instructor gives permission for its use.
  3. Note that the material generated by AI programs may be inaccurate, incomplete, or otherwise problematic. Their use may also stifle your own independent thinking and creativity. Accordingly, reduction in the grade is likely when using AI. Rather use your own brain.

Any programs, which have to be written, will be evaluated based on the following criteria:

  • correctness including proper handling of error conditions
  • proper use of programming language constructs
  • clarity of the program organization and design
  • readability of the source code and any output produced

Source code must be accompanied by a README file providing an overview of the source files and giving instructions how to build the programs. A suitable Makefile is required if the build process involves more than a single source file.

If any part of these rules are confusing or uncertain, please reach out to your instructor for a conversation before submitting your work.

If you are unhappy with the grading, please report immediately (within one week) to the TAs. If you can't resolve things, contact the instructor. Problem reports which come late, that is after the one-week period, are not considered anymore.