Linux daemon writing howto

Source: Internet
Author: User
Tags session id

This document shows how to write a daemon in Linux using gcc. knowledge of Linux and a familiarity with C are necessary to use this document. this howto is copyright by Devin Watson, under the terms of the BSD license.

 

1. Introduction: What is a daemon?

 

2. Getting Started

 

3. planning your daemon
  • 3.1 What is it going to do?
  • 3.2 How much interaction?

 

4. Basic daemon Structure
  • 4.1 forking the parent process
  • 4.2 changing the file mode mask (umask)
  • 4.3 opening logs for writing
  • 4.4 creating a unique session ID (SID)
  • 4.5 changing the working directory
  • 4.6 closing standard file descriptors

 

5. Writing the daemon code
  • 5.1 Initialization
  • 5.2 The Big loop

 

6. putting it all together
  • 6.1 complete sample
1. Introduction: What is a daemon?

A daemon (or service) is a background process that is designed to run autonomously, with little or not user intervention. the Apache Web Server HTTP daemon (httpd) is one such example of a daemon. it waits in the background listening on specific ports, and serves up pages or processes scripts, based on the type of request.

Creating a daemon in Linux uses a specific set of rules in a given order. knowing how they work will help you understand how daemons operate in userland Linux, but can operate with callto the kernel also. in fact, a few daemons interface with kernel modules that work with hardware devices, such as external controller boards, printers, and PDAs. they are one of the fundamental building blocks in Linux that give it incredible flexibility and power.

Throughout this howto, a very simple daemon will be built in C. As we go along, more code will be added, showing the proper order of execution required to get a daemon up and running.

2. Getting Started

First off, you'll need the following packages installed on your Linux machine to develop daemons, specifically:

 

  • GCC 3.2.2 or higher
  • Linux Development headers and libraries

 

If your system does not already have these installed (not likely, but check anyway), you'll need them to develop the examples in this howto. to find out what version of GCC you have installed, use:

 

        gcc --version

 

3. planning your daemon3.1 what is it going to do?

A daemon shoshould do one thing, and do it well. that one thing may be as complex as managing hundreds of mailboxes on multiple domains, or as simple as writing a report and calling Sendmail to mail it out to an admin.

In any case, you shoshould have a good plan going in what the daemon shoshould do. if it is going to interoperate with some other daemons that you may or may not be writing, this is something else to consider as well.

3.2 How much interaction?

Daemons shoshould never have direct communication with a user through a terminal. in fact, a daemon shouldn't communicate directly with a user at all. all communication shocould pass through some sort of Interface (which you may or may not have to write), which can be as complex as a GTK + GUI, or as simple as a signal set.

4. Basic daemon Structure

When a daemon starts up, it has to do some low-level housework to get itself ready for its real job. This involves a few steps:

 

  • Fork off the parent process
  • Change file mode mask (umask)
  • Open any logs for writing
  • Create a unique session ID (SID)
  • Change the current working directory to a safe place
  • Close standard file descriptors
  • Enter actual daemon code

 

4.1 forking the parent process

A daemon is started either by the system itself or a user in a terminal or script. when it does start, the process is just like any other executable on the system. to make it truly autonomous,Child ProcessMust be created where the actual code is executed. This is known as forking, and it usesFork ()Function:

        pid_t pid;        /* Fork off the parent process */               pid = fork();        if (pid < 0) {                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }

 

Notice the error check right after the callFork (). When writing a daemon, you will have to code as defensively as possible. In fact, a good percentage of the total code in a daemon consists of nothing but error checking.

TheFork ()Function returns either the process ID (PID) of the child process (not equal to zero), or-1 on failure. if the process cannot fork a child, then the daemon shoshould terminate right here.

If the PID returned fromFork ()Did succeed, the parent process must exit gracefully. this may seem strange to anyone who hasn't seen it, but by forking, the child process continues the execution from here on out in the Code.

4.2 changing the file mode mask (umask)

In order to write to any files (including logs) created by the daemon, the file mode mask (umask) must be changed to ensure that they can be written to or read from properly. this is similar to running umask from the command line, but we do it programmatically here. we can useUmask ()Function to accomplish this:

 

        pid_t pid, sid;                /* Fork off the parent process */        pid = fork();        if (pid < 0) {                /* Log failure (use syslog if possible) */                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }        /* Change the file mode mask */        umask(0);        

 

By setting the umask to 0, we will have full access to the files generated by the daemon. even if you aren't planning on using any files, it is a good idea to set the umask here anyway, just in case you will be accessing files on the filesystem.

4.3 opening logs for writing

This part is optional, but it is recommended that you open a log file somewhere in the system for writing. This may be the only place you can look for debug information about your daemon.

4.4 creating a unique session ID (SID)

From here, the child process must get a unique sid from the kernel in order to operate. otherwise, the child process becomes an orphan in the system. the pid_t type, declared in the previous section, is also used to create a new Sid for the child process:

        pid_t pid, sid;                /* Fork off the parent process */        pid = fork();        if (pid < 0) {                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }                /* Change the file mode mask */        umask(0);                /* Open any logs here */                /* Create a new SID for the child process */        sid = setsid();        if (sid < 0) {                /* Log any failure */                exit(EXIT_FAILURE);        }

 

Again,Setsid ()Function has the same return typeFork (). We can apply the same error-checking routine here to see if the function created the SID for the child process.

4.5 changing the working directory

The current working directory shocould be changed to some place that is guaranteed to always be there. since into Linux distributions do not completely follow the Linux filesystem Hierarchy Standard, the only directory that is guaranteed to be there is the root (/). we can do this usingChdir ()Function:

 

        pid_t pid, sid;                /* Fork off the parent process */        pid = fork();        if (pid < 0) {                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }        /* Change the file mode mask */        umask(0);                       /* Open any logs here */                                /* Create a new SID for the child process */        sid = setsid();        if (sid < 0) {                /* Log any failure here */                exit(EXIT_FAILURE);        }                /* Change the current working directory */        if ((chdir("/")) < 0) {                /* Log any failure here */                exit(EXIT_FAILURE);        }        

 

Once again, you can see the defensive coding taking place.Chdir ()Function returns-1 on failure, so be sure to check for that after changing to the root directory within the daemon.

4.6 closing standard file descriptors

One of the last steps in setting up a daemon is closing out the standard file descriptors (stdin, stdout, stderr ). since a daemon cannot use the terminal, these file descriptors are redundant and a potential security hazard.

TheClose ()Function can handle this for us:

 

        pid_t pid, sid;                /* Fork off the parent process */        pid = fork();        if (pid < 0) {                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }                /* Change the file mode mask */        umask(0);                       /* Open any logs here */                /* Create a new SID for the child process */        sid = setsid();        if (sid < 0) {                /* Log any failure here */                exit(EXIT_FAILURE);        }                /* Change the current working directory */        if ((chdir("/")) < 0) {                /* Log any failure here */                exit(EXIT_FAILURE);        }                        /* Close out the standard file descriptors */        close(STDIN_FILENO);        close(STDOUT_FILENO);        close(STDERR_FILENO);

 

It's a good idea to stick with the constants defined for the file descriptors, for the greatest portability between system versions.

5. Writing the daemon code5.1 Initialization

At this point, you have basically told Linux that you're a daemon, so now it's time to write the actual daemon code. initialization is the first step here. since there can be a multitude of different functions that can be called here to set up your daemon's task, I won't go too deep into here.

The big point here is that, when initializing anything in a daemon, the same defensive coding guidelines apply here. be as verbose as possible when writing either to the syslog or your own logs. debugging a daemon can be quite difficult when there isn' t enough information available as to the status of the daemon.

5.2 The Big loop

A daemon's main code is typically inside of an infinite loop. Technically, it isn' t an infinite loop, but it is structured as one:

 

        pid_t pid, sid;                /* Fork off the parent process */        pid = fork();        if (pid < 0) {                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }        /* Change the file mode mask */        umask(0);                       /* Open any logs here */                /* Create a new SID for the child process */        sid = setsid();        if (sid < 0) {                /* Log any failures here */                exit(EXIT_FAILURE);        }                        /* Change the current working directory */        if ((chdir("/")) < 0) {                /* Log any failures here */                exit(EXIT_FAILURE);        }                /* Close out the standard file descriptors */        close(STDIN_FILENO);        close(STDOUT_FILENO);        close(STDERR_FILENO);                /* Daemon-specific initialization goes here */                /* The Big Loop */        while (1) {           /* Do some task here ... */           sleep(30); /* wait 30 seconds */        }

 

This typical loop is usuallyWhileLoop that has an infinite terminating condition, with a callSleepIn there to make it run at specified intervals.

Think of it like a heartbeat: When your heart beats, it performs a few tasks, then waits until the next beat takes place. Too daemons follow this same methodology.

6. Putting It All together6.1 complete sample

Listed below is a complete sample daemon that shows all of the steps necessary for setup and execution. to run this, simply compile using gcc, and start execution from the command line. to terminate, useKillCommand after finding its PID.

I 've also put in the correct include statements for interfacing with the syslog, which is recommended at the very least for sending start/stop/pause/die log statements, in addition to using your own logs withFopen ()/Fwrite ()/Fclose ()Function CILS.

 

#include <sys/types.h>#include <sys/stat.h>#include <stdio.h>#include <stdlib.h>#include <fcntl.h>#include <errno.h>#include <unistd.h>#include <syslog.h>#include <string.h>int main(void) {                /* Our process ID and Session ID */        pid_t pid, sid;                /* Fork off the parent process */        pid = fork();        if (pid < 0) {                exit(EXIT_FAILURE);        }        /* If we got a good PID, then           we can exit the parent process. */        if (pid > 0) {                exit(EXIT_SUCCESS);        }        /* Change the file mode mask */        umask(0);                        /* Open any logs here */                                /* Create a new SID for the child process */        sid = setsid();        if (sid < 0) {                /* Log the failure */                exit(EXIT_FAILURE);        }                        /* Change the current working directory */        if ((chdir("/")) < 0) {                /* Log the failure */                exit(EXIT_FAILURE);        }                /* Close out the standard file descriptors */        close(STDIN_FILENO);        close(STDOUT_FILENO);        close(STDERR_FILENO);                /* Daemon-specific initialization goes here */                /* The Big Loop */        while (1) {           /* Do some task here ... */                      sleep(30); /* wait 30 seconds */        }   exit(EXIT_SUCCESS);}

 

From here, you can use this skeleton to write your own daemons. Be sure to add in your own logging (or use the syslog facility), and code defensively, code defensively, code defensively!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.