chiark / gitweb /
debian version 1.5.99+dev10
[disorder] / server / disorderd.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
36be7e6a 3 * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
21#include <config.h>
6d2d327c 22#include "types.h"
460b9539 23
24#include <stdio.h>
25#include <getopt.h>
26#include <pwd.h>
27#include <grp.h>
28#include <sys/types.h>
29#include <errno.h>
30#include <stdlib.h>
31#include <string.h>
32#include <unistd.h>
33#include <signal.h>
34#include <sys/socket.h>
35#include <time.h>
36#include <locale.h>
37#include <syslog.h>
38#include <sys/time.h>
39#include <pcre.h>
40#include <fcntl.h>
41
42#include "daemonize.h"
43#include "event.h"
44#include "log.h"
45#include "configuration.h"
46#include "trackdb.h"
47#include "queue.h"
48#include "mem.h"
49#include "play.h"
50#include "server.h"
51#include "state.h"
52#include "syscalls.h"
53#include "defs.h"
54#include "user.h"
55#include "mixer.h"
56#include "eventlog.h"
e83d0967 57#include "printf.h"
36be7e6a 58#include "setup.h"
460b9539 59
60static ev_source *ev;
61
62static void rescan_after(long offset);
63static void dbgc_after(long offset);
64static void volumecheck_after(long offset);
65
66static const struct option options[] = {
67 { "help", no_argument, 0, 'h' },
68 { "version", no_argument, 0, 'V' },
69 { "config", required_argument, 0, 'c' },
70 { "debug", no_argument, 0, 'd' },
71 { "foreground", no_argument, 0, 'f' },
72 { "log", required_argument, 0, 'l' },
73 { "pidfile", required_argument, 0, 'P' },
18e6d6e6 74 { "wide-open", no_argument, 0, 'w' },
e83d0967 75 { "syslog", no_argument, 0, 's' },
460b9539 76 { 0, 0, 0, 0 }
77};
78
79/* display usage message and terminate */
80static void help(void) {
81 xprintf("Usage:\n"
82 " disorderd [OPTIONS]\n"
83 "Options:\n"
84 " --help, -h Display usage message\n"
85 " --version, -V Display version number\n"
86 " --config PATH, -c PATH Set configuration file\n"
87 " --debug, -d Turn on debugging\n"
88 " --foreground, -f Do not become a daemon\n"
e83d0967 89 " --syslog, -s Log to syslog even with -f\n"
460b9539 90 " --pidfile PATH, -P PATH Leave a pidfile\n");
91 xfclose(stdout);
92 exit(0);
93}
94
95/* display version number and terminate */
96static void version(void) {
97 xprintf("disorderd version %s\n", disorder_version_string);
98 xfclose(stdout);
99 exit(0);
100}
101
102/* SIGHUP callback */
103static int handle_sighup(ev_source attribute((unused)) *ev_,
104 int attribute((unused)) sig,
105 void attribute((unused)) *u) {
106 info("received SIGHUP");
107 reconfigure(ev, 1);
108 return 0;
109}
110
111/* fatal signals */
112
113static int handle_sigint(ev_source attribute((unused)) *ev_,
114 int attribute((unused)) sig,
115 void attribute((unused)) *u) {
116 info("received SIGINT");
117 quit(ev);
118}
119
120static int handle_sigterm(ev_source attribute((unused)) *ev_,
121 int attribute((unused)) sig,
122 void attribute((unused)) *u) {
123 info("received SIGTERM");
124 quit(ev);
125}
126
127static int rescan_again(ev_source *ev_,
128 const struct timeval attribute((unused)) *now,
129 void attribute((unused)) *u) {
130 trackdb_rescan(ev_);
131 rescan_after(86400);
132 return 0;
133}
134
135static void rescan_after(long offset) {
136 struct timeval w;
137
138 gettimeofday(&w, 0);
139 w.tv_sec += offset;
140 ev_timeout(ev, 0, &w, rescan_again, 0);
141}
142
143static int dbgc_again(ev_source attribute((unused)) *ev_,
144 const struct timeval attribute((unused)) *now,
145 void attribute((unused)) *u) {
146 trackdb_gc();
147 dbgc_after(60);
148 return 0;
149}
150
151static void dbgc_after(long offset) {
152 struct timeval w;
153
154 gettimeofday(&w, 0);
155 w.tv_sec += offset;
156 ev_timeout(ev, 0, &w, dbgc_again, 0);
157}
158
159static int volumecheck_again(ev_source attribute((unused)) *ev_,
160 const struct timeval attribute((unused)) *now,
161 void attribute((unused)) *u) {
162 int l, r;
163 char lb[32], rb[32];
164
165 if(!mixer_control(&l, &r, 0)) {
166 if(l != volume_left || r != volume_right) {
167 volume_left = l;
168 volume_right = r;
169 snprintf(lb, sizeof lb, "%d", l);
170 snprintf(rb, sizeof rb, "%d", r);
171 eventlog("volume", lb, rb, (char *)0);
172 }
173 }
174 volumecheck_after(60);
175 return 0;
176}
177
178static void volumecheck_after(long offset) {
179 struct timeval w;
180
181 gettimeofday(&w, 0);
182 w.tv_sec += offset;
183 ev_timeout(ev, 0, &w, volumecheck_again, 0);
184}
185
e83d0967
RK
186/* We fix the path to include the bindir and sbindir we were installed into */
187static void fix_path(void) {
188 char *path = getenv("PATH");
e99d42b1 189 static char *newpath;
190 /* static or libgc collects it! */
e83d0967
RK
191
192 if(!path)
193 error(0, "PATH is not set at all!");
194
31780899 195 if(*finkbindir && strcmp(finkbindir, "/"))
e83d0967
RK
196 /* We appear to be a finkized mac; include fink on the path in case the
197 * tools we need are there. */
198 byte_xasprintf(&newpath, "PATH=%s:%s:%s:%s",
199 path, bindir, sbindir, finkbindir);
200 else
201 byte_xasprintf(&newpath, "PATH=%s:%s:%s", path, bindir, sbindir);
202 putenv(newpath);
203 info("%s", newpath);
204}
205
206int main(int argc, char **argv) {
207 int n, background = 1, logsyslog = 0;
460b9539 208 const char *pidfile = 0;
460b9539 209
210 set_progname(argv);
320598d4 211 mem_init();
460b9539 212 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
213 /* garbage-collect PCRE's memory */
214 pcre_malloc = xmalloc;
215 pcre_free = xfree;
e83d0967 216 while((n = getopt_long(argc, argv, "hVc:dfP:Ns", options, 0)) >= 0) {
460b9539 217 switch(n) {
218 case 'h': help();
219 case 'V': version();
220 case 'c': configfile = optarg; break;
221 case 'd': debugging = 1; break;
222 case 'f': background = 0; break;
223 case 'P': pidfile = optarg; break;
e83d0967 224 case 's': logsyslog = 1; break;
18e6d6e6 225 case 'w': wideopen = 1; break;
460b9539 226 default: fatal(0, "invalid option");
227 }
228 }
229 /* go into background if necessary */
230 if(background)
231 daemonize(progname, LOG_DAEMON, pidfile);
e83d0967
RK
232 else if(logsyslog) {
233 /* If we're running under some kind of daemon supervisor then we may want
234 * to log to syslog but not to go into background */
235 openlog(progname, LOG_PID, LOG_DAEMON);
236 log_default = &log_syslog;
237 }
460b9539 238 info("process ID %lu", (unsigned long)getpid());
e83d0967 239 fix_path();
460b9539 240 srand(time(0)); /* don't start the same every time */
241 /* create event loop */
242 ev = ev_new();
243 if(ev_child_setup(ev)) fatal(0, "ev_child_setup failed");
244 /* read config */
c00fce3a 245 if(config_read(1))
460b9539 246 fatal(0, "cannot read configuration");
659d87e8
RK
247 /* make sure the home directory exists and has suitable permissions */
248 make_home();
36be7e6a
RK
249 /* create the default login */
250 make_root_login();
460b9539 251 /* Start the speaker process (as root! - so it can choose its nice value) */
252 speaker_setup(ev);
253 /* set server nice value _after_ starting the speaker, so that they
254 * are independently niceable */
255 xnice(config->nice_server);
256 /* change user */
257 become_mortal();
258 /* make sure we're not root, whatever the config says */
259 if(getuid() == 0 || geteuid() == 0) fatal(0, "do not run as root");
260 /* open a lockfile - we only want one copy of the server to run at once. */
261 if(config->lock) {
262 const char *lockfile;
263 int lockfd;
9ba0617a
RK
264 struct flock lock;
265
460b9539 266 lockfile = config_get_file("lock");
267 if((lockfd = open(lockfile, O_RDWR|O_CREAT, 0600)) < 0)
268 fatal(errno, "error opening %s", lockfile);
269 cloexec(lockfd);
270 memset(&lock, 0, sizeof lock);
271 lock.l_type = F_WRLCK;
272 lock.l_whence = SEEK_SET;
273 if(fcntl(lockfd, F_SETLK, &lock) < 0)
274 fatal(errno, "error locking %s", lockfile);
275 }
276 /* initialize database environment */
277 trackdb_init(TRACKDB_NORMAL_RECOVER);
278 trackdb_master(ev);
279 /* install new config */
280 reconfigure(ev, 0);
281 /* re-read config if we receive a SIGHUP */
282 if(ev_signal(ev, SIGHUP, handle_sighup, 0)) fatal(0, "ev_signal failed");
283 /* exit on SIGINT/SIGTERM */
284 if(ev_signal(ev, SIGINT, handle_sigint, 0)) fatal(0, "ev_signal failed");
285 if(ev_signal(ev, SIGTERM, handle_sigterm, 0)) fatal(0, "ev_signal failed");
286 /* ignore SIGPIPE */
287 signal(SIGPIPE, SIG_IGN);
f982b120
RK
288 /* start a rescan straight away if this is a new installation */
289 if(!trackdb_existing_database) {
1a4a6350
RK
290 trackdb_rescan(0/*ev*/);
291 /* No ev -> the rescan will block. Since we called reconfigure() already
292 * any clients will also be forced to block. */
293 }
460b9539 294 rescan_after(86400);
295 /* periodically tidy up the database */
296 dbgc_after(60);
297 /* periodically check the volume */
104ae93a 298 volumecheck_again(0, 0, 0);
460b9539 299 /* set initial state */
300 add_random_track();
301 play(ev);
302 /* enter the event loop */
303 n = ev_run(ev);
304 /* if we exit the event loop, something must have gone wrong */
305 fatal(errno, "ev_run returned %d", n);
306}
307
308/*
309Local Variables:
310c-basic-offset:2
311comment-column:40
e83d0967 312fill-column:79
460b9539 313End:
314*/