























Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An overview of the linux operating system, including its history, design principles, and various components such as kernel modules, process management, and memory management. It also discusses the linux licensing model and the use of tools derived from other operating systems.
Typology: Study notes
1 / 31
This page cannot be seen from the preview
Don't miss anything!
























Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 2 Silberschatz, Galvin and Gagne ©
Linux History Design Principles Kernel Modules Process Management Scheduling Memory Management File Systems Input and Output Interprocess Communication Network Structure Security
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 3 Silberschatz, Galvin and Gagne ©
To explore the history of the UNIX operating system from which Linux is derived and the principles which Linux is designed upon To examine the Linux process model and illustrate how Linux schedules processes and provides interprocess communication To look at memory management in Linux To explore how Linux implements file systems and manages I/O devices Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 4 Silberschatz, Galvin and Gagne ©
Linux is a modern, free operating system based on UNIX standards First developed as a small but self-contained kernel in 1991 by Linus Torvalds, with the major design goal of UNIX compatibility Its history has been one of collaboration by many users from all around the world, corresponding almost exclusively over the Internet It has been designed to run efficiently and reliably on common PC hardware, but also runs on a variety of other platforms The core Linux operating system kernel is entirely original, but it can run much existing free UNIX software, resulting in an entire UNIX-compatible operating system free from proprietary code Many, varying Linux Distributions including the kernel, applications, and management tools
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 7 Silberschatz, Galvin and Gagne ©
Linux uses many tools developed as part of Berkeley’s BSD operating system, MIT’s X Window System, and the Free Software Foundation's GNU project The min system libraries were started by the GNU project, with improvements provided by the Linux community Linux networking-administration tools were derived from 4.3BSD code; recent BSD derivatives such as Free BSD have borrowed code from Linux in return The Linux system is maintained by a loose network of developers collaborating over the Internet, with a small number of public ftp sites acting as de facto standard repositories Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 8 Silberschatz, Galvin and Gagne ©
Standard, precompiled sets of packages, or distributions, include the basic Linux system, system installation and management utilities, and ready-to-install packages of common UNIX tools The first distributions managed these packages by simply providing a means of unpacking all the files into the appropriate places; modern distributions include advanced package management Early distributions included SLS and Slackware Red Hat and Debian are popular distributions from commercial and noncommercial sources, respectively The RPM Package file format permits compatibility among the various Linux distributions
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 9 Silberschatz, Galvin and Gagne ©
The Linux kernel is distributed under the GNU General Public License (GPL), the terms of which are set out by the Free Software Foundation Anyone using Linux, or creating their own derivative of Linux, may not make the derived product proprietary; software released under the GPL may not be redistributed as a binary-only product Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 10 Silberschatz, Galvin and Gagne ©
Linux is a multiuser, multitasking system with a full set of UNIX- compatible tools Its file system adheres to traditional UNIX semantics, and it fully implements the standard UNIX networking model Main design goals are speed, efficiency, and standardization Linux is designed to be compliant with the relevant POSIX documents; at least two Linux distributions have achieved official POSIX certification The Linux programming interface adheres to the SVR4 UNIX semantics, rather than to BSD behavior
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 13 Silberschatz, Galvin and Gagne ©
The system libraries define a standard set of functions through which applications interact with the kernel, and which implement much of the operating-system functionality that does not need the full privileges of kernel code The system utilities perform individual specialized management tasks Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 14 Silberschatz, Galvin and Gagne ©
Sections of kernel code that can be compiled, loaded, and unloaded independent of the rest of the kernel A kernel module may typically implement a device driver, a file system, or a networking protocol The module interface allows third parties to write and distribute, on their own terms, device drivers or file systems that could not be distributed under the GPL Kernel modules allow a Linux system to be set up with a standard, minimal kernel, without any extra device drivers built in Three components to Linux module support: module management driver registration conflict resolution
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 15 Silberschatz, Galvin and Gagne ©
Supports loading modules into memory and letting them talk to the rest of the kernel Module loading is split into two separate sections: Managing sections of module code in kernel memory Handling symbols that modules are allowed to reference The module requestor manages loading requested, but currently unloaded, modules; it also regularly queries the kernel to see whether a dynamically loaded module is still in use, and will unload it when it is no longer actively needed Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 16 Silberschatz, Galvin and Gagne ©
Allows modules to tell the rest of the kernel that a new driver has become available The kernel maintains dynamic tables of all known drivers, and provides a set of routines to allow drivers to be added to or removed from these tables at any time Registration tables include the following items: Device drivers File systems Network protocols Binary format
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 19 Silberschatz, Galvin and Gagne ©
Process ID (PID). The unique identifier for the process; used to specify processes to the operating system when an application makes a system call to signal, modify, or wait for another process Credentials. Each process must have an associated user ID and one or more group IDs that determine the process’s rights to access system resources and files Personality. Not traditionally found on UNIX systems, but under Linux each process has an associated personality identifier that can slightly modify the semantics of certain system calls Used primarily by emulation libraries to request that system calls be compatible with certain specific flavors of UNIX Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 20 Silberschatz, Galvin and Gagne ©
The process’s environment is inherited from its parent, and is composed of two null-terminated vectors: The argument vector lists the command-line arguments used to invoke the running program; conventionally starts with the name of the program itself The environment vector is a list of “NAME=VALUE” pairs that associates named environment variables with arbitrary textual values Passing environment variables among processes and inheriting variables by a process’s children are flexible means of passing information to components of the user-mode system software The environment-variable mechanism provides a customization of the operating system that can be set on a per-process basis, rather than being configured for the system as a whole
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 21 Silberschatz, Galvin and Gagne ©
The (constantly changing) state of a running program at any point in time The scheduling context is the most important part of the process context; it is the information that the scheduler needs to suspend and restart the process The kernel maintains accounting information about the resources currently being consumed by each process, and the total resources consumed by the process in its lifetime so far The file table is an array of pointers to kernel file structures When making file I/O system calls, processes refer to files by their index into this table Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 22 Silberschatz, Galvin and Gagne ©
Whereas the file table lists the existing open files, the file-system context applies to requests to open new files The current root and default directories to be used for new file searches are stored here The signal-handler table defines the routine in the process’s address space to be called when specific signals arrive The virtual-memory context of a process describes the full contents of the its private address space
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 25 Silberschatz, Galvin and Gagne ©
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 26 Silberschatz, Galvin and Gagne ©
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 27 Silberschatz, Galvin and Gagne ©
Linux implements the FIFO and round-robin real-time scheduling classes; in both cases, each process has a priority in addition to its scheduling class The scheduler runs the process with the highest priority; for equal-priority processes, it runs the process waiting the longest FIFO processes continue to run until they either exit or block A round-robin process will be preempted after a while and moved to the end of the scheduling queue, so that round- robing processes of equal priority automatically time-share between themselves Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 28 Silberschatz, Galvin and Gagne ©
A request for kernel-mode execution can occur in two ways: A running program may request an operating system service, either explicitly via a system call, or implicitly, for example, when a page fault occurs A device driver may deliver a hardware interrupt that causes the CPU to start executing a kernel-defined handler for that interrupt Kernel synchronization requires a framework that will allow the kernel’s critical sections to run without interruption by another critical section
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 31 Silberschatz, Galvin and Gagne ©
Each level may be interrupted by code running at a higher level, but will never be interrupted by code running at the same or a lower level User processes can always be preempted by another process when a time-sharing scheduling interrupt occurs Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 32 Silberschatz, Galvin and Gagne ©
Linux 2.0 was the first Linux kernel to support SMP hardware; separate processes or threads can execute in parallel on separate processors To preserve the kernel’s nonpreemptible synchronization requirements, SMP imposes the restriction, via a single kernel spinlock, that only one processor at a time may execute kernel- mode code
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 33 Silberschatz, Galvin and Gagne ©
Linux’s physical memory-management system deals with allocating and freeing pages, groups of pages, and small blocks of memory It has additional mechanisms for handling virtual memory, memory mapped into the address space of running processes Splits memory into 3 different zones due to hardware characteristics Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 34 Silberschatz, Galvin and Gagne ©
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 37 Silberschatz, Galvin and Gagne ©
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 38 Silberschatz, Galvin and Gagne ©
The VM system maintains the address space visible to each process: It creates pages of virtual memory on demand, and manages the loading of those pages from disk or their swapping back out to disk as required The VM manager maintains two separate views of a process’s address space: A logical view describing instructions concerning the layout of the address space The address space consists of a set of nonoverlapping regions, each representing a continuous, page-aligned subset of the address space A physical view of each address space which is stored in the hardware page tables for the process
Operating System Concepts – 7 th^ Edition, Feb 6, 2005 21. 39 Silberschatz, Galvin and Gagne ©
Virtual memory regions are characterized by: The backing store, which describes from where the pages for a region come; regions are usually backed by a file or by nothing ( demand-zero memory) The region’s reaction to writes (page sharing or copy-on-write) The kernel creates a new virtual address space
On executing a new program, the process is given a new, completely empty virtual-address space; the program-loading routines populate the address space with virtual-memory regions Creating a new process with fork involves creating a complete copy of the existing process’s virtual address space The kernel copies the parent process’s VMA descriptors, then creates a new set of page tables for the child The parent’s page tables are copied directly into the child’s, with the reference count of each page covered being incremented After the fork, the parent and child share the same physical pages of memory in their address spaces