Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to make a process daemon

I am trying to understand how can I make my program a daemon.So some things which I came across are In general, a program performs the following steps to become a daemon:

  1. Call fork( ).
  2. In the parent, call exit( ). This ensures that the original parent (the daemon's grandparent) is satisfied that its child terminated, that the daemon's parent is no longer running, and that the daemon is not a process group leader. This last point is a requirement for the successful completion of the next step.

  3. Call setsid( ), giving the daemon a new process group and session, both of which have it as leader. This also ensures that the process has no associated controlling terminal (as the process just created a new session, and will not assign one).

  4. Change the working directory to the root directory via chdir( ). This is done because the inherited working directory can be anywhere on the filesystem. Daemons tend to run for the duration of the system's uptime, and you don't want to keep some random directory open, and thus prevent an administrator from unmounting the filesystem containing that directory.

  5. Close all file descriptors.

  6. Open file descriptors 0, 1, and 2 (standard in, standard out, and standard error) and redirect them to /dev/null.
#include <sys/types.h> #include <sys/stat.h> #include <stdlib.h> #include <stdio.h> #include <fcntl.h> #include <unistd.h> #include <linux/fs.h>  int main (void) {     pid_t pid;     int i;      /* create new process */     pid = fork ( );       if (pid == -1)           return -1;       else if (pid != 0)           exit (EXIT_SUCCESS);        /* create new session and process group */       if (setsid ( ) == -1)           return -1;        /* set the working directory to the root directory */       if (chdir ("/") == -1)           return -1;        /* close all open files--NR_OPEN is overkill, but works */       for (i = 0; i < NR_OPEN; i++)           close (i);        /* redirect fd's 0,1,2 to /dev/null */       open ("/dev/null", O_RDWR);       /* stdin */       dup (0);       /* stdout */       dup (0);       /* stderror */        /* do its daemon thing... */        return 0;   }

Can some one give me a link to existing source code of some program like Apache so that I can understand this process in more depth.

like image 391
Registered User Avatar asked Mar 21 '11 21:03

Registered User


People also ask

What is daemon process example?

A daemon is a long-running background process that answers requests for services. The term originated with Unix, but most operating systems use daemons in some form or another. In Unix, the names of daemons conventionally end in "d". Some examples include inetd , httpd , nfsd , sshd , named , and lpd .


2 Answers

If you are looking for a clean approach please consider using standard api- int daemon(int nochdir, int noclose);. Man page pretty simple and self explanatory. man page. A well tested api far outweigh our own implementation interms of portability and stability.

like image 126
deadbeef Avatar answered Sep 21 '22 03:09

deadbeef


In Linux, it can be easily done using:

int main(int argc, char* argv[]) {     daemon(0,0);     while(1)     {         sleep(10)         /*do something*/     }      return 0; } 
like image 22
Alok Prasad Avatar answered Sep 20 '22 03:09

Alok Prasad