From 93815bc280744c05abab9501eeb53edd01190e1b Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 19 Mar 2007 15:58:31 +0000 Subject: [PATCH] Improve -pidfile option, by Anthony Liguori. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2506 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 81 +++++++++++++++++++++++++++++++------------------------------------- 1 file changed, 37 insertions(+), 44 deletions(-) diff --git a/vl.c b/vl.c index 8667785..e77ed41 100644 --- a/vl.c +++ b/vl.c @@ -4387,44 +4387,24 @@ void usb_info(void) } } -/***********************************************************/ -/* pid file */ - -static char *pid_filename; +static int create_pidfile(const char *filename) +{ + int fd; + char buffer[128]; + int len; -/* Remove PID file. Called on normal exit */ + fd = open(filename, O_RDWR | O_CREAT, 0600); + if (fd == -1) + return -1; -static void remove_pidfile(void) -{ - unlink (pid_filename); -} + if (lockf(fd, F_TLOCK, 0) == -1) + return -1; -static void create_pidfile(const char *filename) -{ - struct stat pidstat; - FILE *f; + len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid()); + if (write(fd, buffer, len) != len) + return -1; - /* Try to write our PID to the named file */ - if (stat(filename, &pidstat) < 0) { - if (errno == ENOENT) { - if ((f = fopen (filename, "w")) == NULL) { - perror("Opening pidfile"); - exit(1); - } - fprintf(f, "%d\n", getpid()); - fclose(f); - pid_filename = qemu_strdup(filename); - if (!pid_filename) { - fprintf(stderr, "Could not save PID filename"); - exit(1); - } - atexit(remove_pidfile); - } - } else { - fprintf(stderr, "%s already exists. Remove it and try again.\n", - filename); - exit(1); - } + return 0; } /***********************************************************/ @@ -6880,6 +6860,7 @@ int main(int argc, char **argv) char usb_devices[MAX_USB_CMDLINE][128]; int usb_devices_index; int fds[2]; + const char *pid_file = NULL; LIST_INIT (&vm_change_state_head); #ifndef _WIN32 @@ -7285,7 +7266,7 @@ int main(int argc, char **argv) break; #endif case QEMU_OPTION_pidfile: - create_pidfile(optarg); + pid_file = optarg; break; #ifdef TARGET_I386 case QEMU_OPTION_win2k_hack: @@ -7371,16 +7352,19 @@ int main(int argc, char **argv) close(fds[1]); again: - len = read(fds[0], &status, 1); - if (len == -1 && (errno == EINTR)) - goto again; - - if (len != 1 || status != 0) - exit(1); - else - exit(0); + len = read(fds[0], &status, 1); + if (len == -1 && (errno == EINTR)) + goto again; + + if (len != 1) + exit(1); + else if (status == 1) { + fprintf(stderr, "Could not acquire pidfile\n"); + exit(1); + } else + exit(0); } else if (pid < 0) - exit(1); + exit(1); setsid(); @@ -7399,6 +7383,15 @@ int main(int argc, char **argv) } #endif + if (pid_file && create_pidfile(pid_file) != 0) { + if (daemonize) { + uint8_t status = 1; + write(fds[1], &status, 1); + } else + fprintf(stderr, "Could not acquire pid file\n"); + exit(1); + } + #ifdef USE_KQEMU if (smp_cpus > 1) kqemu_allowed = 0; -- 2.7.4