Information about Multics

Multics (Multiplexed Information and Computing Service) was an extraordinarily influential early time-sharing operating system. The project was started in 1964. The last running Multics installation was shut down on October 31, 2000.

Overview

Initial planning and development for Multics started in 1964. Originally it was a cooperative project led by MIT (with Fernando Corbató), along with General Electric and Bell Labs. Bell Labs dropped out in 1969, and in 1970 GE's computer business, including Multics, was taken over by Honeywell.

Multics was conceived as a commercial product for GE, and it did achieve that for Honeywell, although it was not a very successful one. However, it had a powerful impact in the computer field, due to its many novel and valuable ideas. Although it was much derided at the time by its critics [1], history has shown these complaints to be canards.

It had numerous features intended to result in high availability, so that it would produce a computing utility, similar to the telephone and electricity services. To achieve this, in addition to being modular in software structure, the hardware was too, and the system could grow in size by simply adding more of the appropriate resource - computing power, main memory, disk storage, etc. Separate Access Control Lists on every file provided flexible information sharing, but also provided complete privacy when needed. It contained a number of standard mechanisms to allow engineers to analyze the performance of the system, as well as a number of adaptive performance optimization mechanisms.

Novel ideas



Multics was an early operating system that implemented a single level store for data access, discarding the clear distinction between files (called segments in Multics) and process memory. The memory of a process consisted solely of segments which were mapped into its address space; to read or write to them, the process simply used normal CPU instructions, and the operating system took care of making sure that all the modifications were saved to disk. In POSIX terminology, it was as if every file was mmap()ed; however, in Multics there was no concept of process memory, separate from the memory used to hold mapped in files, as Unix has. All memory in the system was part of some segment, which appeared in the file system; this included the temporary scratch memory of the process, its kernel stack, etc.

One disadvantage of this in practice, due only to the particular hardware architecture of the particular machines it ran on, and not a result of the basic concept, was that the size of segments was limited to 256K 36-bit words, roughly equal to 1 megabyte by today's standards, and therefore extra code had to be used to work on files larger than this, called multi-segment files. In the days before large databases and, later, huge bitmap graphics, this limit was rarely encountered.

This led to the second of Multics' major new ideas, dynamic linking, in which a running process could request that other segments be added to its address space, segments which could contain code that it could then execute. With this facility available, applications automatically used the latest version of any external routine they called, since those routines were kept in other segments, which were dynamically linked in only when a process first tried to begin execution in them. Since different processes, belonging to different users, could use different search rules, different users could end up using different versions of external routines automatically. Equally importantly, with the appropriate settings on the Multics security facilities, the code in the other segment could then gain access to data structures maintained in a different process.

Thus, to interact with an application running in part as a daemon (in another process), a user's process simply performed a normal procedure call instruction, to a code segment which it had dynamically linked to (a code segment which implemented some operation associated with the daemon). The code in that segment could then modify data maintained and used in the daemon. When the action necessary to commence the request was completed, a simple procedure return instruction returned control of the user's process to the user's code.

It is worth noting that these two ideas, in their full power, are even now still not available in other widely used operating systems, despite the rapid and otherwise enormous advance in the computer field since the 1960s; although in more limited forms they are now becoming more widely accepted and available, e.g. dynamic linking.

Multics also supported extremely aggressive on-line reconfiguration; CPUs, memory banks, disk drives, etc. could all be added and removed while the system continued operating; being added into service, or removed from it, as required. (In fact, it was common practice at the MIT system, where most early software development was done, to split the system — which was a multi-processor system — into two separate systems during off-hours by incrementally removing enough components to form a second working system, leaving the rest still running the original logged-in users. System software development testing could be performed on the second machine; when testing was over, the components of the second system would be added back onto the main user system, without ever having shut it down.) Since multiple CPUs were supported, it was thus one of the earliest multi-processor systems.

Multics was also notable for its early emphasis on computer security by design, and Multics was possibly the very first operating system to be designed as a secure system from the ground up. In spite of this, early versions of Multics were broken into, not once, but repeatedly. This led to further work on improved security that both prefigured modern security engineering techniques, and made the system much more secure; once the second-generation hardware base was adopted, with hardware support for ring-oriented security (a multi-level refinement of the concept of master mode), break-ins became very rare.

In addition to having been the first operating system to provide a hierarchical file system, filenames could be of almost arbitrary length and syntax; a given file or directory could have multiple names (typically a long and short form); and symbolic links between directories were also supported. It was the first to use the now-standard concept of having per-process stacks in the kernel, with a separate stack for each security ring. It was also one of the first written in a high level language; PL/I was used, though the Burroughs B5000 system (1961), which used ALGOL, preceded Multics.

Project history

Multics was developed initially for the GE-645 mainframe, a 36-bit system; later, it was supported on the Honeywell 6180 series machines.

Bell Labs pulled out of the project in 1969; some of the people who had worked on it there went on to create the Unix system. Superficially, UNIX shows the influence of Multics in many areas, down to the naming of commands. The design philosophy was quite different, however, focusing on keeping the system as small and as simple as possible, and thus correcting what was seen as the deficiencies of Multics. The name "Unix" (originally "Unics") is itself a hack on "Multics". The U in UNIX is rumoured to stand for "Uniplexed" as opposed to the "Multiplexed" of Multics, further underscoring the designers' rejections of Multics' complexity in favour of a more straightforward and workable approach.

Honeywell bought G.E.'s computer division, released a better hardware base, and continued system development until 1985. About 80 multi-million-dollar sites were installed, at universities, industry, and government sites. The French university system had quite a few in the early 1980s. After Honeywell stopped supporting Multics, users migrated to other systems including the Unix system.

The last Multics machine was shut down on October 31, 2000 at the Canadian Department of National Defence.

Multics was distributed in 1975 to 2000 by Groupe Bull in Europe, and in the U.S. by Bull HN Information Systems Inc. In 2006 Bull SAS open sourced Multics versions MR10.2, MR11.0, MR12.0, MR12.1, MR12.2, MR12.3, MR12.4 & MR12.5.[2]

Retrospective observations

It is more than a little startling to realize that the permanently resident kernel of this powerful multi-processor mainframe computing utility, much derided in its day as being too large and too complex, was a mere 135 Kbytes of code. The first MIT GE-645 had 512K words of memory (2 Mbytes), so the kernel only used a moderate portion of Multics main memory.

Measured another way, the entire system, including not just the operating system, but also the complex PL/I compiler, user commands, and subroutine libraries, consisted of about 1500 total source modules. These averaged roughly 200 lines of source code each, and compiled to produce a total of roughly 4.5 Mbytes of procedure code, which though small today was fairly large by the standards of the day.

Multics compilers generally optimised more for code density than CPU performance, for example using small sub-routines called operators for short standard code-sequences, making direct comparison of object code size with more modern systems less useful. High code density was a good optimisation choice for a multi-user system with expensive main memory, such as Multics.

See also

Further reading

The literature contains a large number of papers about Multics, and various components of it; a fairly complete list is available here. The most important and/or informative ones are listed below.

Further reading - technical details

  • Jerome H. Saltzer, Introduction to Multics (MIT Project MAC, 1974) is a considerably longer introduction to the system, geared towards actual users.
  • Elliott I. Organick, The Multics System: An Examination of Its Structure (MIT Press, 1972) is the standard work on the system, although it documents an early version, and some features described therein never appeared in the actual system.
  • V. A. Vyssotsky, F. J. Corbató, R. M. Graham, Structure of the Multics Supervisor (AFIPS 1965) describes the basic internal structure of the Multics kernel.
  • Jerome H. Saltzer, Traffic Control in a Multiplexed Computer System (MIT Project MAC, June 1966) is the original description of the idea of switching kernel stacks; one of the classic papers of computer science.
  • R. C. Daley, P. G. Neumann, A General Purpose File System for Secondary Storage (AFIPS, 1965) describes the file system, including the access control and backup mechanisms.
  • R. J. Feiertag, E. I. Organick, The Multics Input/Output System. Describes the lower levels of the I/O implementation.
  • A. Bensoussan, C. T. Clingen, R. C. Daley, The Multics Virtual Memory: Concepts and Design, (ACM SOSP, 1969) describes the Multics memory system in some detail.
  • Paul Green, Multics Virtual Memory - Tutorial and Reflections is a good in-depth look at the Multics storage system.
  • Roger R. Schell, Dynamic Reconfiguration in a Modular Computer System (MIT Project MAC, 1971) describes the reconfiguration mechanisms.

Further reading - security

External links

''For other possible meanings, see Time share (disambiguation)
Time-sharing refers to sharing a computing resource among many users by multitasking.
..... Click the link for more information.
An operating system (OS) is the software that manages the sharing of the resources of a computer. An operating system processes system data and user input, and responds by allocating and managing tasks and internal system resources as a service to users and programs of the
..... Click the link for more information.
19th century - 20th century - 21st century
1930s  1940s  1950s  - 1960s -  1970s  1980s  1990s
1961 1962 1963 - 1964 - 1965 1966 1967

Also Nintendo emulator: 1964 (emulator).

..... Click the link for more information.
October 31 is the feast day of the following Roman Catholic Saints:
  • St. Arnulf
  • St. Bega
  • St. Quentin
  • St.
    ..... Click the link for more information.
  • 20th century - 21st century
    1970s  1980s  1990s  - 2000s -  2010s  2020s  2030s
    1997 1998 1999 - 2000 - 2001 2002 2003

    2000 by topic:
    News by month
    Jan - Feb - Mar - Apr - May - Jun
    ..... Click the link for more information.
    19th century - 20th century - 21st century
    1930s  1940s  1950s  - 1960s -  1970s  1980s  1990s
    1961 1962 1963 - 1964 - 1965 1966 1967

    Also Nintendo emulator: 1964 (emulator).

    ..... Click the link for more information.
    Massachusetts Institute of Technology (MIT) is a private, coeducational research university located in Cambridge, Massachusetts. MIT has five schools and one college, containing 32 academic departments,[3]
    ..... Click the link for more information.
    Fernando José Corbató
    Born July 1 1926 (1926--) (age 81)
    Oakland, California
    Nationality American
    ..... Click the link for more information.
    General Electric Co.

    Public (NYSE:  GE )
    Founded 1878 in Menlo Park, New Jersey
    Founder Thomas Alva Edison
    Headquarters Fairfield, Connecticut,[1] USA

    Key people Jeff Immelt, Chairman & CEO
    Keith Sherin, Vice Chairman, CFO
    ..... Click the link for more information.
    Bell Laboratories (also known as Bell Labs and formerly known as AT&T Bell Laboratories and Bell Telephone Laboratories) is part of the research and development organization of Alcatel-Lucent and previously the United States Bell System.
    ..... Click the link for more information.
    19th century - 20th century - 21st century
    1930s  1940s  1950s  - 1960s -  1970s  1980s  1990s
    1966 1967 1968 - 1969 - 1970 1971 1972

    Also:
    *:1969 (number)
    *:

    ..... Click the link for more information.
    19th century - 20th century - 21st century
    1940s  1950s  1960s  - 1970s -  1980s  1990s  2000s
    1967 1968 1969 - 1970 - 1971 1972 1973

    Year 1970 (MCMLXX
    ..... Click the link for more information.
    Honeywell International, Inc.

    Public
    Founded 1906, 1999 by merger with AlliedSignal
    Headquarters Morristown, New Jersey

    Products Aerospace & Defense , Automation & Control Solutions , Specialty Materials
    Revenue $31.4 billion USD (2006)
    Net income $ 2.
    ..... Click the link for more information.
    Canard is French for duck, and is often used to refer to a deliberately false story, originating from an abbreviated form of an old French idiom, "vendre un canard à moitié," meaning "to half-sell a duck.
    ..... Click the link for more information.
    Utility computing (also known as on demand computing) is the packaging of computing resources, such as computation and storage, as a metered service similar to a physical public utility (such as electricity, water, natural gas, or telephone network).
    ..... Click the link for more information.
    The telephone is a telecommunications device which is used to transmit and receive sound (most commonly speech). Most telephones operate through transmission of electric signals over a complex telephone network which allows almost any phone user to communicate with almost anyone.
    ..... Click the link for more information.
    Electricity (from New Latin ēlectricus, "amberlike") is a general term for a variety of phenomena resulting from the presence and flow of electric charge. This includes many well-known physical phenomena such as lightning, electromagnetic fields and electric currents,
    ..... Click the link for more information.
    In computer security, an access control list (ACL) is a list of permissions attached to an object. The list specifies who or what is allowed to access the object and what operations are allowed to be performed on the object.
    ..... Click the link for more information.
    Single-level store (SLS) is a term most often associated with IBM System i operating system i5/OS although was originally implemented on MULTICS and introduced in 1978 with the System/38 and its Control Program Facility (CPF) operating system (OS).
    ..... Click the link for more information.
    computer file is a block of arbitrary information, or resource for storing information, which is available to a computer program and is usually based on some kind of durable storage.
    ..... Click the link for more information.
    In computing, a process is an instance of a computer program that is being sequentially executed.[1] While a program itself is just a passive collection of instructions, a process is the actual execution of those instructions.
    ..... Click the link for more information.
    Computer data storage, computer memory, and often casually storage or memory refer to computer components, devices and recording media that retain digital data used for computing for some interval of time.
    ..... Click the link for more information.
    In computing, an address space defines a range of discrete addresses, each of which may correspond to a physical or virtual memory register, a network host, peripheral device, disk sector or other logical or physical entity.
    ..... Click the link for more information.
    central processing unit (CPU), or sometimes simply processor, is the component in a digital computer capable of executing a program.(Knott 1974) It interprets computer program instructions and processes data.
    ..... Click the link for more information.
    Disk storage is a general category of a computer storage mechanisms, in which data is recorded on planar, round and rotating surfaces (disks, discs, or platters). A disk drive is a peripheral device used to collect information from.
    ..... Click the link for more information.
    POSIX (IPA: /ˈpɒsɪks/) or "Portable Operating System Interface" [1] is the collective name of a family of related standards specified by the IEEE to define the application programming interface (API) for
    ..... Click the link for more information.
    mmap is a POSIX-compliant Unix system call that maps files or devices into memory. It is a method of memory-mapped file I/O. It naturally implements demand paging, because initially file contents are not entirely read from disk and don't use physical RAM at all.
    ..... Click the link for more information.
    file system (often also written as filesystem) is a method for storing and organizing computer files and the data they contain to make it easy to find and access them.
    ..... Click the link for more information.
    bitmap or pixmap is a type of memory organization or image file format used to store digital images. The term bitmap comes from the computer programming terminology, meaning just a map of bits, a spatially mapped array of bits.
    ..... Click the link for more information.
    library is a collection of subprograms used to develop software. Libraries contain "helper" code and data, which provide services to independent programs. This allows code and data to be shared and changed in a modular fashion.
    ..... Click the link for more information.


    This article is copied from an article on Wikipedia.org - the free encyclopedia created and edited by online user community. The text was not checked or edited by anyone on our staff. Although the vast majority of the wikipedia encyclopedia articles provide accurate and timely information please do not assume the accuracy of any particular article. This article is distributed under the terms of GNU Free Documentation License.
    Herod_Archelaus


    page counter