daemon.c 4.63 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2010 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
#include "config.h"
21 22
#include "daemon.h"

23 24
#include <glib.h>

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

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

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

43 44 45 46 47 48
#ifndef WIN32

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

/** the Unix user id which MPD runs as */
49
static uid_t user_uid = (uid_t)-1;
50 51

/** the Unix group id which MPD runs as */
52
static gid_t user_gid = (pid_t)-1;
53 54 55 56

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

57 58 59
/* whether "group" conf. option was given */
static bool had_group = false;

60

61 62 63 64 65 66
void
daemonize_kill(void)
{
	FILE *fp;
	int pid, ret;

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

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

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

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

	exit(EXIT_SUCCESS);
}

89 90 91
void
daemonize_close_stdin(void)
{
92 93
	close(STDIN_FILENO);
	open("/dev/null", O_RDONLY);
94
}
95

96 97 98
void
daemonize_set_user(void)
{
99 100 101
	if (user_name == NULL)
		return;

102 103 104 105 106 107
	/* set gid */
	if (user_gid != (gid_t)-1 && user_gid != getgid()) {
		if (setgid(user_gid) == -1) {
			g_error("cannot setgid to %d: %s",
				(int)user_gid, g_strerror(errno));
		}
108
	}
109

110
#ifdef _BSD_SOURCE
111 112 113
	/* init suplementary groups
	 * (must be done before we change our uid)
	 */
114
	if (!had_group && initgroups(user_name, user_gid) == -1) {
115 116 117 118
		g_warning("cannot init supplementary groups "
			  "of user \"%s\": %s",
			  user_name, g_strerror(errno));
	}
119 120
#endif

121
	/* set uid */
122 123
	if (user_uid != (uid_t)-1 && user_uid != getuid() &&
	    setuid(user_uid) == -1) {
124 125
		g_error("cannot change to uid of user \"%s\": %s",
			user_name, g_strerror(errno));
126 127 128
	}
}

129 130 131
static void
daemonize_detach(void)
{
132 133
	/* flush all file handles before duplicating the buffers */

134 135
	fflush(NULL);

136 137 138 139 140 141 142
#ifdef HAVE_DAEMON

	if (daemon(0, 1))
		g_error("daemon() failed: %s", g_strerror(errno));

#elif defined(HAVE_FORK)

143 144
	/* detach from parent process */

145 146
	switch (fork()) {
	case -1:
147
		g_error("fork() failed: %s", g_strerror(errno));
148 149 150
	case 0:
		break;
	default:
151
		/* exit the parent process */
152
		_exit(EXIT_SUCCESS);
153
	}
154

155 156
	/* release the current working directory */

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

160 161
	/* detach from the current session */

162 163
	setsid();

164 165 166 167
#else
	g_error("no support for daemonizing");
#endif

168 169 170
	g_debug("daemonized!");
}

171
void
172
daemonize(bool detach)
173 174 175
{
	FILE *fp = NULL;

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

187 188
	if (detach)
		daemonize_detach();
189

190
	if (pidfile != NULL) {
191 192 193 194 195
		g_debug("writing pid file");
		fprintf(fp, "%lu\n", (unsigned long)getpid());
		fclose(fp);
	}
}
196 197

void
198
daemonize_init(const char *user, const char *group, const char *_pidfile)
199
{
200 201 202 203
	if (user) {
		struct passwd *pwd = getpwnam(user);
		if (!pwd)
			g_error("no such user \"%s\"", user);
204 205 206

		user_uid = pwd->pw_uid;
		user_gid = pwd->pw_gid;
207

208 209
		user_name = g_strdup(user);

210 211
		/* this is needed by libs such as arts */
		g_setenv("HOME", pwd->pw_dir, true);
212
	}
213

214 215 216 217 218 219 220 221 222
	if (group) {
		struct group *grp = grp = getgrnam(group);
		if (!grp)
			g_error("no such group \"%s\"", group);
		user_gid = grp->gr_gid;
		had_group = true;
	}


223 224
	pidfile = g_strdup(_pidfile);
}
225

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

232 233
	g_free(user_name);
	g_free(pidfile);
234
}
235 236

#endif