All Topics  
Multics

 

   Email Print
   Bookmark   Link






 

Multics



 
 
Multics (Multiplexed Information and Computing Service) was an extremely influential early time-sharing
Time-sharing

Time-sharing refers to sharing a computing resource among many users by Computer multitasking. Its introduction in the 1960s, and emergence as the prominent model of computing in the 1970s, represents a major historical shift in the history of computing....
 operating system
Operating system

An operating system is an interface between hardware and applications; it is responsible for the management and coordination of activities and the sharing of the limited resources of the computer....
. The project was started in 1964. The last known running Multics installation was shut down on October 30, 2000.

ial planning and development for Multics started in 1964. Originally it was a cooperative project led by MIT
Massachusetts Institute of Technology

The Massachusetts Institute of Technology is a private university research university located in Cambridge, Massachusetts, Massachusetts, United States....
 (with Fernando Corbató) along with General Electric
General Electric

The General Electric Company, or GE is a multinational corporation United States technology and Service s conglomerate incorporated in the State of New York....
 and Bell Labs
Bell Labs

Bell Laboratories is the research organization of Alcatel-Lucent and previously of the American Telephone & Telegraph Company .Bell Laboratories has had its headquarters at Berkeley Heights, New Jersey, and it has research and development facilities throughout the world....
.






Discussion
Ask a question about 'Multics'
Start a new discussion about 'Multics'
Answer questions from other users
Full Discussion Forum



Encyclopedia


Multics (Multiplexed Information and Computing Service) was an extremely influential early time-sharing
Time-sharing

Time-sharing refers to sharing a computing resource among many users by Computer multitasking. Its introduction in the 1960s, and emergence as the prominent model of computing in the 1970s, represents a major historical shift in the history of computing....
 operating system
Operating system

An operating system is an interface between hardware and applications; it is responsible for the management and coordination of activities and the sharing of the limited resources of the computer....
. The project was started in 1964. The last known running Multics installation was shut down on October 30, 2000.

Overview

Initial planning and development for Multics started in 1964. Originally it was a cooperative project led by MIT
Massachusetts Institute of Technology

The Massachusetts Institute of Technology is a private university research university located in Cambridge, Massachusetts, Massachusetts, United States....
 (with Fernando Corbató) along with General Electric
General Electric

The General Electric Company, or GE is a multinational corporation United States technology and Service s conglomerate incorporated in the State of New York....
 and Bell Labs
Bell Labs

Bell Laboratories is the research organization of Alcatel-Lucent and previously of the American Telephone & Telegraph Company .Bell Laboratories has had its headquarters at Berkeley Heights, New Jersey, and it has research and development facilities throughout the world....
. Bell Labs dropped out in 1969 and in 1970 GE's computer business including Multics was taken over by Honeywell
Honeywell

Honeywell is a major United States multinational corporation list of conglomerates company that produces a variety of consumer products, engineering services, and aerospace systems for a wide variety of customers, from private consumers to major corporations and governments....
.

Multics was conceived as a commercial product for GE and became one for Honeywell, but not a very successful one. Due to its many novel and valuable ideas Multics had a great impact in the computer field even though it was then much derided by its critics.

It had numerous features intended to result in high availability so that it would produce a computing utility similar to the telephone
Telephone

The telephone is a telecommunications device that is used to transmitter and receive electronically or digitally encoded sound between two or more people conversing....
 and electricity
Electricity

Electricity is a general term that encompasses a variety of phenomena resulting from the presence and flow of electric charge. These include many easily recognizable phenomena such as lightning and static electricity, but in addition, less familiar concepts such as the electromagnetic field and electromagnetic induction....
 services. Modular hardware structure and software architecture were used to achieve this. The system could grow in size by simply adding more of the appropriate resource - computing power, main memory, disk storage, etc. Separate Access Control List
Access control list

With respect to a computer filesystem, an access control list 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....
s on every file provided flexible information sharing and complete privacy when needed. It had a number of standard mechanisms to allow engineers to analyse the performance of the system as well as a number of adaptive performance optimisation mechanisms.

Novel ideas


Multics implemented a single level store for data access, discarding the clear distinction between file
Computer file

A 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 computer storage....
s (called segments in Multics) and process memory
Computer memory

Computer memory is usually meant to refer to the semiconductor technology that is used to store information in Electronics devices. Current primary computer memory makes use of integrated circuits consisting of silicon-based transistors....
. The memory of a process consisted solely of segments which were mapped into its address space
Address space

In computing, an address space defines a range of discrete addresses, each of which may correspond to a physical or virtual memory register, a Node , peripheral device, disk sector or other logical or physical entity....
. To read or write to them, the process simply used normal CPU
Central processing unit

A central processing unit is an electronic circuit that can execute computer programs. This broad definition can easily be applied to many early computers that existed long before the term "CPU" ever came into widespread usage....
 instructions, and the operating system took care of making sure that all the modifications were saved to disk
Disk storage

Disk storage is a general category of a computer storage mechanisms, in which data is recorded on planar, round and rotating surfaces . A disk drive is a peripheral device used to record and retrieve information....
. In POSIX
POSIX

POSIX or "Portable Operating System Interface" is the collective name of a family of related standardizations specified by the Institute of Electrical and Electronics Engineers to define the application programming interface , along with shell and utilities interfaces for software compatible with variants of the Unix operating system, altho...
 terminology, it was as if every file was mmap
Mmap

In computing, 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....
ed; however, in Multics there was no concept of process memory, separate from the memory used to hold mapped-in files, as Unix
Unix

Unix is a computer operating system originally developed in 1969 by a group of American Telephone & Telegraph employees at Bell Labs, including Ken Thompson , Dennis Ritchie, Douglas McIlroy, and Joe Ossanna....
 has. All memory in the system was part of some segment, which appeared in the file system
File system

In computing, a file system is a method for store and organize computer files and the data they contain to make it easy to find and access them....
; this included the temporary scratch memory of the process, its kernel stack, etc.

One disadvantage of this was that the size of segments was limited to 256K 36-bit words (slightly more than 1 megabyte
Megabyte

Megabyte is a SI prefix-multiple of the unit byte for digital information computer storage or transmission and is equal to 106 bytes....
). This was due to the particular hardware architecture of the machines Multics ran on. Extra code had to be used to work on files larger than this, called multisegment files. But in the days when one megabyte of memory was prohibitively expensive, and before large databases and later huge bitmap
Bitmap

In computer graphics, a bitmap or pixmap is a type of computer storage organization or used to store digital images. The term bitmap comes from the computer programming terminology, meaning just a map of bits, a spatially mapped bit array....
 graphics, this limit was rarely encountered.

Another major new idea of Multics was 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. This allowed applications to automatically use 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 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
Daemon (computer software)

In Unix and other computer computer multitasking operating systems, a daemon is a computer program that runs in the background , rather than under the direct control of a user; they are usually initiated as background Computer processes....
 (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.

The single-level store and dynamic linking are still not available to their full power in other widely used operating systems, despite the rapid and enormous advance in the computer field since the 1960s. They are becoming more widely accepted and available in more limited forms, e.g. dynamic linking.

Multics also supported extremely aggressive on-line reconfiguration; central processing unit
Central processing unit

A central processing unit is an electronic circuit that can execute computer programs. This broad definition can easily be applied to many early computers that existed long before the term "CPU" ever came into widespread usage....
s, memory banks, disk drives, etc. could be added and removed while the system continued operating. At the MIT system, where most early software development was done, it was common practice to split the multiprocessor 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 done on the second machine, then the components of the second system were added back onto the main user system, without ever having shut it down. Multics supported multiple CPUs: it was one of the earliest multiprocessor systems.

Multics was the first major operating system to be designed as a secure system
Computer security

Computer security is a branch of technology known as information security as applied to computers. The objective of computer security can include protection of information from theft or corruption, or the preservation of availability, as defined in the security policy....
 from the ground up. Despite this, early versions of Multics were broken into repeatedly. This led to further work that made the system much more secure and prefigured modern security engineering
Security engineering

Security engineering is a specialized field of engineering that deals with the development of detailed engineering plans and designs for security features, controls and systems....
 techniques. Break-ins became very rare once the second-generation hardware base was adopted; it had hardware support for ring-oriented security
Ring (computer security)

In computer science, hierarchical protection domains, often called protection rings, are a mechanism to protect data and functionality from faults and malicious behaviour ....
, a multilevel refinement of the concept of master mode.

Multics was the first operating system to provide a hierarchical file system, and 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 per-process
Process (computing)

In computing, a process is an Object of a computer program that is being sequentially executed by a computer system that has the ability to run several computer programs Concurrency ....
 stack
Stack (data structure)

In computer science, a stack is an abstract data type and data structure based on the principle of LIFO . Stacks are used extensively at every level of a modern computer system....
s 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
PL/I

PL/I is an imperative programming computer programming programming language designed for scientific, engineering, and business applications. It is one of the most feature-rich programming languages and one of the very first in the highly-feature-rich category....
), just after the Burroughs MCP system written in ALGOL
Algol

Algol , known colloquially as the Demon Star, is a bright star in the constellation Perseus . It is one of the best known eclipsing binary, the first such star to be discovered, and also one of the first variable stars to be discovered....
.

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
Unix

Unix is a computer operating system originally developed in 1969 by a group of American Telephone & Telegraph employees at Bell Labs, including Ken Thompson , Dennis Ritchie, Douglas McIlroy, and Joe Ossanna....
 system. Superficial influence of Multics on Unix is evident in many areas, including the naming of commands. But the design philosophy was quite different, focusing on keeping the system small and simple, and so correcting the perceived deficiencies of Multics. The name "Unix
Unix

Unix is a computer operating system originally developed in 1969 by a group of American Telephone & Telegraph employees at Bell Labs, including Ken Thompson , Dennis Ritchie, Douglas McIlroy, and Joe Ossanna....
" (originally "Unics") is itself a hack
Hack (technology slang)

Hack has several meanings in the technology and computer science fields. It may refer to a clever or quick fix to a computer program problem, or to a clumsy or inelegant solution to a problem....
 on "Multics". The U in UNIX is rumored to stand for "Uniplexed" as opposed to the "Multiplexed" of Multics, further underscoring the designers' rejections of Multics' complexity in favor of a more straightforward and workable approach.

Honeywell
Honeywell

Honeywell is a major United States multinational corporation list of conglomerates company that produces a variety of consumer products, engineering services, and aerospace systems for a wide variety of customers, from private consumers to major corporations and governments....
 bought GE's computer division, released a better hardware base, and continued system development until 1985. About 80 multimillion dollar sites were installed, at universities, industry, and government sites. The French
France

France , officially the French Republic , is a country whose Metropolitan France is located in Western Europe and that also comprises various Overseas departments and territories of France....
 university system had quite a few in the early 1980s. After Honeywell stopped supporting Multics, users migrated to other systems, including Unix. 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
Groupe Bull

Groupe Bull is a France owned computer company headquartered in Les Clayes-sous-Bois, outside Paris. The company has also been known at various times as Bull General Electric, Honeywell Bull, CII Honeywell Bull, and Bull HN....
 in Europe
Europe

Europe is, conventionally, one of the world's seven continents. Comprising the westernmost peninsula of Eurasia, Europe is generally divided from Asia to its east by the water divide of the Ural Mountains, the Ural , the Caspian Sea, and by the Caucasus Mountains to the southeast....
, and by Bull HN Information Systems Inc in the US. In 2006 Bull SAS open source
Open source

Open source is an approach to design, development, and distribution offering practical accessibility to a product's source . Some consider open source as one of various possible design approaches, while others consider it a critical Strategy element of their business operations....
d Multics versions MR10.2, MR11.0, MR12.0, MR12.1, MR12.2, MR12.3, MR12.4 & MR12.5.

Retrospective observations

The permanently resident kernel of this powerful multiprocessor mainframe computing utility, much derided in its day as being too large and complex, was only 135 kB
Kilobyte

Kilobyte is a unit of Computer data storage equal to either 1,024 bytes or 1,000 bytes , depending on context.It is abbreviated in a number of ways: KB, kB, K and Kbyte....
 of code. The first MIT GE-645 had 512K words of memory (2 MB
Megabyte

Megabyte is a SI prefix-multiple of the unit byte for digital information computer storage or transmission and is equal to 106 bytes....
), a truly enormous amount at the time, and the kernel only used a moderate portion of Multics main memory.

The entire system, including the operating system and the complex PL/I compiler
Compiler

A compiler is a computer program that transforms source code written in a programming language into another computer language . The most common reason for wanting to transform source code is to create an executable program....
, user commands, and subroutine libraries, consisted of about 1500 source modules. These averaged roughly 200 lines of source code each, and compiled to produce a total of roughly 4.5 MB of procedure code, which 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
Multi-user

Multi-user is a term that defines an operating system or application software that allows concurrent access by multiple User s of a computer. Time-sharing systems are multi-user systems....
 system with expensive main memory, such as Multics.

See also

  • Fernando J. Corbató
    Fernando J. Corbató

    Fernando Jos? "Corby" Corbat? is a prominent United States computer scientist, notable as a pioneer in the development of time-sharing operating systems....
    , leader of the Multics project while MIT was involved
  • Jerome H. Saltzer
    Jerome H. Saltzer

    Jerome H. Saltzer is a computer scientist who has made many notable contributions....
  • Jack B. Dennis
  • Peter J. Denning
    Peter J. Denning

    Peter J. Denning is an United States computer scientist, and prolific writer. He is best known for inventing the working-set model for computer program behavior, which defeated thrashing in operating systems and became the reference standard for all memory management policies....
  • Robert M. Graham
    Robert M. Graham

    Robert M. Graham is a computer scientist.He was born to a Scotland emigrant.In 1963 he moved to MIT to participate in the development of Multics, and had responsibility for protection, dynamic linking, and other key system kernel areas....
  • Victor A. Vyssotsky
    Victor A. Vyssotsky

    Victor A. Vyssotsky, son of the astronomers Alexander N. Vyssotsky and Emma Vyssotsky is a mathematician and computer scientist. He was one of the team member of Multics project....
  • Louis Pouzin
    Louis Pouzin

    Louis Pouzin, born in Chantenay-Saint-Imbert , France, invented the datagram and designed the first packet communications network, CYCLADES. He also created the first forms of command-line interface....
    , introduced the term shell for the command language used in Multics
  • Peter G. Neumann
    Peter G. Neumann

    Peter G. Neumann is a researcher who has worked on the Multics operating system in the 1960s. He edits the Computer Risks columns for Association for Computing Machinery Software Engineering Notes and Communications of the ACM....
  • Roger R. Schell
    Roger R. Schell

    Dr. Roger R. Schell is President of ?Sec, a company focused on appliances built on hardened platforms for secure, reliable e-business on the Internet....
  • Robert Fano
    Robert Fano

    Robert Mario Fano is an Italy-USA computer scientist, currently professor of Electrical Engineering and Computer Science at Massachusetts Institute of Technology....
    , director of Project MAC at MIT 1963-1968
  • Joseph Licklider, director of Project MAC at MIT 1968-1971


Further reading

The literature contains a large number of papers about Multics, and various components of it; a fairly complete list is available . The most important and/or informative ones are listed below.
  • F. J. Corbató, V. A. Vyssotsky, (AFIPS 1965) is a good introduction to the system..
  • F. J. Corbató, C. T. Clingen, J. H. Saltzer, (AFIPS, 1972) is an excellent review, after a considerable period of use and improvement.


Technical details

  • Jerome H. Saltzer, (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, (AFIPS 1965) describes the basic internal structure of the Multics kernel.
  • Jerome H. Saltzer, (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, (AFIPS, 1965) describes the file system, including the access control and backup mechanisms.
  • R. J. Feiertag, E. I. Organick, . Describes the lower levels of the I/O implementation.
  • A. Bensoussan, C. T. Clingen, R. C. Daley, , (ACM
    Association for Computing Machinery

    The Association for Computing Machinery, or ACM, was founded in 1947 as the world's first scientific and educational computing society. Its membership was approximately 83,000 as of 2007....
     SOSP, 1969) describes the Multics memory system in some detail.
  • Paul Green, [ftp://ftp.stratus.com/pub/vos/multics/pg/mvm.html 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.


Security

  • Paul A. Karger, Roger R. Schell, (Air Force Electronic Systems Division, 1974) describes the classic attacks on Multics security by a "tiger team
    Tiger team

    A tiger team is a specialized group tasked with testing the effectiveness of an organization's ability to protect assets by attempting to circumvent, defeat, or otherwise thwart that organization's internal and external security....
    ".
  • Jerome H. Saltzer, Michael D. Schroeder, (Proceedings of the IEEE, September 1975) describes the fundamentals behind the first round of security upgrades; another classic paper.
  • M. D. Schroeder, D. D. Clark, J. H. Saltzer, D. H. Wells. (MIT LCS, 1978) describes the security upgrades added to produce an even more improved version.
  • Paul A. Karger, Roger R. Schell, (IBM, 2002) is an interesting retrospective which compares actual deployed security in today's hostile environment with what was demonstrated to be possible decades ago. It concludes that Multics offered considerably stronger security than most systems commercially available in 2002.


External links

  • is a great site with a lot of material
    • discusses numerous myths about Multics in some detail, including the myths that it failed, that it was big and slow, as well as a few understandable misapprehensions
  • [ftp://ftp.stratus.com/pub/vos/multics/multics.html Multics repository at Stratus Computer]