X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/59cf25c47fbda22f3f4e14399f0436cc6ed2c56f..211af11eabdfa1226ee2c7aec25002a1d7b25567:/server/disorderd.c diff --git a/server/disorderd.c b/server/disorderd.c index 10ff89b..74fc07e 100644 --- a/server/disorderd.c +++ b/server/disorderd.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2008 Richard Kettlewell + * Copyright (C) 2004-2009 Richard Kettlewell * * 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 @@ -15,6 +15,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +/** @file server/disorderd.c + * @brief Main DisOrder server + */ #include "disorder-server.h" static ev_source *ev; @@ -129,7 +132,8 @@ static void periodic_volume_check(ev_source attribute((unused)) *ev_) { int l, r; char lb[32], rb[32]; - if(!mixer_control(-1/*as configured*/, &l, &r, 0)) { + if(api && api->get_volume) { + api->get_volume(&l, &r); if(l != volume_left || r != volume_right) { volume_left = l; volume_right = r; @@ -171,6 +175,7 @@ static void fix_path(void) { int main(int argc, char **argv) { int n, background = 1, logsyslog = 0; const char *pidfile = 0; + struct rlimit rl[1]; set_progname(argv); mem_init(); @@ -204,11 +209,27 @@ int main(int argc, char **argv) { fix_path(); srand(time(0)); /* don't start the same every time */ /* gcrypt initialization */ + if(!gcry_check_version(NULL)) + disorder_fatal(0, "gcry_check_version failed"); gcry_control(GCRYCTL_INIT_SECMEM, 1); + gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0); + /* make sure we can't have more than FD_SETSIZE files open (event.c does + * check but this provides an additional line of defence) */ + if(getrlimit(RLIMIT_NOFILE, rl) < 0) + fatal(errno, "getrlimit RLIMIT_NOFILE"); + if(rl->rlim_cur > FD_SETSIZE) { + rl->rlim_cur = FD_SETSIZE; + if(setrlimit(RLIMIT_NOFILE, rl) < 0) + fatal(errno, "setrlimit to reduce RLIMIT_NOFILE to %lu", + (unsigned long)rl->rlim_cur); + info("set RLIM_NOFILE to %lu", (unsigned long)rl->rlim_cur); + } else + info("RLIM_NOFILE is %lu", (unsigned long)rl->rlim_cur); /* create event loop */ ev = ev_new(); if(ev_child_setup(ev)) fatal(0, "ev_child_setup failed"); /* read config */ + config_uaudio_apis = uaudio_apis; if(config_read(1)) fatal(0, "cannot read configuration"); /* make sure the home directory exists and has suitable permissions */