daemon.c 4.47 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2009 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19 20 21
 */

#include "daemon.h"

22 23
#include <glib.h>

24 25 26 27 28
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
29 30 31 32
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

33 34 35 36 37 38
#ifndef WIN32
#include <signal.h>
#include <pwd.h>
#include <grp.h>
#endif

39 40 41
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "daemon"

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
#ifndef WIN32

/** the Unix user name which MPD runs as */
static char *user_name;

/** the Unix user id which MPD runs as */
static uid_t user_uid;

/** the Unix group id which MPD runs as */
static gid_t user_gid;

/** the absolute path of the pidfile */
static char *pidfile;

#endif

58 59 60 61 62 63 64
void
daemonize_kill(void)
{
#ifndef WIN32
	FILE *fp;
	int pid, ret;

65
	if (pidfile == NULL)
66 67
		g_error("no pid_file specified in the config file");

68
	fp = fopen(pidfile, "r");
69
	if (fp == NULL)
70 71
		g_error("unable to open pid file \"%s\": %s",
			pidfile, g_strerror(errno));
72 73 74

	if (fscanf(fp, "%i", &pid) != 1) {
		g_error("unable to read the pid from file \"%s\"",
75
			pidfile);
76 77 78 79 80 81 82 83 84 85 86 87 88 89
	}
	fclose(fp);

	ret = kill(pid, SIGTERM);
	if (ret < 0)
		g_error("unable to kill proccess %i: %s",
			pid, g_strerror(errno));

	exit(EXIT_SUCCESS);
#else
	g_error("--kill is not available on WIN32");
#endif
}

90 91 92
void
daemonize_close_stdin(void)
{
93
	int fd = open("/dev/null", O_RDONLY);
94

95 96 97 98 99
	if (fd < 0)
		close(STDIN_FILENO);
	else if (fd != STDIN_FILENO) {
		dup2(fd, STDIN_FILENO);
		close(fd);
100 101
	}
}
102

103 104 105 106
void
daemonize_set_user(void)
{
#ifndef WIN32
107 108 109 110 111 112 113 114
	if (user_name == NULL)
		return;

	/* get uid */
	if (setgid(user_gid) == -1) {
		g_error("cannot setgid for user \"%s\": %s",
			user_name, g_strerror(errno));
	}
115
#ifdef _BSD_SOURCE
116 117 118 119 120 121 122 123
	/* init suplementary groups
	 * (must be done before we change our uid)
	 */
	if (initgroups(user_name, user_gid) == -1) {
		g_warning("cannot init supplementary groups "
			  "of user \"%s\": %s",
			  user_name, g_strerror(errno));
	}
124 125
#endif

126 127 128 129
	/* set uid */
	if (setuid(user_uid) == -1) {
		g_error("cannot change to uid of user \"%s\": %s",
			user_name, g_strerror(errno));
130 131 132 133
	}
#endif
}

134
#ifndef G_OS_WIN32
135 136 137 138 139
static void
daemonize_detach(void)
{
	pid_t pid;

140 141
	/* flush all file handles before duplicating the buffers */

142 143
	fflush(NULL);

144 145
	/* detach from parent process */

146
	pid = fork();
147 148 149
	if (pid < 0)
		g_error("fork() failed: %s", g_strerror(errno));

150
	if (pid > 0)
151
		/* exit the parent process */
152 153
		_exit(EXIT_SUCCESS);

154 155
	/* release the current working directory */

156 157 158
	if (chdir("/") < 0)
		g_error("problems changing to root directory");

159 160
	/* detach from the current session */

161 162 163 164
	setsid();

	g_debug("daemonized!");
}
165
#endif
166

167
void
168
daemonize(bool detach)
169 170 171 172
{
#ifndef WIN32
	FILE *fp = NULL;

173
	if (pidfile != NULL) {
174 175 176
		/* do this before daemon'izing so we can fail gracefully if we can't
		 * write to the pid file */
		g_debug("opening pid file");
177
		fp = fopen(pidfile, "w+");
178
		if (!fp) {
179 180
			g_error("could not create pid file \"%s\": %s",
				pidfile, g_strerror(errno));
181 182 183
		}
	}

184 185
	if (detach)
		daemonize_detach();
186

187
	if (pidfile != NULL) {
188 189 190 191 192 193
		g_debug("writing pid file");
		fprintf(fp, "%lu\n", (unsigned long)getpid());
		fclose(fp);
	}
#else
	/* no daemonization on WIN32 */
194
	(void)detach;
195 196
#endif
}
197 198

void
199
daemonize_init(const char *user, const char *_pidfile)
200
{
201
#ifndef WIN32
202 203 204 205 206 207
	if (user != NULL && strcmp(user, g_get_user_name()) != 0) {
		struct passwd *pwd;

		user_name = g_strdup(user);

		pwd = getpwnam(user_name);
208 209 210 211 212
		if (pwd == NULL)
			g_error("no such user \"%s\"", user_name);

		user_uid = pwd->pw_uid;
		user_gid = pwd->pw_gid;
213 214 215

		/* this is needed by libs such as arts */
		g_setenv("HOME", pwd->pw_dir, true);
216
	}
217

218 219 220 221 222 223
	pidfile = g_strdup(_pidfile);
#else
	(void)user;
	(void)_pidfile;
#endif
}
224

225 226 227 228 229 230
void
daemonize_finish(void)
{
#ifndef WIN32
	if (pidfile != NULL)
		unlink(pidfile);
231

232 233 234
	g_free(user_name);
	g_free(pidfile);
#endif
235
}