os structures
play

OS Structures ! Processes ! Memory management ! CPU Scheduling ! I/O - PDF document

CSE 421/521 - Operating Systems Roadmap Fall 2012 OS Design and Implementation Different Design Approaches Lecture - II Major OS Components OS Structures ! Processes ! Memory management ! CPU Scheduling ! I/O Management Tevfik Ko


  1. CSE 421/521 - Operating Systems Roadmap Fall 2012 • OS Design and Implementation – Different Design Approaches Lecture - II • Major OS Components OS Structures ! Processes ! Memory management ! CPU Scheduling ! I/O Management Tevfik Ko ş ar University at Buffalo August 30 th , 2012 1 2 Operating System Design and Implementation • Start by defining goals and specifications • Affected by choice of hardware, type of system – Batch, time shared, single user, multi user, distributed OS Design Approaches • User goals and System goals – User goals – operating system should be convenient to use, easy to learn, reliable, safe, and fast – System goals – operating system should be easy to design, implement, and maintain, as well as flexible, reliable, error- free, and efficient • No unique solution for defining the requirements of an OS " Large variety of solutions " Large variety of OS 3 4 OS Design Approaches Operating System Design and Implementation (Cont.) • Important principle: to separate policies and • Simple Structure (Monolithic) mechanisms • Layered Approach Policy: What will be done? • Microkernels Mechanism: How to do something? • Modules • Eg. to ensure CPU protection – Use Timer construct (mechanism) – How long to set the timer (policy) • The separation of policy from mechanism allows maximum flexibility if policy decisions are to be changed later 5 6

  2. Simple Structure Simple Structure # Example: MS-DOS Silberschatz, A., Galvin, P. B. and Gagne. G. (2003) Operating Systems Concepts with Java (6th Edition). • Monolithic initially written to provide $ • No well defined structure the most functionality in the least space • Start as small, simple, limited systems, and then grow • No Layers, not divided into modules started small and grew $ beyond its original scope levels not well separated: $ programs could access I/O devices directly $ excuse: the hardware of that time was limited (no dual user/kernel mode) MS-DOS pseudolayer structure 7 8 Layered Approach Simple Layered Approach The original UNIX # # Monolithic operating systems $ enormous amount of functionality crammed Silberschatz, A., Galvin, P. B. and Gagne. G. (2003) Operating Systems Concepts with Java (6th Edition). $ no one had experience in building truly large software systems into the kernel - everything below $ the problems caused by mutual dependence and interaction system call interface were grossly underestimated $ “The Big Mess”: a $ such lack of structure became unsustainable as O/S grew collection of procedures that can # Enter hierarchical layers and information abstraction call any of the other procedures whenever $ each layer is implemented exclusively using operations they need to provided by lower layers $ no encapsulation, total $ it does not need to know how they are implemented visibility across the system $ hence, lower layers hide the existence of certain data very minimal layering $ UNIX system structure structures, private operations and hardware from upper layers made of thick, monolithic layers 9 10 Layered Approach Layered Approach # Layers can be debugged and replaced independently • The operating system is divided without bothering the other layers above and below into a number of layers (levels), each built on top of lower $ famous example of famous example of $ layers. strictly layered strictly layered – The bottom layer (layer 0), is the architecture: architecture: the hardware; TCP/IP networking N+ 1 offers services – The highest (layer N) is the user stack N interface. uses services • With modularity, layers are N –1 selected such that each uses functions (operations) and services of only lower-level layers – GLUnix, Multics, VAX/VMS 11 12

  3. Layered Approach Layered Approach Theoretical model of operating system design hierarchy # Major difficulty with layering shell $ . . . appropriately defining the various layers! $ layering is only possible if all function dependencies can be sorted out into a Directed Acyclic Graph (DAG) $ however there might be conflicts in the form of circular dependencies (“cycles”) O/S hardware Stallings, W. (2004) Operating Systems: Internals and Design Principles (5th Edition). Circular dependency on top of a DAG 13 14 Layered Approach Microkernel System Structure # The microkernel approach # Circular dependencies in an O/S organization $ a microkernel is a reduced operating system core that contains $ example: disk driver routines vs. CPU scheduler routines only essential O/S functions % the device driver for the backing store (disk space used by $ the idea is to minimize the kernel by moving up as much virtual memory) may need to wait for I/O, thus invoke the functionality as possible from the kernel into user space CPU-scheduling layer % the CPU scheduler may need the backing store driver for $ many services traditionally included in the O/S are now external swapping in and out parts of the table of active processes subsystems running as user processes device drivers % # Other difficulty: efficiency % file systems $ the more layers, the more indirections from function to function % virtual memory manager and the bigger the overhead in function calls % windowing system $ backlash against strict layering: return to fewer layers with % security services, etc. more functionality • Examples: QNX, Tru64 UNIX, Mach (CMU), Windows NT 15 16 Layered OS vs Microkernel Microkernel System Structure # Benefits of the microkernel approach $ extensibility — it is easier to extend a microkernel-based O/S as new services are added in user space, not in the kernel $ portability — it is easier to port to a new CPU, as changes are needed only in the microkernel, not in the other services $ reliability & security — much less code is running in kernel mode; failures in user-space services don’t affect kernel space # Detriments of the microkernel approach $ again, performance overhead due to communication from user space to kernel space $ not always realistic: some functions (I/O) must remain in kernel space, forcing a separation between “policy” and “mechanism” 17 18

  4. Modular Approach Modular Approach # Modules are used in Solaris, Linux and Mac OS X # The modular approach $ many modern operating systems implement kernel modules $ this is similar to the object-oriented approach: % each core component is separate each talks to the others over known interfaces % each is loadable as needed within the kernel % $ overall, modules are similar to layers but with more flexibility $ modules are also similar to the microkernel approach, except they are inside the kernel and don’t need message passing Silberschatz, A., Galvin, P. B. and Gagne. G. (2003) Operating Systems Concepts with Java (6th Edition). The Solaris loadable modules 19 20 Mac OS X Structure - Hybrid Major OS Components • BSD: provides support for command line interface, networking, file system, POSIX API and threads • Mach: memory management, RPC, IPC, message passing 21 22 Major OS Components Processes # A process is the activity of executing a program ! Processes Pasta for six ! Memory management ! CPU Scheduling – boil 1 quart salty ! I/O Management water CPU thread of execution – stir in the pasta – cook on medium until “al dente” input data – serve Process Program 23 24

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend