chiark / gitweb /
c1f578e224124056682955a119210c1641048084
[disorder] / server / disorderd.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell
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>
22 #include "types.h"
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 #include <gcrypt.h>
42
43 #include "daemonize.h"
44 #include "event.h"
45 #include "log.h"
46 #include "configuration.h"
47 #include "trackdb.h"
48 #include "queue.h"
49 #include "mem.h"
50 #include "play.h"
51 #include "server.h"
52 #include "state.h"
53 #include "syscalls.h"
54 #include "defs.h"
55 #include "user.h"
56 #include "mixer.h"
57 #include "eventlog.h"
58 #include "printf.h"
59
60 static ev_source *ev;
61
62 static void rescan_after(long offset);
63 static void dbgc_after(long offset);
64 static void volumecheck_after(long offset);
65
66 static 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' },
74   { "wide-open", no_argument, 0, 'w' },
75   { "syslog", no_argument, 0, 's' },
76   { 0, 0, 0, 0 }
77 };
78
79 /* display usage message and terminate */
80 static 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"
89           "  --syslog, -s             Log to syslog even with -f\n"
90           "  --pidfile PATH, -P PATH  Leave a pidfile\n");
91   xfclose(stdout);
92   exit(0);
93 }
94
95 /* display version number and terminate */
96 static void version(void) {
97   xprintf("%s", disorder_version_string);
98   xfclose(stdout);
99   exit(0);
100 }
101
102 /* SIGHUP callback */
103 static 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
113 static 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
120 static 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
127 static 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
135 static 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
143 static 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
151 static 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
159 static 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
178 static 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
186 /* We fix the path to include the bindir and sbindir we were installed into */
187 static void fix_path(void) {
188   char *path = getenv("PATH");
189   static char *newpath;
190   /* static or libgc collects it! */
191
192   if(!path)
193     error(0, "PATH is not set at all!");
194
195   if(*finkbindir && strcmp(finkbindir, "/"))
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
206 int main(int argc, char **argv) {
207   int n, background = 1, logsyslog = 0;
208   const char *pidfile = 0;
209
210   set_progname(argv);
211   mem_init();
212   if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
213   /* garbage-collect PCRE's memory */
214   pcre_malloc = xmalloc;
215   pcre_free = xfree;
216   while((n = getopt_long(argc, argv, "hVc:dfP:Ns", options, 0)) >= 0) {
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;
224     case 's': logsyslog = 1; break;
225     case 'w': wideopen = 1; break;
226     default: fatal(0, "invalid option");
227     }
228   }
229   /* go into background if necessary */
230   if(background)
231     daemonize(progname, LOG_DAEMON, pidfile);
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   }
238   info("process ID %lu", (unsigned long)getpid());
239   fix_path();
240   srand(time(0));                       /* don't start the same every time */
241   /* gcrypt initialization */
242   gcry_control(GCRYCTL_INIT_SECMEM, 1);
243   /* create event loop */
244   ev = ev_new();
245   if(ev_child_setup(ev)) fatal(0, "ev_child_setup failed");
246   /* read config */
247   if(config_read(1))
248     fatal(0, "cannot read configuration");
249   /* make sure the home directory exists and has suitable permissions */
250   make_home();
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;
264     struct flock lock;
265
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|TRACKDB_MAY_CREATE);
278   trackdb_master(ev);
279   /* install new config (calls trackdb_open()) */
280   reconfigure(ev, 0);
281   /* pull in old users */
282   trackdb_old_users();
283   /* create a root login */
284   trackdb_create_root();
285   /* re-read config if we receive a SIGHUP */
286   if(ev_signal(ev, SIGHUP, handle_sighup, 0)) fatal(0, "ev_signal failed");
287   /* exit on SIGINT/SIGTERM */
288   if(ev_signal(ev, SIGINT, handle_sigint, 0)) fatal(0, "ev_signal failed");
289   if(ev_signal(ev, SIGTERM, handle_sigterm, 0)) fatal(0, "ev_signal failed");
290   /* ignore SIGPIPE */
291   signal(SIGPIPE, SIG_IGN);
292   /* start a rescan straight away if this is a new installation */
293   if(!trackdb_existing_database) {
294     trackdb_rescan(0/*ev*/);
295     /* No ev -> the rescan will block.  Since we called reconfigure() already
296      * any clients will also be forced to block. */
297   }
298   rescan_after(86400);
299   /* periodically tidy up the database */
300   dbgc_after(60);
301   /* periodically check the volume */
302   volumecheck_again(0, 0, 0);
303   /* set initial state */
304   add_random_track();
305   play(ev);
306   /* enter the event loop */
307   n = ev_run(ev);
308   /* if we exit the event loop, something must have gone wrong */
309   fatal(errno, "ev_run returned %d", n);
310 }
311
312 /*
313 Local Variables:
314 c-basic-offset:2
315 comment-column:40
316 fill-column:79
317 End:
318 */