[206] | 1 | /* this code is broken - there is a race condition with the unlink (tridge) */
|
---|
| 2 |
|
---|
| 3 | /*
|
---|
| 4 | Unix SMB/CIFS implementation.
|
---|
| 5 | pidfile handling
|
---|
| 6 | Copyright (C) Andrew Tridgell 1998
|
---|
| 7 |
|
---|
| 8 | This program is free software; you can redistribute it and/or modify
|
---|
| 9 | it under the terms of the GNU General Public License as published by
|
---|
| 10 | the Free Software Foundation; either version 3 of the License, or
|
---|
| 11 | (at your option) any later version.
|
---|
| 12 |
|
---|
| 13 | This program is distributed in the hope that it will be useful,
|
---|
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 16 | GNU General Public License for more details.
|
---|
| 17 |
|
---|
| 18 | You should have received a copy of the GNU General Public License
|
---|
| 19 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 20 | */
|
---|
| 21 |
|
---|
| 22 | #include "includes.h"
|
---|
| 23 |
|
---|
| 24 | #ifndef O_NONBLOCK
|
---|
| 25 | #define O_NONBLOCK
|
---|
| 26 | #endif
|
---|
| 27 |
|
---|
| 28 | /* return the pid in a pidfile. return 0 if the process (or pidfile)
|
---|
| 29 | does not exist */
|
---|
| 30 | pid_t pidfile_pid(const char *name)
|
---|
| 31 | {
|
---|
| 32 | int fd;
|
---|
| 33 | char pidstr[20];
|
---|
| 34 | pid_t pid;
|
---|
| 35 | unsigned int ret;
|
---|
| 36 | char * pidFile;
|
---|
| 37 |
|
---|
| 38 | if (asprintf(&pidFile, "%s/%s.pid", lp_piddir(), name) == -1) {
|
---|
| 39 | return 0;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | fd = sys_open(pidFile, O_NONBLOCK | O_RDONLY, 0644);
|
---|
| 43 | if (fd == -1) {
|
---|
| 44 | SAFE_FREE(pidFile);
|
---|
| 45 | return 0;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | ZERO_ARRAY(pidstr);
|
---|
| 49 |
|
---|
| 50 | if (read(fd, pidstr, sizeof(pidstr)-1) <= 0) {
|
---|
| 51 | goto noproc;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | ret = atoi(pidstr);
|
---|
| 55 | if (ret == 0) {
|
---|
| 56 | /* Obviously we had some garbage in the pidfile... */
|
---|
| 57 | DEBUG(1, ("Could not parse contents of pidfile %s\n",
|
---|
| 58 | pidFile));
|
---|
| 59 | goto noproc;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | pid = (pid_t)ret;
|
---|
| 63 | if (!process_exists_by_pid(pid)) {
|
---|
| 64 | goto noproc;
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | #ifndef __OS2__
|
---|
| 68 | /* if we lock the file, we won't be able to read it later on OS/2 */
|
---|
| 69 | if (fcntl_lock(fd,SMB_F_SETLK,0,1,F_RDLCK)) {
|
---|
| 70 | /* we could get the lock - it can't be a Samba process */
|
---|
| 71 | goto noproc;
|
---|
| 72 | }
|
---|
| 73 | #endif
|
---|
| 74 |
|
---|
| 75 | SAFE_FREE(pidFile);
|
---|
| 76 | close(fd);
|
---|
| 77 | return (pid_t)ret;
|
---|
| 78 |
|
---|
| 79 | noproc:
|
---|
| 80 | close(fd);
|
---|
| 81 | unlink(pidFile);
|
---|
| 82 | SAFE_FREE(pidFile);
|
---|
| 83 | return 0;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | /* create a pid file in the pid directory. open it and leave it locked */
|
---|
| 87 | void pidfile_create(const char *program_name)
|
---|
| 88 | {
|
---|
| 89 | int fd;
|
---|
| 90 | char buf[20];
|
---|
| 91 | const char *short_configfile;
|
---|
| 92 | char *name;
|
---|
| 93 | char *pidFile;
|
---|
| 94 | pid_t pid;
|
---|
| 95 |
|
---|
| 96 | /* Add a suffix to the program name if this is a process with a
|
---|
| 97 | * none default configuration file name. */
|
---|
[265] | 98 |
|
---|
| 99 | /* On OS/2, CONFIGFILE will always be different to dyn_CONFIGFILE
|
---|
| 100 | as dyn_CONFIGFILE dynamically looks up the system ETC directory */
|
---|
| 101 | #ifndef __OS2__
|
---|
[206] | 102 | if (strcmp( CONFIGFILE, get_dyn_CONFIGFILE()) == 0) {
|
---|
| 103 | name = SMB_STRDUP(program_name);
|
---|
| 104 | } else {
|
---|
| 105 | short_configfile = strrchr( get_dyn_CONFIGFILE(), '/');
|
---|
| 106 | if (short_configfile == NULL) {
|
---|
| 107 | /* conf file in current directory */
|
---|
| 108 | short_configfile = get_dyn_CONFIGFILE();
|
---|
| 109 | } else {
|
---|
| 110 | /* full/relative path provided */
|
---|
| 111 | short_configfile++;
|
---|
| 112 | }
|
---|
| 113 | if (asprintf(&name, "%s-%s", program_name,
|
---|
| 114 | short_configfile) == -1) {
|
---|
| 115 | smb_panic("asprintf failed");
|
---|
| 116 | }
|
---|
| 117 | }
|
---|
[265] | 118 | #else
|
---|
| 119 | name = SMB_STRDUP(program_name);
|
---|
| 120 | #endif
|
---|
[206] | 121 | if (asprintf(&pidFile, "%s/%s.pid", lp_piddir(), name) == -1) {
|
---|
| 122 | smb_panic("asprintf failed");
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | pid = pidfile_pid(name);
|
---|
| 126 | if (pid != 0) {
|
---|
| 127 | DEBUG(0,("ERROR: %s is already running. File %s exists and process id %d is running.\n",
|
---|
| 128 | name, pidFile, (int)pid));
|
---|
| 129 | exit(1);
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | fd = sys_open(pidFile, O_NONBLOCK | O_CREAT | O_WRONLY | O_EXCL, 0644);
|
---|
| 133 | if (fd == -1) {
|
---|
| 134 | DEBUG(0,("ERROR: can't open %s: Error was %s\n", pidFile,
|
---|
| 135 | strerror(errno)));
|
---|
| 136 | exit(1);
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | if (fcntl_lock(fd,SMB_F_SETLK,0,1,F_WRLCK)==False) {
|
---|
| 140 | DEBUG(0,("ERROR: %s : fcntl lock of file %s failed. Error was %s\n",
|
---|
| 141 | name, pidFile, strerror(errno)));
|
---|
| 142 | exit(1);
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 | memset(buf, 0, sizeof(buf));
|
---|
| 146 | slprintf(buf, sizeof(buf) - 1, "%u\n", (unsigned int) sys_getpid());
|
---|
| 147 | if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) {
|
---|
| 148 | DEBUG(0,("ERROR: can't write to file %s: %s\n",
|
---|
| 149 | pidFile, strerror(errno)));
|
---|
| 150 | exit(1);
|
---|
| 151 | }
|
---|
| 152 | #ifndef __OS2__
|
---|
| 153 | /* Leave pid file open & locked for the duration... */
|
---|
| 154 | #else
|
---|
| 155 | /* If we leave the file open & locked on OS/2 - we can't read it, so close the fd */
|
---|
| 156 | close(fd);
|
---|
| 157 | #endif
|
---|
| 158 | SAFE_FREE(name);
|
---|
| 159 | SAFE_FREE(pidFile);
|
---|
| 160 | }
|
---|