Operating Systems

About

  • Module: Operating Systems (CO-562)
  • Semester: Fall 2022
  • Instructor: Jürgen Schönwälder
  • Office Hours: Monday, 11:15-12:30 (Research I, Room 87)
  • TA (Group A): Aydin, Ahmed Hamza
  • TA (Group B): Eshkiki, Hassan
  • TA (Group C): Eshkiki, Hassan
  • TA (Group D): Kvavilashvili, Luka
  • TA (Group E): Sunar, Shishir
  • Class: Tuesday, 14:15-15:30 (RLH 172)
  • Class: Tuesday, 15:45-17:00 (RLH 172)
  • Class: Thursday, 15:45-17:00 (RLH 172)
  • Tutorial: Monday, 20:00-21:00 (West Hall 2)
  • 1st Module Exam: Monday, 2022-12-12, 09:00-11:00, SCC Halls 1-4
  • 2nd Module Exam: Monday, 2023-01-23, 09:00-11:00, ICC East Wing
  • 3rd Module Exam: Thursday, 2023-08-24, 17:00-19:00, Research I, Lecture Hall

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.

Books

  • 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

Schedule

Tue 14:15 Thu 15:45 Topics
2022-09-01 Introduction, Library Calls vs System Calls
2022-09-06 2022-09-08 Architectures, Hardware, Memory Segments
2022-09-13 2022-09-15 Processes, Threads
2022-09-20 2022-09-22 Synchronization (Mutual Exclusion, Semaphores)
2022-09-27 2022-09-29 Synchronization (Condition Variables, Monitors)
2022-10-04 2022-10-06 Synchronization (Examples), Deadlocks
2022-10-11 2022-10-13 Scheduling, Linking
2022-10-18 2022-10-20 Memory Management (Segmentation, Paging, Working Sets)
2022-10-25 2022-10-27 Local Communication (Signals, Pipes)
2022-11-01 2022-11-03 Global Communication (Sockets)
2022-11-08 2022-11-10 Communication Programming (Event Loops)
2022-11-15 2022-11-17 File Systems
2022-11-22 2022-11-24 Block and Character Devices
2022-11-29 2022-12-01 Virtualization, Virtual Machines, Container
2022-12-06 Distributed Systems

Assignments

Date/Due Name Topics
2022-09-15 Sheet 01 freshie crash, memory segments, env (coding - exec)
2022-09-22 Sheet 02 fork, xargs (coding - fork/exec/wait)
2022-09-29 Sheet 03 semaphore usage, perfect numbers (coding - pthreads)
2022-10-06 Sheet 04 100 prisoners problem (coding - pthreads, mutexes)
2022-10-13 Sheet 05 deadlock prevention, avoidance, detection
2022-10-20 Sheet 06 scheduling, linking
2022-10-27 Sheet 07 positioning algorithms, buddy system, replacement algorithms
2022-11-03 Sheet 08 page tables, working sets vs lru, memory chat
2022-11-10 Sheet 09 pipes and signals (math quiz program)
2022-11-17 Sheet 10 sockets (word guessing game server, blocking, forking, threaded)
2022-11-24 Sheet 11 sockets (word guessing game server, event-driven)
2022-12-01 Sheet 12 file system semantics, basic file permissions, inode file system updates
2023-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%). In order to sit for the final exam, it is necessary to have 50% of the regular assignments correctly solved. There are 10 regular assignments and 2-3 bonus assignments.

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.

Late submissions will not be accepted. Homeworks may need to be defended in an oral interview. 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 solutions individually. 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).

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 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.