source: roaraudio/roard/roard.c @ 974:2fc99cf797f4

Last change on this file since 974:2fc99cf797f4 was 974:2fc99cf797f4, checked in by phi, 15 years ago

mark -d list as obsolete

File size: 17.7 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
27char * server = ROAR_DEFAULT_SOCK_GLOBAL; // global server address
28
29void usage (void) {
30 printf("Usage: roard [OPTIONS]...\n\n");
31
32 printf("Misc Options:\n\n");
33 printf(
34        " --daemon              - Bring the server into background after init\n"
35        " --terminate           - Terminate after last client quited\n"
36        " --restart             - Trys to stop an old instance and start a new with new settings\n"
37        " --realtime            - Trys to get realtime priority,\n"
38        "                         give multible times for being more realtime\n"
39        " --chroot DIR          - chroots to the given dir\n"
40        " --setgid              - GroupID to the audio group as specified via -G\n"
41        " --setuid              - UserID to the audio user as specified via -U\n"
42        " --sysclocksync        - calculate exact sample rate using the system clock\n"
43       );
44
45 printf("\nAudio Options:\n\n");
46 printf(
47        " -R  --rate   RATE     - Set server rate\n"
48        " -B  --bits   BITS     - Set server bits\n"
49        " -C  --chans  CHANNELS - Set server channels\n"
50       );
51
52 printf("\nDriver Options:\n\n");
53 printf(" -d  --driver DRV      - Set the driver (default: %s)\n", ROAR_DRIVER_DEFAULT);
54 printf(" -D  --device DEV      - Set the device\n");
55 printf(" -dO OPTS              - Set output options\n");
56 printf(" --list-driver         - List all drivers\n");
57
58 printf("\nOutput Options:\n\n");
59 printf(" -o  --odriver DRV     - Set the driver, use '--list-driver' to get a list\n");
60 printf(" -O  --odevice DEV     - Set the device\n");
61 printf(" -oO OPTS              - Set output options\n");
62 printf(" -oN                   - Adds another output\n");
63 printf(" -oP                   - Mark output as primary\n");
64
65 printf("\nSource Options:\n\n");
66 printf(" -s  --source DRV      - Use DRV as input driver\n"
67        " -S           DEV      - Use DEV as input device\n"
68        " -sO          OPTS     - Use OPTS as input options\n"
69        " -sP                   - Make souce as primary\n"
70       );
71
72 printf("\nCodec Filter Options:\n\n");
73 printf(" --list-cf             - List all codec filter\n"
74       );
75
76 printf("\nServer Options:\n\n");
77 printf(" -t  --tcp             - Use TCP listen socket\n"
78        " -u  --unix            - Use UNIX Domain listen socket (default)\n"
79#ifdef ROAR_HAVE_LIBDNET
80        " -n  --decnet          - use DECnet listen socket\n"
81#endif
82        " -4                    - Use IPv4 connections (implies -t)\n"
83#ifdef PF_INET6
84        " -6                    - Use IPv6 connections (implies -t)\n"
85#endif
86#ifdef IPV6_ADDRFORM
87        " -64                   - Try to downgrade sockets from IPv6 into IPv4,\n"
88        "                         this is normaly not usefull.\n"
89#endif
90        " -p  --port            - TCP Port to bind to\n"
91        " -b  --bind            - IP/Hostname to bind to\n"
92        " -s  --sock            - Filename for UNIX Domain Socket\n"
93        " -G  GROUP             - Sets the group for the UNIX Domain Socket, (default: %s)\n"
94        "                         You need the permittions to change the GID\n"
95        " -U  USER              - Sets the user for the UNIX Domain Socket, (default: do not set)\n"
96        "                         You need the permittions to change the UID (normaly only root has)\n"
97        " --no-listen           - Do not listen for new clients\n"
98        "                         (only usefull for relaing, impleys --terminate)\n"
99        " --client-fh           - Comunicate with a client over this handle\n"
100        "                         (only usefull for relaing)\n"
101        " --close-fh            - Closes the given fh\n"
102        " --standby             - Start in standby state\n"
103        " --auto-standby        - Automatical goes into standby if there are no streams\n",
104        ROAR_DEFAULT_SOCKGRP
105       );
106// printf("\n Options:\n\n");
107 printf("\n");
108}
109
110int restart_server (char * server) {
111 struct roar_connection con;
112 if ( roar_connect(&con, server) == -1 ) {
113  return -1;
114 }
115
116 if ( roar_terminate(&con, 1) == -1 ) {
117  return -1;
118 }
119
120 return roar_disconnect(&con);
121}
122
123#define R_SETUID 1
124#define R_SETGID 2
125
126int add_output (char * drv, char * dev, char * opts, int prim) {
127 int stream;
128 struct roar_stream * s;
129 struct roar_stream_server * ss;
130 char * k, * v;
131 int codec;
132
133 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
134
135 if ( (stream = streams_new()) == -1 ) {
136  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
137  return -1;
138 }
139
140 streams_get(stream, &ss);
141 s = ROAR_STREAM(ss);
142
143 memcpy(&(s->info), g_sa, sizeof(struct roar_audio_info));
144
145 s->dir        = ROAR_DIR_OUTPUT;
146 s->pos_rel_id = -1;
147// s->info.codec = codec;
148
149 codec = s->info.codec;
150
151 k = strtok(opts, ",");
152 while (k != NULL) {
153//  ROAR_WARN("add_output(*): opts: %s", k);
154
155  if ( (v = strstr(k, "=")) != NULL ) {
156   *v++ = 0;
157  }
158
159  ROAR_DBG("add_output(*): opts: k='%s', v='%s'", k, v);
160  if ( strcmp(k, "rate") == 0 ) {
161   s->info.rate = atoi(v);
162  } else if ( strcmp(k, "channels") == 0 ) {
163   s->info.channels = atoi(v);
164  } else if ( strcmp(k, "bits") == 0 ) {
165   s->info.bits = atoi(v);
166  } else if ( strcmp(k, "codec") == 0 ) {
167   if ( (codec = roar_str2codec(v)) == -1 ) {
168    ROAR_ERR("add_output(*): unknown codec '%s'", v);
169    streams_delete(stream);
170    return -1;
171   }
172  } else {
173   ROAR_ERR("add_output(*): unknown option '%s'", k);
174   streams_delete(stream);
175   return -1;
176  }
177
178  k = strtok(NULL, ",");
179 }
180
181 if ( codec == ROAR_CODEC_ALAW || codec == ROAR_CODEC_MULAW )
182  s->info.bits = 8; // needed to open OSS driver, will be overriden by codecfilter
183
184 s->info.codec = codec;
185 ROAR_STREAM_SERVER(s)->codec_orgi = codec;
186
187 if ( driver_openvio(&(ss->vio), &(ss->driver_id), drv, dev, &(s->info), -1) ) {
188  streams_delete(stream);
189  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
190  return -1;
191 }
192
193 streams_set_fh(stream, -1); // update some internal structures
194
195 client_stream_add(g_source_client, stream);
196
197 if ( prim )
198  streams_mark_primary(stream);
199
200 return 0;
201}
202
203int main (int argc, char * argv[]) {
204 int i;
205 char * k;
206 char user_sock[80]  = {0};
207 struct roar_audio_info sa;
208 int    daemon       = 0;
209 int    realtime     = 0;
210 int    sysclocksync = 0;
211 char * driver = getenv("ROAR_DRIVER");
212 char * device = getenv("ROAR_DEVICE");
213 char * opts   = NULL;
214// char * server = ROAR_DEFAULT_SOCK_GLOBAL;
215 int      port = ROAR_DEFAULT_PORT;
216 int               drvid;
217 char * s_drv     = "cf";
218 char * s_con     = NULL;
219 char * s_opt     = NULL;
220 int    s_prim    = 0;
221 char * o_drv     = NULL;
222 char * o_dev     = NULL;
223 char * o_opts    = NULL;
224 int    o_prim    = 0;
225 char * sock_grp  = ROAR_DEFAULT_SOCKGRP;
226 char * sock_user = NULL;
227 int    sock_type = ROAR_SOCKET_TYPE_UNKNOWN;
228 char * chrootdir = NULL;
229 int    setids    = 0;
230 struct group   * grp  = NULL;
231 struct passwd  * pwd  = NULL;
232 struct servent * serv = NULL;
233 DRIVER_USERDATA_T drvinst;
234 struct roar_client * self = NULL;
235#ifdef ROAR_HAVE_LIBDNET
236 char decnethost[80];
237#endif
238
239 g_listen_socket = -1;
240 g_standby       =  0;
241 g_autostandby   =  0;
242
243 sa.bits     = ROAR_BITS_DEFAULT;
244 sa.channels = ROAR_CHANNELS_DEFAULT;
245 sa.rate     = ROAR_RATE_DEFAULT;
246 sa.codec    = ROAR_CODEC_DEFAULT;
247
248 g_sa = &sa;
249
250
251 if ( getuid() != 0 && getenv("HOME") ) {
252  snprintf(user_sock, 79, "%s/%s", getenv("HOME"), ROAR_DEFAULT_SOCK_USER);
253  server = user_sock;
254 }
255
256 if ( getenv("ROAR_SERVER") != NULL )
257  server = getenv("ROAR_SERVER");
258
259 if ( clients_init() == -1 ) {
260  ROAR_ERR("Can not init clients!");
261  return 1;
262 }
263
264 if ( streams_init() == -1 ) {
265  ROAR_ERR("Can not init streams!");
266  return 1;
267 }
268
269 if ( (g_self_client = clients_new()) == -1 ) {
270  ROAR_ERR("Can not create self client!");
271  return 1;
272 }
273
274 if ( sources_init() == -1 ) {
275  ROAR_ERR("Can not init sources!");
276  return 1;
277 }
278
279 if ( (sources_set_client(g_self_client)) == -1 ) {
280  ROAR_ERR("Can not init set source client!");
281  return 1;
282 }
283
284 for (i = 1; i < argc; i++) {
285  k = argv[i];
286
287  if ( strcmp(k, "-h") == 0 || strcmp(k, "--help") == 0 ) {
288   usage();
289   return 0;
290
291  } else if ( strcmp(k, "--restart") == 0 ) {
292   if ( restart_server(server) == -1 ) {
293    ROAR_WARN("Can not terminate old server (not running at %s?), tring to continue anyway", server);
294   }
295
296  } else if ( strcmp(k, "--demon") == 0 || strcmp(k, "--daemon") == 0 ) {
297   daemon = 1;
298  } else if ( strcmp(k, "--terminate") == 0 ) {
299   g_terminate = 1;
300  } else if ( strcmp(k, "--sysclocksync") == 0 ) {
301   sysclocksync = 1000;
302  } else if ( strcmp(k, "--realtime") == 0 ) {
303   realtime++;
304  } else if ( strcmp(k, "--chroot") == 0 ) {
305   chrootdir = argv[++i];
306  } else if ( strcmp(k, "--setgid") == 0 ) {
307   setids |= R_SETGID;
308  } else if ( strcmp(k, "--setuid") == 0 ) {
309   setids |= R_SETUID;
310
311  } else if ( strcmp(k, "--list-cf") == 0 ) {
312   print_codecfilterlist();
313   return 0;
314
315  } else if ( strcmp(k, "-R") == 0 || strcmp(k, "--rate") == 0 ) {
316   sa.rate = atoi(argv[++i]);
317  } else if ( strcmp(k, "-B") == 0 || strcmp(k, "--bits") == 0 ) {
318   sa.bits = atoi(argv[++i]);
319  } else if ( strcmp(k, "-C") == 0 || strcmp(k, "--chans") == 0 ) {
320   sa.channels = atoi(argv[++i]);
321
322  } else if ( strcmp(k, "-d") == 0 || strcmp(k, "--driver") == 0 ) {
323   driver = argv[++i];
324   if ( strcmp(driver, "list") == 0 ) {
325    ROAR_WARN("The option is obsolete, use --list-driver!");
326    print_driverlist();
327    return 0;
328   }
329  } else if ( strcmp(k, "-D") == 0 || strcmp(k, "--device") == 0 ) {
330   device = argv[++i];
331  } else if ( strcmp(k, "-dO") == 0 ) {
332   opts = argv[++i];
333  } else if ( strcmp(k, "--list-driver") == 0 ) {
334   print_driverlist();
335   return 0;
336
337  } else if ( strcmp(k, "-o") == 0 || strcmp(k, "--odriver") == 0 ) {
338   o_drv  = argv[++i];
339  } else if ( strcmp(k, "-O") == 0 || strcmp(k, "--odevice") == 0 ) {
340   o_dev  = argv[++i];
341  } else if ( strcmp(k, "-oO") == 0 ) {
342   o_opts = argv[++i];
343  } else if ( strcmp(k, "-oP") == 0 ) {
344   o_prim = 1;
345  } else if ( strcmp(k, "-oN") == 0 ) {
346   add_output(o_drv, o_dev, o_opts, o_prim);
347   o_drv  = o_dev = o_opts = NULL;
348   o_prim = 0;
349
350  } else if ( strcmp(k, "-s") == 0 || strcmp(k, "--source") == 0 ) {
351   s_drv = argv[++i];
352  } else if ( strcmp(k, "-S") == 0 ) {
353   k = argv[++i];
354   if ( sources_add(s_drv, k, s_con, s_opt, s_prim) == -1 ) {
355    ROAR_ERR("main(*): adding source '%s' via '%s' failed!", k, s_drv);
356   }
357   s_opt = s_con = NULL;
358   s_prim = 0;
359  } else if ( strcmp(k, "-sO") == 0 ) {
360   s_opt = argv[++i];
361  } else if ( strcmp(k, "-sC") == 0 ) {
362   s_con = argv[++i];
363  } else if ( strcmp(k, "-sP") == 0 ) {
364   s_prim = 1;
365
366  } else if ( strcmp(k, "-p") == 0 || strcmp(k, "--port") == 0 ) {
367   // This is only usefull in INET not UNIX mode.
368   if ( *server == '/' )
369    server = ROAR_DEFAULT_HOST;
370
371   errno = 0;
372   if ( (port = atoi(argv[++i])) < 1 ) {
373    if ( (serv = getservbyname(argv[i], "tcp")) == NULL ) {
374     ROAR_ERR("Unknown service: %s: %s", argv[i], strerror(errno));
375     return 1;
376    }
377    // NOTE: we need to use ROAR_NET2HOST16() here even if s_port is of type int!
378    ROAR_DBG("main(*): serv = {s_name='%s', s_aliases={...}, s_port=%i, s_proto='%s'}",
379            serv->s_name, ROAR_NET2HOST16(serv->s_port), serv->s_proto);
380    port = ROAR_NET2HOST16(serv->s_port);
381   }
382  } else if ( strcmp(k, "-b") == 0 || strcmp(k, "--bind") == 0 || strcmp(k, "-s") == 0 || strcmp(k, "--sock") == 0 ) {
383   server = argv[++i];
384
385  } else if ( strcmp(k, "-t") == 0 || strcmp(k, "--tcp") == 0 ) {
386   if ( sock_type != ROAR_SOCKET_TYPE_TCP && sock_type != ROAR_SOCKET_TYPE_TCP6 )
387    sock_type = ROAR_SOCKET_TYPE_TCP;
388
389   if ( *server == '/' )
390    server = ROAR_DEFAULT_HOST;
391
392  } else if ( strcmp(k, "-4") == 0 ) {
393   sock_type = ROAR_SOCKET_TYPE_TCP;
394   if ( *server == '/' )
395    server = ROAR_DEFAULT_HOST;
396  } else if ( strcmp(k, "-6") == 0 ) {
397#ifdef PF_INET6
398   sock_type = ROAR_SOCKET_TYPE_TCP6;
399   if ( *server == '/' )
400    server = ROAR_DEFAULT_HOST;
401#else
402    ROAR_ERR("No IPv6 support compiled in!");
403    return 1;
404#endif
405
406  } else if ( strcmp(k, "-u") == 0 || strcmp(k, "--unix") == 0 ) {
407   // ignore this case as it is the default behavor.
408   sock_type = ROAR_SOCKET_TYPE_UNIX;
409
410  } else if ( strcmp(k, "-n") == 0 || strcmp(k, "--decnet") == 0 ) {
411#ifdef ROAR_HAVE_LIBDNET
412    port   = ROAR_DEFAULT_NUM;
413    strcpy(decnethost, ROAR_DEFAULT_LISTEN_OBJECT);
414    server = decnethost;
415    sock_type = ROAR_SOCKET_TYPE_DECNET;
416#else
417    ROAR_ERR("No DECnet support compiled in!");
418    return 1;
419#endif
420
421  } else if ( strcmp(k, "-G") == 0 ) {
422   sock_grp  = argv[++i];
423  } else if ( strcmp(k, "-U") == 0 ) {
424   sock_user = argv[++i];
425
426  } else if ( strcmp(k, "--no-listen") == 0 ) {
427   *server     = 0;
428   g_terminate = 1;
429  } else if ( strcmp(k, "--client-fh") == 0 ) {
430   if ( clients_set_fh(clients_new(), atoi(argv[++i])) == -1 ) {
431    ROAR_ERR("main(*): Can not set client's fh");
432    return 1;
433   }
434  } else if ( strcmp(k, "--close-fh") == 0 ) {
435   close(atoi(argv[++i]));
436
437  } else if ( strcmp(k, "--standby") == 0 ) {
438   g_standby = 1;
439  } else if ( strcmp(k, "--auto-standby") == 0 ) {
440   g_autostandby = 1;
441  } else {
442   usage();
443   return 1;
444  }
445
446 }
447
448 if ( o_drv != NULL )
449  add_output(o_drv, o_dev, o_opts, o_prim);
450
451 ROAR_DBG("Server config: rate=%i, bits=%i, chans=%i", sa.rate, sa.bits, sa.channels);
452
453 if ( midi_init() == -1 )
454  ROAR_ERR("Can not initialize MIDI subsystem");
455
456 if ( *server != 0 ) {
457  if ( (g_listen_socket = roar_socket_listen(sock_type, server, port)) == -1 ) {
458   if ( *server == '/' ) {
459    if ( (i = roar_socket_connect(server, port)) != -1 ) {
460     close(i);
461     ROAR_ERR("Can not open listen socket!");
462     return 1;
463    } else {
464     unlink(server);
465     if ( (g_listen_socket = roar_socket_listen(sock_type, server, port)) == -1 ) {
466      ROAR_ERR("Can not open listen socket!");
467      return 1;
468     }
469    }
470   } else {
471    ROAR_ERR("Can not open listen socket!");
472    return 1;
473   }
474  }
475
476  if ( (grp = getgrnam(sock_grp)) == NULL ) {
477   ROAR_ERR("Can not get GID for group %s: %s", sock_grp, strerror(errno));
478  }
479  if ( sock_user || (setids & R_SETUID) ) {
480   if ( (pwd = getpwnam(sock_user)) == NULL ) {
481    ROAR_ERR("Can not get UID for user %s: %s", sock_user, strerror(errno));
482   }
483  }
484
485  if ( *server == '/' ) {
486   if ( grp ) {
487    if ( pwd ) {
488     chown(server, pwd->pw_uid, grp->gr_gid);
489    } else {
490     chown(server, -1, grp->gr_gid);
491    }
492    if ( getuid() == 0 )
493     chmod(server, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP);
494   }
495  }
496 }
497
498 if ( output_buffer_init(&sa) == -1 ) {
499  ROAR_ERR("Can not init output buffer!");
500  return 1;
501 }
502
503 if ( driver_open(&drvinst, &drvid, driver, device, &sa) == -1 ) {
504  ROAR_ERR("Can not open output driver!");
505  return 1;
506 }
507
508 if ( samples_init() == -1 ) {
509  ROAR_ERR("Can not init samples!");
510  return 1;
511 }
512
513
514 signal(SIGINT,  on_sig_int);
515 signal(SIGCHLD, on_sig_chld);
516 signal(SIGPIPE, SIG_IGN);  // ignore broken pipes
517
518 if ( realtime ) {
519#ifdef DEBUG
520  ROAR_WARN("compiled with -DDEBUG but realtime is enabled: for real realtime support compiel without -DDEBUG");
521#endif
522
523  errno = 0;
524  nice(-5*realtime); // -5 for each --realtime
525  if ( errno )
526   ROAR_WARN("Can not decrease nice value by 5: %s", strerror(errno));
527/*
528#ifdef __linux__
529  if ( ioprio_set(IOPRIO_WHO_PROCESS, getpid(), IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0)) == -1 )
530   ROAR_WARN("Can not set io priority: %s", strerror(errno));
531#endif
532*/
533 }
534
535 if ( setids & R_SETGID ) {
536  if ( setgroups(0, (const gid_t *) NULL) == -1 ) {
537   ROAR_ERR("Can not clear supplementary group IDs: %s", strerror(errno));
538  }
539  if ( !grp || setgid(grp->gr_gid) == -1 ) {
540   ROAR_ERR("Can not set GroupID: %s", strerror(errno));
541  }
542 }
543
544
545 clients_set_pid(g_self_client, getpid());
546 clients_set_uid(g_self_client, getuid());
547 clients_set_gid(g_self_client, getgid());
548 clients_get(g_self_client, &self);
549
550 if ( self == NULL ) {
551  ROAR_ERR("Can not get self client!");
552  return 1;
553 }
554
555 strcpy(self->name, "RoarAudio daemon internal");
556
557 if ( daemon ) {
558  close(ROAR_STDIN );
559  close(ROAR_STDOUT);
560  close(ROAR_STDERR);
561  setsid();
562  if ( fork() )
563   _exit(0);
564 }
565
566 if (chrootdir) {
567  if ( chroot(chrootdir) == -1 ) {
568   ROAR_ERR("Can not chroot to %s: %s", chrootdir, strerror(errno));
569   return 2;
570  }
571  if ( chdir("/") == -1 ) {
572   ROAR_ERR("Can not chdir to /: %s", strerror(errno));
573   return 2;
574  }
575 }
576
577 if ( setids & R_SETUID ) {
578  if ( !pwd || setuid(pwd->pw_uid) == -1 ) {
579   ROAR_ERR("Can not set UserID: %s", strerror(errno));
580   return 3;
581  }
582  clients_set_uid(g_self_client, getuid());
583 }
584
585 // start main loop...
586 main_loop(drvid, drvinst, &sa, sysclocksync);
587
588 // clean up.
589 clean_quit_prep();
590 driver_close(drvinst, drvid);
591 output_buffer_free();
592
593 return 0;
594}
595
596void cleanup_listen_socket (int terminate) {
597
598 if ( g_listen_socket != -1 ) {
599  close(g_listen_socket);
600
601  g_listen_socket = -1;
602
603  if ( *server == '/' )
604   unlink(server);
605 }
606
607 if ( terminate )
608  g_terminate = 1;
609}
610
611void clean_quit_prep (void) {
612 cleanup_listen_socket(0);
613
614 sources_free();
615 streams_free();
616 clients_free();
617 midi_cb_stop(); // stop console beep
618 midi_free();
619}
620
621void clean_quit (void) {
622 clean_quit_prep();
623// driver_close(drvinst, drvid);
624// output_buffer_free();
625 exit(0);
626}
627
628//ll
Note: See TracBrowser for help on using the repository browser.