2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as
9 published by the Free Software Foundation; either version 2.1 of the
10 License, or (at your option) any later version.
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
30 #include <sys/types.h>
42 #include <pulse/xmalloc.h>
44 #include <pulsecore/core-error.h>
45 #include <pulsecore/core-util.h>
46 #include <pulsecore/log.h>
47 #include <pulsecore/macro.h>
51 /* Read the PID data from the file descriptor fd, and return it. If no
52 * pid could be read, return 0, on failure (pid_t) -1 */
53 static pid_t
read_pid(const char *fn
, int fd
) {
61 if ((r
= pa_loop_read(fd
, t
, sizeof(t
)-1, NULL
)) < 0) {
62 pa_log_warn("Failed to read PID file '%s': %s", fn
, pa_cstrerror(errno
));
70 if ((e
= strchr(t
, '\n')))
73 if (pa_atou(t
, &pid
) < 0) {
74 pa_log_warn("Failed to parse PID file '%s'", fn
);
82 static int open_pid_file(const char *fn
, int mode
) {
90 if ((fd
= pa_open_cloexec(fn
, mode
96 if (mode
!= O_RDONLY
|| errno
!= ENOENT
)
97 pa_log_warn("Failed to open PID file '%s': %s", fn
, pa_cstrerror(errno
));
101 /* Try to lock the file. If that fails, go without */
102 if (pa_lock_fd(fd
, 1) < 0)
105 if (fstat(fd
, &st
) < 0) {
106 pa_log_warn("Failed to fstat() PID file '%s': %s", fn
, pa_cstrerror(errno
));
110 /* Does the file still exist in the file system? When yes, we're done, otherwise restart */
111 if (st
.st_nlink
>= 1)
114 if (pa_lock_fd(fd
, 0) < 0)
117 if (pa_close(fd
) < 0) {
118 pa_log_warn("Failed to close file '%s': %s", fn
, pa_cstrerror(errno
));
129 int saved_errno
= errno
;
138 static int proc_name_ours(pid_t pid
, const char *procname
) {
143 pa_snprintf(bn
, sizeof(bn
), "/proc/%lu/stat", (unsigned long) pid
);
145 if (!(f
= pa_fopen_cloexec(bn
, "r"))) {
146 pa_log_info("Failed to open %s: %s", bn
, pa_cstrerror(errno
));
153 if (!(fgets(stored
, sizeof(stored
), f
))) {
154 int saved_errno
= feof(f
) ? EINVAL
: errno
;
155 pa_log_info("Failed to read from %s: %s", bn
, feof(f
) ? "EOF" : pa_cstrerror(errno
));
164 expected
= pa_sprintf_malloc("%lu (%s)", (unsigned long) pid
, procname
);
165 good
= pa_startswith(stored
, expected
);
168 /*#if !defined(__OPTIMIZE__)*/
170 /* libtool likes to rename our binary names ... */
171 expected
= pa_sprintf_malloc("%lu (lt-%s)", (unsigned long) pid
, procname
);
172 good
= pa_startswith(stored
, expected
);
186 /* Create a new PID file for the current process. */
187 int pa_pid_file_create(const char *procname
) {
199 if (!(fn
= pa_runtime_path("pid")))
202 if ((fd
= open_pid_file(fn
, O_CREAT
|O_RDWR
)) < 0)
205 if ((pid
= read_pid(fn
, fd
)) == (pid_t
) -1)
206 pa_log_warn("Corrupt PID file, overwriting.");
211 if ((process
= OpenProcess(PROCESS_QUERY_INFORMATION
, FALSE
, pid
)) != NULL
) {
212 CloseHandle(process
);
214 if (kill(pid
, 0) >= 0 || errno
!= ESRCH
) {
218 if ((ours
= proc_name_ours(pid
, procname
)) < 0) {
219 pa_log_warn("Could not check to see if pid %lu is a pulseaudio process. "
220 "Assuming it is and the daemon is already running.", (unsigned long) pid
);
225 pa_log("Daemon already running.");
231 pa_log_warn("Stale PID file, overwriting.");
234 /* Overwrite the current PID file */
235 if (lseek(fd
, (off_t
) 0, SEEK_SET
) == (off_t
) -1 || ftruncate(fd
, (off_t
) 0) < 0) {
236 pa_log("Failed to truncate PID file '%s': %s", fn
, pa_cstrerror(errno
));
240 pa_snprintf(t
, sizeof(t
), "%lu\n", (unsigned long) getpid());
243 if (pa_loop_write(fd
, t
, l
, NULL
) != (ssize_t
) l
) {
244 pa_log("Failed to write PID file.");
254 if (pa_close(fd
) < 0) {
255 pa_log("Failed to close PID file '%s': %s", fn
, pa_cstrerror(errno
));
265 /* Remove the PID file, if it is ours */
266 int pa_pid_file_remove(void) {
272 if (!(fn
= pa_runtime_path("pid")))
275 if ((fd
= open_pid_file(fn
, O_RDWR
)) < 0) {
276 pa_log_warn("Failed to open PID file '%s': %s", fn
, pa_cstrerror(errno
));
280 if ((pid
= read_pid(fn
, fd
)) == (pid_t
) -1)
283 if (pid
!= getpid()) {
284 pa_log("PID file '%s' not mine!", fn
);
288 if (ftruncate(fd
, (off_t
) 0) < 0) {
289 pa_log_warn("Failed to truncate PID file '%s': %s", fn
, pa_cstrerror(errno
));
299 if (unlink(fn
) < 0) {
300 pa_log_warn("Failed to remove PID file '%s': %s", fn
, pa_cstrerror(errno
));
311 if (pa_close(fd
) < 0) {
312 pa_log_warn("Failed to close PID file '%s': %s", fn
, pa_cstrerror(errno
));
322 /* Check whether the daemon is currently running, i.e. if a PID file
323 * exists and the PID therein too. Returns 0 on succcess, -1
324 * otherwise. If pid is non-NULL and a running daemon was found,
325 * return its PID therein */
326 int pa_pid_file_check_running(pid_t
*pid
, const char *procname
) {
327 return pa_pid_file_kill(0, pid
, procname
);
332 /* Kill a current running daemon. Return non-zero on success, -1
333 * otherwise. If successful *pid contains the PID of the daemon
335 int pa_pid_file_kill(int sig
, pid_t
*pid
, const char *procname
) {
347 if (!(fn
= pa_runtime_path("pid")))
350 if ((fd
= open_pid_file(fn
, O_RDONLY
)) < 0) {
358 if ((*pid
= read_pid(fn
, fd
)) == (pid_t
) -1)
364 if ((ours
= proc_name_ours(*pid
, procname
)) < 0)
373 ret
= kill(*pid
, sig
);
378 int saved_errno
= errno
;
394 #else /* OS_IS_WIN32 */
396 int pa_pid_file_kill(int sig
, pid_t
*pid
, const char *exe_name
) {