Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Minix 3

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 9
At a glance
Powered by AI
The key takeaways are that MINIX 3 is a small, highly reliable and functional Unix-like operating system that aims to be fault-tolerant by detecting and repairing its own faults without user intervention. It supports IA-32 architecture systems and can run under emulators.

The main goals of MINIX 3 are to create an operating system that is 'reliable, self-healing, multiserver UNIX clone' by having minimal code running in the kernel with each device driver running as a separate user-mode process carefully monitored by the reincarnation server.

Some techniques used in MINIX 3 to improve reliability include having a small kernel size, running device drivers as separate processes, limiting drivers' memory access, surviving bad pointers, restricting access to kernel functions and ports, and reincarnating dead or sick drivers.

MINIX 3

From Wikipedia, the free encyclopedia MINIX 3

Minix 3 running X11 with TWM as Window Manager. Company / Andrew S. Tanenbaum developer OS family Unix-like Working state Current Source model Free and open source software 3.2.0 / June 8, 2011; 33 days Latest stable release ago Supported i386 architecture platforms Kernel type Microkernel Default user ash interface License BSD License Official website http://www.MINIX3.org MINIX 3 is a project to create a small, highly reliable and functional Unix-like operating system. It is published under the BSD license. The main goal of the project is for the system to be fault-tolerant by detecting and repairing its own faults on the fly, without user intervention. The main uses of the operating system are envisaged to be embedded systems as well as the education sector, such as universities or the XO-1 laptop.[1] MINIX 3 currently supports IA-32 architecture PC compatible systems. It is also possible to run MINIX under emulators or virtual machines, such as Bochs,[2][3] VMware Workstation,[4] Microsoft Virtual PC,[5] and QEMU. Ports to the PowerPC[6] and ARM architectures (Intel XScale)[7] are in development. The distribution comes on a Live CD and also can be downloaded as a USB stick image.[8]

Contents

[hide]

1 Goals of the project 2 Reliability in MINIX 3


2.1 Reduce kernel size 2.2 Cage the bugs 2.3 Limit drivers' memory access 2.4 Survive bad pointers 2.5 Tame infinite loops 2.6 Limit damage from buffer overruns 2.7 Restrict access to kernel functions 2.8 Restrict access to I/O ports 2.9 Restrict communication with OS components 2.10 Reincarnate dead or sick drivers 2.11 Integrate interrupts and messages

3 Architecture 4 Differences between MINIX 3 and prior versions 5 Books and Articles 6 See also 7 References and notes 8 External links

Goals of the project


Reflecting on the nature of monolithic kernel based systems, where a driver (which has, according to MINIX creator Tanenbaum, approximately 3-7 times as many bugs as a usual program)[9] can bring down the whole system,[10] MINIX 3 aims to create an operating system that is a "reliable, self-healing, multiserver UNIX clone".[11] In order to achieve that, the code running in kernel must be minimal, with the file server, process server, and each device driver running as separate user-mode processes. Each driver is carefully monitored by a part of the system known as the reincarnation server. If a driver fails to respond to pings from the reincarnation server, it is shut down and replaced by a fresh copy of the driver. In a monolithic system, a bug in a driver can easily crash the whole kernel, something that is much less likely to occur in MINIX 3.[12]

Reliability in MINIX 3
One of the main goals of MINIX 3 is reliability. Below, some of the more important principles that enhance MINIX 3's reliability are discussed.

Reduce kernel size

Monolithic operating systems such as Linux and FreeBSD and Hybrids like Windows have millions of lines of kernel code. In contrast, MINIX 3 has about 6,000 lines of executable kernel code, which can make problems easier to find in the code.

Cage the bugs


In monolithic operating systems, device drivers reside in the kernel. This means that when a new peripheral is installed, unknown, untrusted code is inserted in the kernel. A single bad line of code in a driver can bring down the system. In MINIX 3, each device driver is a separate usermode process. Drivers cannot execute privileged instructions, change the page tables, perform arbitrary I/O, or write to absolute memory. They have to make kernel calls for these services and the kernel checks each call for authority.

Limit drivers' memory access


In monolithic operating systems, a driver can write to any word of memory and thus accidentally trash user programs. In MINIX 3, when a user expects data from, for example, the file system, it builds a descriptor telling who has access and at what addresses. It then passes an index to this descriptor to the file system, which may pass it to a driver. The file system or driver then asks the kernel to write via the descriptor, making it impossible for them to write to addresses outside the buffer.

Survive bad pointers


Dereferencing a bad pointer within a driver will crash the driver process, but will have no effect on the system as a whole. The reincarnation server will restart the crashed driver automatically. For some drivers (e.g., disk and network) recovery is transparent to user processes. For others (e.g., audio and printer), the user may notice. In monolithic systems, dereferencing a bad pointer in a (kernel) driver normally leads to a system crash.

Tame infinite loops


If a driver gets into an infinite loop, the scheduler will gradually lower its priority until it becomes idle. Eventually the reincarnation server will see that it is not responding to status requests, so it will kill and restart the looping driver. In a monolithic system, a looping driver could hang the system.

Limit damage from buffer overruns


MINIX 3 uses fixed-length messages for internal communication, which eliminates certain buffer overruns and buffer management problems. Also, many exploits work by overrunning a buffer to trick the program into returning from a function call using an overwritten stacked return address pointing into the overrun buffer. In MINIX 3, this attack does not work because instruction and data space are split and only code in (read-only) instruction space can be executed.

Restrict access to kernel functions


Device drivers obtain kernel services (such as copying data to users' address spaces) by making kernel calls. The MINIX 3 kernel has a bit map for each driver specifying which calls it is authorized to make. In monolithic systems every driver can call every kernel function, authorized or not.

Restrict access to I/O ports

The kernel also maintains a table telling which I/O ports each driver may access. As a result, a driver can only touch its own I/O ports. In monolithic systems, a buggy driver can access I/O ports belonging to another device.

Restrict communication with OS components


Not every driver and server needs to communicate with every other driver and server. Accordingly, a per-process bit map determines which destinations each process may send to.

Reincarnate dead or sick drivers


A special process, called the reincarnation server, periodically pings each device driver. If the driver dies or fails to respond correctly to pings, the reincarnation server automatically replaces it with a fresh copy. The detection and replacement of non-functioning drivers is automatic, without any user action required. This feature does not work for disk drivers at present, but in the next release the system will be able to recover even disk drivers, which will be shadowed in RAM. Driver recovery does not affect running processes.

Integrate interrupts and messages


When an interrupt occurs, it is converted at a low level to a notification sent to the appropriate driver. If the driver is waiting for a message, it gets the interrupt immediately; otherwise it gets the notification the next time it does a RECEIVE to get a message. This scheme eliminates nested interrupts and makes driver programming easier.

Architecture

The Architecture of MINIX 3 As can be seen, at the bottom level is the microkernel, which is about 4,000 lines of code (mostly in C, plus a small amount of assembly language). It handles interrupts, scheduling, and message passing. In addition it supports an API of about 30 kernel calls that authorized servers and drivers can make. User programs cannot make these calls. Instead, they can issue POSIX system calls which send messages to the servers. The kernel calls perform functions such as setting interrupts and copying data between address spaces. At the next level up, we find the device drivers, each one running as a separate user-mode process. Each one controls some I/O device, such as a disk or printer. The drivers do not have access to the I/O port space and cannot issue I/O instructions directly. Instead, they must make kernel calls giving a list of I/O ports to write to and the values to be written. While there is a small amount of overhead in doing this (typically 500 nsec), this scheme makes it possible for the kernel to check authorization, so that, for example, the audio driver cannot write on the disk.

At the next level we find the servers. This is where nearly all the operating system functionality is located. User processes obtain file service, for example, by sending messages to the file server to open, close, read, and write files. In turn, the file server gets disk I/O performed by sending messages to the disk driver, which actually controls the disk. One of the key servers is the reincarnation server. Its job is to poll all the other servers and drivers to check on their health periodically. If a component fails to respond correctly, or exits or gets into an infinite loop, the reincarnation server (which is the parent process of the drivers and servers) kills the faulty component and replaces it with a fresh copy. In this way the system is automatically made self-healing without interfering with running programs. Currently the reincarnation server, the file server, the process server, and the microkernel are part of the trusted computing base. If any of them fail, the system crashes. Nevertheless, reducing the trusted computing base from 3-5 million lines of code found in Linux and Windows systems to about 20,000 lines greatly enhances system reliability.

Differences between MINIX 3 and prior versions


Main article: MINIX

Diagram of the relationships between several Unix-like systems MINIX 1, 1.5, and 2 were developed as tools to help people learn about the design of operating systems. MINIX 1.0, released in 1987, was 12,000 lines of C and some x86 assembly language. Source code of the kernel, memory manager, and file system of MINIX 1.0 are printed in the book. Tanenbaum originally developed MINIX for compatibility with the IBM PC and IBM PC/AT microcomputers available at the time. MINIX 1.5, released in 1991, included support for MicroChannel IBM PS/2 systems and was also ported to the Motorola 68000 and SPARC architectures, supporting the Atari ST, Commodore Amiga, Apple Macintosh and Sun Microsystems SPARCstation computer platforms. A version of MINIX running as a user process under SunOS was also available.

MINIX 2.0, released in 1997, was only available for the x86 and Solaris-hosted SPARC architectures. Minix-vmd was created by two Vrije Universiteit researchers, and added virtual memory and support for the X Window System. MINIX 3 does the same, and provides a modern operating system with many newer tools and many UNIX applications.[13] Prof. Tanenbaum once said:

There have also been many improvements in the structure of the kernel since MINIX 2 was released, making the operating system more reliable.[14] MINIX version 3.1.5 was released 5 Nov 2009. It contains X11, emacs, vi, cc, gcc, perl, python, ash, bash, zsh, ftp, ssh, telnet, pine, and over 400 other common UNIX utility programs. With the addition of X11, this version marks the transition away from a text-only system. Another feature of this version, which will be improved in future ones, is the ability of the system to withstand device driver crashes, and in many cases having them automatically replaced without affecting running processes. In this way, MINIX is self-healing and can be used in applications demanding high reliability.

Books and Articles


Tanenbaum, Andrew S; Albert S. Woodhull (14 January 2006). Operating Systems: Design and Implementation (3rd ed.). Prentice Hall. ISBN 0131429388. Building a dependable operating system: fault tolerance in MINIX 3 by Jorrit N. Herder Reorganizing UNIX for Reliability by Jorrit N. Herder, Herbert Bos, Ben Gras, Philip Homburg, and Andrew S. Tanenbaum. Modular system programming in MINIX 3 by Jorrit N. Herder, Herbert Bos, Ben Gras, Philip Homburg, and Andrew S Tanenbaum J.N. Herder et al., Modular System Programming in MINIX 3, ;Login, April 2006 [11] Pablo A Pessolani. MINIX4RT: A Real-Time Operating System Based on MINIX [12] Building Performance Measurement Tools for the MINIX 3 Operating System, by Rogier Meurs [13] Design and implementation of the MINIX Virtual File system [14] Reference manual for MINIX 3 Kernel API [15] Towards a true microkernel operating system [16] Construction of a Highly Dependable Operating System [17] Minix 3 and the microkernel experience: Smart Kernel by Rdiger Weis

See also
Free software portal

Comparison of operating system kernels Elle (Elle Looks Like Emacs)

GNU Hurd MINIX MINIX file system

References and notes


1. ^ "LWN.net." LWN: MINIX 3 hits the net. 28 Oct 2005. Eklektix, Inc.. 4 Jul 2006 [1]. 2. ^ Woodhull, Al. Getting Started with Minix on Bochs on Mac OS. 20 Feb 2003. 8 Jul

2006 [2].
3. ^ Senn, Will. "OSNews.com." Virtually Minix: A Tutorial & Intro to Minix on XP via

Bochs - OSNews.com. 08 Jul 2006. OSNews.com. 8 Jul 2006 [3].


4. ^ Wagstrom, Patrick. Minix under VMWare Installation How-To. 8 Jul 2006 [4]. 5. ^ Woodhull, Al. Minix on Virtual PC: first look. 02 Jun 2005. 8 Jul 2006 6. ^ Alting, Ingmar A. MinixPPC: A port of MINIX 3 to the PowerPC platform, 15 Sep

2006. [5]
7. ^ MINIX 3 Operating System official website 8. ^ Download 9. ^ Tanenbaum, Andy (2006-09-25). "Introduction to MINIX 3". OSnew. OSnews.

Retrieved 2008-07-04. "From Rebirth section: "Various studies have shown that software broadly contains something like 6-16 bugs per 1000 lines of code and that device drivers have 3-7 times as many bugs as the rest of the operating system. When combined with the fact that 70% of a typical operating system consists of device drivers, it is clear that device drivers are a big source of trouble. For Windows XP, 85% of the crashes are due to bugs in device drivers. Obviously, to make OSes reliable, something has to be done to deal with buggy device drivers. Building a reliable system despite the inevitable bugs in device drivers was the original driving force behind MINIX 3.""
10. ^ Tanenbaum, Andrew. CSAIL Event Calendar. 25 Aug 2006 [6]. 11. ^ a b Tanenbaum, Andrew. "Tanenbaum-Torvalds debate, Part II:." 12 May 2006. Vrije

Universiteit. 15 Jun 2006 [7].


12. ^ Tanenbaum, Andrew S.. "Reliability." The MINIX 3 Operating System. Vrije

Universiteit.. 22 Jun 2006 [8]


13. ^ Woodhull, Albert S.. "MINIX 3: A small, reliable free operating system:" MINIX 3

FAQ. 24 Oct 2005. Vrije Universiteit. 15 Jun 2006 [9].


14. ^ Tanenbaum, Andrew. "The MINIX 3 Operating System." Improvements since V2. 05

Jul 2006 [10].

External links
Wikibooks has a book on the topic of Minix 3

Minix3 official homepage:

Wiki

MINIX 3: a Modular, Self-Healing POSIX-compatible Operating System on YouTube http://www.minix3.ru - official russian site comp.os.minix - official forum(since 1987) A very good description of Minix 3 by Andy Tanenbaum MINIX: what is it, and why is it still relevant? An interview with Andy Tanenbaum Minix Network Service Documentation Can We Make Operating Systems Reliable and Secure? Minix Tips for running the Operating System Version Minix3 installation on YouTube [hide]v d eUnix and Unix-like operating systems

AIX BSD DragonFly BSD FreeBSD GNU HP-UX IRIX Linux LynxOS Mac OS X MINIX NetBSD OpenBSD Plan 9 QNX Research Unix SCO OpenServer Solaris UNIX System V Tru64 UNIX UnixWare VxWorks Xenix more Categories: Computing platforms | Unix variants | Free software operating systems | Microkernels | Operating system distributions bootable from read-only media | Educational operating systems

Log in / create account Article Discussion Read View source View history
Top of Form

Bottom of Form

Main page Contents Featured content Current events Random article Donate to Wikipedia Help About Wikipedia Community portal Recent changes

Interaction


Toolbox

Contact Wikipedia

Print/export Languages

This page was last modified on 1 July 2011 at 09:05. Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. See Terms of use for details. Wikipedia is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization. Contact us Privacy policy About Wikipedia Disclaimers

You might also like