-
Notifications
You must be signed in to change notification settings - Fork 0
/
memlog2d.c
94 lines (78 loc) · 2.11 KB
/
memlog2d.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#define MAXLINE 250 //used for /proc/* reading
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <syslog.h>
static void skeleton_daemon()
{
pid_t pid;
/* Fork off the parent process */
pid = fork();
/* An error occurred */
if (pid < 0)
exit(EXIT_FAILURE);
/* Success: Let the parent terminate */
if (pid > 0)
exit(EXIT_SUCCESS);
/* On success: The child process becomes session leader */
if (setsid() < 0)
exit(EXIT_FAILURE);
/* Catch, ignore and handle signals */
//TODO: Implement a working signal handler */
signal(SIGCHLD, SIG_IGN);
signal(SIGHUP, SIG_IGN);
/* Fork off for the second time*/
pid = fork();
/* An error occurred */
if (pid < 0)
exit(EXIT_FAILURE);
/* Success: Let the parent terminate */
if (pid > 0)
exit(EXIT_SUCCESS);
/* Set new file permissions */
umask(0);
/* Change the working directory to the root directory */
/* or another appropriated directory */
chdir("/");
/* Close all open file descriptors */
int x;
for (x = sysconf(_SC_OPEN_MAX); x>=0; x--)
{
close (x);
}
/* Open the log file */
openlog ("memlog2d", LOG_PID, LOG_DAEMON);
}
int main()
{
skeleton_daemon();
while (1)
{
FILE *meminfo = fopen("/proc/meminfo", "r");
FILE *output = fopen("/var/log/memtestlog", "a");
if (meminfo == NULL || output == NULL) {
syslog(LOG_NOTICE, "memlog2d failed :(");
break;
}
char buffer[MAXLINE];
int memvalues[3];
for (int i = 0; i < 3; ++i) {
fgets(buffer, MAXLINE, meminfo);
sscanf(buffer, "%d", &memvalues[i]);
// fputs(buffer, output);
}
// time, memtotal, memfree
sprintf (buffer, "%d;%d;%d", memvalues[0], memvalues[1], memvalues[2]);
fputs(buffer, output);
fclose(meminfo);
fclose(output);
syslog (LOG_NOTICE, "memlog2d started.");
sleep (1); //delay 60s
}
syslog (LOG_NOTICE, "memlog2d terminated.");
closelog();
return EXIT_SUCCESS;
}