source: roaraudio/roard/roard.c @ 4160:87a2bd2f45a7

Last change on this file since 4160:87a2bd2f45a7 was 4155:18ba7ffd9088, checked in by phi, 14 years ago

fixed incorrect parameters

File size: 62.9 KB
RevLine 
[0]1//roard.c:
2
[668]3/*
[3358]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
[668]5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[668]23 *
24 */
25
[0]26#include "roard.h"
27
[1494]28#ifdef ROAR_SUPPORT_LISTEN
[2530]29char * server[ROAR_MAX_LISTEN_SOCKETS];
[1494]30#endif
[60]31
[2104]32#if defined(ROAR_HAVE_IO_POSIX) && defined(ROAR_HAVE_FS_POSIX)
33#define SUPPORT_PIDFILE
34char * pidfile = NULL;
35#endif
36
[2530]37#if defined(ROAR_HAVE_SETGID) || defined(ROAR_HAVE_SETUID)
[3374]38int    setids    = 0;
39#endif
40
41#ifdef ROAR_HAVE_LIBX11
42char * x11display = NULL;
[2530]43#endif
44
[4141]45int add_output (char * drv, char * dev, char * opts, int prim, int count);
46
[1503]47#ifdef ROAR_HAVE_MAIN_ARGS
[0]48void usage (void) {
49 printf("Usage: roard [OPTIONS]...\n\n");
50
[68]51 printf("Misc Options:\n\n");
52 printf(
[775]53        " --daemon              - Bring the server into background after init\n"
[2970]54        " --verbose             - Be more verbose, can be used multiple times\n"
[71]55        " --terminate           - Terminate after last client quited\n"
[2109]56        " --start               - No op parameter (starting roard is default operation)\n"
[274]57        " --restart             - Trys to stop an old instance and start a new with new settings\n"
[2109]58        " --stop                - Stops a running roard (provide --pidfile!)\n"
59        " --shutdown            - Terminates a running roard (provide --pidfile!)\n"
[276]60        " --realtime            - Trys to get realtime priority,\n"
61        "                         give multible times for being more realtime\n"
[444]62        " --chroot DIR          - chroots to the given dir\n"
63        " --setgid              - GroupID to the audio group as specified via -G\n"
64        " --setuid              - UserID to the audio user as specified via -U\n"
[905]65        " --sysclocksync        - calculate exact sample rate using the system clock\n"
[2017]66        " --location  LOC       - Set lion readable location of server\n"
[2104]67#ifdef SUPPORT_PIDFILE
68        " --pidfile PIDFILE     - Write a pidfile at PIDFILE\n"
69#endif
[3688]70#ifdef ROAR_HAVE_SYSLOG
71        " --log-syslog          - Log Warnings, Errors, ... to syslog\n"
72#endif
[68]73       );
74
[3356]75 printf("\nPlugin Options:\n\n");
76 printf(
77        " --plugin-load FILE    - Load plugin FILE\n"
78       );
79
[68]80 printf("\nAudio Options:\n\n");
[0]81 printf(
82        " -R  --rate   RATE     - Set server rate\n"
83        " -B  --bits   BITS     - Set server bits\n"
84        " -C  --chans  CHANNELS - Set server channels\n"
[3963]85        " --aiprofile  PROFILE  - Use the given audio profile\n"
[0]86       );
87
[2339]88 printf("\nStream Options:\n\n");
89 printf(
90        " --stream-flags D=F    - Set default flags for stream directions\n"
[4012]91        "                         D is the stream direction and F is a comma separated\n"
[2339]92        "                         list of flags in form +flag or -flag to set or unset\n"
93        "                         a flag as default or remove it from the default\n"
94       );
95
[1923]96 printf("\nDriver Options: (obsolete, do not use, Use Ouput Options)\n\n");
[4141]97#ifdef ROAR_DRIVER_DEFAULT
[974]98 printf(" -d  --driver DRV      - Set the driver (default: %s)\n", ROAR_DRIVER_DEFAULT);
[4141]99#else
100 printf(" -d  --driver DRV      - Set the driver (default: autodetect)\n");
101#endif
[0]102 printf(" -D  --device DEV      - Set the device\n");
103 printf(" -dO OPTS              - Set output options\n");
[973]104 printf(" --list-driver         - List all drivers\n");
[0]105
[932]106 printf("\nOutput Options:\n\n");
[974]107 printf(" -o  --odriver DRV     - Set the driver, use '--list-driver' to get a list\n");
[932]108 printf(" -O  --odevice DEV     - Set the device\n");
109 printf(" -oO OPTS              - Set output options\n");
110 printf(" -oN                   - Adds another output\n");
[961]111 printf(" -oP                   - Mark output as primary\n");
[932]112
[2485]113#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[0]114 printf("\nSource Options:\n\n");
115 printf(" -s  --source DRV      - Use DRV as input driver\n"
116        " -S           DEV      - Use DEV as input device\n"
117        " -sO          OPTS     - Use OPTS as input options\n"
[1512]118        " -sN                   - Adds another source\n"
[0]119        " -sP                   - Make souce as primary\n"
120       );
[2270]121 printf(" --list-sources        - List all sources\n");
[2485]122#endif
[0]123
[280]124 printf("\nCodec Filter Options:\n\n");
125 printf(" --list-cf             - List all codec filter\n"
126       );
[0]127
[2500]128#ifndef ROAR_WITHOUT_DCOMP_MIDI
[1923]129 printf("\nMIDI Options:\n\n");
[1924]130 printf(" --midi-no-console     - Disable console based MIDI synth\n"
[2444]131        " --midi-console-enable - Enables the console based MIDI synth\n"
[1924]132        " --midi-console DEV    - Set device for MIDI console\n"
[2489]133#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2451]134        " --ssynth-enable       - Enable simple software synth\n"
135        " --ssynth-disable      - Disable simple software synth\n"
[2489]136#endif
[1924]137       );
[2500]138#endif
[1923]139
[2494]140#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1923]141 printf("\nLight Control Options:\n\n");
142 printf(" --light-channels NUM  - Sets the number of channels for Light control (default: %i)\n",
143                                  LIGHT_CHANNELS_DEFAULT
144       );
[2494]145#endif
[1923]146
[2725]147#ifndef ROAR_WITHOUT_DCOMP_RDTCS
[3339]148 printf("\nRadio Data and Transmitter Control System Options:\n\n");
[2725]149 printf(" --rds-pi   PI         - Sets the RDS Programme Identification (PI)\n"
150        " --rds-ps   PS         - Sets the RDS Programme Service Name (PS)\n"
151        " --rds-pty  PTY        - Sets the RDS Programme Type (PTY)\n"
152        " --rds-tp              - Sets the RDS Traffic Programme (TP) flag\n"
153        " --rds-ct              - Enables sending of RDS Clock Time (CT)\n"
154       );
155#endif
156
[3374]157#ifdef ROAR_HAVE_LIBX11
158 printf("\nX11 Options:\n\n");
159 printf(
160        " --x11-display DISPLAY - Set display for X11\n"
161        " --display DISPLAY     - Set display for X11\n"
162       );
163#endif
164
[0]165 printf("\nServer Options:\n\n");
166 printf(" -t  --tcp             - Use TCP listen socket\n"
[3992]167#ifdef ROAR_HAVE_UNIX
[0]168        " -u  --unix            - Use UNIX Domain listen socket (default)\n"
[3992]169#endif
[508]170#ifdef ROAR_HAVE_LIBDNET
171        " -n  --decnet          - use DECnet listen socket\n"
172#endif
[518]173        " -4                    - Use IPv4 connections (implies -t)\n"
[3837]174#ifdef AF_INET6
[518]175        " -6                    - Use IPv6 connections (implies -t)\n"
176#endif
177#ifdef IPV6_ADDRFORM
178        " -64                   - Try to downgrade sockets from IPv6 into IPv4,\n"
[4012]179        "                         this is normaly not useful.\n"
[518]180#endif
[0]181        " -p  --port            - TCP Port to bind to\n"
182        " -b  --bind            - IP/Hostname to bind to\n"
[1115]183        "     --sock            - Filename for UNIX Domain Socket\n"
[2530]184        "     --proto PROTO     - Use PROTO as protocol on Socket\n"
[3252]185        "     --proto-dir DIR   - Set direction parameter for protocol\n"
186        "     --proto-rate RATE - Set sample rate parameter for protocol\n"
187        "     --proto-bits BITS - Set bits per sample parameter for protocol\n"
188        "     --proto-codec E   - Set codec parameter for protocol\n"
[4012]189        "     --proto-chans C   - Set number of channels parameter for protocol\n"
[3954]190        "     --proto-aiprofile PROFILE\n"
191        "                       - Sets the audio profile for socket\n"
[3956]192        "     --proto-profile P - Set profile for listen socket\n"
[3127]193        "     --list-proto      - List supported protocols\n"
[3956]194        "     --list-profiles   - List supported profiles for --proto-profile\n"
[2530]195        "     --new-sock        - Parameters for new socket follows\n"
[1993]196#ifdef ROAR_HAVE_LIBSLP
197        "     --slp             - Enable OpenSLP support\n"
198#endif
[3373]199#ifdef ROAR_HAVE_LIBX11
200        "     --x11             - Enable X11 support\n"
201#endif
[3039]202        " --jumbo-mtu MTU       - Sets the MTU for Jumbo Packets\n"
[450]203        " -G  GROUP             - Sets the group for the UNIX Domain Socket, (default: %s)\n"
[2737]204        "                         You need the permissions to change the GID\n"
[444]205        " -U  USER              - Sets the user for the UNIX Domain Socket, (default: do not set)\n"
[2737]206        "                         You need the permissions to change the UID (normaly only root has)\n"
[548]207        " --no-listen           - Do not listen for new clients\n"
[4012]208        "                         (only useful for relaing, impleys --terminate)\n"
[274]209        " --client-fh           - Comunicate with a client over this handle\n"
[4012]210        "                         (only useful for relaing)\n"
[920]211        " --close-fh            - Closes the given fh\n"
212        " --standby             - Start in standby state\n"
213        " --auto-standby        - Automatical goes into standby if there are no streams\n",
[2755]214#ifdef ROAR_DEFAULT_SOCKGRP
[450]215        ROAR_DEFAULT_SOCKGRP
[2755]216#else
217        "(none)"
218#endif
[0]219       );
220// printf("\n Options:\n\n");
221 printf("\n");
222}
[3127]223
224static void list_proto (void) {
225 printf("  Protocol Flag Subsys - Description\n");
226 printf("------------------------------------------------------\n");
227 printf("  roar          WM LRX - RoarAudio native protocol\n");
228#if !defined(ROAR_WITHOUT_DCOMP_EMUL_ESD) && defined(ROAR_HAVE_H_ESD)
229 printf("  esd           W      - EsounD emulation\n");
230#endif
[3603]231#ifndef ROAR_WITHOUT_DCOMP_EMUL_SIMPLE
[3257]232 printf("  simple        WM LRX - PulseAudio simple protocol\n");
[3597]233#endif
[3684]234#ifndef ROAR_WITHOUT_DCOMP_EMUL_RSOUND
235 printf("  rsound        W      - RSound emulation\n");
236#endif
[3981]237#ifndef ROAR_WITHOUT_DCOMP_EMUL_RPLAY
238 printf("  rplay         W      - RPlay emulation\n");
239#endif
[3127]240}
241
[1503]242#endif
[0]243
[4101]244#define _pmsg(format, args...) roar_debug_msg(type, __LINE__, __FILE__, ROAR_DBG_PREFIX, format, ## args)
245#define _pmsgc(group, counter, name) _pmsg("  Counter %-10s: %llu", (name), (long long unsigned int)counters_get(group, counter))
246void counters_print(int type, int force) {
247 if ( type != ROAR_DEBUG_TYPE_INFO || force || (ROAR_DBG_INFOVAR) >= ROAR_DBG_INFO_INFO ) {
248  _pmsg("--- Counter Listing ---");
249  _pmsg(" Current:");
250  _pmsgc(cur, clients, "Clients");
251  _pmsgc(cur, streams, "Streams");
252  _pmsg(" Total:");
253  _pmsgc(sum, clients, "Clients");
254  _pmsgc(sum, streams, "Streams");
255  _pmsg("--- End of Counter Listing ---");
256 }
257}
258#undef _pmsgc
259#undef _pmsg
260
[2109]261int restart_server (char * server, int terminate) {
[579]262 struct roar_connection con;
[2111]263#ifdef ROAR_HAVE_KILL
264 char buf[80];
265 ssize_t l;
266 struct roar_vio_calls fh;
267 pid_t pid;
268 int ok;
269
[4055]270 ROAR_INFO("restart_server(server='%s', terminate=%i): trying to restart server", ROAR_DBG_INFO_INFO, server, terminate);
271
[2111]272 if ( pidfile != NULL ) {
273  if ( roar_vio_open_file(&fh, pidfile, O_RDONLY, 0644) == -1 ) {
274   ROAR_WARN("restart_server(*): Can not read pidfile: %s", pidfile);
275  } else {
276   l = roar_vio_read(&fh, buf, 80);
277   roar_vio_close(&fh);
278   if ( l > 0 ) {
279    buf[l-1] = 0;
280    buf[79]  = 0;
281    pid = atoi(buf);
282    if ( terminate ) {
[2113]283     ok = kill(pid, SIGUSR1);
[2111]284    } else {
285     ok = kill(pid, SIGINT);
286    }
287    if ( ok == 0 ) {
288     return 0;
289    } else {
290     ROAR_WARN("restart_server(*): Can not kill roard by pidfile");
291    }
292   } else {
293    ROAR_WARN("restart_server(*): Can not find a PID in the pidfile");
294   }
295  }
296 }
297#endif
[2109]298
[579]299 if ( roar_connect(&con, server) == -1 ) {
300  return -1;
301 }
302
[2109]303 if ( roar_terminate(&con, terminate) == -1 ) {
[579]304  return -1;
305 }
306
307 return roar_disconnect(&con);
308}
309
[444]310#define R_SETUID 1
311#define R_SETGID 2
312
[1609]313int init_config (void) {
314 int i;
315
316 memset(g_config, 0, sizeof(struct roard_config));
317
318 for (i = 0; i < ROAR_DIR_DIRIDS; i++) {
319  g_config->streams[i].mixer_channels = 1;
320  g_config->streams[i].mixer.rpg_mul  = 1;
321  g_config->streams[i].mixer.rpg_div  = 1;
322  g_config->streams[i].mixer.scale    = 65535;
323  g_config->streams[i].mixer.mixer[0] = g_config->streams[i].mixer.scale;
324 }
325
[2291]326 g_config->streams[ROAR_DIR_PLAY    ].flags = ROAR_FLAG_META;
[2413]327 g_config->streams[ROAR_DIR_OUTPUT  ].flags = ROAR_FLAG_PASSMIXER;
[2264]328 g_config->streams[ROAR_DIR_FILTER  ].flags = ROAR_FLAG_SYNC;
[1899]329 g_config->streams[ROAR_DIR_MIDI_OUT].flags = ROAR_FLAG_SYNC;
[2160]330 g_config->streams[ROAR_DIR_BIDIR   ].flags = ROAR_FLAG_ANTIECHO;
[1899]331
[2017]332 g_config->location = "***default***";
333
[1609]334 return 0;
335}
336
[2530]337#ifdef ROAR_SUPPORT_LISTEN
338int init_listening (void) {
339 int i;
340
[3128]341 memset(g_listen, 0, sizeof(g_listen));
342
[2530]343 for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
[3128]344  g_listen[i].proto  = ROAR_PROTO_ROARAUDIO;
[2530]345  server[i]          = NULL;
346 }
347
348 return 0;
349}
350
[3731]351int get_listen(struct roard_listen ** sock, char *** sockname) {
[3730]352 int i;
353
354 if ( sock == NULL )
355  return -1;
356
357 for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
[3802]358  if ( ! g_listen[i].used ) {
[3730]359   server[i] = NULL;
[3731]360   *sock = &(g_listen[i]);
[3730]361
[3733]362   if ( sockname != NULL )
[3730]363    *sockname = &(server[i]);
[3733]364
365   return 0;
[3730]366  }
367 }
368
369 return -1;
370}
371
[3956]372#ifdef ROAR_SUPPORT_LISTEN
373static struct _listen_profile {
374 const char * name;
375 int          type;
376 int          port;
377 const char * sockaddr;
378 int          proto;
379 int          dir;
380 const char * aiprofile;
381 const char * desc;
382} _g_listen_profiles[] = {
383 // RoarAudio:
[3992]384#ifdef ROAR_HAVE_UNIX
[4058]385 {"roar-usock",     ROAR_SOCKET_TYPE_UNIX,   0,                 "~/" ROAR_DEFAULT_SOCK_USER,
386                    ROAR_PROTO_ROARAUDIO, -1, NULL,
387                    "RoarAudio default user profile"},
388 {"roar-gsock",     ROAR_SOCKET_TYPE_UNIX,   0,                 ROAR_DEFAULT_SOCK_GLOBAL,
389                    ROAR_PROTO_ROARAUDIO, -1, NULL,
390                    "RoarAudio default global profile"},
[3992]391#endif
392#ifdef ROAR_HAVE_IPV4
[4058]393 {"roar-tcp",       ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_PORT, ROAR_DEFAULT_INET4_HOST,
394                    ROAR_PROTO_ROARAUDIO, -1, NULL,
395                    "RoarAudio local TCP profile"},
396 {"roar-tcp-pub",   ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_PORT, ROAR_NET_INET4_ANYHOST,
397                    ROAR_PROTO_ROARAUDIO, -1, NULL,
398                    "RoarAudio network TCP profile"},
[3992]399#endif
400#ifdef ROAR_HAVE_LIBDNET
[4058]401 {"roar-dnet",      ROAR_SOCKET_TYPE_DECNET, 0,                 ROAR_DEFAULT_LISTEN_OBJECT,
402                    ROAR_PROTO_ROARAUDIO, -1, NULL,
403                    "RoarAudio default DECnet"},
[3992]404#endif
405#ifdef ROAR_HAVE_UNIX
[4058]406 {"roar-abstract",  ROAR_SOCKET_TYPE_UNIX,   0,                 "+abstract",        ROAR_PROTO_ROARAUDIO, -1, NULL,
407                    "RoarAudio abstract namespace profile"},
[3992]408#endif
[3956]409
410 // EsounD:
[3992]411#if !defined(ROAR_WITHOUT_DCOMP_EMUL_ESD) && defined(ROAR_HAVE_H_ESD)
412#ifdef ROAR_HAVE_UNIX
[4058]413 {"esd-unix",       ROAR_SOCKET_TYPE_UNIX,   0,                 ROAR_DEFAULT_ESD_GSOCK,
414                    ROAR_PROTO_ESOUND,    -1, NULL,
415                    "EsounD default local profile"},
[3992]416#endif
417#ifdef ROAR_HAVE_IPV4
[4058]418 {"esd-tcp",        ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_ESD_PORT, ROAR_NET_INET4_LOCALHOST,
419                    ROAR_PROTO_ESOUND,    -1, NULL,
420                    "EsounD local TCP profile"},
421 {"esd-tcp-pub",    ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_ESD_PORT, ROAR_NET_INET4_ANYHOST,
422                    ROAR_PROTO_ESOUND,    -1, NULL,
423                    "EsounD network TCP profile"},
[3992]424#endif
425#endif
[3956]426
427 // RSound:
[3992]428#ifndef ROAR_WITHOUT_DCOMP_EMUL_RSOUND
429#ifdef ROAR_HAVE_UNIX
[4058]430 {"rsound-unix",    ROAR_SOCKET_TYPE_UNIX,   0,                 ROAR_DEFAULT_RSOUND_GSOCK,
431                    ROAR_PROTO_RSOUND,    -1, NULL,
432                    "RSound default local profile"},
[3992]433#endif
434#ifdef ROAR_HAVE_IPV4
[4058]435 {"rsound-tcp",     ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_RSOUND_PORT, ROAR_NET_INET4_LOCALHOST,
436                    ROAR_PROTO_RSOUND,    -1, NULL,
437                    "RSound local TCP profile"},
438 {"rsound-tcp-pub", ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_RSOUND_PORT, ROAR_NET_INET4_ANYHOST,
439                    ROAR_PROTO_RSOUND,    -1, NULL,
440                    "RSound network TCP profile"},
[3992]441#endif
442#ifdef ROAR_HAVE_LIBDNET
[4058]443 {"rsound-dnet",    ROAR_SOCKET_TYPE_DECNET, 0,                 ROAR_DEFAULT_RSOUND_OBJECT,
444                    ROAR_PROTO_RSOUND,    -1, NULL,
445                    "RSound DECnet profile"},
[3992]446#endif
447#endif
[3957]448
449 // PulseAudio Simple:
[3992]450#ifndef ROAR_WITHOUT_DCOMP_EMUL_SIMPLE
451#ifdef ROAR_HAVE_IPV4
[4058]452 {"pas-play-tcp",   ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_PA_PORT, ROAR_NET_INET4_ANYHOST,
453                    ROAR_PROTO_SIMPLE, ROAR_DIR_PLAY, "default",
454                    "PulseAudio Simple TCP play profile"},
455 {"pas-mon-tcp",    ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_PA_PORT, ROAR_NET_INET4_ANYHOST,
456                    ROAR_PROTO_SIMPLE, ROAR_DIR_MONITOR, "default",
457                    "PulseAudio Simple TCP monitor profile"},
[3992]458#endif
459#endif
[3987]460
461 // RPlay:
[3992]462#ifndef ROAR_WITHOUT_DCOMP_EMUL_RPLAY
463#ifdef ROAR_HAVE_IPV4
[4058]464 {"rplay-tcp",      ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_RPLAY_PORT, ROAR_NET_INET4_LOCALHOST,
465                    ROAR_PROTO_RPLAY,     -1, NULL,
466                    "RPlay local TCP profile"},
467 {"rplay-tcp-pub",  ROAR_SOCKET_TYPE_TCP,    ROAR_DEFAULT_RPLAY_PORT, ROAR_NET_INET4_ANYHOST,
468                    ROAR_PROTO_RPLAY,     -1, NULL,
469                    "RPlay network TCP profile"},
[3992]470#endif
471#endif
[3987]472
473 // End of List:
[3956]474 {NULL, -1, -1, NULL, -1, -1, NULL, NULL}
475};
476
477void listen_listen_profiles (void) {
478 struct _listen_profile * p;
479 char * type;
480 int i;
[3987]481 char port[8];
[3956]482
[3990]483 printf("Name           Type    Address          Port    Protocol  Dir        Audio Profile - Description\n");
[3956]484 printf("------------------------------------------------------------------------------------------------\n");
485      //roar-tcp-pub 0.0.0.0       16002   RoarAudio unknown    (null) - (null)
486
487 for (i = 0; (p = &(_g_listen_profiles[i]))->name != NULL; i++) {
488  switch (p->type) {
489   case ROAR_SOCKET_TYPE_UNIX:   type = "UNIX";   break;
490   case ROAR_SOCKET_TYPE_TCP:    type = "TCP";    break;
491   case ROAR_SOCKET_TYPE_DECNET: type = "DECnet"; break;
492   default:
493     type = "unknown";
494    break;
495  }
[3987]496
497  if ( p->port ) {
[4049]498   snprintf(port, sizeof(port)-1, "%i", p->port);
499   port[sizeof(port)-1] = 0;
[3987]500  } else {
501   strcpy(port, "(none)");
502  }
503
504  printf("%-14s %-7s %-16s %-7s %-9s %-10s %-13s - %s\n",
[3956]505           p->name,
506           type,
[3987]507           p->sockaddr, port,
[3956]508           roar_proto2str(p->proto),
[3957]509           p->dir == -1 ? "(none)" : roar_dir2str(p->dir), p->aiprofile == NULL ? "(none)" : p->aiprofile,
[3956]510           p->desc == NULL ? "" : p->desc);
511 }
512}
513
514int get_listen_profile (const char * name,
515                        int * port, char ** sockaddr, int * type,
516                        int * proto,
517                        int * dir, struct roar_audio_info * info) {
518 static char buf[1024];
519 struct _listen_profile * p;
520 int i;
521
522 for (i = 0; (p = &(_g_listen_profiles[i]))->name != NULL; i++) {
523  if ( !strcasecmp(p->name, name) ) {
524   *port     = p->port;
525
[3959]526   if ( p->type == ROAR_SOCKET_TYPE_UNIX && p->sockaddr[0] != '+' ) {
527    roar_env_render_path_r(buf, sizeof(buf), p->sockaddr);
528   } else {
529    strncpy(buf, p->sockaddr, sizeof(buf));
530   }
[3956]531   *sockaddr = buf;
532
533   *proto    = p->proto;
534   *dir      = p->dir;
535
536   if ( p->aiprofile != NULL ) {
537    if ( roar_profile2info(info, p->aiprofile) == -1 ) {
538     ROAR_ERR("Unknown audio profile: %s", p->aiprofile);
539     return -1;
540    }
541   }
542   return 0;
543  }
544 }
545
546 return -1;
547}
548#endif
549
[3252]550int add_listen (char * addr, int port, int sock_type, char * user, char * group, int proto, int dir, struct roar_audio_info * info) {
[2530]551#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
552 struct group   * grp  = NULL;
553#endif
554#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
555 struct passwd  * pwd  = NULL;
556#endif
557#ifdef ROAR_HAVE_UNIX
558 char * env_roar_proxy_backup;
559#endif
560 int    sockid = -1;
[3907]561#ifdef ROAR_HAVE_UNIX
[2530]562 int    sock;
[3907]563#endif
[2530]564 int    i;
565
[4055]566 ROAR_INFO("add_listen(addr='%s', port=%i, sock_type=%i, user='%s', group='%s', proto=%s(%i), dir=%s(%i), info={.rate=%u, .bits=%u, .channels=%u, .codec=%s(%u)}): trying to add listen socket",
567            ROAR_DBG_INFO_INFO,
568            addr, port, sock_type, user, group, roar_proto2str(proto), proto, roar_dir2str(dir), dir,
569            info->rate, info->bits, info->channels, roar_codec2str(info->codec), info->codec);
570
[2530]571 if ( *addr != 0 ) {
572  for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
[3802]573   if ( ! g_listen[i].used ) {
[2530]574    sockid = i;
575    break;
576   }
577  }
578
579  if ( sockid == -1 )
580   return -1;
581
[3128]582  g_listen[sockid].proto = proto;
[2530]583
584  ROAR_DBG("add_listen(*): proto=0x%.4x", proto);
585
[3802]586  if ( roar_vio_open_socket_listen(&(g_listen[sockid].sock), sock_type, addr, port) == -1 ) {
[2530]587#ifdef ROAR_HAVE_UNIX
588   if ( *addr == '/' ) {
589    if ( (env_roar_proxy_backup = getenv("ROAR_PROXY")) != NULL ) {
590     env_roar_proxy_backup = strdup(env_roar_proxy_backup);
591     unsetenv("ROAR_PROXY");
592    }
593    if ( (sock = roar_socket_connect(addr, port)) != -1 ) {
594     close(sock);
[3040]595     ROAR_ERR("Can not open listen socket: Socket allready in use");
[2530]596     return 1;
597    } else {
598     unlink(addr);
[3802]599     if ( roar_vio_open_socket_listen(&(g_listen[sockid].sock), sock_type, addr, port) == -1 ) {
[3040]600      ROAR_ERR("Can not open listen socket: %s", strerror(errno));
[2530]601      return 1;
602     }
603    }
604    if ( env_roar_proxy_backup != NULL ) {
605     setenv("ROAR_PROXY", env_roar_proxy_backup, 0);
606     free(env_roar_proxy_backup);
607    }
608#else
609   if (0) { // noop
610#endif
611   } else {
[3041]612    ROAR_ERR("Can not open listen socket: %s", strerror(errno));
[2530]613    return 1;
614   }
615  }
616
617#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
[2753]618  if ( group != NULL ) {
619   if ( (grp = getgrnam(group)) == NULL ) {
620    ROAR_ERR("Can not get GID for group %s: %s", group, strerror(errno));
621   }
[2530]622  }
623#endif
624#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
[2752]625  if ( user ) {
[2530]626   if ( (pwd = getpwnam(user)) == NULL ) {
627    ROAR_ERR("Can not get UID for user %s: %s", user, strerror(errno));
628   }
629  }
630#endif
631
632#if defined(ROAR_HAVE_IO_POSIX) && defined(ROAR_HAVE_UNIX)
633  if ( *addr == '/' ) {
[2753]634   if ( grp || pwd ) {
635     if ( chown(addr, pwd ? pwd->pw_uid : -1, grp ? grp->gr_gid : -1) == -1 )
[2530]636      return 1;
[2753]637   }
[2530]638#ifdef ROAR_HAVE_GETUID
[2753]639   if ( grp ) {
[2530]640    if ( getuid() == 0 )
641     if ( chmod(addr, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP) == -1 )
642      return 1;
[2753]643   }
[2530]644#endif
645  }
646#endif
647 }
648
[2736]649 // in case we opened the listening socket correctly.
[3256]650 if ( dir == -1 )
651  dir = ROAR_DIR_PLAY;
652
[3252]653 g_listen[sockid].inst.stpl.dir = dir;
654 memcpy(&(g_listen[sockid].inst.stpl.info), info, sizeof(struct roar_audio_info));
[3256]655
656 switch (dir) {
657  case ROAR_DIR_PLAY:
658  case ROAR_DIR_RECORD:
659  case ROAR_DIR_MONITOR:
660  case ROAR_DIR_FILTER:
661  case ROAR_DIR_BIDIR:
662    if ( !g_listen[sockid].inst.stpl.info.rate )
663     g_listen[sockid].inst.stpl.info.rate = g_sa->rate;
664
665    if ( !g_listen[sockid].inst.stpl.info.bits )
666     g_listen[sockid].inst.stpl.info.bits = g_sa->bits;
667
668    if ( !g_listen[sockid].inst.stpl.info.channels )
669     g_listen[sockid].inst.stpl.info.channels = g_sa->channels;
670
671    if ( !g_listen[sockid].inst.stpl.info.codec )
672     g_listen[sockid].inst.stpl.info.codec = g_sa->codec;
673   break;
674 }
675
[3802]676 g_listen[sockid].used = 1;
677 server[sockid]        = addr;
678
[2530]679 return 0;
680}
681#endif
682
[2339]683int update_stream_flags (char * str) {
684 int    dir;
685 char * flags;
686 char * k;
687 int    op;
688 int    flag;
689
690 if ( (flags = strstr(str, "=")) == NULL )
691  return -1;
692
693 *flags = 0;
694  flags++;
695
696 if ( (dir = roar_str2dir(str)) == -1 )
697  return -1;
698
699 while (flags != NULL) {
700  k = flags;
701  flags = strstr(flags, ",");
702
703  if ( flags != NULL )
704   *(flags++) = 0;
705
706  switch (*k) {
[2340]707   case '+': k++; op = ROAR_SET_FLAG;   break;
708   case '-': k++; op = ROAR_RESET_FLAG; break;
[2339]709   default:
[2340]710     op = ROAR_SET_FLAG;
[2339]711  }
712
713  flag = 0;
714
715  if ( !strcmp(k, "sync") ) {
716   flag = ROAR_FLAG_SYNC;
717  } else if ( !strcmp(k, "meta") ) {
718   flag = ROAR_FLAG_META;
719  } else if ( !strcmp(k, "cleanmeta") ) {
720   flag = ROAR_FLAG_CLEANMETA;
721  } else if ( !strcmp(k, "pause") ) {
722   flag = ROAR_FLAG_PAUSE;
723  } else if ( !strcmp(k, "mute") ) {
724   flag = ROAR_FLAG_MUTE;
725  } else if ( !strcmp(k, "antiecho") ) {
726   flag = ROAR_FLAG_ANTIECHO;
[2413]727  } else if ( !strcmp(k, "passmixer") ) {
728   flag = ROAR_FLAG_PASSMIXER;
[2339]729  } else {
730   return -1;
731  }
732
733  g_config->streams[dir].flags |= flag;
734
[2340]735  if ( op == ROAR_RESET_FLAG )
[2339]736   g_config->streams[dir].flags -= flag;
737 }
738
739 return 0;
740}
741
[4140]742#ifdef ROAR_DRIVER_DEFAULT
743#define add_default_output add_output
744#else
745int add_default_output (char * drv, char * dev, char * opts, int prim, int count) {
[4141]746 char * drvs[] = {
[4144]747  // native and pseudo-native interfaces:
748  "oss", "alsa", "sndio", "wmm",
749  // sound libs:
750  "ao", "portaudio",
751  // other sound systems:
752  "esd", "rsound", "pulsesimple", "roar",
753  // specal buildins:
754  "sysclock", "null",
755  // terminator:
[4140]756  NULL
757 };
758 int i;
759 int ret;
[4144]760 int _alive;
[4140]761
762 if ( drv != NULL )
763  return add_output(drv, dev, opts, prim, count);
764
765 if ( dev != NULL ) {
[4141]766  ROAR_WARN("add_default_output(drv=(none), dev='%s', opts='%s', prim=%i, count=%i): It's not recommended to use device name without driver name.", dev, opts, prim, count);
[4140]767 }
768
769 for (i = 0; drvs[i] != NULL; i++) {
[4141]770  ROAR_INFO("add_default_output(*): trying driver %s", ROAR_DBG_INFO_INFO, drvs[i]);
[4144]771  _alive = alive; // save global alive setting
772
[4140]773  ret = add_output(drvs[i], dev, opts, prim, count);
774  if ( ret != -1 )
775   return ret;
[4144]776
777  alive = _alive; // restore global alive setting
[4141]778  ROAR_INFO("add_default_output(*): Driver %s faild to load", ROAR_DBG_INFO_VERBOSE, drvs[i]);
[4140]779 }
780
781 return -1;
782}
783#endif
784
[1145]785int add_output (char * drv, char * dev, char * opts, int prim, int count) {
[933]786 int stream;
787 struct roar_stream * s;
788 struct roar_stream_server * ss;
[938]789 char * k, * v;
[1208]790#ifdef ROAR_DRIVER_CODEC
791 char * to_free = NULL;
792#endif
[1926]793 int sync = 0, f_mmap = 0;
[1522]794 int32_t blocks = -1, blocksize = -1;
[1920]795 int dir = ROAR_DIR_OUTPUT;
[1991]796 int error = 0;
797 // DMX:
798 int32_t channel  = -1;
799 int32_t universe = -1;
800 uint16_t tu16;
[2085]801 float q = -32e6;
[933]802
[4055]803 ROAR_INFO("add_output(drv='%s', dev='%s', opts='%s', prim=%i, count=%i): trying to add output driver", ROAR_DBG_INFO_INFO, drv, dev, opts, prim, count);
[933]804
[1145]805 if ( drv == NULL && count == 0 ) {
[4141]806#ifdef ROAR_DRIVER_DEFAULT
[1145]807  drv  = ROAR_DRIVER_DEFAULT;
808  prim = 1;
809  sync = 1;
[1208]810
811#ifdef ROAR_DRIVER_CODEC
812  if ( opts == NULL ) {
813   opts = to_free = strdup("codec=" ROAR_DRIVER_CODEC);
814  }
815#endif
[4141]816#else
817  ROAR_ERR("add_output(*): Can not find default driver");
818  return -1;
819#endif
[1145]820 }
821
[1227]822 if ( opts == NULL && count == 0 ) {
823  sync = 1;
824  prim = 1; // if ( prim == 0 ) prim = 1; -> prim allways = 1
825 }
826
[2785]827 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
828
[933]829 if ( (stream = streams_new()) == -1 ) {
[938]830  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
[982]831  if ( prim ) alive = 0;
[933]832  return -1;
833 }
834
[2785]835 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
836
[933]837 streams_get(stream, &ss);
838 s = ROAR_STREAM(ss);
839
[2785]840 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
841
[2511]842 memset(&(s->info), 0xFF, sizeof(struct roar_audio_info)); // set everything to -1
[933]843
844 s->pos_rel_id = -1;
845// s->info.codec = codec;
846
[2785]847 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
848
[2788]849 if ( opts == NULL ) {
850  k = NULL;
851 } else {
852  k = strtok(opts, ",");
853 }
[2786]854
855 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s'): initial k='%s'(%p)", drv, dev, opts, k, k);
856
[938]857 while (k != NULL) {
858//  ROAR_WARN("add_output(*): opts: %s", k);
859
860  if ( (v = strstr(k, "=")) != NULL ) {
861   *v++ = 0;
862  }
863
864  ROAR_DBG("add_output(*): opts: k='%s', v='%s'", k, v);
865  if ( strcmp(k, "rate") == 0 ) {
866   s->info.rate = atoi(v);
867  } else if ( strcmp(k, "channels") == 0 ) {
868   s->info.channels = atoi(v);
869  } else if ( strcmp(k, "bits") == 0 ) {
870   s->info.bits = atoi(v);
871  } else if ( strcmp(k, "codec") == 0 ) {
[2511]872   if ( (s->info.codec = roar_str2codec(v)) == -1 ) {
[938]873    ROAR_ERR("add_output(*): unknown codec '%s'", v);
[1991]874    error++;
[938]875   }
[2085]876  } else if ( strcmp(k, "q") == 0 ) {
877   q = atof(v);
[1221]878  } else if ( strcmp(k, "blocks") == 0 ) {
879   blocks = atoi(v);
[1522]880  } else if ( strcmp(k, "blocksize") == 0 ) {
881   blocksize = atoi(v);
[1926]882  } else if ( strcmp(k, "mmap") == 0 ) {
883   f_mmap = 1;
[1919]884  } else if ( strcmp(k, "subsystem") == 0 ) {
885   if ( !strcasecmp(v, "wave") || !strcasecmp(v, "waveform") ) {
[1920]886    dir = ROAR_DIR_OUTPUT;
[2494]887#ifndef ROAR_WITHOUT_DCOMP_MIDI
[1919]888   } else if ( !strcasecmp(v, "midi") ) {
889    dir = ROAR_DIR_MIDI_OUT;
[2494]890#endif
891#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1919]892   } else if ( !strcasecmp(v, "light") ) {
893    dir = ROAR_DIR_LIGHT_OUT;
[2494]894#endif
895#ifndef ROAR_WITHOUT_DCOMP_RAW
[2234]896   } else if ( !strcasecmp(v, "raw") ) {
897    dir = ROAR_DIR_RAW_OUT;
[2494]898#endif
[2681]899   } else if ( !strcasecmp(v, "complex") ) {
900    dir = ROAR_DIR_COMPLEX_OUT;
[1919]901   } else {
[2494]902    ROAR_ERR("add_output(*): unknown/unsupported subsystem '%s'", k);
[1991]903    error++;
904   }
905  // DMX:
906  } else if ( strcmp(k, "channel") == 0 ) {
907   channel  = atoi(v);
908   if ( channel < 0 || channel > 65535 ) {
909    ROAR_ERR("add_output(*): Invalide channel (not within 0..65535): %i", channel);
910    channel = -1;
911    error++;
[1919]912   }
[1991]913  } else if ( strcmp(k, "universe") == 0 ) {
914   universe = atoi(v);
915   if ( universe < 0 || universe > 255 ) {
916    ROAR_ERR("add_output(*): Invalide universe (not within 0..255): %i", universe);
917    universe = -1;
918    error++;
919   }
920
[2115]921  } else if ( strcmp(k, "name") == 0 ) {
922   if ( streams_set_name(stream, v) == -1 ) {
923    ROAR_ERR("add_output(*): Can not set Stream name");
924    error++;
925   }
[1991]926
[1032]927  } else if ( strcmp(k, "meta") == 0 ) {
928   streams_set_flag(stream, ROAR_FLAG_META);
[1117]929  } else if ( strcmp(k, "sync") == 0 ) {
930   sync = 1;
[1221]931  } else if ( strcmp(k, "primary") == 0 ) {
932   prim = 1;
933
934  } else if ( strcmp(k, "cleanmeta") == 0 ) {
935   streams_set_flag(stream, ROAR_FLAG_CLEANMETA);
936  } else if ( strcmp(k, "autoconf") == 0 ) {
[1531]937   streams_set_flag(stream, ROAR_FLAG_AUTOCONF);
[2413]938  } else if ( strcmp(k, "recsource") == 0 ) {
939   streams_set_flag(stream, ROAR_FLAG_RECSOURCE);
940  } else if ( strcmp(k, "passmixer") == 0 ) {
941   streams_set_flag(stream, ROAR_FLAG_PASSMIXER);
[938]942  } else {
943   ROAR_ERR("add_output(*): unknown option '%s'", k);
[1991]944   error++;
945  }
946
947  if ( error ) {
[938]948   streams_delete(stream);
[982]949   if ( prim ) alive = 0;
[1208]950#ifdef ROAR_DRIVER_CODEC
951   if ( to_free != NULL )
952    free(to_free);
953#endif
[938]954   return -1;
955  }
956
957  k = strtok(NULL, ",");
958 }
959
[2785]960 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
961
[2511]962 // set audio info...
963 switch (dir) {
964  case ROAR_DIR_LIGHT_OUT:
965    switch (s->info.codec) {
966     case ROAR_CODEC_DMX512:
967     case -1:
968       if ( s->info.rate == -1 )
969        s->info.rate = ROAR_OUTPUT_CFREQ;
970
971       s->info.channels =   0;
972       s->info.bits     =   8;
973       s->info.codec    = ROAR_CODEC_DMX512; // in case codec == -1
974      break;
975    }
976   break;
977  case ROAR_DIR_MIDI_OUT:
978    switch (s->info.codec) {
979     case ROAR_CODEC_MIDI:
980     case -1:
981       if ( s->info.rate == -1 )
982        s->info.rate    = ROAR_MIDI_TICKS_PER_BEAT;
983
984       s->info.channels = ROAR_MIDI_CHANNELS_DEFAULT;
985       s->info.bits     = ROAR_MIDI_BITS;
986       s->info.codec    = ROAR_CODEC_MIDI; // in case codec == -1
987      break;
988    }
989   break;
990  case ROAR_DIR_RAW_OUT:
991    if ( s->info.rate == -1 )
992     s->info.rate = 0;
993    if ( s->info.bits == -1 )
994     s->info.bits = 0;
995    if ( s->info.channels == -1 )
996     s->info.channels = 0;
997    if ( s->info.codec == -1 )
998     s->info.codec = 0;
999   break;
1000 }
1001
1002 if ( s->info.rate == -1 )
1003  s->info.rate = g_sa->rate;
1004 if ( s->info.bits == -1 )
1005  s->info.bits = g_sa->bits;
1006 if ( s->info.channels == -1 )
1007  s->info.channels = g_sa->channels;
1008 if ( s->info.codec == -1 )
1009  s->info.codec = g_sa->codec;
1010
1011 ROAR_DBG("add_output(*): s->info = {.rate=%i, .bits=%i, .channels=%i, .codec=%i}", s->info.rate, s->info.bits, s->info.channels, s->info.codec);
1012
[1919]1013 if ( streams_set_dir(stream, dir, 1) == -1 ) {
1014  streams_delete(stream);
1015  return -1;
1016 }
1017
[1208]1018#ifdef ROAR_DRIVER_CODEC
1019 if ( to_free != NULL )
1020  free(to_free);
1021#endif
1022
[2511]1023 if ( s->info.codec == ROAR_CODEC_ALAW || s->info.codec == ROAR_CODEC_MULAW )
[941]1024  s->info.bits = 8; // needed to open OSS driver, will be overriden by codecfilter
1025
[2511]1026 ROAR_STREAM_SERVER(s)->codec_orgi = s->info.codec;
[933]1027
[2364]1028 if ( driver_openvio(&(ss->vio), &(ss->driver_id), drv, dev, &(s->info), -1, ss) == -1 ) {
[1581]1029  ss->driver_id = -1; // don't close a driver not opened...
1030  memset(&(ss->vio), 0, sizeof(struct roar_vio_calls));
[933]1031  streams_delete(stream);
[938]1032  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
[982]1033  if ( prim ) alive = 0;
[933]1034  return -1;
1035 }
1036
[1528]1037 roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_SSTREAMID, &stream); // ignore errors here
1038 roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_SSTREAM,   s); // ignore errors here
1039
[1221]1040 if ( blocks != -1 )
1041  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DBLOCKS, &blocks);
1042
[1522]1043 if ( blocksize != -1 )
1044  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DBLKSIZE, &blocksize);
1045
[1991]1046 // TODO: we shoudld *really* check for errors here...
1047 if ( channel != -1 ) {
1048  tu16 = channel;
1049  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DMXSCHAN, &tu16);
1050 }
1051 if ( universe != -1 ) {
1052  tu16 = universe;
1053  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DMXUNIV, &tu16);
1054 }
1055
[1156]1056 ROAR_DBG("add_output(*): ss->driver_id=%i", ss->driver_id);
1057
[938]1058 streams_set_fh(stream, -1); // update some internal structures
1059
[2087]1060 if ( q > -1e6 ) {
1061  ROAR_DBG("add_output(*): setting q=%f", q);
1062  streams_ctl(stream, ROAR_CODECFILTER_CTL_SET_Q|ROAR_STREAM_CTL_TYPE_FLOAT, &q);
1063 }
1064
[2490]1065 client_stream_add(g_self_client, stream);
[933]1066
[1200]1067 if ( prim ) {
[961]1068  streams_mark_primary(stream);
[1200]1069  s->pos_rel_id = stream;
1070 }
[961]1071
[1120]1072 if ( sync ) {
[1117]1073  streams_set_flag(stream, ROAR_FLAG_SYNC);
[1120]1074 } else {
1075  streams_reset_flag(stream, ROAR_FLAG_SYNC);
1076 }
[1117]1077
[1926]1078 if ( f_mmap )
1079  streams_set_flag(stream, ROAR_FLAG_MMAP);
1080
[2511]1081 ROAR_DBG("add_output(*): s->info = {.rate=%i, .bits=%i, .channels=%i, .codec=%i}", s->info.rate, s->info.bits, s->info.channels, s->info.codec);
[933]1082 return 0;
[932]1083}
1084
[3373]1085// X11:
1086#ifdef ROAR_HAVE_LIBX11
1087int register_x11 (int unreg, char * sockname) {
1088 struct roar_x11_connection * x11con = NULL;
1089 int ret = 0;
1090
[4103]1091 if ( (x11con = roar_x11_connect(x11display)) == NULL ) {
[4155]1092  ROAR_ERR("Can not connect to X11 server for %sregistering", unreg ? "un" : "");
[3373]1093  return -1;
[4103]1094 }
[3373]1095
1096 if ( unreg ) {
[4103]1097  if ( roar_x11_delete_prop(x11con, "ROAR_SERVER") == -1 ) {
[3373]1098   ret = -1;
[4103]1099   ROAR_ERR("Error while unregistereing from X11", ROAR_DBG_INFO_INFO);
1100  } else {
1101   ROAR_INFO("Successfully unregistered from X11", ROAR_DBG_INFO_INFO);
1102  }
[3373]1103 } else {
[4103]1104  if ( roar_x11_set_prop(x11con, "ROAR_SERVER", sockname) == -1 ) {
[3373]1105   ret = -1;
[4103]1106   ROAR_ERR("Error while registereing to X11", ROAR_DBG_INFO_INFO);
1107  } else {
1108   ROAR_INFO("Successfully registered to X11", ROAR_DBG_INFO_INFO);
1109  }
[3373]1110 }
1111
1112 roar_x11_disconnect(x11con);
1113
1114 return ret;
1115}
1116#endif
[1993]1117
1118// SLP:
1119void register_slp_callback(SLPHandle hslp, SLPError errcode, void * cookie) {
1120 /* return the error code in the cookie */
1121 *(SLPError*)cookie = errcode;
1122}
1123
1124int register_slp (int unreg, char * sockname) {
1125#ifdef ROAR_HAVE_LIBSLP
1126 static int regged = 0;
1127 static char * sn = NULL;
1128 SLPError err;
1129 SLPError callbackerr;
1130 SLPHandle hslp;
1131 char addr[1024];
1132 char attr[1024] = "";
[2017]1133 char * location;
[1993]1134
1135 if ( sockname != NULL )
1136  sn = sockname;
1137
[3076]1138 snprintf(addr, sizeof(addr), ROAR_SLP_URL_TYPE_ROAR "://%s", sn);
[1993]1139
1140 err = SLPOpen("en", SLP_FALSE, &hslp);
1141
1142 if (err != SLP_OK) {
1143  ROAR_ERR("Error opening slp handle: Error #%i", err);
1144  return -1;
1145 }
1146
1147 if (!unreg) {
[2017]1148
1149  if ( SLPEscape(g_config->location, &location, SLP_FALSE) != SLP_OK ) {
1150   ROAR_ERR("Error using SLPEscape() on server location, really bad!");
1151   SLPClose(hslp);
1152   return -1;
1153  }
1154
[1995]1155  snprintf(attr, sizeof(attr), "(wave-rate=%i),(wave-channels=%i),(wave-bits=%i),"
[2494]1156#ifndef ROAR_WITHOUT_DCOMP_LIGHT
1157                               "(light-channels=%i),"
1158#endif
1159                               "(location=%s)",
[1995]1160           g_sa->rate, g_sa->channels, g_sa->bits,
[2494]1161#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[2017]1162           g_light_state.channels,
[2494]1163#endif
[2017]1164           location
[1995]1165          );
1166
[1993]1167  /* Register a service with SLP */
1168  err = SLPReg(hslp,
1169               addr,
1170               SLP_LIFETIME_MAXIMUM,
1171               0,
1172               attr,
1173               SLP_TRUE,
1174               register_slp_callback,
1175               &callbackerr);
[1994]1176  regged = 1;
1177 } else if ( unreg && regged ) {
1178  err = SLPDereg(hslp, addr, register_slp_callback, &callbackerr);
1179  regged = 0;
1180 } else {
1181  SLPClose(hslp);
1182  return -1;
1183 }
[1993]1184
[1994]1185 /* err may contain an error code that occurred as the slp library    */
1186 /* _prepared_ to make the call.                                     */
1187 if ( err != SLP_OK ) {
1188  ROAR_ERR("Error (de)registering service with slp: Error #%i", err);
1189  return -1;
1190 }
1191
1192 /* callbackerr may contain an error code (that was assigned through */
1193 /* the callback cookie) that occurred as slp packets were sent on    */
1194 /* the wire */
1195 if (callbackerr != SLP_OK) {
1196  ROAR_ERR("Error (de)registering service with slp: Error #%i", callbackerr);
1197  return -1;
[1993]1198 }
1199
1200 SLPClose(hslp);
1201 return 0;
1202#else
1203 return -1;
1204#endif
1205}
1206
1207
1208// MAIN:
1209
[4053]1210#define _CKHAVEARGS(x) if ( (i + (x)) >= argc ) { \
1211                        ROAR_ERR("Option %s requires more arguments. See --help for more details.", k); \
1212                        return 70; \
1213                       }
[4052]1214
[1503]1215#ifdef ROAR_HAVE_MAIN_ARGS
[0]1216int main (int argc, char * argv[]) {
[1503]1217#else
1218int main (void) {
1219#endif
1220#ifdef ROAR_HAVE_MAIN_ARGS
[0]1221 int i;
1222 char * k;
[1503]1223#endif
[2787]1224#if defined(ROAR_SUPPORT_LISTEN) && defined(ROAR_HAVE_GETUID)
[905]1225 char user_sock[80]  = {0};
[1494]1226#endif
[1609]1227 struct roar_audio_info sa, max_sa;
1228 struct roard_config config;
[1486]1229#ifdef ROAR_HAVE_FORK
[905]1230 int    daemon       = 0;
[1486]1231#endif
[905]1232 int    realtime     = 0;
1233 int    sysclocksync = 0;
[1207]1234 char * driver    = NULL;
1235 char * device    = NULL;
[1503]1236#ifdef ROAR_HAVE_MAIN_ARGS
[1207]1237 char * opts      = NULL;
[1503]1238#endif
[60]1239// char * server = ROAR_DEFAULT_SOCK_GLOBAL;
[1494]1240#ifdef ROAR_SUPPORT_LISTEN
[2530]1241 int    port       = ROAR_DEFAULT_PORT;
1242 char * sock_addr  = NULL;
1243 int    sock_proto = ROAR_PROTO_ROARAUDIO;
[3252]1244 int    sock_dir   = -1;
1245 struct roar_audio_info sock_info = {0, 0, 0, 0};
[1494]1246#endif
[0]1247 int               drvid;
[2486]1248#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[550]1249 char * s_drv     = "cf";
[1110]1250 char * s_dev     = NULL;
[444]1251 char * s_con     = NULL;
1252 char * s_opt     = NULL;
1253 int    s_prim    = 0;
[2486]1254#endif
[1207]1255 char * o_drv     = getenv("ROAR_DRIVER");
1256 char * o_dev     = getenv("ROAR_DEVICE");
[932]1257 char * o_opts    = NULL;
[961]1258 int    o_prim    = 0;
[1145]1259 int    o_count   = 0;
[2494]1260#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1923]1261 int    light_channels = LIGHT_CHANNELS_DEFAULT;
[2494]1262#endif
[2751]1263#ifdef ROAR_DEFAULT_SOCKGRP
[450]1264 char * sock_grp  = ROAR_DEFAULT_SOCKGRP;
[2751]1265#else
1266 char * sock_grp  = NULL;
1267#endif
[444]1268 char * sock_user = NULL;
[1494]1269#ifdef ROAR_SUPPORT_LISTEN
[517]1270 int    sock_type = ROAR_SOCKET_TYPE_UNKNOWN;
[1494]1271#endif
[1993]1272#ifdef ROAR_HAVE_LIBSLP
1273 int    reg_slp   = 0;
1274#endif
[3373]1275#ifdef ROAR_HAVE_LIBX11
1276 int    reg_x11   = 0;
1277#endif
[1486]1278#ifdef ROAR_HAVE_CHROOT
[444]1279 char * chrootdir = NULL;
[1486]1280#endif
1281#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
[446]1282 struct group   * grp  = NULL;
[1486]1283#endif
1284#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
[446]1285 struct passwd  * pwd  = NULL;
[1486]1286#endif
1287#ifdef ROAR_HAVE_GETSERVBYNAME
[446]1288 struct servent * serv = NULL;
[1486]1289#endif
[0]1290 DRIVER_USERDATA_T drvinst;
[39]1291 struct roar_client * self = NULL;
[508]1292#ifdef ROAR_HAVE_LIBDNET
1293 char decnethost[80];
1294#endif
[2104]1295#ifdef SUPPORT_PIDFILE
1296 struct roar_vio_calls pidfile_vio;
1297#endif
[0]1298
[2784]1299 ROAR_DBG("main(*): starting roard...");
1300
[0]1301 g_standby       =  0;
[920]1302 g_autostandby   =  0;
[982]1303 alive           =  1;
[1494]1304#ifdef ROAR_SUPPORT_LISTEN
[1155]1305 g_no_listen     =  0;
[1494]1306#else
1307 g_terminate     =  1;
1308#endif
[0]1309
[2970]1310 g_verbose       = ROAR_DBG_INFO_NONE;
1311
[0]1312 sa.bits     = ROAR_BITS_DEFAULT;
1313 sa.channels = ROAR_CHANNELS_DEFAULT;
1314 sa.rate     = ROAR_RATE_DEFAULT;
1315 sa.codec    = ROAR_CODEC_DEFAULT;
1316
[1609]1317 g_sa        = &sa;
1318 g_max_sa    = &max_sa;
1319
1320 memcpy(g_max_sa, g_sa, sizeof(max_sa));
1321
[4101]1322 counters_init();
1323
[1609]1324 g_config = &config;
1325
1326 if ( init_config() == -1 ) {
1327  ROAR_ERR("Can not init default config!");
1328  return 1;
1329 }
[0]1330
[2968]1331 // load config
1332 roar_libroar_get_config();
1333
[2530]1334#ifdef ROAR_SUPPORT_LISTEN
1335 if ( init_listening() == -1 ) {
1336  ROAR_ERR("Can not init listening sockets!");
1337  return 1;
1338 }
1339#endif
1340
[2500]1341#ifndef ROAR_WITHOUT_DCOMP_MIDI
[1924]1342 if ( midi_init_config() == -1 ) {
1343  ROAR_ERR("Can not init MIDI config!");
1344  return 1;
1345 }
[2500]1346#endif
[60]1347
[2489]1348#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2451]1349 if ( ssynth_init_config() == -1 ) {
1350  ROAR_ERR("Can not init ssynth config!");
1351  return 1;
1352 }
[2489]1353#endif
[2451]1354
[2718]1355#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1356 if ( rdtcs_init_config() == -1 ) {
1357  ROAR_ERR("Can not init RDTCS config!");
1358  return 1;
1359 }
1360#endif
1361
[3354]1362 if ( plugins_preinit() == -1 ) {
1363  ROAR_ERR("Can not pre-init plugins!");
1364  return 1;
1365 }
1366
[1494]1367#ifdef ROAR_SUPPORT_LISTEN
[2767]1368#ifndef ROAR_TARGET_WIN32
[2530]1369 sock_addr = ROAR_DEFAULT_SOCK_GLOBAL;
[2767]1370#else
1371 sock_addr = ROAR_DEFAULT_HOST;
1372#endif
1373
[1753]1374#ifdef ROAR_HAVE_GETUID
[1486]1375 if ( getuid() != 0 && getenv("HOME") != NULL ) {
[3959]1376/*
[1486]1377  snprintf(user_sock, 79, "%s/%s", (char*)getenv("HOME"), ROAR_DEFAULT_SOCK_USER);
[3959]1378*/
1379  roar_env_render_path_r(user_sock, sizeof(user_sock), "~/" ROAR_DEFAULT_SOCK_USER);
[2530]1380  sock_addr = user_sock;
[3959]1381  ROAR_DBG("main(*): setting sock_addr='%s'", sock_addr);
[60]1382 }
[1753]1383#endif
[60]1384
[279]1385 if ( getenv("ROAR_SERVER") != NULL )
[2530]1386  sock_addr = getenv("ROAR_SERVER");
[1494]1387#endif
[279]1388
[63]1389 if ( clients_init() == -1 ) {
1390  ROAR_ERR("Can not init clients!");
1391  return 1;
1392 }
1393
1394 if ( streams_init() == -1 ) {
1395  ROAR_ERR("Can not init streams!");
1396  return 1;
1397 }
1398
[64]1399 if ( (g_self_client = clients_new()) == -1 ) {
1400  ROAR_ERR("Can not create self client!");
1401  return 1;
1402 }
1403
[2485]1404#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[0]1405 if ( sources_init() == -1 ) {
1406  ROAR_ERR("Can not init sources!");
1407  return 1;
1408 }
1409
[64]1410 if ( (sources_set_client(g_self_client)) == -1 ) {
1411  ROAR_ERR("Can not init set source client!");
1412  return 1;
1413 }
[2485]1414#endif
[64]1415
[1503]1416#ifdef ROAR_HAVE_MAIN_ARGS
[0]1417 for (i = 1; i < argc; i++) {
1418  k = argv[i];
1419
1420  if ( strcmp(k, "-h") == 0 || strcmp(k, "--help") == 0 ) {
1421   usage();
1422   return 0;
1423
[2109]1424  } else if ( strcmp(k, "--start") == 0 ) {
1425   // this is a no op
[579]1426  } else if ( strcmp(k, "--restart") == 0 ) {
[1494]1427#ifdef ROAR_SUPPORT_LISTEN
[2530]1428   if ( restart_server(sock_addr, 1) == -1 ) {
1429    ROAR_WARN("Can not terminate old server (not running at %s?), tring to continue anyway", sock_addr);
[579]1430   }
[1494]1431#else
1432   ROAR_ERR("--restart not supported");
1433#endif
[2109]1434  } else if ( strcmp(k, "--shutdown") == 0 ) {
1435#ifdef ROAR_SUPPORT_LISTEN
[2530]1436   if ( restart_server(sock_addr, 1) == -1 ) {
1437    ROAR_WARN("Can not terminate old server (not running at %s?)", sock_addr);
[2109]1438    return 1;
1439   }
1440   return 0;
1441#else
1442   ROAR_ERR("--shutdown not supported");
1443   return 1;
1444#endif
1445  } else if ( strcmp(k, "--stop") == 0 ) {
1446#ifdef ROAR_SUPPORT_LISTEN
[2530]1447   if ( restart_server(sock_addr, 0) == -1 ) {
1448    ROAR_WARN("Can not stop old server (not running at %s?)", sock_addr);
[2109]1449    return 1;
1450   }
1451   return 0;
1452#else
1453   ROAR_ERR("--stop not supported");
1454   return 1;
1455#endif
1456
[579]1457
[775]1458  } else if ( strcmp(k, "--demon") == 0 || strcmp(k, "--daemon") == 0 ) {
[1486]1459#ifdef ROAR_HAVE_FORK
[775]1460   daemon = 1;
[1486]1461#else
1462   ROAR_ERR("--daemon not supported");
1463#endif
[2970]1464  } else if ( strcmp(k, "--verbose") == 0 ) {
1465   g_verbose++;
[71]1466  } else if ( strcmp(k, "--terminate") == 0 ) {
1467   g_terminate = 1;
[905]1468  } else if ( strcmp(k, "--sysclocksync") == 0 ) {
1469   sysclocksync = 1000;
[275]1470  } else if ( strcmp(k, "--realtime") == 0 ) {
[276]1471   realtime++;
[444]1472  } else if ( strcmp(k, "--chroot") == 0 ) {
[4052]1473   _CKHAVEARGS(1);
[1486]1474#ifdef ROAR_HAVE_CHROOT
[444]1475   chrootdir = argv[++i];
[1486]1476#else
1477   ROAR_ERR("--chroot not supported");
1478   i++;
1479#endif
[444]1480  } else if ( strcmp(k, "--setgid") == 0 ) {
[1486]1481#ifdef ROAR_HAVE_SETGID
[444]1482   setids |= R_SETGID;
[1486]1483#else
1484   ROAR_ERR("--setgid not supported");
1485#endif
[444]1486  } else if ( strcmp(k, "--setuid") == 0 ) {
[1486]1487#ifdef ROAR_HAVE_SETUID
[444]1488   setids |= R_SETUID;
[1486]1489#else
1490   ROAR_ERR("--setuid not supported");
1491#endif
[2017]1492  } else if ( strcmp(k, "--location") == 0 ) {
[4052]1493   _CKHAVEARGS(1);
[2017]1494   g_config->location = argv[++i];
[2104]1495  } else if ( strcmp(k, "--pidfile") == 0 ) {
[4052]1496   _CKHAVEARGS(1);
[2104]1497#ifdef SUPPORT_PIDFILE
1498   pidfile = argv[++i];
1499#else
1500   ROAR_ERR("--pidfile not supported");
1501   i++;
1502#endif
[3688]1503  } else if ( strcmp(k, "--log-syslog") == 0 ) {
1504#ifdef ROAR_HAVE_SYSLOG
1505   roar_debug_set_stderr_mode(ROAR_DEBUG_MODE_SYSLOG);
1506#else
1507   ROAR_ERR("--log-syslog not supported");
1508#endif
1509
[68]1510
[3356]1511  } else if ( strcmp(k, "--plugin-load") == 0 ) {
[4052]1512   _CKHAVEARGS(1);
[3356]1513   if ( plugins_load(argv[++i]) == -1 ) {
1514    ROAR_ERR("Can not load plugin");
1515   }
1516
[280]1517  } else if ( strcmp(k, "--list-cf") == 0 ) {
1518   print_codecfilterlist();
1519   return 0;
1520
[0]1521  } else if ( strcmp(k, "-R") == 0 || strcmp(k, "--rate") == 0 ) {
[4052]1522   _CKHAVEARGS(1);
[0]1523   sa.rate = atoi(argv[++i]);
1524  } else if ( strcmp(k, "-B") == 0 || strcmp(k, "--bits") == 0 ) {
[4052]1525   _CKHAVEARGS(1);
[0]1526   sa.bits = atoi(argv[++i]);
1527  } else if ( strcmp(k, "-C") == 0 || strcmp(k, "--chans") == 0 ) {
[4052]1528   _CKHAVEARGS(1);
[0]1529   sa.channels = atoi(argv[++i]);
1530
[3962]1531  } else if ( strcmp(k, "--aiprofile") == 0 ) {
[4052]1532   _CKHAVEARGS(1);
[3962]1533   if ( roar_profile2info(&sa, argv[++i]) == -1 ) {
1534    ROAR_ERR("Unknown audio profile: %s", argv[i]);
1535    return 1;
1536   }
1537   sa.codec    = ROAR_CODEC_DEFAULT;
1538
[2339]1539  } else if ( strcmp(k, "--stream-flags") == 0 ) {
[4052]1540   _CKHAVEARGS(1);
[2339]1541   if ( update_stream_flags(argv[++i]) == -1 ) {
1542    ROAR_ERR("Can not set stream flags");
1543    return 1;
1544   }
1545
[0]1546  } else if ( strcmp(k, "-d") == 0 || strcmp(k, "--driver") == 0 ) {
[4052]1547   _CKHAVEARGS(1);
[0]1548   driver = argv[++i];
1549   if ( strcmp(driver, "list") == 0 ) {
[974]1550    ROAR_WARN("The option is obsolete, use --list-driver!");
[0]1551    print_driverlist();
[973]1552    return 0;
[0]1553   }
1554  } else if ( strcmp(k, "-D") == 0 || strcmp(k, "--device") == 0 ) {
[4052]1555   _CKHAVEARGS(1);
[0]1556   device = argv[++i];
1557  } else if ( strcmp(k, "-dO") == 0 ) {
[4052]1558   _CKHAVEARGS(1);
[0]1559   opts = argv[++i];
[973]1560  } else if ( strcmp(k, "--list-driver") == 0 ) {
1561   print_driverlist();
1562   return 0;
[0]1563
[932]1564  } else if ( strcmp(k, "-o") == 0 || strcmp(k, "--odriver") == 0 ) {
[4052]1565   _CKHAVEARGS(1);
[932]1566   o_drv  = argv[++i];
1567  } else if ( strcmp(k, "-O") == 0 || strcmp(k, "--odevice") == 0 ) {
[4052]1568   _CKHAVEARGS(1);
[932]1569   o_dev  = argv[++i];
1570  } else if ( strcmp(k, "-oO") == 0 ) {
[4052]1571   _CKHAVEARGS(1);
[932]1572   o_opts = argv[++i];
[961]1573  } else if ( strcmp(k, "-oP") == 0 ) {
1574   o_prim = 1;
[932]1575  } else if ( strcmp(k, "-oN") == 0 ) {
[1145]1576   if ( add_output(o_drv, o_dev, o_opts, o_prim, o_count) != -1 )
1577    o_count++;
1578
[961]1579   o_drv  = o_dev = o_opts = NULL;
1580   o_prim = 0;
[932]1581
[0]1582  } else if ( strcmp(k, "-s") == 0 || strcmp(k, "--source") == 0 ) {
[4052]1583   _CKHAVEARGS(1);
[2485]1584#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[550]1585   s_drv = argv[++i];
[2485]1586#else
1587   ROAR_ERR("main(*): No support for sources compiled in");
[4052]1588   i++;
[2485]1589#endif
[550]1590  } else if ( strcmp(k, "-S") == 0 ) {
[4052]1591   _CKHAVEARGS(1);
[2485]1592#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[1110]1593   s_dev = argv[++i];
[2485]1594#else
1595   ROAR_ERR("main(*): No support for sources compiled in");
[4052]1596   i++;
[2485]1597#endif
[0]1598  } else if ( strcmp(k, "-sO") == 0 ) {
[4052]1599   _CKHAVEARGS(1);
[2485]1600#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[0]1601   s_opt = argv[++i];
[2485]1602#else
1603   ROAR_ERR("main(*): No support for sources compiled in");
[4052]1604   i++;
[2485]1605#endif
[0]1606  } else if ( strcmp(k, "-sC") == 0 ) {
[4052]1607   _CKHAVEARGS(1);
[2485]1608#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[0]1609   s_con = argv[++i];
[2485]1610#else
1611   ROAR_ERR("main(*): No support for sources compiled in");
[4052]1612   i++;
[2485]1613#endif
[0]1614  } else if ( strcmp(k, "-sP") == 0 ) {
[2485]1615#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[0]1616   s_prim = 1;
[2485]1617#else
1618   ROAR_ERR("main(*): No support for sources compiled in");
1619#endif
[1110]1620  } else if ( strcmp(k, "-sN") == 0 ) {
[2485]1621#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[1110]1622   if ( sources_add(s_drv, s_dev, s_con, s_opt, s_prim) == -1 ) {
1623    ROAR_ERR("main(*): adding source '%s' via '%s' failed!", s_dev, s_drv);
1624   }
1625   s_opt = s_dev = s_con = NULL;
1626   s_drv = "cf";
1627   s_prim = 0;
[2485]1628#else
1629   ROAR_ERR("main(*): No support for sources compiled in");
1630#endif
[2270]1631  } else if ( strcmp(k, "--list-sources") == 0 ) {
[2485]1632#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[2270]1633   print_sourcelist();
1634   return 0;
[2485]1635#else
1636   ROAR_ERR("main(*): No support for sources compiled in");
[2504]1637   return 1;
[2485]1638#endif
[0]1639
[1923]1640  } else if ( strcmp(k, "--light-channels") == 0 ) {
[4052]1641   _CKHAVEARGS(1);
[2494]1642#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1923]1643   light_channels = atoi(argv[++i]);
[2494]1644#else
1645   ROAR_WARN("main(*): no light subsystem compiled in");
[4052]1646   i++;
[2494]1647#endif
[1923]1648
[2725]1649  } else if ( strcmp(k, "--rds-pi") == 0 ) {
[4052]1650   _CKHAVEARGS(1);
[2725]1651#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1652   g_rdtcs.rds.pi = atoi(argv[++i]);
1653#else
1654   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
[4052]1655   i++;
[2725]1656#endif
[2728]1657  } else if ( strcmp(k, "--rds-ps") == 0 ) {
[4052]1658   _CKHAVEARGS(1);
[2728]1659#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1660   if ( rdtcs_rds_set_ps(argv[++i]) == -1 ) {
[2729]1661    ROAR_ERR("Can not set RDS PS to '%s' (longer than 8 chars?)", argv[i]);
[2728]1662    return 1;
1663   }
1664#else
1665   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
[4052]1666   i++;
[2728]1667#endif
1668  } else if ( strcmp(k, "--rds-pty") == 0 ) {
[4052]1669   _CKHAVEARGS(1);
[2728]1670#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1671   if ( rdtcs_rds_set_pty(argv[++i]) == -1 ) {
[2729]1672    ROAR_ERR("Can not set RDS PTY to '%s'", argv[i]);
[2728]1673    return 1;
1674   }
1675#else
1676   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
[4052]1677   i++;
[2728]1678#endif
1679  } else if ( strcmp(k, "--rds-tp") == 0 ) {
1680#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1681   if ( rdtcs_rds_set_flag(RDTCS_RDS_FLAG_TP, 0) == -1 ) {
1682    ROAR_ERR("Can not set RDS TP flag");
1683    return 1;
1684   }
1685#else
1686   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1687#endif
1688  } else if ( strcmp(k, "--rds-ct") == 0 ) {
1689#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1690   if ( rdtcs_rds_set_flag(RDTCS_RDS_FLAG_CT, 0) == -1 ) {
1691    ROAR_ERR("Can not set RDS CT flag");
1692    return 1;
1693   }
1694#else
1695   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1696#endif
1697
[2725]1698
[1924]1699  } else if ( strcmp(k, "--midi-no-console") == 0 ) {
[2487]1700#ifndef ROAR_WITHOUT_DCOMP_CB
[1924]1701   midi_config.init_cb = 0;
[2487]1702#else
1703   // no warning here as this is the disable option
1704#endif
[2444]1705  } else if ( strcmp(k, "--midi-console-enable") == 0 ) {
[2487]1706#ifndef ROAR_WITHOUT_DCOMP_CB
[2444]1707   midi_config.init_cb = 1;
[2487]1708#else
1709   ROAR_ERR("main(*): No support for MIDI subsystem part CB compiled in");
1710#endif
[1924]1711  } else if ( strcmp(k, "--midi-console") == 0 ) {
[4052]1712   _CKHAVEARGS(1);
[2487]1713#ifndef ROAR_WITHOUT_DCOMP_CB
[1924]1714   midi_config.console_dev = argv[++i];
[2444]1715   midi_config.init_cb = 1;
[2487]1716#else
1717   ROAR_ERR("main(*): No support for MIDI subsystem part CB compiled in");
[4052]1718   i++;
[2487]1719#endif
[1924]1720
[2451]1721  } else if ( strcmp(k, "--ssynth-enable") == 0 ) {
[2489]1722#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2451]1723   ssynth_conf.enable = 1;
[2489]1724#else
1725   ROAR_ERR("main(*): No support for ssynth compiled in");
1726#endif
[2451]1727  } else if ( strcmp(k, "--ssynth-disable") == 0 ) {
[2489]1728#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2451]1729   ssynth_conf.enable = 0;
[2489]1730#else
1731   // we can safely ignore the disable
1732#endif
[2451]1733
[3374]1734  } else if ( strcmp(k, "--x11-display") == 0 || strcmp(k, "--display") == 0 ) {
[4052]1735   _CKHAVEARGS(1);
[3374]1736#ifdef ROAR_HAVE_LIBX11
1737   x11display = argv[++i];
1738#else
1739   ROAR_ERR("No X11 support compiled in!");
1740   return 1;
1741#endif
1742
1743
[0]1744  } else if ( strcmp(k, "-p") == 0 || strcmp(k, "--port") == 0 ) {
[4052]1745   _CKHAVEARGS(1);
[4012]1746   // This is only useful in INET not UNIX mode.
[1494]1747#ifdef ROAR_SUPPORT_LISTEN
[2530]1748   if ( *sock_addr == '/' )
1749    sock_addr = ROAR_DEFAULT_HOST;
[447]1750
[446]1751   errno = 0;
1752   if ( (port = atoi(argv[++i])) < 1 ) {
[1486]1753#ifdef ROAR_HAVE_GETSERVBYNAME
[446]1754    if ( (serv = getservbyname(argv[i], "tcp")) == NULL ) {
1755     ROAR_ERR("Unknown service: %s: %s", argv[i], strerror(errno));
1756     return 1;
1757    }
1758    // NOTE: we need to use ROAR_NET2HOST16() here even if s_port is of type int!
1759    ROAR_DBG("main(*): serv = {s_name='%s', s_aliases={...}, s_port=%i, s_proto='%s'}",
1760            serv->s_name, ROAR_NET2HOST16(serv->s_port), serv->s_proto);
1761    port = ROAR_NET2HOST16(serv->s_port);
[1486]1762#else
1763    ROAR_ERR("invalite port number: %s", argv[i]);
1764    return 1;
1765#endif
[446]1766   }
[1494]1767#endif
[1115]1768  } else if ( strcmp(k, "-b") == 0 || strcmp(k, "--bind") == 0 || strcmp(k, "--sock") == 0 ) {
[4052]1769   _CKHAVEARGS(1);
[1494]1770#ifdef ROAR_SUPPORT_LISTEN
[2530]1771   sock_addr = argv[++i];
[4052]1772#else
1773   i++;
[2530]1774#endif
1775
1776  } else if ( strcmp(k, "--proto") == 0 ) {
1777#ifdef ROAR_SUPPORT_LISTEN
[2549]1778   if ( (sock_proto = roar_str2proto(argv[++i])) == -1 ) {
[2530]1779    ROAR_ERR("Unknown protocol: %s", argv[i]);
1780    return 1;
1781   }
[1494]1782#endif
[3252]1783  } else if ( strcmp(k, "--proto-dir") == 0 ) {
[4052]1784   _CKHAVEARGS(1);
[3252]1785#ifdef ROAR_SUPPORT_LISTEN
1786   if ( (sock_dir = roar_str2dir(argv[++i])) == -1 ) {
1787    ROAR_ERR("Unknown stream direction: %s", argv[i]);
1788    return 1;
1789   }
[4052]1790#else
1791   i++;
[3252]1792#endif
1793  } else if ( strcmp(k, "--proto-rate") == 0 ) {
[4052]1794   _CKHAVEARGS(1);
[3252]1795#ifdef ROAR_SUPPORT_LISTEN
1796   sock_info.rate = atoi(argv[++i]);
[4052]1797#else
1798   i++;
[3252]1799#endif
1800  } else if ( strcmp(k, "--proto-bits") == 0 ) {
[4052]1801   _CKHAVEARGS(1);
[3252]1802#ifdef ROAR_SUPPORT_LISTEN
1803   sock_info.bits = atoi(argv[++i]);
[4052]1804#else
1805   i++;
[3252]1806#endif
1807  } else if ( strcmp(k, "--proto-chans") == 0 ) {
[4052]1808   _CKHAVEARGS(1);
[3252]1809#ifdef ROAR_SUPPORT_LISTEN
1810   sock_info.channels = atoi(argv[++i]);
[4052]1811#else
1812   i++;
[3252]1813#endif
1814  } else if ( strcmp(k, "--proto-codec") == 0 ) {
[4052]1815   _CKHAVEARGS(1);
[3252]1816#ifdef ROAR_SUPPORT_LISTEN
1817   if ( (sock_info.codec = roar_str2codec(argv[++i])) == -1 ) {
1818    ROAR_ERR("Unknown codec: %s", argv[i]);
1819    return 1;
1820   }
[4052]1821#else
1822   i++;
[3252]1823#endif
[3954]1824  } else if ( strcmp(k, "--proto-aiprofile") == 0 ) {
[4052]1825   _CKHAVEARGS(1);
[3954]1826#ifdef ROAR_SUPPORT_LISTEN
1827   if ( roar_profile2info(&sock_info, argv[++i]) == -1 ) {
1828    ROAR_ERR("Unknown audio profile: %s", argv[i]);
1829    return 1;
1830   }
[4052]1831#else
1832   i++;
[3954]1833#endif
[3956]1834  } else if ( strcmp(k, "--list-profiles") == 0 ) {
1835#ifdef ROAR_SUPPORT_LISTEN
1836   listen_listen_profiles();
1837   return 0;
1838#endif
1839  } else if ( strcmp(k, "--proto-profile") == 0 ) {
[4052]1840   _CKHAVEARGS(1);
[3956]1841#ifdef ROAR_SUPPORT_LISTEN
1842   if ( get_listen_profile(argv[++i], &port, &sock_addr, &sock_type, &sock_proto, &sock_dir, &sock_info) == -1 ) {
1843    ROAR_ERR("Unknown listen profile: %s", argv[i]);
1844    return 1;
1845   }
[4052]1846#else
1847   i++;
[3956]1848#endif
[3252]1849
1850
[3127]1851  } else if ( strcmp(k, "--list-proto") == 0 ) {
1852   list_proto();
1853   return 0;
[518]1854
[573]1855  } else if ( strcmp(k, "-t") == 0 || strcmp(k, "--tcp") == 0 ) {
[1494]1856#ifdef ROAR_SUPPORT_LISTEN
[518]1857   if ( sock_type != ROAR_SOCKET_TYPE_TCP && sock_type != ROAR_SOCKET_TYPE_TCP6 )
1858    sock_type = ROAR_SOCKET_TYPE_TCP;
1859
[2530]1860   if ( *sock_addr == '/' )
1861    sock_addr = ROAR_DEFAULT_HOST;
[1494]1862#endif
[518]1863
1864  } else if ( strcmp(k, "-4") == 0 ) {
[1494]1865#ifdef ROAR_SUPPORT_LISTEN
[517]1866   sock_type = ROAR_SOCKET_TYPE_TCP;
[2530]1867   if ( *sock_addr == '/' )
1868    sock_addr = ROAR_DEFAULT_HOST;
[1494]1869#endif
[518]1870  } else if ( strcmp(k, "-6") == 0 ) {
[1494]1871#ifdef ROAR_SUPPORT_LISTEN
[3837]1872#ifdef AF_INET6
[518]1873   sock_type = ROAR_SOCKET_TYPE_TCP6;
[2530]1874   if ( *sock_addr == '/' )
1875    sock_addr = ROAR_DEFAULT_HOST;
[519]1876#else
1877    ROAR_ERR("No IPv6 support compiled in!");
1878    return 1;
1879#endif
[1494]1880#endif
[518]1881
[573]1882  } else if ( strcmp(k, "-u") == 0 || strcmp(k, "--unix") == 0 ) {
[1494]1883#ifdef ROAR_SUPPORT_LISTEN
[62]1884   // ignore this case as it is the default behavor.
[517]1885   sock_type = ROAR_SOCKET_TYPE_UNIX;
[1494]1886#endif
[518]1887
[573]1888  } else if ( strcmp(k, "-n") == 0 || strcmp(k, "--decnet") == 0 ) {
[1494]1889#ifdef ROAR_SUPPORT_LISTEN
[508]1890#ifdef ROAR_HAVE_LIBDNET
1891    port   = ROAR_DEFAULT_NUM;
1892    strcpy(decnethost, ROAR_DEFAULT_LISTEN_OBJECT);
[2530]1893    sock_addr = decnethost;
[517]1894    sock_type = ROAR_SOCKET_TYPE_DECNET;
[508]1895#else
1896    ROAR_ERR("No DECnet support compiled in!");
1897    return 1;
1898#endif
[1494]1899#endif
[2530]1900  } else if ( strcmp(k, "--new-sock") == 0 ) {
1901#ifdef ROAR_SUPPORT_LISTEN
[3252]1902   if ( add_listen(sock_addr, port, sock_type, sock_user, sock_grp, sock_proto, sock_dir, &sock_info) != 0 ) {
[2530]1903    ROAR_ERR("Can not open listen socket!");
1904    return 1;
1905   }
1906#endif
[518]1907
[1993]1908  } else if ( strcmp(k, "--slp") == 0 ) {
1909#ifdef ROAR_HAVE_LIBSLP
1910   reg_slp = 1;
1911#else
[3373]1912   ROAR_ERR("No OpenSLP support compiled in!");
1913   return 1;
[1993]1914#endif
1915
[3373]1916  } else if ( strcmp(k, "--x11") == 0 ) {
1917#ifdef ROAR_HAVE_LIBX11
1918   reg_x11 = 1;
1919#else
1920   ROAR_ERR("No X11 support compiled in!");
1921   return 1;
1922#endif
1923
1924
[3039]1925  } else if ( strcmp(k, "--jumbo-mtu") == 0 ) {
[4052]1926   _CKHAVEARGS(1);
[3039]1927   g_config->jumbo_mtu = atoi(argv[++i]);
1928
[60]1929  } else if ( strcmp(k, "-G") == 0 ) {
[4052]1930   _CKHAVEARGS(1);
[444]1931   sock_grp  = argv[++i];
1932  } else if ( strcmp(k, "-U") == 0 ) {
[4052]1933   _CKHAVEARGS(1);
[444]1934   sock_user = argv[++i];
[0]1935
[68]1936  } else if ( strcmp(k, "--no-listen") == 0 ) {
[1494]1937#ifdef ROAR_SUPPORT_LISTEN
[2530]1938   sock_addr   = "";
[548]1939   g_terminate = 1;
[1155]1940   g_no_listen = 1;
[1494]1941#endif
[68]1942  } else if ( strcmp(k, "--client-fh") == 0 ) {
[4052]1943   _CKHAVEARGS(1);
[3737]1944   if ( clients_new_from_fh(atoi(argv[++i]), ROAR_PROTO_ROARAUDIO, ROAR_BYTEORDER_NETWORK, 1) == -1 ) {
[68]1945    ROAR_ERR("main(*): Can not set client's fh");
1946    return 1;
1947   }
[501]1948  } else if ( strcmp(k, "--close-fh") == 0 ) {
[4052]1949   _CKHAVEARGS(1);
[1486]1950#ifdef ROAR_HAVE_IO_POSIX
[501]1951   close(atoi(argv[++i]));
[1486]1952#else
1953   i++;
1954   ROAR_WARN("can not close file handle %s (closing not supported)", argv[i]);
1955#endif
[68]1956
[920]1957  } else if ( strcmp(k, "--standby") == 0 ) {
1958   g_standby = 1;
1959  } else if ( strcmp(k, "--auto-standby") == 0 ) {
1960   g_autostandby = 1;
[0]1961  } else {
1962   usage();
1963   return 1;
1964  }
1965
1966 }
[1503]1967#endif
[0]1968
[2485]1969#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[1110]1970 if ( s_dev != NULL ) {
1971  if ( sources_add(s_drv, s_dev, s_con, s_opt, s_prim) == -1 ) {
1972   ROAR_ERR("main(*): adding source '%s' via '%s' failed!", s_dev, s_drv);
1973  }
1974 }
[2485]1975#endif
[1110]1976
[4141]1977 add_default_output(o_drv, o_dev, o_opts, o_prim, o_count);
[932]1978
[4055]1979 ROAR_INFO("Server config: rate=%i, bits=%i, chans=%i", ROAR_DBG_INFO_NOTICE, sa.rate, sa.bits, sa.channels);
[0]1980
[2945]1981 if ( waveform_init() == -1 ) {
1982  ROAR_ERR("Can not initialize Waveform subsystem");
1983  return 1;
1984 }
1985
[2500]1986#ifndef ROAR_WITHOUT_DCOMP_MIDI
[1819]1987 if ( midi_init() == -1 ) {
[281]1988  ROAR_ERR("Can not initialize MIDI subsystem");
[1819]1989 }
[2500]1990#endif
[1819]1991
[2489]1992#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2451]1993 if ( ssynth_init() == -1 ) {
1994  ROAR_ERR("Can not initialize ssynth subsystem");
1995 }
[2489]1996#endif
[2451]1997
[2494]1998#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1819]1999 if ( light_init(light_channels) == -1 ) {
2000  ROAR_ERR("Can not initialize light control subsystem");
2001 }
[2494]2002#endif
[281]2003
[2718]2004#ifndef ROAR_WITHOUT_DCOMP_RDTCS
2005 if ( rdtcs_init() == -1 ) {
2006  ROAR_ERR("Can not initialize RDTCS subsystem");
2007 }
2008#endif
2009
[3354]2010 if ( plugins_init() == -1 ) {
2011  ROAR_ERR("Can not initialize plugins");
2012 }
2013
[1494]2014#ifdef ROAR_SUPPORT_LISTEN
[3760]2015 if ( !g_no_listen ) {
2016  if ( add_listen(sock_addr, port, sock_type, sock_user, sock_grp, sock_proto, sock_dir, &sock_info) != 0 ) {
2017   ROAR_ERR("Can not open listen socket!");
2018   return 1;
2019  }
[60]2020 }
[1494]2021#endif
[60]2022
[0]2023 if ( output_buffer_init(&sa) == -1 ) {
2024  ROAR_ERR("Can not init output buffer!");
2025  return 1;
2026 }
2027
[1145]2028 if ( driver == NULL ) {
2029  driver = "null";
2030 } else {
2031  ROAR_WARN("Usage of old driver interface. use -o not -d!");
2032 }
2033
[0]2034 if ( driver_open(&drvinst, &drvid, driver, device, &sa) == -1 ) {
2035  ROAR_ERR("Can not open output driver!");
2036  return 1;
2037 }
2038
[44]2039 if ( samples_init() == -1 ) {
2040  ROAR_ERR("Can not init samples!");
2041  return 1;
2042 }
2043
2044
[1486]2045 // we should handle this on microcontrollers, too.
[1753]2046#if !defined(ROAR_TARGET_MICROCONTROLLER) && !defined(ROAR_TARGET_WIN32)
[0]2047 signal(SIGINT,  on_sig_int);
[2732]2048 signal(SIGTERM, on_sig_term);
[285]2049 signal(SIGCHLD, on_sig_chld);
[2112]2050 signal(SIGUSR1, on_sig_usr1);
[0]2051 signal(SIGPIPE, SIG_IGN);  // ignore broken pipes
[1486]2052#endif
[0]2053
[275]2054 if ( realtime ) {
[278]2055#ifdef DEBUG
2056  ROAR_WARN("compiled with -DDEBUG but realtime is enabled: for real realtime support compiel without -DDEBUG");
2057#endif
2058
[1486]2059#ifdef ROAR_HAVE_NICE
[275]2060  errno = 0;
[276]2061  nice(-5*realtime); // -5 for each --realtime
[1486]2062  if ( errno ) {
2063   ROAR_WARN("Can not decrease nice value by %i: %s", 5*realtime, strerror(errno));
2064  }
2065#else
2066  ROAR_WARN("Can not decrease nice value by %i: %s", 5*realtime, strerror(errno));
2067#endif
[277]2068/*
[276]2069#ifdef __linux__
[277]2070  if ( ioprio_set(IOPRIO_WHO_PROCESS, getpid(), IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0)) == -1 )
2071   ROAR_WARN("Can not set io priority: %s", strerror(errno));
[276]2072#endif
[277]2073*/
[275]2074 }
2075
[2756]2076#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
[444]2077 if ( setids & R_SETGID ) {
[2754]2078  if ( sock_grp == NULL ) {
2079   ROAR_ERR("Can not set GID if no groupname is supplied");
2080   return 1;
2081  }
[2584]2082  if ( (grp = getgrnam(sock_grp)) == NULL ) {
2083   ROAR_ERR("Can not get GID for group %s: %s", sock_grp, strerror(errno));
2084   return 1;
2085  }
[444]2086  if ( setgroups(0, (const gid_t *) NULL) == -1 ) {
2087   ROAR_ERR("Can not clear supplementary group IDs: %s", strerror(errno));
2088  }
[523]2089  if ( !grp || setgid(grp->gr_gid) == -1 ) {
[444]2090   ROAR_ERR("Can not set GroupID: %s", strerror(errno));
2091  }
2092 }
[1486]2093#endif
[444]2094
[0]2095
[39]2096 clients_set_pid(g_self_client, getpid());
[1753]2097#ifdef ROAR_HAVE_GETUID
[440]2098 clients_set_uid(g_self_client, getuid());
[1753]2099#endif
2100#ifdef ROAR_HAVE_GETGID
[440]2101 clients_set_gid(g_self_client, getgid());
[1753]2102#endif
[39]2103 clients_get(g_self_client, &self);
[37]2104
[39]2105 if ( self == NULL ) {
2106  ROAR_ERR("Can not get self client!");
2107  return 1;
2108 }
2109
[775]2110 strcpy(self->name, "RoarAudio daemon internal");
[68]2111
[2815]2112 if ( roar_nnode_free(&(self->nnode)) == -1 )
2113  return 1;
2114
2115 // not fully correct but ok as workaorund
2116 // so tools assume that roard runs on the same machine as
2117 // they in case they use AF_UNIX:
2118 if ( roar_nnode_new(&(self->nnode), ROAR_SOCKET_TYPE_UNIX) == -1 )
2119  return 1;
2120
[1486]2121#ifdef ROAR_HAVE_FORK
[775]2122 if ( daemon ) {
[3613]2123#ifdef ROAR_HAVE_SYSLOG
2124  roar_debug_set_stderr_mode(ROAR_DEBUG_MODE_SYSLOG);
2125#else
[3609]2126  roar_debug_set_stderr_fh(-1);
[3613]2127#endif
[3609]2128
[68]2129  close(ROAR_STDIN );
2130  close(ROAR_STDOUT);
2131  close(ROAR_STDERR);
[1753]2132
[68]2133  if ( fork() )
[1486]2134   ROAR_U_EXIT(0);
[1753]2135
2136#ifdef ROAR_HAVE_SETSID
2137  setsid();
2138#endif
[1046]2139  clients_set_pid(g_self_client, getpid()); // reset pid as it changed
[68]2140 }
[1486]2141#endif
[68]2142
[2757]2143#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
2144 // early test for UID as we need this for the pidfile and the setuid()
2145 if ( sock_user != NULL ) {
2146  if ( (pwd = getpwnam(sock_user)) == NULL ) {
2147   ROAR_ERR("Can not get UID for user %s: %s", sock_user, strerror(errno));
2148   return 1;
2149  }
2150 }
2151#endif
2152
[2104]2153#ifdef SUPPORT_PIDFILE
[2106]2154 if ( pidfile != NULL ) {
2155  if ( roar_vio_open_file(&pidfile_vio, pidfile, O_WRONLY|O_CREAT, 0644) == -1 ) {
2156   ROAR_ERR("Can not write pidfile: %s", pidfile);
2157  } else {
2158   roar_vio_printf(&pidfile_vio, "%i\n", getpid());
2159   roar_vio_close(&pidfile_vio);
2160  }
[2765]2161#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
[2759]2162  if ( pwd || grp ) {
2163   if ( chown(pidfile, pwd ? pwd->pw_uid : -1, grp ? grp->gr_gid : -1) == -1 ) {
2164    ROAR_WARN("Can not change ownership of pidfile: %s: %s", pidfile, strerror(errno));
2165   }
2166  }
2167  if ( chmod(pidfile, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) == -1 ) {
2168   ROAR_WARN("Can not change permissions of pidfile: %s: %s", pidfile, strerror(errno));
2169  }
[2765]2170#endif
[2104]2171 }
2172#endif
2173
[1486]2174#ifdef ROAR_HAVE_CHROOT
[444]2175 if (chrootdir) {
2176  if ( chroot(chrootdir) == -1 ) {
2177   ROAR_ERR("Can not chroot to %s: %s", chrootdir, strerror(errno));
2178   return 2;
2179  }
2180  if ( chdir("/") == -1 ) {
2181   ROAR_ERR("Can not chdir to /: %s", strerror(errno));
2182   return 2;
2183  }
2184 }
[1486]2185#endif
[444]2186
[2756]2187#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
[444]2188 if ( setids & R_SETUID ) {
[2752]2189  if ( sock_user == NULL ) {
2190   ROAR_ERR("Can not set UID if no username is supplied");
2191   return 1;
2192  }
[444]2193  if ( !pwd || setuid(pwd->pw_uid) == -1 ) {
2194   ROAR_ERR("Can not set UserID: %s", strerror(errno));
2195   return 3;
2196  }
[1753]2197#ifdef ROAR_HAVE_GETUID
[444]2198  clients_set_uid(g_self_client, getuid());
[1753]2199#endif
[444]2200 }
[1486]2201#endif
[444]2202
[1993]2203 // Register with OpenSLP:
[2028]2204#ifdef ROAR_HAVE_LIBSLP
[1993]2205 if ( reg_slp ) {
[2530]2206  register_slp(0, sock_addr);
[1993]2207 }
[2028]2208#endif
[1993]2209
[3373]2210#ifdef ROAR_HAVE_LIBX11
2211 if ( reg_x11 ) {
2212  register_x11(0, sock_addr);
2213 }
2214#endif
2215
[4103]2216 ROAR_INFO("Startup complet", ROAR_DBG_INFO_INFO);
2217
[0]2218 // start main loop...
[4055]2219 ROAR_INFO("Entering main loop", ROAR_DBG_INFO_INFO);
[905]2220 main_loop(drvid, drvinst, &sa, sysclocksync);
[4055]2221 ROAR_INFO("Left main loop", ROAR_DBG_INFO_INFO);
[0]2222
2223 // clean up.
2224 clean_quit_prep();
2225 driver_close(drvinst, drvid);
2226 output_buffer_free();
2227
[4055]2228 ROAR_INFO("Exiting, no error", ROAR_DBG_INFO_INFO);
[0]2229 return 0;
2230}
2231
[574]2232void cleanup_listen_socket (int terminate) {
[2530]2233 int i;
2234
[4055]2235 ROAR_DBG("cleanup_listen_socket(terminate=%i) = (void)?", terminate);
2236
2237 ROAR_INFO("Cleaning up listen sockets", ROAR_DBG_INFO_INFO);
2238
[1993]2239 // Deregister from SLP:
[2028]2240#ifdef ROAR_HAVE_LIBSLP
[1993]2241 register_slp(1, NULL);
[2028]2242#endif
[580]2243
[3373]2244#ifdef ROAR_HAVE_LIBX11
2245 register_x11(1, NULL);
2246#endif
2247
[1494]2248#ifdef ROAR_SUPPORT_LISTEN
[2530]2249 for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
[3802]2250  if ( g_listen[i].used  ) {
2251   roar_vio_close(&(g_listen[i].sock));
[60]2252
[3802]2253   g_listen[i].used = 0;
[576]2254
[1486]2255#ifdef ROAR_HAVE_UNIX
[2530]2256   if ( server[i] != NULL )
2257    if ( *(server[i]) == '/' )
2258     unlink(server[i]);
[1486]2259#endif
[2530]2260  }
[580]2261 }
[60]2262
[1494]2263#endif
2264
[574]2265 if ( terminate )
2266  g_terminate = 1;
2267}
2268
2269void clean_quit_prep (void) {
2270 cleanup_listen_socket(0);
[60]2271
[3354]2272 plugins_free();
2273
[2485]2274#ifndef ROAR_WITHOUT_DCOMP_SOURCES
[0]2275 sources_free();
[2485]2276#endif
[0]2277 streams_free();
2278 clients_free();
[2489]2279#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2451]2280 ssynth_free();
[2489]2281#endif
[2487]2282#ifndef ROAR_WITHOUT_DCOMP_CB
[282]2283 midi_cb_stop(); // stop console beep
[2487]2284#endif
[2500]2285#ifndef ROAR_WITHOUT_DCOMP_MIDI
[281]2286 midi_free();
[2500]2287#endif
[2494]2288#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1819]2289 light_free();
[2494]2290#endif
[2718]2291#ifndef ROAR_WITHOUT_DCOMP_RDTCS
2292 rdtcs_free();
2293#endif
[2104]2294
[2945]2295 waveform_free();
2296
[2104]2297#ifdef SUPPORT_PIDFILE
2298 if ( pidfile != NULL )
2299  unlink(pidfile);
2300#endif
[0]2301}
2302
2303void clean_quit (void) {
[4055]2304 ROAR_INFO("Shuting down", ROAR_DBG_INFO_INFO);
2305
[4101]2306 counters_print(ROAR_DEBUG_TYPE_INFO, 0);
2307
[0]2308 clean_quit_prep();
2309// driver_close(drvinst, drvid);
2310// output_buffer_free();
[4055]2311
2312 ROAR_INFO("Exiting, no error", ROAR_DBG_INFO_INFO);
[0]2313 exit(0);
2314}
2315
2316//ll
Note: See TracBrowser for help on using the repository browser.