source: roaraudio/roard/roard.c @ 2767:4dd870914ef3

Last change on this file since 2767:4dd870914ef3 was 2767:4dd870914ef3, checked in by phi, 15 years ago

default on win32 is IP

File size: 43.9 KB
Line 
1//roard.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
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
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "roard.h"
26
27#ifdef ROAR_SUPPORT_LISTEN
28char * server[ROAR_MAX_LISTEN_SOCKETS];
29#endif
30
31#if defined(ROAR_HAVE_IO_POSIX) && defined(ROAR_HAVE_FS_POSIX)
32#define SUPPORT_PIDFILE
33char * pidfile = NULL;
34#endif
35
36#if defined(ROAR_HAVE_SETGID) || defined(ROAR_HAVE_SETUID)
37 int    setids    = 0;
38#endif
39
40#ifdef ROAR_HAVE_MAIN_ARGS
41void usage (void) {
42 printf("Usage: roard [OPTIONS]...\n\n");
43
44 printf("Misc Options:\n\n");
45 printf(
46        " --daemon              - Bring the server into background after init\n"
47        " --terminate           - Terminate after last client quited\n"
48        " --start               - No op parameter (starting roard is default operation)\n"
49        " --restart             - Trys to stop an old instance and start a new with new settings\n"
50        " --stop                - Stops a running roard (provide --pidfile!)\n"
51        " --shutdown            - Terminates a running roard (provide --pidfile!)\n"
52        " --realtime            - Trys to get realtime priority,\n"
53        "                         give multible times for being more realtime\n"
54        " --chroot DIR          - chroots to the given dir\n"
55        " --setgid              - GroupID to the audio group as specified via -G\n"
56        " --setuid              - UserID to the audio user as specified via -U\n"
57        " --sysclocksync        - calculate exact sample rate using the system clock\n"
58        " --location  LOC       - Set lion readable location of server\n"
59#ifdef SUPPORT_PIDFILE
60        " --pidfile PIDFILE     - Write a pidfile at PIDFILE\n"
61#endif
62       );
63
64 printf("\nAudio Options:\n\n");
65 printf(
66        " -R  --rate   RATE     - Set server rate\n"
67        " -B  --bits   BITS     - Set server bits\n"
68        " -C  --chans  CHANNELS - Set server channels\n"
69       );
70
71 printf("\nStream Options:\n\n");
72 printf(
73        " --stream-flags D=F    - Set default flags for stream directions\n"
74        "                         D is the stream direction and F is a comma seperated\n"
75        "                         list of flags in form +flag or -flag to set or unset\n"
76        "                         a flag as default or remove it from the default\n"
77       );
78
79 printf("\nDriver Options: (obsolete, do not use, Use Ouput Options)\n\n");
80 printf(" -d  --driver DRV      - Set the driver (default: %s)\n", ROAR_DRIVER_DEFAULT);
81 printf(" -D  --device DEV      - Set the device\n");
82 printf(" -dO OPTS              - Set output options\n");
83 printf(" --list-driver         - List all drivers\n");
84
85 printf("\nOutput Options:\n\n");
86 printf(" -o  --odriver DRV     - Set the driver, use '--list-driver' to get a list\n");
87 printf(" -O  --odevice DEV     - Set the device\n");
88 printf(" -oO OPTS              - Set output options\n");
89 printf(" -oN                   - Adds another output\n");
90 printf(" -oP                   - Mark output as primary\n");
91
92#ifndef ROAR_WITHOUT_DCOMP_SOURCES
93 printf("\nSource Options:\n\n");
94 printf(" -s  --source DRV      - Use DRV as input driver\n"
95        " -S           DEV      - Use DEV as input device\n"
96        " -sO          OPTS     - Use OPTS as input options\n"
97        " -sN                   - Adds another source\n"
98        " -sP                   - Make souce as primary\n"
99       );
100 printf(" --list-sources        - List all sources\n");
101#endif
102
103 printf("\nCodec Filter Options:\n\n");
104 printf(" --list-cf             - List all codec filter\n"
105       );
106
107#ifndef ROAR_WITHOUT_DCOMP_MIDI
108 printf("\nMIDI Options:\n\n");
109 printf(" --midi-no-console     - Disable console based MIDI synth\n"
110        " --midi-console-enable - Enables the console based MIDI synth\n"
111        " --midi-console DEV    - Set device for MIDI console\n"
112#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
113        " --ssynth-enable       - Enable simple software synth\n"
114        " --ssynth-disable      - Disable simple software synth\n"
115#endif
116       );
117#endif
118
119#ifndef ROAR_WITHOUT_DCOMP_LIGHT
120 printf("\nLight Control Options:\n\n");
121 printf(" --light-channels NUM  - Sets the number of channels for Light control (default: %i)\n",
122                                  LIGHT_CHANNELS_DEFAULT
123       );
124#endif
125
126#ifndef ROAR_WITHOUT_DCOMP_RDTCS
127 printf("\nRadio Date and Transmitter Control System Options:\n\n");
128 printf(" --rds-pi   PI         - Sets the RDS Programme Identification (PI)\n"
129        " --rds-ps   PS         - Sets the RDS Programme Service Name (PS)\n"
130        " --rds-pty  PTY        - Sets the RDS Programme Type (PTY)\n"
131        " --rds-tp              - Sets the RDS Traffic Programme (TP) flag\n"
132        " --rds-ct              - Enables sending of RDS Clock Time (CT)\n"
133       );
134#endif
135
136 printf("\nServer Options:\n\n");
137 printf(" -t  --tcp             - Use TCP listen socket\n"
138        " -u  --unix            - Use UNIX Domain listen socket (default)\n"
139#ifdef ROAR_HAVE_LIBDNET
140        " -n  --decnet          - use DECnet listen socket\n"
141#endif
142        " -4                    - Use IPv4 connections (implies -t)\n"
143#ifdef PF_INET6
144        " -6                    - Use IPv6 connections (implies -t)\n"
145#endif
146#ifdef IPV6_ADDRFORM
147        " -64                   - Try to downgrade sockets from IPv6 into IPv4,\n"
148        "                         this is normaly not usefull.\n"
149#endif
150        " -p  --port            - TCP Port to bind to\n"
151        " -b  --bind            - IP/Hostname to bind to\n"
152        "     --sock            - Filename for UNIX Domain Socket\n"
153        "     --proto PROTO     - Use PROTO as protocol on Socket\n"
154        "     --new-sock        - Parameters for new socket follows\n"
155#ifdef ROAR_HAVE_LIBSLP
156        "     --slp             - Enable OpenSLP support\n"
157#endif
158        " -G  GROUP             - Sets the group for the UNIX Domain Socket, (default: %s)\n"
159        "                         You need the permissions to change the GID\n"
160        " -U  USER              - Sets the user for the UNIX Domain Socket, (default: do not set)\n"
161        "                         You need the permissions to change the UID (normaly only root has)\n"
162        " --no-listen           - Do not listen for new clients\n"
163        "                         (only usefull for relaing, impleys --terminate)\n"
164        " --client-fh           - Comunicate with a client over this handle\n"
165        "                         (only usefull for relaing)\n"
166        " --close-fh            - Closes the given fh\n"
167        " --standby             - Start in standby state\n"
168        " --auto-standby        - Automatical goes into standby if there are no streams\n",
169#ifdef ROAR_DEFAULT_SOCKGRP
170        ROAR_DEFAULT_SOCKGRP
171#else
172        "(none)"
173#endif
174       );
175// printf("\n Options:\n\n");
176 printf("\n");
177}
178#endif
179
180int restart_server (char * server, int terminate) {
181 struct roar_connection con;
182#ifdef ROAR_HAVE_KILL
183 char buf[80];
184 ssize_t l;
185 struct roar_vio_calls fh;
186 pid_t pid;
187 int ok;
188
189 if ( pidfile != NULL ) {
190  if ( roar_vio_open_file(&fh, pidfile, O_RDONLY, 0644) == -1 ) {
191   ROAR_WARN("restart_server(*): Can not read pidfile: %s", pidfile);
192  } else {
193   l = roar_vio_read(&fh, buf, 80);
194   roar_vio_close(&fh);
195   if ( l > 0 ) {
196    buf[l-1] = 0;
197    buf[79]  = 0;
198    pid = atoi(buf);
199    if ( terminate ) {
200     ok = kill(pid, SIGUSR1);
201    } else {
202     ok = kill(pid, SIGINT);
203    }
204    if ( ok == 0 ) {
205     return 0;
206    } else {
207     ROAR_WARN("restart_server(*): Can not kill roard by pidfile");
208    }
209   } else {
210    ROAR_WARN("restart_server(*): Can not find a PID in the pidfile");
211   }
212  }
213 }
214#endif
215
216 if ( roar_connect(&con, server) == -1 ) {
217  return -1;
218 }
219
220 if ( roar_terminate(&con, terminate) == -1 ) {
221  return -1;
222 }
223
224 return roar_disconnect(&con);
225}
226
227#define R_SETUID 1
228#define R_SETGID 2
229
230int init_config (void) {
231 int i;
232
233 memset(g_config, 0, sizeof(struct roard_config));
234
235 for (i = 0; i < ROAR_DIR_DIRIDS; i++) {
236  g_config->streams[i].mixer_channels = 1;
237  g_config->streams[i].mixer.rpg_mul  = 1;
238  g_config->streams[i].mixer.rpg_div  = 1;
239  g_config->streams[i].mixer.scale    = 65535;
240  g_config->streams[i].mixer.mixer[0] = g_config->streams[i].mixer.scale;
241 }
242
243 g_config->streams[ROAR_DIR_PLAY    ].flags = ROAR_FLAG_META;
244 g_config->streams[ROAR_DIR_OUTPUT  ].flags = ROAR_FLAG_PASSMIXER;
245 g_config->streams[ROAR_DIR_FILTER  ].flags = ROAR_FLAG_SYNC;
246 g_config->streams[ROAR_DIR_MIDI_OUT].flags = ROAR_FLAG_SYNC;
247 g_config->streams[ROAR_DIR_BIDIR   ].flags = ROAR_FLAG_ANTIECHO;
248
249 g_config->location = "***default***";
250
251 return 0;
252}
253
254#ifdef ROAR_SUPPORT_LISTEN
255int init_listening (void) {
256 int i;
257
258 for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
259  g_listen_socket[i] = -1;
260  g_listen_proto[i]  = ROAR_PROTO_ROARAUDIO;
261  server[i]          = NULL;
262 }
263
264 return 0;
265}
266
267int add_listen (char * addr, int port, int sock_type, char * user, char * group, int proto) {
268#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
269 struct group   * grp  = NULL;
270#endif
271#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
272 struct passwd  * pwd  = NULL;
273#endif
274#ifdef ROAR_HAVE_UNIX
275 char * env_roar_proxy_backup;
276#endif
277 int    sockid = -1;
278 int    sock;
279 int    i;
280
281 if ( *addr != 0 ) {
282  for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
283   if ( g_listen_socket[i] == -1 ) {
284    sockid = i;
285    break;
286   }
287  }
288
289  if ( sockid == -1 )
290   return -1;
291
292  g_listen_proto[sockid] = proto;
293
294  ROAR_DBG("add_listen(*): proto=0x%.4x", proto);
295
296  if ( (g_listen_socket[sockid] = roar_socket_listen(sock_type, addr, port)) == -1 ) {
297#ifdef ROAR_HAVE_UNIX
298   if ( *addr == '/' ) {
299    if ( (env_roar_proxy_backup = getenv("ROAR_PROXY")) != NULL ) {
300     env_roar_proxy_backup = strdup(env_roar_proxy_backup);
301     unsetenv("ROAR_PROXY");
302    }
303    if ( (sock = roar_socket_connect(addr, port)) != -1 ) {
304     close(sock);
305     ROAR_ERR("Can not open listen socket!");
306     return 1;
307    } else {
308     unlink(addr);
309     if ( (g_listen_socket[sockid] = roar_socket_listen(sock_type, addr, port)) == -1 ) {
310      ROAR_ERR("Can not open listen socket!");
311      return 1;
312     }
313    }
314    if ( env_roar_proxy_backup != NULL ) {
315     setenv("ROAR_PROXY", env_roar_proxy_backup, 0);
316     free(env_roar_proxy_backup);
317    }
318#else
319   if (0) { // noop
320#endif
321   } else {
322    ROAR_ERR("Can not open listen socket!");
323    return 1;
324   }
325  }
326
327#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
328  if ( group != NULL ) {
329   if ( (grp = getgrnam(group)) == NULL ) {
330    ROAR_ERR("Can not get GID for group %s: %s", group, strerror(errno));
331   }
332  }
333#endif
334#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
335  if ( user ) {
336   if ( (pwd = getpwnam(user)) == NULL ) {
337    ROAR_ERR("Can not get UID for user %s: %s", user, strerror(errno));
338   }
339  }
340#endif
341
342#if defined(ROAR_HAVE_IO_POSIX) && defined(ROAR_HAVE_UNIX)
343  if ( *addr == '/' ) {
344   if ( grp || pwd ) {
345     if ( chown(addr, pwd ? pwd->pw_uid : -1, grp ? grp->gr_gid : -1) == -1 )
346      return 1;
347   }
348#ifdef ROAR_HAVE_GETUID
349   if ( grp ) {
350    if ( getuid() == 0 )
351     if ( chmod(addr, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP) == -1 )
352      return 1;
353   }
354#endif
355  }
356#endif
357 }
358
359 // in case we opened the listening socket correctly.
360 server[sockid] = addr;
361 return 0;
362}
363#endif
364
365int update_stream_flags (char * str) {
366 int    dir;
367 char * flags;
368 char * k;
369 int    op;
370 int    flag;
371
372 if ( (flags = strstr(str, "=")) == NULL )
373  return -1;
374
375 *flags = 0;
376  flags++;
377
378 if ( (dir = roar_str2dir(str)) == -1 )
379  return -1;
380
381 while (flags != NULL) {
382  k = flags;
383  flags = strstr(flags, ",");
384
385  if ( flags != NULL )
386   *(flags++) = 0;
387
388  switch (*k) {
389   case '+': k++; op = ROAR_SET_FLAG;   break;
390   case '-': k++; op = ROAR_RESET_FLAG; break;
391   default:
392     op = ROAR_SET_FLAG;
393  }
394
395  flag = 0;
396
397  if ( !strcmp(k, "sync") ) {
398   flag = ROAR_FLAG_SYNC;
399  } else if ( !strcmp(k, "meta") ) {
400   flag = ROAR_FLAG_META;
401  } else if ( !strcmp(k, "cleanmeta") ) {
402   flag = ROAR_FLAG_CLEANMETA;
403  } else if ( !strcmp(k, "pause") ) {
404   flag = ROAR_FLAG_PAUSE;
405  } else if ( !strcmp(k, "mute") ) {
406   flag = ROAR_FLAG_MUTE;
407  } else if ( !strcmp(k, "antiecho") ) {
408   flag = ROAR_FLAG_ANTIECHO;
409  } else if ( !strcmp(k, "passmixer") ) {
410   flag = ROAR_FLAG_PASSMIXER;
411  } else {
412   return -1;
413  }
414
415  g_config->streams[dir].flags |= flag;
416
417  if ( op == ROAR_RESET_FLAG )
418   g_config->streams[dir].flags -= flag;
419 }
420
421 return 0;
422}
423
424int add_output (char * drv, char * dev, char * opts, int prim, int count) {
425 int stream;
426 struct roar_stream * s;
427 struct roar_stream_server * ss;
428 char * k, * v;
429#ifdef ROAR_DRIVER_CODEC
430 char * to_free = NULL;
431#endif
432 int sync = 0, f_mmap = 0;
433 int32_t blocks = -1, blocksize = -1;
434 int dir = ROAR_DIR_OUTPUT;
435 int error = 0;
436 // DMX:
437 int32_t channel  = -1;
438 int32_t universe = -1;
439 uint16_t tu16;
440 float q = -32e6;
441
442 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
443
444 if ( drv == NULL && count == 0 ) {
445  drv  = ROAR_DRIVER_DEFAULT;
446  prim = 1;
447  sync = 1;
448
449#ifdef ROAR_DRIVER_CODEC
450  if ( opts == NULL ) {
451   opts = to_free = strdup("codec=" ROAR_DRIVER_CODEC);
452  }
453#endif
454 }
455
456 if ( opts == NULL && count == 0 ) {
457  sync = 1;
458  prim = 1; // if ( prim == 0 ) prim = 1; -> prim allways = 1
459 }
460
461 if ( (stream = streams_new()) == -1 ) {
462  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
463  if ( prim ) alive = 0;
464  return -1;
465 }
466
467 streams_get(stream, &ss);
468 s = ROAR_STREAM(ss);
469
470 memset(&(s->info), 0xFF, sizeof(struct roar_audio_info)); // set everything to -1
471
472 s->pos_rel_id = -1;
473// s->info.codec = codec;
474
475 k = strtok(opts, ",");
476 while (k != NULL) {
477//  ROAR_WARN("add_output(*): opts: %s", k);
478
479  if ( (v = strstr(k, "=")) != NULL ) {
480   *v++ = 0;
481  }
482
483  ROAR_DBG("add_output(*): opts: k='%s', v='%s'", k, v);
484  if ( strcmp(k, "rate") == 0 ) {
485   s->info.rate = atoi(v);
486  } else if ( strcmp(k, "channels") == 0 ) {
487   s->info.channels = atoi(v);
488  } else if ( strcmp(k, "bits") == 0 ) {
489   s->info.bits = atoi(v);
490  } else if ( strcmp(k, "codec") == 0 ) {
491   if ( (s->info.codec = roar_str2codec(v)) == -1 ) {
492    ROAR_ERR("add_output(*): unknown codec '%s'", v);
493    error++;
494   }
495  } else if ( strcmp(k, "q") == 0 ) {
496   q = atof(v);
497  } else if ( strcmp(k, "blocks") == 0 ) {
498   blocks = atoi(v);
499  } else if ( strcmp(k, "blocksize") == 0 ) {
500   blocksize = atoi(v);
501  } else if ( strcmp(k, "mmap") == 0 ) {
502   f_mmap = 1;
503  } else if ( strcmp(k, "subsystem") == 0 ) {
504   if ( !strcasecmp(v, "wave") || !strcasecmp(v, "waveform") ) {
505    dir = ROAR_DIR_OUTPUT;
506#ifndef ROAR_WITHOUT_DCOMP_MIDI
507   } else if ( !strcasecmp(v, "midi") ) {
508    dir = ROAR_DIR_MIDI_OUT;
509#endif
510#ifndef ROAR_WITHOUT_DCOMP_LIGHT
511   } else if ( !strcasecmp(v, "light") ) {
512    dir = ROAR_DIR_LIGHT_OUT;
513#endif
514#ifndef ROAR_WITHOUT_DCOMP_RAW
515   } else if ( !strcasecmp(v, "raw") ) {
516    dir = ROAR_DIR_RAW_OUT;
517#endif
518   } else if ( !strcasecmp(v, "complex") ) {
519    dir = ROAR_DIR_COMPLEX_OUT;
520   } else {
521    ROAR_ERR("add_output(*): unknown/unsupported subsystem '%s'", k);
522    error++;
523   }
524  // DMX:
525  } else if ( strcmp(k, "channel") == 0 ) {
526   channel  = atoi(v);
527   if ( channel < 0 || channel > 65535 ) {
528    ROAR_ERR("add_output(*): Invalide channel (not within 0..65535): %i", channel);
529    channel = -1;
530    error++;
531   }
532  } else if ( strcmp(k, "universe") == 0 ) {
533   universe = atoi(v);
534   if ( universe < 0 || universe > 255 ) {
535    ROAR_ERR("add_output(*): Invalide universe (not within 0..255): %i", universe);
536    universe = -1;
537    error++;
538   }
539
540  } else if ( strcmp(k, "name") == 0 ) {
541   if ( streams_set_name(stream, v) == -1 ) {
542    ROAR_ERR("add_output(*): Can not set Stream name");
543    error++;
544   }
545
546  } else if ( strcmp(k, "meta") == 0 ) {
547   streams_set_flag(stream, ROAR_FLAG_META);
548  } else if ( strcmp(k, "sync") == 0 ) {
549   sync = 1;
550  } else if ( strcmp(k, "primary") == 0 ) {
551   prim = 1;
552
553  } else if ( strcmp(k, "cleanmeta") == 0 ) {
554   streams_set_flag(stream, ROAR_FLAG_CLEANMETA);
555  } else if ( strcmp(k, "autoconf") == 0 ) {
556   streams_set_flag(stream, ROAR_FLAG_AUTOCONF);
557  } else if ( strcmp(k, "recsource") == 0 ) {
558   streams_set_flag(stream, ROAR_FLAG_RECSOURCE);
559  } else if ( strcmp(k, "passmixer") == 0 ) {
560   streams_set_flag(stream, ROAR_FLAG_PASSMIXER);
561  } else {
562   ROAR_ERR("add_output(*): unknown option '%s'", k);
563   error++;
564  }
565
566  if ( error ) {
567   streams_delete(stream);
568   if ( prim ) alive = 0;
569#ifdef ROAR_DRIVER_CODEC
570   if ( to_free != NULL )
571    free(to_free);
572#endif
573   return -1;
574  }
575
576  k = strtok(NULL, ",");
577 }
578
579 // set audio info...
580 switch (dir) {
581  case ROAR_DIR_LIGHT_OUT:
582    switch (s->info.codec) {
583     case ROAR_CODEC_DMX512:
584     case -1:
585       if ( s->info.rate == -1 )
586        s->info.rate = ROAR_OUTPUT_CFREQ;
587
588       s->info.channels =   0;
589       s->info.bits     =   8;
590       s->info.codec    = ROAR_CODEC_DMX512; // in case codec == -1
591      break;
592    }
593   break;
594  case ROAR_DIR_MIDI_OUT:
595    switch (s->info.codec) {
596     case ROAR_CODEC_MIDI:
597     case -1:
598       if ( s->info.rate == -1 )
599        s->info.rate    = ROAR_MIDI_TICKS_PER_BEAT;
600
601       s->info.channels = ROAR_MIDI_CHANNELS_DEFAULT;
602       s->info.bits     = ROAR_MIDI_BITS;
603       s->info.codec    = ROAR_CODEC_MIDI; // in case codec == -1
604      break;
605    }
606   break;
607  case ROAR_DIR_RAW_OUT:
608    if ( s->info.rate == -1 )
609     s->info.rate = 0;
610    if ( s->info.bits == -1 )
611     s->info.bits = 0;
612    if ( s->info.channels == -1 )
613     s->info.channels = 0;
614    if ( s->info.codec == -1 )
615     s->info.codec = 0;
616   break;
617 }
618
619 if ( s->info.rate == -1 )
620  s->info.rate = g_sa->rate;
621 if ( s->info.bits == -1 )
622  s->info.bits = g_sa->bits;
623 if ( s->info.channels == -1 )
624  s->info.channels = g_sa->channels;
625 if ( s->info.codec == -1 )
626  s->info.codec = g_sa->codec;
627
628 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);
629
630 if ( streams_set_dir(stream, dir, 1) == -1 ) {
631  streams_delete(stream);
632  return -1;
633 }
634
635#ifdef ROAR_DRIVER_CODEC
636 if ( to_free != NULL )
637  free(to_free);
638#endif
639
640 if ( s->info.codec == ROAR_CODEC_ALAW || s->info.codec == ROAR_CODEC_MULAW )
641  s->info.bits = 8; // needed to open OSS driver, will be overriden by codecfilter
642
643 ROAR_STREAM_SERVER(s)->codec_orgi = s->info.codec;
644
645 if ( driver_openvio(&(ss->vio), &(ss->driver_id), drv, dev, &(s->info), -1, ss) == -1 ) {
646  ss->driver_id = -1; // don't close a driver not opened...
647  memset(&(ss->vio), 0, sizeof(struct roar_vio_calls));
648  streams_delete(stream);
649  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
650  if ( prim ) alive = 0;
651  return -1;
652 }
653
654 roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_SSTREAMID, &stream); // ignore errors here
655 roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_SSTREAM,   s); // ignore errors here
656
657 if ( blocks != -1 )
658  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DBLOCKS, &blocks);
659
660 if ( blocksize != -1 )
661  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DBLKSIZE, &blocksize);
662
663 // TODO: we shoudld *really* check for errors here...
664 if ( channel != -1 ) {
665  tu16 = channel;
666  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DMXSCHAN, &tu16);
667 }
668 if ( universe != -1 ) {
669  tu16 = universe;
670  roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_SET_DMXUNIV, &tu16);
671 }
672
673 ROAR_DBG("add_output(*): ss->driver_id=%i", ss->driver_id);
674
675 streams_set_fh(stream, -1); // update some internal structures
676
677 if ( q > -1e6 ) {
678  ROAR_DBG("add_output(*): setting q=%f", q);
679  streams_ctl(stream, ROAR_CODECFILTER_CTL_SET_Q|ROAR_STREAM_CTL_TYPE_FLOAT, &q);
680 }
681
682 client_stream_add(g_self_client, stream);
683
684 if ( prim ) {
685  streams_mark_primary(stream);
686  s->pos_rel_id = stream;
687 }
688
689 if ( sync ) {
690  streams_set_flag(stream, ROAR_FLAG_SYNC);
691 } else {
692  streams_reset_flag(stream, ROAR_FLAG_SYNC);
693 }
694
695 if ( f_mmap )
696  streams_set_flag(stream, ROAR_FLAG_MMAP);
697
698 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);
699 return 0;
700}
701
702
703// SLP:
704void register_slp_callback(SLPHandle hslp, SLPError errcode, void * cookie) {
705 /* return the error code in the cookie */
706 *(SLPError*)cookie = errcode;
707}
708
709int register_slp (int unreg, char * sockname) {
710#ifdef ROAR_HAVE_LIBSLP
711 static int regged = 0;
712 static char * sn = NULL;
713 SLPError err;
714 SLPError callbackerr;
715 SLPHandle hslp;
716 char addr[1024];
717 char attr[1024] = "";
718 char * location;
719
720 if ( sockname != NULL )
721  sn = sockname;
722
723 snprintf(addr, sizeof(addr), ROAR_SLP_URL_TYPE "://%s", sn);
724
725 err = SLPOpen("en", SLP_FALSE, &hslp);
726
727 if (err != SLP_OK) {
728  ROAR_ERR("Error opening slp handle: Error #%i", err);
729  return -1;
730 }
731
732 if (!unreg) {
733
734  if ( SLPEscape(g_config->location, &location, SLP_FALSE) != SLP_OK ) {
735   ROAR_ERR("Error using SLPEscape() on server location, really bad!");
736   SLPClose(hslp);
737   return -1;
738  }
739
740  snprintf(attr, sizeof(attr), "(wave-rate=%i),(wave-channels=%i),(wave-bits=%i),"
741#ifndef ROAR_WITHOUT_DCOMP_LIGHT
742                               "(light-channels=%i),"
743#endif
744                               "(location=%s)",
745           g_sa->rate, g_sa->channels, g_sa->bits,
746#ifndef ROAR_WITHOUT_DCOMP_LIGHT
747           g_light_state.channels,
748#endif
749           location
750          );
751
752  /* Register a service with SLP */
753  err = SLPReg(hslp,
754               addr,
755               SLP_LIFETIME_MAXIMUM,
756               0,
757               attr,
758               SLP_TRUE,
759               register_slp_callback,
760               &callbackerr);
761  regged = 1;
762 } else if ( unreg && regged ) {
763  err = SLPDereg(hslp, addr, register_slp_callback, &callbackerr);
764  regged = 0;
765 } else {
766  SLPClose(hslp);
767  return -1;
768 }
769
770 /* err may contain an error code that occurred as the slp library    */
771 /* _prepared_ to make the call.                                     */
772 if ( err != SLP_OK ) {
773  ROAR_ERR("Error (de)registering service with slp: Error #%i", err);
774  return -1;
775 }
776
777 /* callbackerr may contain an error code (that was assigned through */
778 /* the callback cookie) that occurred as slp packets were sent on    */
779 /* the wire */
780 if (callbackerr != SLP_OK) {
781  ROAR_ERR("Error (de)registering service with slp: Error #%i", callbackerr);
782  return -1;
783 }
784
785 SLPClose(hslp);
786 return 0;
787#else
788 return -1;
789#endif
790}
791
792
793// MAIN:
794
795#ifdef ROAR_HAVE_MAIN_ARGS
796int main (int argc, char * argv[]) {
797#else
798int main (void) {
799#endif
800#ifdef ROAR_HAVE_MAIN_ARGS
801 int i;
802 char * k;
803#endif
804#ifdef ROAR_SUPPORT_LISTEN
805 char user_sock[80]  = {0};
806#endif
807 struct roar_audio_info sa, max_sa;
808 struct roard_config config;
809#ifdef ROAR_HAVE_FORK
810 int    daemon       = 0;
811#endif
812 int    realtime     = 0;
813 int    sysclocksync = 0;
814 char * driver    = NULL;
815 char * device    = NULL;
816#ifdef ROAR_HAVE_MAIN_ARGS
817 char * opts      = NULL;
818#endif
819// char * server = ROAR_DEFAULT_SOCK_GLOBAL;
820#ifdef ROAR_SUPPORT_LISTEN
821 int    port       = ROAR_DEFAULT_PORT;
822 char * sock_addr  = NULL;
823 int    sock_proto = ROAR_PROTO_ROARAUDIO;
824#endif
825 int               drvid;
826#ifndef ROAR_WITHOUT_DCOMP_SOURCES
827 char * s_drv     = "cf";
828 char * s_dev     = NULL;
829 char * s_con     = NULL;
830 char * s_opt     = NULL;
831 int    s_prim    = 0;
832#endif
833 char * o_drv     = getenv("ROAR_DRIVER");
834 char * o_dev     = getenv("ROAR_DEVICE");
835 char * o_opts    = NULL;
836 int    o_prim    = 0;
837 int    o_count   = 0;
838#ifndef ROAR_WITHOUT_DCOMP_LIGHT
839 int    light_channels = LIGHT_CHANNELS_DEFAULT;
840#endif
841#ifdef ROAR_DEFAULT_SOCKGRP
842 char * sock_grp  = ROAR_DEFAULT_SOCKGRP;
843#else
844 char * sock_grp  = NULL;
845#endif
846 char * sock_user = NULL;
847#ifdef ROAR_SUPPORT_LISTEN
848 int    sock_type = ROAR_SOCKET_TYPE_UNKNOWN;
849#endif
850#ifdef ROAR_HAVE_LIBSLP
851 int    reg_slp   = 0;
852#endif
853#ifdef ROAR_HAVE_CHROOT
854 char * chrootdir = NULL;
855#endif
856#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
857 struct group   * grp  = NULL;
858#endif
859#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
860 struct passwd  * pwd  = NULL;
861#endif
862#ifdef ROAR_HAVE_GETSERVBYNAME
863 struct servent * serv = NULL;
864#endif
865 DRIVER_USERDATA_T drvinst;
866 struct roar_client * self = NULL;
867#ifdef ROAR_HAVE_LIBDNET
868 char decnethost[80];
869#endif
870#ifdef SUPPORT_PIDFILE
871 struct roar_vio_calls pidfile_vio;
872#endif
873
874 g_standby       =  0;
875 g_autostandby   =  0;
876 alive           =  1;
877#ifdef ROAR_SUPPORT_LISTEN
878 g_no_listen     =  0;
879#else
880 g_terminate     =  1;
881#endif
882
883 sa.bits     = ROAR_BITS_DEFAULT;
884 sa.channels = ROAR_CHANNELS_DEFAULT;
885 sa.rate     = ROAR_RATE_DEFAULT;
886 sa.codec    = ROAR_CODEC_DEFAULT;
887
888 g_sa        = &sa;
889 g_max_sa    = &max_sa;
890
891 memcpy(g_max_sa, g_sa, sizeof(max_sa));
892
893 g_config = &config;
894
895 if ( init_config() == -1 ) {
896  ROAR_ERR("Can not init default config!");
897  return 1;
898 }
899
900#ifdef ROAR_SUPPORT_LISTEN
901 if ( init_listening() == -1 ) {
902  ROAR_ERR("Can not init listening sockets!");
903  return 1;
904 }
905#endif
906
907#ifndef ROAR_WITHOUT_DCOMP_MIDI
908 if ( midi_init_config() == -1 ) {
909  ROAR_ERR("Can not init MIDI config!");
910  return 1;
911 }
912#endif
913
914#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
915 if ( ssynth_init_config() == -1 ) {
916  ROAR_ERR("Can not init ssynth config!");
917  return 1;
918 }
919#endif
920
921#ifndef ROAR_WITHOUT_DCOMP_RDTCS
922 if ( rdtcs_init_config() == -1 ) {
923  ROAR_ERR("Can not init RDTCS config!");
924  return 1;
925 }
926#endif
927
928#ifdef ROAR_SUPPORT_LISTEN
929#ifndef ROAR_TARGET_WIN32
930 sock_addr = ROAR_DEFAULT_SOCK_GLOBAL;
931#else
932 sock_addr = ROAR_DEFAULT_HOST;
933#endif
934
935#ifdef ROAR_HAVE_GETUID
936 if ( getuid() != 0 && getenv("HOME") != NULL ) {
937  snprintf(user_sock, 79, "%s/%s", (char*)getenv("HOME"), ROAR_DEFAULT_SOCK_USER);
938  sock_addr = user_sock;
939 }
940#endif
941
942 if ( getenv("ROAR_SERVER") != NULL )
943  sock_addr = getenv("ROAR_SERVER");
944#endif
945
946 if ( clients_init() == -1 ) {
947  ROAR_ERR("Can not init clients!");
948  return 1;
949 }
950
951 if ( streams_init() == -1 ) {
952  ROAR_ERR("Can not init streams!");
953  return 1;
954 }
955
956 if ( (g_self_client = clients_new()) == -1 ) {
957  ROAR_ERR("Can not create self client!");
958  return 1;
959 }
960
961#ifndef ROAR_WITHOUT_DCOMP_SOURCES
962 if ( sources_init() == -1 ) {
963  ROAR_ERR("Can not init sources!");
964  return 1;
965 }
966
967 if ( (sources_set_client(g_self_client)) == -1 ) {
968  ROAR_ERR("Can not init set source client!");
969  return 1;
970 }
971#endif
972
973#ifdef ROAR_HAVE_MAIN_ARGS
974 for (i = 1; i < argc; i++) {
975  k = argv[i];
976
977  if ( strcmp(k, "-h") == 0 || strcmp(k, "--help") == 0 ) {
978   usage();
979   return 0;
980
981  } else if ( strcmp(k, "--start") == 0 ) {
982   // this is a no op
983  } else if ( strcmp(k, "--restart") == 0 ) {
984#ifdef ROAR_SUPPORT_LISTEN
985   if ( restart_server(sock_addr, 1) == -1 ) {
986    ROAR_WARN("Can not terminate old server (not running at %s?), tring to continue anyway", sock_addr);
987   }
988#else
989   ROAR_ERR("--restart not supported");
990#endif
991  } else if ( strcmp(k, "--shutdown") == 0 ) {
992#ifdef ROAR_SUPPORT_LISTEN
993   if ( restart_server(sock_addr, 1) == -1 ) {
994    ROAR_WARN("Can not terminate old server (not running at %s?)", sock_addr);
995    return 1;
996   }
997   return 0;
998#else
999   ROAR_ERR("--shutdown not supported");
1000   return 1;
1001#endif
1002  } else if ( strcmp(k, "--stop") == 0 ) {
1003#ifdef ROAR_SUPPORT_LISTEN
1004   if ( restart_server(sock_addr, 0) == -1 ) {
1005    ROAR_WARN("Can not stop old server (not running at %s?)", sock_addr);
1006    return 1;
1007   }
1008   return 0;
1009#else
1010   ROAR_ERR("--stop not supported");
1011   return 1;
1012#endif
1013
1014
1015  } else if ( strcmp(k, "--demon") == 0 || strcmp(k, "--daemon") == 0 ) {
1016#ifdef ROAR_HAVE_FORK
1017   daemon = 1;
1018#else
1019   ROAR_ERR("--daemon not supported");
1020#endif
1021  } else if ( strcmp(k, "--terminate") == 0 ) {
1022   g_terminate = 1;
1023  } else if ( strcmp(k, "--sysclocksync") == 0 ) {
1024   sysclocksync = 1000;
1025  } else if ( strcmp(k, "--realtime") == 0 ) {
1026   realtime++;
1027  } else if ( strcmp(k, "--chroot") == 0 ) {
1028#ifdef ROAR_HAVE_CHROOT
1029   chrootdir = argv[++i];
1030#else
1031   ROAR_ERR("--chroot not supported");
1032   i++;
1033#endif
1034  } else if ( strcmp(k, "--setgid") == 0 ) {
1035#ifdef ROAR_HAVE_SETGID
1036   setids |= R_SETGID;
1037#else
1038   ROAR_ERR("--setgid not supported");
1039#endif
1040  } else if ( strcmp(k, "--setuid") == 0 ) {
1041#ifdef ROAR_HAVE_SETUID
1042   setids |= R_SETUID;
1043#else
1044   ROAR_ERR("--setuid not supported");
1045#endif
1046  } else if ( strcmp(k, "--location") == 0 ) {
1047   g_config->location = argv[++i];
1048  } else if ( strcmp(k, "--pidfile") == 0 ) {
1049#ifdef SUPPORT_PIDFILE
1050   pidfile = argv[++i];
1051#else
1052   ROAR_ERR("--pidfile not supported");
1053   i++;
1054#endif
1055
1056  } else if ( strcmp(k, "--list-cf") == 0 ) {
1057   print_codecfilterlist();
1058   return 0;
1059
1060  } else if ( strcmp(k, "-R") == 0 || strcmp(k, "--rate") == 0 ) {
1061   sa.rate = atoi(argv[++i]);
1062  } else if ( strcmp(k, "-B") == 0 || strcmp(k, "--bits") == 0 ) {
1063   sa.bits = atoi(argv[++i]);
1064  } else if ( strcmp(k, "-C") == 0 || strcmp(k, "--chans") == 0 ) {
1065   sa.channels = atoi(argv[++i]);
1066
1067  } else if ( strcmp(k, "--stream-flags") == 0 ) {
1068   if ( update_stream_flags(argv[++i]) == -1 ) {
1069    ROAR_ERR("Can not set stream flags");
1070    return 1;
1071   }
1072
1073  } else if ( strcmp(k, "-d") == 0 || strcmp(k, "--driver") == 0 ) {
1074   driver = argv[++i];
1075   if ( strcmp(driver, "list") == 0 ) {
1076    ROAR_WARN("The option is obsolete, use --list-driver!");
1077    print_driverlist();
1078    return 0;
1079   }
1080  } else if ( strcmp(k, "-D") == 0 || strcmp(k, "--device") == 0 ) {
1081   device = argv[++i];
1082  } else if ( strcmp(k, "-dO") == 0 ) {
1083   opts = argv[++i];
1084  } else if ( strcmp(k, "--list-driver") == 0 ) {
1085   print_driverlist();
1086   return 0;
1087
1088  } else if ( strcmp(k, "-o") == 0 || strcmp(k, "--odriver") == 0 ) {
1089   o_drv  = argv[++i];
1090  } else if ( strcmp(k, "-O") == 0 || strcmp(k, "--odevice") == 0 ) {
1091   o_dev  = argv[++i];
1092  } else if ( strcmp(k, "-oO") == 0 ) {
1093   o_opts = argv[++i];
1094  } else if ( strcmp(k, "-oP") == 0 ) {
1095   o_prim = 1;
1096  } else if ( strcmp(k, "-oN") == 0 ) {
1097   if ( add_output(o_drv, o_dev, o_opts, o_prim, o_count) != -1 )
1098    o_count++;
1099
1100   o_drv  = o_dev = o_opts = NULL;
1101   o_prim = 0;
1102
1103  } else if ( strcmp(k, "-s") == 0 || strcmp(k, "--source") == 0 ) {
1104#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1105   s_drv = argv[++i];
1106#else
1107   ROAR_ERR("main(*): No support for sources compiled in");
1108#endif
1109  } else if ( strcmp(k, "-S") == 0 ) {
1110#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1111   s_dev = argv[++i];
1112#else
1113   ROAR_ERR("main(*): No support for sources compiled in");
1114#endif
1115  } else if ( strcmp(k, "-sO") == 0 ) {
1116#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1117   s_opt = argv[++i];
1118#else
1119   ROAR_ERR("main(*): No support for sources compiled in");
1120#endif
1121  } else if ( strcmp(k, "-sC") == 0 ) {
1122#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1123   s_con = argv[++i];
1124#else
1125   ROAR_ERR("main(*): No support for sources compiled in");
1126#endif
1127  } else if ( strcmp(k, "-sP") == 0 ) {
1128#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1129   s_prim = 1;
1130#else
1131   ROAR_ERR("main(*): No support for sources compiled in");
1132#endif
1133  } else if ( strcmp(k, "-sN") == 0 ) {
1134#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1135   if ( sources_add(s_drv, s_dev, s_con, s_opt, s_prim) == -1 ) {
1136    ROAR_ERR("main(*): adding source '%s' via '%s' failed!", s_dev, s_drv);
1137   }
1138   s_opt = s_dev = s_con = NULL;
1139   s_drv = "cf";
1140   s_prim = 0;
1141#else
1142   ROAR_ERR("main(*): No support for sources compiled in");
1143#endif
1144  } else if ( strcmp(k, "--list-sources") == 0 ) {
1145#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1146   print_sourcelist();
1147   return 0;
1148#else
1149   ROAR_ERR("main(*): No support for sources compiled in");
1150   return 1;
1151#endif
1152
1153  } else if ( strcmp(k, "--light-channels") == 0 ) {
1154#ifndef ROAR_WITHOUT_DCOMP_LIGHT
1155   light_channels = atoi(argv[++i]);
1156#else
1157   ROAR_WARN("main(*): no light subsystem compiled in");
1158#endif
1159
1160  } else if ( strcmp(k, "--rds-pi") == 0 ) {
1161#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1162   g_rdtcs.rds.pi = atoi(argv[++i]);
1163#else
1164   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1165#endif
1166  } else if ( strcmp(k, "--rds-ps") == 0 ) {
1167#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1168   if ( rdtcs_rds_set_ps(argv[++i]) == -1 ) {
1169    ROAR_ERR("Can not set RDS PS to '%s' (longer than 8 chars?)", argv[i]);
1170    return 1;
1171   }
1172#else
1173   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1174#endif
1175  } else if ( strcmp(k, "--rds-pty") == 0 ) {
1176#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1177   if ( rdtcs_rds_set_pty(argv[++i]) == -1 ) {
1178    ROAR_ERR("Can not set RDS PTY to '%s'", argv[i]);
1179    return 1;
1180   }
1181#else
1182   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1183#endif
1184  } else if ( strcmp(k, "--rds-tp") == 0 ) {
1185#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1186   if ( rdtcs_rds_set_flag(RDTCS_RDS_FLAG_TP, 0) == -1 ) {
1187    ROAR_ERR("Can not set RDS TP flag");
1188    return 1;
1189   }
1190#else
1191   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1192#endif
1193  } else if ( strcmp(k, "--rds-ct") == 0 ) {
1194#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1195   if ( rdtcs_rds_set_flag(RDTCS_RDS_FLAG_CT, 0) == -1 ) {
1196    ROAR_ERR("Can not set RDS CT flag");
1197    return 1;
1198   }
1199#else
1200   ROAR_WARN("main(*): no RDTCS subsystem compiled in");
1201#endif
1202
1203
1204  } else if ( strcmp(k, "--midi-no-console") == 0 ) {
1205#ifndef ROAR_WITHOUT_DCOMP_CB
1206   midi_config.init_cb = 0;
1207#else
1208   // no warning here as this is the disable option
1209#endif
1210  } else if ( strcmp(k, "--midi-console-enable") == 0 ) {
1211#ifndef ROAR_WITHOUT_DCOMP_CB
1212   midi_config.init_cb = 1;
1213#else
1214   ROAR_ERR("main(*): No support for MIDI subsystem part CB compiled in");
1215#endif
1216  } else if ( strcmp(k, "--midi-console") == 0 ) {
1217#ifndef ROAR_WITHOUT_DCOMP_CB
1218   midi_config.console_dev = argv[++i];
1219   midi_config.init_cb = 1;
1220#else
1221   ROAR_ERR("main(*): No support for MIDI subsystem part CB compiled in");
1222#endif
1223
1224  } else if ( strcmp(k, "--ssynth-enable") == 0 ) {
1225#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
1226   ssynth_conf.enable = 1;
1227#else
1228   ROAR_ERR("main(*): No support for ssynth compiled in");
1229#endif
1230  } else if ( strcmp(k, "--ssynth-disable") == 0 ) {
1231#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
1232   ssynth_conf.enable = 0;
1233#else
1234   // we can safely ignore the disable
1235#endif
1236
1237  } else if ( strcmp(k, "-p") == 0 || strcmp(k, "--port") == 0 ) {
1238   // This is only usefull in INET not UNIX mode.
1239#ifdef ROAR_SUPPORT_LISTEN
1240   if ( *sock_addr == '/' )
1241    sock_addr = ROAR_DEFAULT_HOST;
1242
1243   errno = 0;
1244   if ( (port = atoi(argv[++i])) < 1 ) {
1245#ifdef ROAR_HAVE_GETSERVBYNAME
1246    if ( (serv = getservbyname(argv[i], "tcp")) == NULL ) {
1247     ROAR_ERR("Unknown service: %s: %s", argv[i], strerror(errno));
1248     return 1;
1249    }
1250    // NOTE: we need to use ROAR_NET2HOST16() here even if s_port is of type int!
1251    ROAR_DBG("main(*): serv = {s_name='%s', s_aliases={...}, s_port=%i, s_proto='%s'}",
1252            serv->s_name, ROAR_NET2HOST16(serv->s_port), serv->s_proto);
1253    port = ROAR_NET2HOST16(serv->s_port);
1254#else
1255    ROAR_ERR("invalite port number: %s", argv[i]);
1256    return 1;
1257#endif
1258   }
1259#endif
1260  } else if ( strcmp(k, "-b") == 0 || strcmp(k, "--bind") == 0 || strcmp(k, "--sock") == 0 ) {
1261#ifdef ROAR_SUPPORT_LISTEN
1262   sock_addr = argv[++i];
1263#endif
1264
1265  } else if ( strcmp(k, "--proto") == 0 ) {
1266#ifdef ROAR_SUPPORT_LISTEN
1267   if ( (sock_proto = roar_str2proto(argv[++i])) == -1 ) {
1268    ROAR_ERR("Unknown protocol: %s", argv[i]);
1269    return 1;
1270   }
1271#endif
1272
1273  } else if ( strcmp(k, "-t") == 0 || strcmp(k, "--tcp") == 0 ) {
1274#ifdef ROAR_SUPPORT_LISTEN
1275   if ( sock_type != ROAR_SOCKET_TYPE_TCP && sock_type != ROAR_SOCKET_TYPE_TCP6 )
1276    sock_type = ROAR_SOCKET_TYPE_TCP;
1277
1278   if ( *sock_addr == '/' )
1279    sock_addr = ROAR_DEFAULT_HOST;
1280#endif
1281
1282  } else if ( strcmp(k, "-4") == 0 ) {
1283#ifdef ROAR_SUPPORT_LISTEN
1284   sock_type = ROAR_SOCKET_TYPE_TCP;
1285   if ( *sock_addr == '/' )
1286    sock_addr = ROAR_DEFAULT_HOST;
1287#endif
1288  } else if ( strcmp(k, "-6") == 0 ) {
1289#ifdef ROAR_SUPPORT_LISTEN
1290#ifdef PF_INET6
1291   sock_type = ROAR_SOCKET_TYPE_TCP6;
1292   if ( *sock_addr == '/' )
1293    sock_addr = ROAR_DEFAULT_HOST;
1294#else
1295    ROAR_ERR("No IPv6 support compiled in!");
1296    return 1;
1297#endif
1298#endif
1299
1300  } else if ( strcmp(k, "-u") == 0 || strcmp(k, "--unix") == 0 ) {
1301#ifdef ROAR_SUPPORT_LISTEN
1302   // ignore this case as it is the default behavor.
1303   sock_type = ROAR_SOCKET_TYPE_UNIX;
1304#endif
1305
1306  } else if ( strcmp(k, "-n") == 0 || strcmp(k, "--decnet") == 0 ) {
1307#ifdef ROAR_SUPPORT_LISTEN
1308#ifdef ROAR_HAVE_LIBDNET
1309    port   = ROAR_DEFAULT_NUM;
1310    strcpy(decnethost, ROAR_DEFAULT_LISTEN_OBJECT);
1311    sock_addr = decnethost;
1312    sock_type = ROAR_SOCKET_TYPE_DECNET;
1313#else
1314    ROAR_ERR("No DECnet support compiled in!");
1315    return 1;
1316#endif
1317#endif
1318  } else if ( strcmp(k, "--new-sock") == 0 ) {
1319#ifdef ROAR_SUPPORT_LISTEN
1320   if ( add_listen(sock_addr, port, sock_type, sock_user, sock_grp, sock_proto) != 0 ) {
1321    ROAR_ERR("Can not open listen socket!");
1322    return 1;
1323   }
1324#endif
1325
1326  } else if ( strcmp(k, "--slp") == 0 ) {
1327#ifdef ROAR_HAVE_LIBSLP
1328   reg_slp = 1;
1329#else
1330    ROAR_ERR("No OpenSLP support compiled in!");
1331    return 1;
1332#endif
1333
1334  } else if ( strcmp(k, "-G") == 0 ) {
1335   sock_grp  = argv[++i];
1336  } else if ( strcmp(k, "-U") == 0 ) {
1337   sock_user = argv[++i];
1338
1339  } else if ( strcmp(k, "--no-listen") == 0 ) {
1340#ifdef ROAR_SUPPORT_LISTEN
1341   sock_addr   = "";
1342   g_terminate = 1;
1343   g_no_listen = 1;
1344#endif
1345  } else if ( strcmp(k, "--client-fh") == 0 ) {
1346   if ( clients_set_fh(clients_new(), atoi(argv[++i])) == -1 ) {
1347    ROAR_ERR("main(*): Can not set client's fh");
1348    return 1;
1349   }
1350  } else if ( strcmp(k, "--close-fh") == 0 ) {
1351#ifdef ROAR_HAVE_IO_POSIX
1352   close(atoi(argv[++i]));
1353#else
1354   i++;
1355   ROAR_WARN("can not close file handle %s (closing not supported)", argv[i]);
1356#endif
1357
1358  } else if ( strcmp(k, "--standby") == 0 ) {
1359   g_standby = 1;
1360  } else if ( strcmp(k, "--auto-standby") == 0 ) {
1361   g_autostandby = 1;
1362  } else {
1363   usage();
1364   return 1;
1365  }
1366
1367 }
1368#endif
1369
1370#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1371 if ( s_dev != NULL ) {
1372  if ( sources_add(s_drv, s_dev, s_con, s_opt, s_prim) == -1 ) {
1373   ROAR_ERR("main(*): adding source '%s' via '%s' failed!", s_dev, s_drv);
1374  }
1375 }
1376#endif
1377
1378 add_output(o_drv, o_dev, o_opts, o_prim, o_count);
1379
1380 ROAR_DBG("Server config: rate=%i, bits=%i, chans=%i", sa.rate, sa.bits, sa.channels);
1381
1382#ifndef ROAR_WITHOUT_DCOMP_MIDI
1383 if ( midi_init() == -1 ) {
1384  ROAR_ERR("Can not initialize MIDI subsystem");
1385 }
1386#endif
1387
1388#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
1389 if ( ssynth_init() == -1 ) {
1390  ROAR_ERR("Can not initialize ssynth subsystem");
1391 }
1392#endif
1393
1394#ifndef ROAR_WITHOUT_DCOMP_LIGHT
1395 if ( light_init(light_channels) == -1 ) {
1396  ROAR_ERR("Can not initialize light control subsystem");
1397 }
1398#endif
1399
1400#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1401 if ( rdtcs_init() == -1 ) {
1402  ROAR_ERR("Can not initialize RDTCS subsystem");
1403 }
1404#endif
1405
1406#ifdef ROAR_SUPPORT_LISTEN
1407 if ( add_listen(sock_addr, port, sock_type, sock_user, sock_grp, sock_proto) != 0 ) {
1408  ROAR_ERR("Can not open listen socket!");
1409  return 1;
1410 }
1411#endif
1412
1413 if ( output_buffer_init(&sa) == -1 ) {
1414  ROAR_ERR("Can not init output buffer!");
1415  return 1;
1416 }
1417
1418 if ( driver == NULL ) {
1419  driver = "null";
1420 } else {
1421  ROAR_WARN("Usage of old driver interface. use -o not -d!");
1422 }
1423
1424 if ( driver_open(&drvinst, &drvid, driver, device, &sa) == -1 ) {
1425  ROAR_ERR("Can not open output driver!");
1426  return 1;
1427 }
1428
1429 if ( samples_init() == -1 ) {
1430  ROAR_ERR("Can not init samples!");
1431  return 1;
1432 }
1433
1434
1435 // we should handle this on microcontrollers, too.
1436#if !defined(ROAR_TARGET_MICROCONTROLLER) && !defined(ROAR_TARGET_WIN32)
1437 signal(SIGINT,  on_sig_int);
1438 signal(SIGTERM, on_sig_term);
1439 signal(SIGCHLD, on_sig_chld);
1440 signal(SIGUSR1, on_sig_usr1);
1441 signal(SIGPIPE, SIG_IGN);  // ignore broken pipes
1442#endif
1443
1444 if ( realtime ) {
1445#ifdef DEBUG
1446  ROAR_WARN("compiled with -DDEBUG but realtime is enabled: for real realtime support compiel without -DDEBUG");
1447#endif
1448
1449#ifdef ROAR_HAVE_NICE
1450  errno = 0;
1451  nice(-5*realtime); // -5 for each --realtime
1452  if ( errno ) {
1453   ROAR_WARN("Can not decrease nice value by %i: %s", 5*realtime, strerror(errno));
1454  }
1455#else
1456  ROAR_WARN("Can not decrease nice value by %i: %s", 5*realtime, strerror(errno));
1457#endif
1458/*
1459#ifdef __linux__
1460  if ( ioprio_set(IOPRIO_WHO_PROCESS, getpid(), IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0)) == -1 )
1461   ROAR_WARN("Can not set io priority: %s", strerror(errno));
1462#endif
1463*/
1464 }
1465
1466#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_IO_POSIX)
1467 if ( setids & R_SETGID ) {
1468  if ( sock_grp == NULL ) {
1469   ROAR_ERR("Can not set GID if no groupname is supplied");
1470   return 1;
1471  }
1472  if ( (grp = getgrnam(sock_grp)) == NULL ) {
1473   ROAR_ERR("Can not get GID for group %s: %s", sock_grp, strerror(errno));
1474   return 1;
1475  }
1476  if ( setgroups(0, (const gid_t *) NULL) == -1 ) {
1477   ROAR_ERR("Can not clear supplementary group IDs: %s", strerror(errno));
1478  }
1479  if ( !grp || setgid(grp->gr_gid) == -1 ) {
1480   ROAR_ERR("Can not set GroupID: %s", strerror(errno));
1481  }
1482 }
1483#endif
1484
1485
1486 clients_set_pid(g_self_client, getpid());
1487#ifdef ROAR_HAVE_GETUID
1488 clients_set_uid(g_self_client, getuid());
1489#endif
1490#ifdef ROAR_HAVE_GETGID
1491 clients_set_gid(g_self_client, getgid());
1492#endif
1493 clients_get(g_self_client, &self);
1494
1495 if ( self == NULL ) {
1496  ROAR_ERR("Can not get self client!");
1497  return 1;
1498 }
1499
1500 strcpy(self->name, "RoarAudio daemon internal");
1501
1502#ifdef ROAR_HAVE_FORK
1503 if ( daemon ) {
1504  close(ROAR_STDIN );
1505  close(ROAR_STDOUT);
1506  close(ROAR_STDERR);
1507
1508  if ( fork() )
1509   ROAR_U_EXIT(0);
1510
1511#ifdef ROAR_HAVE_SETSID
1512  setsid();
1513#endif
1514  clients_set_pid(g_self_client, getpid()); // reset pid as it changed
1515 }
1516#endif
1517
1518#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
1519 // early test for UID as we need this for the pidfile and the setuid()
1520 if ( sock_user != NULL ) {
1521  if ( (pwd = getpwnam(sock_user)) == NULL ) {
1522   ROAR_ERR("Can not get UID for user %s: %s", sock_user, strerror(errno));
1523   return 1;
1524  }
1525 }
1526#endif
1527
1528#ifdef SUPPORT_PIDFILE
1529 if ( pidfile != NULL ) {
1530  if ( roar_vio_open_file(&pidfile_vio, pidfile, O_WRONLY|O_CREAT, 0644) == -1 ) {
1531   ROAR_ERR("Can not write pidfile: %s", pidfile);
1532  } else {
1533   roar_vio_printf(&pidfile_vio, "%i\n", getpid());
1534   roar_vio_close(&pidfile_vio);
1535  }
1536#if defined(ROAR_HAVE_SETGID) && defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
1537  if ( pwd || grp ) {
1538   if ( chown(pidfile, pwd ? pwd->pw_uid : -1, grp ? grp->gr_gid : -1) == -1 ) {
1539    ROAR_WARN("Can not change ownership of pidfile: %s: %s", pidfile, strerror(errno));
1540   }
1541  }
1542  if ( chmod(pidfile, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) == -1 ) {
1543   ROAR_WARN("Can not change permissions of pidfile: %s: %s", pidfile, strerror(errno));
1544  }
1545#endif
1546 }
1547#endif
1548
1549#ifdef ROAR_HAVE_CHROOT
1550 if (chrootdir) {
1551  if ( chroot(chrootdir) == -1 ) {
1552   ROAR_ERR("Can not chroot to %s: %s", chrootdir, strerror(errno));
1553   return 2;
1554  }
1555  if ( chdir("/") == -1 ) {
1556   ROAR_ERR("Can not chdir to /: %s", strerror(errno));
1557   return 2;
1558  }
1559 }
1560#endif
1561
1562#if defined(ROAR_HAVE_SETUID) && defined(ROAR_HAVE_IO_POSIX)
1563 if ( setids & R_SETUID ) {
1564  if ( sock_user == NULL ) {
1565   ROAR_ERR("Can not set UID if no username is supplied");
1566   return 1;
1567  }
1568  if ( !pwd || setuid(pwd->pw_uid) == -1 ) {
1569   ROAR_ERR("Can not set UserID: %s", strerror(errno));
1570   return 3;
1571  }
1572#ifdef ROAR_HAVE_GETUID
1573  clients_set_uid(g_self_client, getuid());
1574#endif
1575 }
1576#endif
1577
1578 // Register with OpenSLP:
1579#ifdef ROAR_HAVE_LIBSLP
1580 if ( reg_slp ) {
1581  register_slp(0, sock_addr);
1582 }
1583#endif
1584
1585 // start main loop...
1586 main_loop(drvid, drvinst, &sa, sysclocksync);
1587
1588 // clean up.
1589 clean_quit_prep();
1590 driver_close(drvinst, drvid);
1591 output_buffer_free();
1592
1593 return 0;
1594}
1595
1596void cleanup_listen_socket (int terminate) {
1597 int i;
1598
1599 // Deregister from SLP:
1600#ifdef ROAR_HAVE_LIBSLP
1601 register_slp(1, NULL);
1602#endif
1603
1604#ifdef ROAR_SUPPORT_LISTEN
1605 for (i = 0; i < ROAR_MAX_LISTEN_SOCKETS; i++) {
1606  if ( g_listen_socket[i] != -1 ) {
1607#ifdef ROAR_HAVE_IO_POSIX
1608   close(g_listen_socket[i]);
1609#endif // #else is useless because we are in void context.
1610
1611   g_listen_socket[i] = -1;
1612
1613#ifdef ROAR_HAVE_UNIX
1614   if ( server[i] != NULL )
1615    if ( *(server[i]) == '/' )
1616     unlink(server[i]);
1617#endif
1618  }
1619 }
1620
1621#endif
1622
1623 if ( terminate )
1624  g_terminate = 1;
1625}
1626
1627void clean_quit_prep (void) {
1628 cleanup_listen_socket(0);
1629
1630#ifndef ROAR_WITHOUT_DCOMP_SOURCES
1631 sources_free();
1632#endif
1633 streams_free();
1634 clients_free();
1635#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
1636 ssynth_free();
1637#endif
1638#ifndef ROAR_WITHOUT_DCOMP_CB
1639 midi_cb_stop(); // stop console beep
1640#endif
1641#ifndef ROAR_WITHOUT_DCOMP_MIDI
1642 midi_free();
1643#endif
1644#ifndef ROAR_WITHOUT_DCOMP_LIGHT
1645 light_free();
1646#endif
1647#ifndef ROAR_WITHOUT_DCOMP_RDTCS
1648 rdtcs_free();
1649#endif
1650
1651#ifdef SUPPORT_PIDFILE
1652 if ( pidfile != NULL )
1653  unlink(pidfile);
1654#endif
1655}
1656
1657void clean_quit (void) {
1658 clean_quit_prep();
1659// driver_close(drvinst, drvid);
1660// output_buffer_free();
1661 exit(0);
1662}
1663
1664//ll
Note: See TracBrowser for help on using the repository browser.