X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=ustd%2Fustd.c;h=0026c3b12a88816392df29447289d48404656d16;hb=fbca6b624335eef18c8d86194aeb101a720168f4;hp=001977660a6ec0c86d809ce4a0ccb298a638427b;hpb=bce2937acead6988b0f0b84b2b339f1fd8d54122;p=ust.git diff --git a/ustd/ustd.c b/ustd/ustd.c index 0019776..0026c3b 100644 --- a/ustd/ustd.c +++ b/ustd/ustd.c @@ -33,9 +33,8 @@ #include #include "ustd.h" -#include "localerr.h" +#include "usterr.h" #include "ustcomm.h" -#include "share.h" /* return value: 0 = subbuffer is finished, it won't produce data anymore * 1 = got subbuffer successfully @@ -53,6 +52,7 @@ char *sock_path=NULL; char *trace_path=NULL; int daemon_mode = 0; +char *pidfile = NULL; /* Number of active buffers and the mutex to protect it. */ int active_buffers = 0; @@ -516,6 +516,9 @@ int parse_args(int argc, char **argv) case 'd': daemon_mode = 1; break; + case 'p': + pidfile = strdup(optarg); + break; case 'h': usage(); exit(0); @@ -654,10 +657,11 @@ int start_ustd_daemon() { int result; int fd[2]; + pid_t child_pid; result = pipe(fd); - result = fork(); + result = child_pid = fork(); if(result == -1) { PERROR("fork"); return -1; @@ -667,6 +671,27 @@ int start_ustd_daemon() } else { char buf; + FILE *pidfp; + + /* It's important to write the file *before* + * the parent ends, because the file may be + * read as soon as the parent ends. + */ + if(pidfile) { + pidfp = fopen(pidfile, "w+"); + if(!pidfp) { + PERROR("fopen (%s)", pidfile); + WARN("killing child process"); + result = kill(child_pid, SIGTERM); + if(result == -1) { + PERROR("kill"); + } + return -1; + } + + fprintf(pidfp, "%d\n", child_pid); + fclose(pidfp); + } result = read(fd[0], &buf, 1); if(result == -1) {