64e67c322013d81d0304bb411b6829796f3dacea
[oweals/busybox.git] / libbb / pidfile.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * pid file routines
4  *
5  * Copyright (C) 2007 by Stephane Billiart <stephane.billiart@gmail.com>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 /* Override ENABLE_FEATURE_PIDFILE */
11 #define WANT_PIDFILE 1
12 #include "libbb.h"
13
14 int write_pidfile(const char *path)
15 {
16         int pid_fd;
17         char *end;
18         char buf[sizeof(int)*3 + 2];
19
20         if (!path)
21                 return 1;
22         /* we will overwrite stale pidfile */
23         pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
24         if (pid_fd < 0)
25                 return 0;
26         /* few bytes larger, but doesn't use stdio */
27         end = utoa_to_buf(getpid(), buf, sizeof(buf));
28         *end = '\n';
29         full_write(pid_fd, buf, end - buf + 1);
30         close(pid_fd);
31         return 1;
32 }