chiark / gitweb /
Core Audio support should now include descriptions in error strings.
[disorder] / server / disorderd.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5aff007d 3 * Copyright (C) 2004-2008 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
9 *
e7eb3a27
RK
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
132a5a4a
RK
18/** @file server/disorderd.c
19 * @brief Main DisOrder server
20 */
05b75f8d 21#include "disorder-server.h"
460b9539 22
23static ev_source *ev;
24
460b9539 25static const struct option options[] = {
26 { "help", no_argument, 0, 'h' },
27 { "version", no_argument, 0, 'V' },
28 { "config", required_argument, 0, 'c' },
29 { "debug", no_argument, 0, 'd' },
30 { "foreground", no_argument, 0, 'f' },
31 { "log", required_argument, 0, 'l' },
32 { "pidfile", required_argument, 0, 'P' },
18e6d6e6 33 { "wide-open", no_argument, 0, 'w' },
e83d0967 34 { "syslog", no_argument, 0, 's' },
460b9539 35 { 0, 0, 0, 0 }
36};
37
38/* display usage message and terminate */
39static void help(void) {
40 xprintf("Usage:\n"
41 " disorderd [OPTIONS]\n"
42 "Options:\n"
43 " --help, -h Display usage message\n"
44 " --version, -V Display version number\n"
45 " --config PATH, -c PATH Set configuration file\n"
46 " --debug, -d Turn on debugging\n"
47 " --foreground, -f Do not become a daemon\n"
e83d0967 48 " --syslog, -s Log to syslog even with -f\n"
460b9539 49 " --pidfile PATH, -P PATH Leave a pidfile\n");
50 xfclose(stdout);
51 exit(0);
52}
53
49a773eb
RK
54/* signals ------------------------------------------------------------------ */
55
460b9539 56/* SIGHUP callback */
57static int handle_sighup(ev_source attribute((unused)) *ev_,
58 int attribute((unused)) sig,
59 void attribute((unused)) *u) {
60 info("received SIGHUP");
61 reconfigure(ev, 1);
62 return 0;
63}
64
65/* fatal signals */
66
67static int handle_sigint(ev_source attribute((unused)) *ev_,
68 int attribute((unused)) sig,
69 void attribute((unused)) *u) {
70 info("received SIGINT");
71 quit(ev);
72}
73
74static int handle_sigterm(ev_source attribute((unused)) *ev_,
75 int attribute((unused)) sig,
76 void attribute((unused)) *u) {
77 info("received SIGTERM");
78 quit(ev);
79}
80
49a773eb
RK
81/* periodic actions --------------------------------------------------------- */
82
83struct periodic_data {
84 void (*callback)(ev_source *);
85 int period;
86};
460b9539 87
49a773eb
RK
88static int periodic_callback(ev_source *ev_,
89 const struct timeval attribute((unused)) *now,
90 void *u) {
460b9539 91 struct timeval w;
49a773eb 92 struct periodic_data *const pd = u;
460b9539 93
49a773eb 94 pd->callback(ev_);
460b9539 95 gettimeofday(&w, 0);
49a773eb
RK
96 w.tv_sec += pd->period;
97 ev_timeout(ev, 0, &w, periodic_callback, pd);
460b9539 98 return 0;
99}
100
49a773eb 101/** @brief Create a periodic action
59cf25c4 102 * @param ev_ Event loop
49a773eb
RK
103 * @param callback Callback function
104 * @param period Interval between calls in seconds
105 * @param immediate If true, call @p callback straight away
106 */
107static void create_periodic(ev_source *ev_,
108 void (*callback)(ev_source *),
109 int period,
110 int immediate) {
460b9539 111 struct timeval w;
49a773eb 112 struct periodic_data *const pd = xmalloc(sizeof *pd);
460b9539 113
49a773eb
RK
114 pd->callback = callback;
115 pd->period = period;
116 if(immediate)
117 callback(ev_);
460b9539 118 gettimeofday(&w, 0);
49a773eb
RK
119 w.tv_sec += period;
120 ev_timeout(ev_, 0, &w, periodic_callback, pd);
460b9539 121}
122
49a773eb 123static void periodic_rescan(ev_source *ev_) {
dd9af5cb 124 trackdb_rescan(ev_, 1/*check*/, 0, 0);
49a773eb
RK
125}
126
127static void periodic_database_gc(ev_source attribute((unused)) *ev_) {
128 trackdb_gc();
129}
130
131static void periodic_volume_check(ev_source attribute((unused)) *ev_) {
460b9539 132 int l, r;
133 char lb[32], rb[32];
134
3c499fe7 135 if(!mixer_control(-1/*as configured*/, &l, &r, 0)) {
460b9539 136 if(l != volume_left || r != volume_right) {
137 volume_left = l;
138 volume_right = r;
139 snprintf(lb, sizeof lb, "%d", l);
140 snprintf(rb, sizeof rb, "%d", r);
141 eventlog("volume", lb, rb, (char *)0);
142 }
143 }
460b9539 144}
145
49a773eb
RK
146static void periodic_play_check(ev_source *ev_) {
147 play(ev_);
148}
460b9539 149
49a773eb
RK
150static void periodic_add_random(ev_source *ev_) {
151 add_random_track(ev_);
460b9539 152}
153
e83d0967
RK
154/* We fix the path to include the bindir and sbindir we were installed into */
155static void fix_path(void) {
156 char *path = getenv("PATH");
e99d42b1 157 static char *newpath;
158 /* static or libgc collects it! */
e83d0967
RK
159
160 if(!path)
161 error(0, "PATH is not set at all!");
162
31780899 163 if(*finkbindir && strcmp(finkbindir, "/"))
e83d0967
RK
164 /* We appear to be a finkized mac; include fink on the path in case the
165 * tools we need are there. */
166 byte_xasprintf(&newpath, "PATH=%s:%s:%s:%s",
167 path, bindir, sbindir, finkbindir);
168 else
169 byte_xasprintf(&newpath, "PATH=%s:%s:%s", path, bindir, sbindir);
170 putenv(newpath);
171 info("%s", newpath);
172}
173
174int main(int argc, char **argv) {
175 int n, background = 1, logsyslog = 0;
460b9539 176 const char *pidfile = 0;
31e2a93e 177 struct rlimit rl[1];
460b9539 178
179 set_progname(argv);
320598d4 180 mem_init();
460b9539 181 if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
182 /* garbage-collect PCRE's memory */
183 pcre_malloc = xmalloc;
184 pcre_free = xfree;
e83d0967 185 while((n = getopt_long(argc, argv, "hVc:dfP:Ns", options, 0)) >= 0) {
460b9539 186 switch(n) {
187 case 'h': help();
3fbdc96d 188 case 'V': version("disorderd");
460b9539 189 case 'c': configfile = optarg; break;
190 case 'd': debugging = 1; break;
191 case 'f': background = 0; break;
192 case 'P': pidfile = optarg; break;
e83d0967 193 case 's': logsyslog = 1; break;
18e6d6e6 194 case 'w': wideopen = 1; break;
460b9539 195 default: fatal(0, "invalid option");
196 }
197 }
198 /* go into background if necessary */
199 if(background)
200 daemonize(progname, LOG_DAEMON, pidfile);
e83d0967
RK
201 else if(logsyslog) {
202 /* If we're running under some kind of daemon supervisor then we may want
203 * to log to syslog but not to go into background */
204 openlog(progname, LOG_PID, LOG_DAEMON);
205 log_default = &log_syslog;
206 }
460b9539 207 info("process ID %lu", (unsigned long)getpid());
e83d0967 208 fix_path();
460b9539 209 srand(time(0)); /* don't start the same every time */
b12be54a
RK
210 /* gcrypt initialization */
211 gcry_control(GCRYCTL_INIT_SECMEM, 1);
31e2a93e
RK
212 /* make sure we can't have more than FD_SETSIZE files open (event.c does
213 * check but this provides an additional line of defence) */
214 if(getrlimit(RLIMIT_NOFILE, rl) < 0)
215 fatal(errno, "getrlimit RLIMIT_NOFILE");
216 if(rl->rlim_cur > FD_SETSIZE) {
217 rl->rlim_cur = FD_SETSIZE;
218 if(setrlimit(RLIMIT_NOFILE, rl) < 0)
219 fatal(errno, "setrlimit to reduce RLIMIT_NOFILE to %lu",
220 (unsigned long)rl->rlim_cur);
221 info("set RLIM_NOFILE to %lu", (unsigned long)rl->rlim_cur);
222 } else
223 info("RLIM_NOFILE is %lu", (unsigned long)rl->rlim_cur);
460b9539 224 /* create event loop */
225 ev = ev_new();
226 if(ev_child_setup(ev)) fatal(0, "ev_child_setup failed");
227 /* read config */
c00fce3a 228 if(config_read(1))
460b9539 229 fatal(0, "cannot read configuration");
659d87e8
RK
230 /* make sure the home directory exists and has suitable permissions */
231 make_home();
460b9539 232 /* Start the speaker process (as root! - so it can choose its nice value) */
233 speaker_setup(ev);
234 /* set server nice value _after_ starting the speaker, so that they
235 * are independently niceable */
236 xnice(config->nice_server);
237 /* change user */
238 become_mortal();
239 /* make sure we're not root, whatever the config says */
240 if(getuid() == 0 || geteuid() == 0) fatal(0, "do not run as root");
241 /* open a lockfile - we only want one copy of the server to run at once. */
242 if(config->lock) {
243 const char *lockfile;
244 int lockfd;
9ba0617a
RK
245 struct flock lock;
246
460b9539 247 lockfile = config_get_file("lock");
248 if((lockfd = open(lockfile, O_RDWR|O_CREAT, 0600)) < 0)
249 fatal(errno, "error opening %s", lockfile);
250 cloexec(lockfd);
251 memset(&lock, 0, sizeof lock);
252 lock.l_type = F_WRLCK;
253 lock.l_whence = SEEK_SET;
254 if(fcntl(lockfd, F_SETLK, &lock) < 0)
255 fatal(errno, "error locking %s", lockfile);
256 }
257 /* initialize database environment */
a745dd43 258 trackdb_init(TRACKDB_NORMAL_RECOVER|TRACKDB_MAY_CREATE);
460b9539 259 trackdb_master(ev);
f0feb22e 260 /* install new config (calls trackdb_open()) */
460b9539 261 reconfigure(ev, 0);
f0feb22e
RK
262 /* pull in old users */
263 trackdb_old_users();
264 /* create a root login */
265 trackdb_create_root();
460b9539 266 /* re-read config if we receive a SIGHUP */
267 if(ev_signal(ev, SIGHUP, handle_sighup, 0)) fatal(0, "ev_signal failed");
268 /* exit on SIGINT/SIGTERM */
269 if(ev_signal(ev, SIGINT, handle_sigint, 0)) fatal(0, "ev_signal failed");
270 if(ev_signal(ev, SIGTERM, handle_sigterm, 0)) fatal(0, "ev_signal failed");
271 /* ignore SIGPIPE */
272 signal(SIGPIPE, SIG_IGN);
49a773eb
RK
273 /* Rescan immediately and then daily */
274 create_periodic(ev, periodic_rescan, 86400, 1/*immediate*/);
275 /* Tidy up the database once a minute */
276 create_periodic(ev, periodic_database_gc, 60, 0);
277 /* Check the volume immediately and then once a minute */
278 create_periodic(ev, periodic_volume_check, 60, 1);
279 /* Check for a playable track once a second */
280 create_periodic(ev, periodic_play_check, 1, 0);
1ef295b3
RK
281 /* Try adding a random track immediately and once every two seconds */
282 create_periodic(ev, periodic_add_random, 2, 1);
460b9539 283 /* enter the event loop */
284 n = ev_run(ev);
285 /* if we exit the event loop, something must have gone wrong */
286 fatal(errno, "ev_run returned %d", n);
287}
288
289/*
290Local Variables:
291c-basic-offset:2
292comment-column:40
e83d0967 293fill-column:79
460b9539 294End:
295*/