Top Banner
2. A Computer, What For? 2. A Computer, What For? Survey of Operating System Principles 25 / 303
20

Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

Aug 27, 2018

Download

Documents

hoangkhanh
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For?

2. A Computer, What For?

Survey of Operating System Principles

25 / 303

Page 2: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For?

Legacy SystemsPunched Cards

Batch processing

Interface of “big iron” mainframes

Survives in script languages (UNIX shell, MSDOS .BAT files)

Default paradign for job distribution on shared computation serversSee e.g., IDRIS: http://www.idris.fr

26 / 303

Page 3: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For?

Modern Systems Without OS

Most critical systems do not use an OS at allI Static code generation of a (reactive) scheduler, tailored to a given set of

tasks on a given system configurationI Synchronous languages: Lustre (Scade), Signal, Esterel→ main approach for closed systems like flight controllers (Airbus A320–A380)

27 / 303

Page 4: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For?

Is it Enough?

There exist more interactive, complex, dynamic, extensible systems!

They require an Operating System (OS)

28 / 303

Page 5: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For?

Operating System Tasks and Principles

Tasks

Resource management

Separation

Communication

↔Principles

Abstraction

Security

Virtualization

29 / 303

Page 6: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For?

The Kernel of the Operating System

Tasks: Resource Management, Separation, Communication

The kernel is a process manager , not a process

It runs with higher privileges (enforced by the microprocessor)I User mode: restricted instructions and access to memoryI Kernel mode: no restriction, can execute priviledged operations

User processes switch to kernel mode when requesting a service provided bythe kernel

I System call , asking the kernel to implement a priviledged operation on thebehalf of the process

I Context switch, from the kernel’s scheduler , or due to a system call initiatedby the process

30 / 303

Page 7: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

2. A Computer, What For?

Survey of Operating System Principles

31 / 303

Page 8: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

First OS Principle: Abstraction

Goal

Simplify, standardizeI Kernel portability over multiple hardware platformsI Uniform interaction with devicesI Facilitate development of device driversI Stable execution environment for the user programs

Main Abstractions

1 Process

2 File and file system

3 Device

4 Virtual memory

5 Naming

6 Synchronization

7 Communication

32 / 303

Page 9: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Process

Single Execution Flow

Process: execution context of a running program

Modern OSes support multiprocessing with private address space for eachprocess

I Isolation of address spaces enforced by the OS kernel and the processor:virtual memory

33 / 303

Page 10: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Process

Multiple Execution Flows

Within a process, the program “spawns” multiple execution flows operatingwithin the same address space: the threads

Motivation: finer-grain concurrency than processesI Less information to save/restore with the processor needs to switch from

executing one thread to another (see context switch)I Inter-thread communication is (apparently) easy: plain memory accesses

Challenge: threads need to collaborate when they concurrently access data

Pitfall: looks simpler than distributed computing, but it is hard to keep trackof data sharing in large multi-threaded programs, and even harder to get thethreads to collaborate correctly (non-deterministic reproducibility problems)

More about threads in the Java language chapter

34 / 303

Page 11: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Virtual Memory

Processes access memory through virtual addressesI Simulates a large interval of memory addressesI Address-space protection and separationI Hides kernel and other processes’ memoryI Automatic translation to physical addresses by the processor (MMU/TLB

circuits)

Principle: paging mechanismI More on this mechanism when exploring the operating system kernel

Swap memory and file systemI The ability to suspend a process and virtualize its memory allows to store its

pages to disk, saving (expensive) RAM for more urgent mattersI Same mechanism to migrate processes on NUMA multi-processors

35 / 303

Page 12: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Virtual Memory

Segments: Per-Process Virtual Memory Layout

Code (also called text) segmentI Linux: ELF format for object files

(.o and executable)

Static data segment(s)I Global, static variables

Stack segmentI Stack frames for method arguments and

local variables

Heap segmentI Dynamic allocation of objects: new

Stack

Heap

Static (initialized and bss)

Code (a.k.a. text)

0x00000000

0xbfffffff

Free space

36 / 303

Page 13: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: File and File System

File: storage and naming in UNIX

File System (FS): repository (specialized database) of files

Directory tree, absolute and relative pathnames/ . .. /dev/hda1 /bin/ls /etc/passwd

File typesI Regular file or hard link (file name alias within a single file system)

$ ln pathname alias pathnameI Soft link: short file containing a pathname

$ ln -s pathname alias pathnameI Directory: list of file names (a.k.a. hard links)I Pipe (also called FIFO)I Socket (networking)

Assemble multiple file systems through mount pointsTypical example: /home /usr/local /proc

Common set system calls, independent of the target file system

37 / 303

Page 14: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Device

What do a microphone, a hard disk, a Wifi radio module have in common?

They are devices, “peripheral” computing or signal processing systems of theirown, dedicated to Input/Output (I/O) operations

Device special filesI Block-oriented device: disks, file systems

/dev/hda /dev/sdb2 /dev/md1

I Character -oriented device: serial ports, console terminals, audio/dev/tty0 /dev/pts/0 /dev/usb/hiddev0 /dev/mixer /dev/null

38 / 303

Page 15: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Name

Hard problem in operating systemsI Processes are separated (logically and physically)I Need to access persistent and/or foreign resourcesI Resource identification determines large parts of the programming interfaceI Hard to get it right, general and flexible enough

Good examples: /-separated filenames and pathnamesI Uniform across complex directory treesI Uniform across multiple devices with mount pointsI Extensible with file links (a.k.a. aliases)I Reused for many other naming purposes: e.g., UNIX sockets, POSIX

Inter-Process Communication (IPC)

Could be betterI INET addresses, e.g., 129.104.247.5, see the never-ending IPv6 storyI TCP/UDP network ports

Bad examplesI Device numbers (UNIX internal tracking of devices)I Older UNIX System V IPCI MSDOS (and Windows) device letters (the ugly C:\)

39 / 303

Page 16: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Abstraction: Concurrency Primitives

Synchronization

Interprocess (or interthread) synchronization interfaceI Waiting for a process status changeI Waiting for a signalI SemaphoresI Reading from or writing to a file (e.g., a pipe)

Communication

Interprocess communication programming interfaceI Synchronous or asynchronous signal notificationI Pipe (or FIFO), UNIX SocketI Message queueI Shared memory

OS interface to network communicationsI INET Socket

40 / 303

Page 17: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Second OS Principle: Security

Basic Mechanisms

Identification/etc/passwd and /etc/shadow, sessions (login)UID, GID, effective UID, effective GID

Isolation of processes, memory pages, file systems

Encryption, authentication (signature) and key management

Logging: /var/log and syslogd daemon

Enhanced Security

SELinux: http://www.nsa.gov/selinux/papers/policy-abs.cfm

Android security model: http://code.google.com/android/devel/security.html

Trusted Platform Module (TPM), ARM TrustZone

Defining a security policy 6= Enforcing a security policy

41 / 303

Page 18: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Third OS Principle: Virtualization

“Every problem can be solved with an additional level of indirection”

42 / 303

Page 19: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Third OS Principle: Virtualization

“Every problem can be solved with an additional level of indirection”

Standardization Purposes

Common, portable interface

Software engineering benefits (code reuse)I Example: Virtual File System (VFS) in Linux = superset API for the features

found in all file systemsI Another example: drivers with SCSI interface emulation (USB mass storage)

Security and maintenance benefitsI Better isolation than processesI Upgrade the system transparently, robust to partial failures

42 / 303

Page 20: Survey of Operating System Principles - polytechnique · 2. A Computer, What For?{ Survey of Operating System Principles Abstraction: Process Multiple Execution Flows Within a process,

2. A Computer, What For? – Survey of Operating System Principles

Third OS Principle: Virtualization

“Every problem can be solved with an additional level of indirection”

Compatibility Purposes

Binary-level compatibilityI Processor and full-system virtualization: emulation, binary translation

(subject of the last chapter)I Protocol virtualization: IPv4 on top of IPv6

API-level compatibilityI Java: through its virtual machine and SDKI POSIX: even Windows has a POSIX compatibility layerI Relative binary compatibility across some UNIX flavors (e.g., FreeBSD)

42 / 303