source: roaraudio/roard/roard.c @ 4482:b93886d58180

Last change on this file since 4482:b93886d58180 was 4482:b93886d58180, checked in by phi, 14 years ago

added options for auth

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