Daemon (computing): Difference between revisions
Guy Harris (talk | contribs) →Implementation in MS-DOS and Microsoft Windows: Mention, and link to the page for, the Service Control Manager. Make commands fixed-width text. |
→Terminology: edit for internal consistency |
||
Line 10: | Line 10: | ||
The term was coined by the programmers of [[Project MAC|MIT's Project MAC]]. They took the name from [[Maxwell's demon]], an imaginary being from a famous thought experiment that constantly works in the background, sorting molecules.<ref>{{Cite web|url=http://www.takeourword.com/TOW146/page4.html|author=[[Fernando J. Corbató]]|title=Take Our Word for It|date=2002-01-23|accessdate=2006-08-20}}</ref> [[Unix]] systems inherited this terminology. [[Daemon (mythology)|Daemons]] are also characters in Greek mythology, some of whom handled tasks that the gods could not be bothered with. [[Berkeley Software Distribution|BSD]] and some of its derivatives have adopted a daemon as its [[BSD Daemon|mascot]], although this mascot is a variation of the [[demon]]s that appear in [[Christian]] artwork. |
The term was coined by the programmers of [[Project MAC|MIT's Project MAC]]. They took the name from [[Maxwell's demon]], an imaginary being from a famous thought experiment that constantly works in the background, sorting molecules.<ref>{{Cite web|url=http://www.takeourword.com/TOW146/page4.html|author=[[Fernando J. Corbató]]|title=Take Our Word for It|date=2002-01-23|accessdate=2006-08-20}}</ref> [[Unix]] systems inherited this terminology. [[Daemon (mythology)|Daemons]] are also characters in Greek mythology, some of whom handled tasks that the gods could not be bothered with. [[Berkeley Software Distribution|BSD]] and some of its derivatives have adopted a daemon as its [[BSD Daemon|mascot]], although this mascot is a variation of the [[demon]]s that appear in [[Christian]] artwork. |
||
The word ''daemon'' is an alternative spelling of ''demon,''<ref>{{Cite web|url=http://www.merriam-webster.com/dictionary/daemon|title=Merriam-Webster definition of daemon|accessdate=2009-08-05| work=Merriam-Webster Online}}</ref> and is pronounced {{IPAc-en|ˈ|d|iː|m|ən}} {{respell|DEE|mən}}. In the context of computer software, the original pronunciation {{IPAc-en|ˈ|d|iː|m|ən}} has drifted to {{IPAc-en|ˈ|d|eɪ|m|ən}} {{respell|DAY|mən}} |
The word ''daemon'' is an alternative spelling of ''demon,''<ref>{{Cite web|url=http://www.merriam-webster.com/dictionary/daemon|title=Merriam-Webster definition of daemon|accessdate=2009-08-05| work=Merriam-Webster Online}}</ref> and is pronounced {{IPAc-en|ˈ|d|iː|m|ən}} {{respell|DEE|mən}}. In the context of computer software, the original pronunciation {{IPAc-en|ˈ|d|iː|m|ən}} has drifted to {{IPAc-en|ˈ|d|eɪ|m|ən}} {{respell|DAY|mən}} by some, ignorant of the word's provenance.<ref name="jargon"/> |
||
==Creation== |
==Creation== |
Revision as of 15:37, 4 January 2012
In Unix and other multitasking computer operating systems, a daemon (/[invalid input: 'icon']ˈdeɪmən/ or /ˈdiːmən/)[1] is a computer program that runs as a background process, rather than being under the direct control of an interactive user. Typically daemon names end with the letter d: for example, syslogd is the daemon that implements the system logging facility, or sshd, which services incoming SSH connections.
In a Unix environment, the parent process of a daemon is often, but not always, the init process. Processes usually become daemons by forking a child process and then having their parent process immediately exit, thus causing init to adopt the child process. In addition, a daemon or the operating system typically must perform other operations, such as dissociating the process from any controlling terminal (tty). Such procedures are often implemented in various convenience routines such as daemon(3) in Unix.
Systems often start daemons at boot time: they often serve the function of responding to network requests, hardware activity, or other programs by performing some task. Daemons can also configure hardware (like udevd on some GNU/Linux systems), run scheduled tasks (like cron), and perform a variety of other tasks.
Terminology
The term was coined by the programmers of MIT's Project MAC. They took the name from Maxwell's demon, an imaginary being from a famous thought experiment that constantly works in the background, sorting molecules.[2] Unix systems inherited this terminology. Daemons are also characters in Greek mythology, some of whom handled tasks that the gods could not be bothered with. BSD and some of its derivatives have adopted a daemon as its mascot, although this mascot is a variation of the demons that appear in Christian artwork.
The word daemon is an alternative spelling of demon,[3] and is pronounced /ˈdiːmən/ DEE-mən. In the context of computer software, the original pronunciation /ˈdiːmən/ has drifted to /ˈdeɪmən/ DAY-mən by some, ignorant of the word's provenance.[1]
Creation
In a strictly technical sense, a Unix-like system process is a daemon when its parent process terminates and the daemon is assigned the init process (process number 1) as its parent process and has no controlling terminal. However, more commonly, a daemon may be any background process, whether a child of init or not.
The common method for a process to become a daemon involves:
- Dissociating from the controlling tty
- Becoming a session leader
- Becoming a process group leader
- Executing as a background task by forking and exiting (once or twice). This is required sometimes for the process to become a session leader. It also allows the parent process to continue its normal execution.
- Setting the root directory ("/") as the current working directory so that the process does not keep any directory in use that may be on a mounted file system (allowing it to be unmounted).
- Changing the umask to 0 to allow open(), creat(), et al. operating system calls to provide their own permission masks and not to depend on the umask of the caller
- Closing all inherited files at the time of execution that are left open by the parent process, including file descriptors 0, 1 and 2 (stdin, stdout, stderr). Required files will be opened later.
- Using a logfile, the console, or /dev/null as stdin, stdout, and stderr
Implementation in MS-DOS and Microsoft Windows
In the Microsoft DOS environment, daemon-like programs were implemented as Terminate and Stay Resident (TSR) software. On Microsoft Windows NT systems, programs called Windows services perform the functions of daemons. They run as processes, usually do not interact with the monitor, keyboard, and mouse, and may be launched by the operating system at boot time. In Windows 2000 and later versions, Windows services are configured and manually started and stopped using the Control Panel, a dedicated control/configuration program, the Service Controller component of the Service Control Manager (sc command), or the net start and net stop commands.
However, any Windows application can perform the role of a daemon, not just a service, and some daemons for Windows have the option of running as a normal process.
Implementation in Mac OS
On the original Mac OS, optional features and services were provided by files loaded at startup time that patched the operating system; these were known as system extensions and control panels. Later versions of classic Mac OS augmented these with fully fledged faceless background applications: regular applications that ran in the background. To the user, these were still described as regular system extensions.
Mac OS X, which is a Unix-like system, has daemons. There is a category of software called services as well, but these are different in concept from Windows services.
Etymology
According to Fernando J. Corbato who worked on Project MAC in 1963 his team is the first to use the term daemon. The use of the term daemon was inspired by Maxwell's demon, an imaginary agent in physics and thermodynamics that helped to sort molecules.[5]
We fancifully began to use the word daemon to describe background processes which worked tirelessly to perform system chores.
In the general sense, daemon is an older form of the word demon, from the Greek δαίμων. In the Unix System Administration Handbook, Evi Nemeth states the following about daemons:[6]
Many people equate the word "daemon" with the word "demon", implying some kind of satanic connection between UNIX and the underworld. This is an egregious misunderstanding. "Daemon" is actually a much older form of "demon"; daemons have no particular bias towards good or evil, but rather serve to help define a person's character or personality. The ancient Greeks' concept of a "personal daemon" was similar to the modern concept of a "guardian angel"—eudaemonia is the state of being helped or protected by a kindly spirit. As a rule, UNIX systems seem to be infested with both daemons and demons. (p.403)
A further characterization of the mythological symbolism is that a daemon is something which is not visible yet is always present and working its will. Plato's Socrates describes his own personal daemon to be something like the modern concept of a moral conscience:
"The favour of the gods has given me a marvelous gift, which has never left me since my childhood. It is a voice which, when it makes itself heard, deters me from what I am about to do and never urges me on."
Notable service daemons in Unix-like systems
This article may contain unverified or indiscriminate information in embedded lists. (September 2010) |
- amd: Berkeley Automounter
- anacron: Executed delayed cron tasks at boot time
- apmd: Advanced Power Management Daemon
- arpwatch: watches for Ethernet IP address pairings that are resolved using the ARP protocol
- atd: Runs jobs queued using the at tool
- biod: Cooperates with a remote nfsd to handle client Network File System requests
- bootparmd: Internet Bootstrap Protocol server daemon
- configd: A daemon that maintains dynamic configuration information about the computer and its environment (mainly the network)
- crond: Task scheduler daemon
- cupsd: CUPS printer daemon
- devfsd: Device file system (devfs)
- dhcpd: Dynamic Host Configuration Protocol and Internet Bootstrap Protocol server
- fetchmail: daemon to retrieve mail from servers at regular intervals
- fingerd: Finger protocol server
- ftpd: File Transfer Protocol (FTP) server
- gated: routing daemon that handles multiple routing protocols and replaces routed and egpup
- gpm: General Purpose Mouse Daemon
- httpd: Hypertext Transfer Protocol (HTTP) daemon (web server)
- identd: Provides the identity of a user of a particular TCP connection
- inetd: Internet Superserver Daemon
- init: Initial process that spawns other processes
- imapd: Internet Message Access Protocol (IMAP) server daemon
- innd: InterNetNews server daemon
- ipchains: A deprecated packet forwarding and firewall daemon
- isdn: Integrated Services Digital Network (ISDN) interfacing server daemon
- kerneld: Automatically loads and unloads kernel modules
- klogd: Kernel log daemon (intercepts and logs Linux kernel messages)[8]
- kswapd: Kernel page swapping daemon
- kudzu: Detects and configures new or changed hardware during boot
- launchd: Init and operating system service management implementation on Mac OS X
- lpd: Line Printer Daemon protocol
- memcached: In-memory distributed memory caching daemon
- mpd: Music Player Daemon
- mountd: Part of typical Network File System implementation
- mysql: Database server daemon
- named: A Domain Name System (DNS) server daemon
- nfsd: Network File System (NFS) daemon
- nmbd: Network Message Block Daemon; part of Samba
- ntpd: Network Time Protocol (NTP) service daemon
- pcmcia: Provides generic PCMCIA services
- portmap
- postfix: A mail transfer agent used as a replacement for sendmail
- postgresql: Database server daemon
- retchmail: A mail retrieval agent
- rlprd: Remote line printer proxy daemon
- routed: Manages routing tables
- rpcbind: Remote Procedure Call Bind Daemon
- rquotad: Remote quota reporting, associated with Network File System
- rwalld: Allows users to write messages on remote terminals using rwall
- rwhod: Maintains the database used by the rwho and ruptime tools
- sched, swapper: Copies process regions to swap space to reclaim physical pages of memory
- sendmail: A mail transfer agent daemon
- smbd: Samba, an Server Message Block (SMB) daemon
- smtpd: Simple Mail Transfer Protocol Daemon
- snmpd: Simple Network Management Protocol Daemon
- sound: A sound server daemon
- squid: A web page caching proxy server daemon
- sshd: Secure Shell Server Daemon
- syncd: Keeps the file systems synchronized with system memory
- syslogd: Syslog daemon
- tcpd: Service wrapper restricts access to inetd based services through hosts.allow and hosts.deny
- telnetd: Telnet server daemon
- vhand: The "page stealing daemon" releases pages of memory for use by other processes
- vsftpd: "Very Secure FTP Daemon"
- webmin: Web based administration server daemon
- xfsd: X font server daemon
- xinetd: Enhanced Internet Superserver Daemon
- ypbind: A bind server for Network Information Service ("Yellow Pages")
See also
- List of computer term etymologies
- Mailer Daemon (bounce message)
- Server
- Service Wrapper
- Terminate and Stay Resident
- User space
- Windows service
- Web service
References
- ^ a b Eric S. Raymond. "daemon". The Jargon File. Retrieved 2008-10-22.
- ^ Fernando J. Corbató (2002-01-23). "Take Our Word for It". Retrieved 2006-08-20.
- ^ "Merriam-Webster definition of daemon". Merriam-Webster Online. Retrieved 2009-08-05.
- ^ Amazon.com, Book cover image, ISBN 0-201-06196-1
- ^ "The Origin of the word Daemon".
- ^ "The BSD Daemon". Freebsd.org. Retrieved 2008-11-15.
- ^ There is some doubt as to whether "Theages" was genuinely authored by Plato but this passage accurately articulates the Greek conception of a daemon.
- ^ http://unixhelp.ed.ac.uk/CGI/man-cgi?klogd+8