go-daemon/c-daemon/daemon/daemon.c

77 lines
1.4 KiB
C
Raw Normal View History

2023-07-26 13:52:50 +03:00
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/fs.h>
#include <linux/limits.h>
#define NR_OPEN 1024
2023-07-26 15:29:40 +03:00
void logg(int num){
printf("You are in: %d\n",num);
}
2023-07-26 13:52:50 +03:00
int _daemon(int nochdir, int noclose){
pid_t pid, sid;
// pid_t defined in sys/types.h
// pid_t is a signed int data type
2023-07-26 15:29:40 +03:00
logg(1);
2023-07-26 13:52:50 +03:00
pid = fork(); // fork of the parent process
// fork() function defined in unistd.h
2023-07-26 15:29:40 +03:00
logg(2);
2023-07-26 13:52:50 +03:00
if (pid < 0){
2023-07-26 15:29:40 +03:00
logg(3);
2023-07-26 13:52:50 +03:00
exit(EXIT_FAILURE); // exit and EXIT_FAILURE defined in stdlib.h
}
else if (pid > 0){
2023-07-26 15:29:40 +03:00
logg(4);
2023-07-26 13:52:50 +03:00
exit(EXIT_SUCCESS);
}
2023-07-26 15:29:40 +03:00
logg(5);
sid = setsid();
logg(8);
if (sid < 0) {
logg(9);
exit(EXIT_FAILURE);
}
logg(10);
if ((chdir("/")) < 0) {
logg(11);
exit(EXIT_FAILURE);
}
// logg(11);
2023-07-26 13:52:50 +03:00
// if (!noclose) {
2023-07-26 15:29:40 +03:00
// logg(12);
2023-07-26 13:52:50 +03:00
// for (int i = 0; i < NR_OPEN; i++)
// close(i);
2023-07-26 15:29:40 +03:00
// logg(13);
2023-07-26 13:52:50 +03:00
// open("/dev/null", O_RDWR);
2023-07-26 15:29:40 +03:00
// logg(14);
2023-07-26 13:52:50 +03:00
// dup(0);
2023-07-26 15:29:40 +03:00
// logg(15);
2023-07-26 13:52:50 +03:00
// dup(0);
2023-07-26 15:29:40 +03:00
// logg(16);
2023-07-26 13:52:50 +03:00
// }
// close(STDOUT_FILENO);
// close(STDERR_FILENO);
while (1) {
2023-07-26 15:29:40 +03:00
logg(6);
2023-07-26 14:16:15 +03:00
int status = system("./info");
2023-07-26 13:52:50 +03:00
// TODO SECURITY ISSUE
// LINK https://stackoverflow.com/questions/5237482/how-do-i-execute-an-external-program-within-c-code-in-linux-with-arguments#
sleep(1);
}
2023-07-26 15:29:40 +03:00
logg(7);
2023-07-26 13:52:50 +03:00
exit(EXIT_SUCCESS);
}