blob: a6a282562ab91dea5a694dc8bf26f606bae920a1 [file] [log] [blame]
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +00001/* vi: set sw=4 ts=4: */
2/*
3 * pid file routines
4 *
5 * Copyright (C) 2007 by Stephane Billiart <stephane.billiart@gmail.com>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +00008 */
Denis Vlasenko1caca342007-08-02 10:14:29 +00009
10/* Override ENABLE_FEATURE_PIDFILE */
11#define WANT_PIDFILE 1
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000012#include "libbb.h"
13
Denis Vlasenkobb23c062007-08-15 20:05:37 +000014smallint wrote_pidfile;
15
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000016void FAST_FUNC write_pidfile(const char *path)
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000017{
18 int pid_fd;
19 char *end;
20 char buf[sizeof(int)*3 + 2];
Denis Vlasenkobb23c062007-08-15 20:05:37 +000021 struct stat sb;
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000022
Denis Vlasenko80edead2007-08-02 22:31:05 +000023 if (!path)
Denis Vlasenkobb23c062007-08-15 20:05:37 +000024 return;
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000025 /* we will overwrite stale pidfile */
Denis Vlasenko6a5598c2007-03-27 22:05:34 +000026 pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000027 if (pid_fd < 0)
Denis Vlasenkobb23c062007-08-15 20:05:37 +000028 return;
29
30 /* path can be "/dev/null"! Test for such cases */
31 wrote_pidfile = (fstat(pid_fd, &sb) == 0) && S_ISREG(sb.st_mode);
32
33 if (wrote_pidfile) {
34 /* few bytes larger, but doesn't use stdio */
35 end = utoa_to_buf(getpid(), buf, sizeof(buf));
36 *end = '\n';
37 full_write(pid_fd, buf, end - buf + 1);
38 }
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000039 close(pid_fd);
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000040}
Denys Vlasenko50596532019-03-17 19:47:52 +010041
42void FAST_FUNC write_pidfile_std_path_and_ext(const char *name)
43{
44 char buf[sizeof(CONFIG_PID_FILE_PATH) + 64];
45
46 snprintf(buf, sizeof(buf), CONFIG_PID_FILE_PATH"/%s.pid", name);
47 write_pidfile(buf);
48}
49
50void FAST_FUNC remove_pidfile_std_path_and_ext(const char *name)
51{
52 char buf[sizeof(CONFIG_PID_FILE_PATH) + 64];
53
54 if (!wrote_pidfile)
55 return;
56 snprintf(buf, sizeof(buf), CONFIG_PID_FILE_PATH"/%s.pid", name);
57 unlink(buf);
58}