source: roaraudio/roard/roard.c @ 1155:556400bd73cd

Last change on this file since 1155:556400bd73cd was 1155:556400bd73cd, checked in by phi, 15 years ago

save if we are in no-listen mode and allow new streams while in tmerinating satte if we are in no-listen mode.

File size: 19.1 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        "     --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, int count) {
127 int stream;
128 struct roar_stream * s;
129 struct roar_stream_server * ss;
130 char * k, * v;
131 int codec;
132 int sync = 0;
133
134 ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = ?", drv, dev, opts);
135
136 if ( drv == NULL && count == 0 ) {
137  drv  = ROAR_DRIVER_DEFAULT;
138  prim = 1;
139  sync = 1;
140 }
141
142 if ( (stream = streams_new()) == -1 ) {
143  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
144  if ( prim ) alive = 0;
145  return -1;
146 }
147
148 streams_get(stream, &ss);
149 s = ROAR_STREAM(ss);
150
151 memcpy(&(s->info), g_sa, sizeof(struct roar_audio_info));
152
153 s->dir        = ROAR_DIR_OUTPUT;
154 s->pos_rel_id = -1;
155// s->info.codec = codec;
156
157 codec = s->info.codec;
158
159 k = strtok(opts, ",");
160 while (k != NULL) {
161//  ROAR_WARN("add_output(*): opts: %s", k);
162
163  if ( (v = strstr(k, "=")) != NULL ) {
164   *v++ = 0;
165  }
166
167  ROAR_DBG("add_output(*): opts: k='%s', v='%s'", k, v);
168  if ( strcmp(k, "rate") == 0 ) {
169   s->info.rate = atoi(v);
170  } else if ( strcmp(k, "channels") == 0 ) {
171   s->info.channels = atoi(v);
172  } else if ( strcmp(k, "bits") == 0 ) {
173   s->info.bits = atoi(v);
174  } else if ( strcmp(k, "codec") == 0 ) {
175   if ( (codec = roar_str2codec(v)) == -1 ) {
176    ROAR_ERR("add_output(*): unknown codec '%s'", v);
177    streams_delete(stream);
178    if ( prim ) alive = 0;
179    return -1;
180   }
181  } else if ( strcmp(k, "meta") == 0 ) {
182   streams_set_flag(stream, ROAR_FLAG_META);
183  } else if ( strcmp(k, "sync") == 0 ) {
184   sync = 1;
185  } else {
186   ROAR_ERR("add_output(*): unknown option '%s'", k);
187   streams_delete(stream);
188   if ( prim ) alive = 0;
189   return -1;
190  }
191
192  k = strtok(NULL, ",");
193 }
194
195 if ( codec == ROAR_CODEC_ALAW || codec == ROAR_CODEC_MULAW )
196  s->info.bits = 8; // needed to open OSS driver, will be overriden by codecfilter
197
198 s->info.codec = codec;
199 ROAR_STREAM_SERVER(s)->codec_orgi = codec;
200
201 if ( driver_openvio(&(ss->vio), &(ss->driver_id), drv, dev, &(s->info), -1) == -1 ) {
202  streams_delete(stream);
203  ROAR_DBG("add_output(drv='%s', dev='%s', opts='%s') = -1", drv, dev, opts);
204  if ( prim ) alive = 0;
205  return -1;
206 }
207
208 streams_set_fh(stream, -1); // update some internal structures
209
210 client_stream_add(g_source_client, stream);
211
212 if ( prim )
213  streams_mark_primary(stream);
214
215 if ( sync ) {
216  streams_set_flag(stream, ROAR_FLAG_SYNC);
217 } else {
218  streams_reset_flag(stream, ROAR_FLAG_SYNC);
219 }
220
221 return 0;
222}
223
224int main (int argc, char * argv[]) {
225 int i;
226 char * k;
227 char user_sock[80]  = {0};
228 struct roar_audio_info sa;
229 int    daemon       = 0;
230 int    realtime     = 0;
231 int    sysclocksync = 0;
232 char * driver = getenv("ROAR_DRIVER");
233 char * device = getenv("ROAR_DEVICE");
234 char * opts   = NULL;
235// char * server = ROAR_DEFAULT_SOCK_GLOBAL;
236 int      port = ROAR_DEFAULT_PORT;
237 int               drvid;
238 char * s_drv     = "cf";
239 char * s_dev     = NULL;
240 char * s_con     = NULL;
241 char * s_opt     = NULL;
242 int    s_prim    = 0;
243 char * o_drv     = NULL;
244 char * o_dev     = NULL;
245 char * o_opts    = NULL;
246 int    o_prim    = 0;
247 int    o_count   = 0;
248 char * sock_grp  = ROAR_DEFAULT_SOCKGRP;
249 char * sock_user = NULL;
250 int    sock_type = ROAR_SOCKET_TYPE_UNKNOWN;
251 char * chrootdir = NULL;
252 int    setids    = 0;
253 char * env_roar_proxy_backup;
254 struct group   * grp  = NULL;
255 struct passwd  * pwd  = NULL;
256 struct servent * serv = NULL;
257 DRIVER_USERDATA_T drvinst;
258 struct roar_client * self = NULL;
259#ifdef ROAR_HAVE_LIBDNET
260 char decnethost[80];
261#endif
262
263 g_listen_socket = -1;
264 g_standby       =  0;
265 g_autostandby   =  0;
266 alive           =  1;
267 g_no_listen     =  0;
268
269 sa.bits     = ROAR_BITS_DEFAULT;
270 sa.channels = ROAR_CHANNELS_DEFAULT;
271 sa.rate     = ROAR_RATE_DEFAULT;
272 sa.codec    = ROAR_CODEC_DEFAULT;
273
274 g_sa = &sa;
275
276
277 if ( getuid() != 0 && getenv("HOME") ) {
278  snprintf(user_sock, 79, "%s/%s", getenv("HOME"), ROAR_DEFAULT_SOCK_USER);
279  server = user_sock;
280 }
281
282 if ( getenv("ROAR_SERVER") != NULL )
283  server = getenv("ROAR_SERVER");
284
285 if ( clients_init() == -1 ) {
286  ROAR_ERR("Can not init clients!");
287  return 1;
288 }
289
290 if ( streams_init() == -1 ) {
291  ROAR_ERR("Can not init streams!");
292  return 1;
293 }
294
295 if ( (g_self_client = clients_new()) == -1 ) {
296  ROAR_ERR("Can not create self client!");
297  return 1;
298 }
299
300 if ( sources_init() == -1 ) {
301  ROAR_ERR("Can not init sources!");
302  return 1;
303 }
304
305 if ( (sources_set_client(g_self_client)) == -1 ) {
306  ROAR_ERR("Can not init set source client!");
307  return 1;
308 }
309
310 for (i = 1; i < argc; i++) {
311  k = argv[i];
312
313  if ( strcmp(k, "-h") == 0 || strcmp(k, "--help") == 0 ) {
314   usage();
315   return 0;
316
317  } else if ( strcmp(k, "--restart") == 0 ) {
318   if ( restart_server(server) == -1 ) {
319    ROAR_WARN("Can not terminate old server (not running at %s?), tring to continue anyway", server);
320   }
321
322  } else if ( strcmp(k, "--demon") == 0 || strcmp(k, "--daemon") == 0 ) {
323   daemon = 1;
324  } else if ( strcmp(k, "--terminate") == 0 ) {
325   g_terminate = 1;
326  } else if ( strcmp(k, "--sysclocksync") == 0 ) {
327   sysclocksync = 1000;
328  } else if ( strcmp(k, "--realtime") == 0 ) {
329   realtime++;
330  } else if ( strcmp(k, "--chroot") == 0 ) {
331   chrootdir = argv[++i];
332  } else if ( strcmp(k, "--setgid") == 0 ) {
333   setids |= R_SETGID;
334  } else if ( strcmp(k, "--setuid") == 0 ) {
335   setids |= R_SETUID;
336
337  } else if ( strcmp(k, "--list-cf") == 0 ) {
338   print_codecfilterlist();
339   return 0;
340
341  } else if ( strcmp(k, "-R") == 0 || strcmp(k, "--rate") == 0 ) {
342   sa.rate = atoi(argv[++i]);
343  } else if ( strcmp(k, "-B") == 0 || strcmp(k, "--bits") == 0 ) {
344   sa.bits = atoi(argv[++i]);
345  } else if ( strcmp(k, "-C") == 0 || strcmp(k, "--chans") == 0 ) {
346   sa.channels = atoi(argv[++i]);
347
348  } else if ( strcmp(k, "-d") == 0 || strcmp(k, "--driver") == 0 ) {
349   driver = argv[++i];
350   if ( strcmp(driver, "list") == 0 ) {
351    ROAR_WARN("The option is obsolete, use --list-driver!");
352    print_driverlist();
353    return 0;
354   }
355  } else if ( strcmp(k, "-D") == 0 || strcmp(k, "--device") == 0 ) {
356   device = argv[++i];
357  } else if ( strcmp(k, "-dO") == 0 ) {
358   opts = argv[++i];
359  } else if ( strcmp(k, "--list-driver") == 0 ) {
360   print_driverlist();
361   return 0;
362
363  } else if ( strcmp(k, "-o") == 0 || strcmp(k, "--odriver") == 0 ) {
364   o_drv  = argv[++i];
365  } else if ( strcmp(k, "-O") == 0 || strcmp(k, "--odevice") == 0 ) {
366   o_dev  = argv[++i];
367  } else if ( strcmp(k, "-oO") == 0 ) {
368   o_opts = argv[++i];
369  } else if ( strcmp(k, "-oP") == 0 ) {
370   o_prim = 1;
371  } else if ( strcmp(k, "-oN") == 0 ) {
372   if ( add_output(o_drv, o_dev, o_opts, o_prim, o_count) != -1 )
373    o_count++;
374
375   o_drv  = o_dev = o_opts = NULL;
376   o_prim = 0;
377
378  } else if ( strcmp(k, "-s") == 0 || strcmp(k, "--source") == 0 ) {
379   s_drv = argv[++i];
380  } else if ( strcmp(k, "-S") == 0 ) {
381   s_dev = argv[++i];
382  } else if ( strcmp(k, "-sO") == 0 ) {
383   s_opt = argv[++i];
384  } else if ( strcmp(k, "-sC") == 0 ) {
385   s_con = argv[++i];
386  } else if ( strcmp(k, "-sP") == 0 ) {
387   s_prim = 1;
388  } else if ( strcmp(k, "-sN") == 0 ) {
389   if ( sources_add(s_drv, s_dev, s_con, s_opt, s_prim) == -1 ) {
390    ROAR_ERR("main(*): adding source '%s' via '%s' failed!", s_dev, s_drv);
391   }
392   s_opt = s_dev = s_con = NULL;
393   s_drv = "cf";
394   s_prim = 0;
395
396  } else if ( strcmp(k, "-p") == 0 || strcmp(k, "--port") == 0 ) {
397   // This is only usefull in INET not UNIX mode.
398   if ( *server == '/' )
399    server = ROAR_DEFAULT_HOST;
400
401   errno = 0;
402   if ( (port = atoi(argv[++i])) < 1 ) {
403    if ( (serv = getservbyname(argv[i], "tcp")) == NULL ) {
404     ROAR_ERR("Unknown service: %s: %s", argv[i], strerror(errno));
405     return 1;
406    }
407    // NOTE: we need to use ROAR_NET2HOST16() here even if s_port is of type int!
408    ROAR_DBG("main(*): serv = {s_name='%s', s_aliases={...}, s_port=%i, s_proto='%s'}",
409            serv->s_name, ROAR_NET2HOST16(serv->s_port), serv->s_proto);
410    port = ROAR_NET2HOST16(serv->s_port);
411   }
412  } else if ( strcmp(k, "-b") == 0 || strcmp(k, "--bind") == 0 || strcmp(k, "--sock") == 0 ) {
413   server = argv[++i];
414
415  } else if ( strcmp(k, "-t") == 0 || strcmp(k, "--tcp") == 0 ) {
416   if ( sock_type != ROAR_SOCKET_TYPE_TCP && sock_type != ROAR_SOCKET_TYPE_TCP6 )
417    sock_type = ROAR_SOCKET_TYPE_TCP;
418
419   if ( *server == '/' )
420    server = ROAR_DEFAULT_HOST;
421
422  } else if ( strcmp(k, "-4") == 0 ) {
423   sock_type = ROAR_SOCKET_TYPE_TCP;
424   if ( *server == '/' )
425    server = ROAR_DEFAULT_HOST;
426  } else if ( strcmp(k, "-6") == 0 ) {
427#ifdef PF_INET6
428   sock_type = ROAR_SOCKET_TYPE_TCP6;
429   if ( *server == '/' )
430    server = ROAR_DEFAULT_HOST;
431#else
432    ROAR_ERR("No IPv6 support compiled in!");
433    return 1;
434#endif
435
436  } else if ( strcmp(k, "-u") == 0 || strcmp(k, "--unix") == 0 ) {
437   // ignore this case as it is the default behavor.
438   sock_type = ROAR_SOCKET_TYPE_UNIX;
439
440  } else if ( strcmp(k, "-n") == 0 || strcmp(k, "--decnet") == 0 ) {
441#ifdef ROAR_HAVE_LIBDNET
442    port   = ROAR_DEFAULT_NUM;
443    strcpy(decnethost, ROAR_DEFAULT_LISTEN_OBJECT);
444    server = decnethost;
445    sock_type = ROAR_SOCKET_TYPE_DECNET;
446#else
447    ROAR_ERR("No DECnet support compiled in!");
448    return 1;
449#endif
450
451  } else if ( strcmp(k, "-G") == 0 ) {
452   sock_grp  = argv[++i];
453  } else if ( strcmp(k, "-U") == 0 ) {
454   sock_user = argv[++i];
455
456  } else if ( strcmp(k, "--no-listen") == 0 ) {
457   *server     = 0;
458   g_terminate = 1;
459   g_no_listen = 1;
460  } else if ( strcmp(k, "--client-fh") == 0 ) {
461   if ( clients_set_fh(clients_new(), atoi(argv[++i])) == -1 ) {
462    ROAR_ERR("main(*): Can not set client's fh");
463    return 1;
464   }
465  } else if ( strcmp(k, "--close-fh") == 0 ) {
466   close(atoi(argv[++i]));
467
468  } else if ( strcmp(k, "--standby") == 0 ) {
469   g_standby = 1;
470  } else if ( strcmp(k, "--auto-standby") == 0 ) {
471   g_autostandby = 1;
472  } else {
473   usage();
474   return 1;
475  }
476
477 }
478
479 if ( s_dev != NULL ) {
480  if ( sources_add(s_drv, s_dev, s_con, s_opt, s_prim) == -1 ) {
481   ROAR_ERR("main(*): adding source '%s' via '%s' failed!", s_dev, s_drv);
482  }
483 }
484
485 add_output(o_drv, o_dev, o_opts, o_prim, o_count);
486
487 ROAR_DBG("Server config: rate=%i, bits=%i, chans=%i", sa.rate, sa.bits, sa.channels);
488
489 if ( midi_init() == -1 )
490  ROAR_ERR("Can not initialize MIDI subsystem");
491
492 if ( *server != 0 ) {
493  if ( (g_listen_socket = roar_socket_listen(sock_type, server, port)) == -1 ) {
494   if ( *server == '/' ) {
495    if ( (env_roar_proxy_backup = getenv("ROAR_PROXY")) != NULL ) {
496     env_roar_proxy_backup = strdup(env_roar_proxy_backup);
497     unsetenv("ROAR_PROXY");
498    }
499    if ( (i = roar_socket_connect(server, port)) != -1 ) {
500     close(i);
501     ROAR_ERR("Can not open listen socket!");
502     return 1;
503    } else {
504     unlink(server);
505     if ( (g_listen_socket = roar_socket_listen(sock_type, server, port)) == -1 ) {
506      ROAR_ERR("Can not open listen socket!");
507      return 1;
508     }
509    }
510    if ( env_roar_proxy_backup != NULL ) {
511     setenv("ROAR_PROXY", env_roar_proxy_backup, 0);
512     free(env_roar_proxy_backup);
513    }
514   } else {
515    ROAR_ERR("Can not open listen socket!");
516    return 1;
517   }
518  }
519
520  if ( (grp = getgrnam(sock_grp)) == NULL ) {
521   ROAR_ERR("Can not get GID for group %s: %s", sock_grp, strerror(errno));
522  }
523  if ( sock_user || (setids & R_SETUID) ) {
524   if ( (pwd = getpwnam(sock_user)) == NULL ) {
525    ROAR_ERR("Can not get UID for user %s: %s", sock_user, strerror(errno));
526   }
527  }
528
529  if ( *server == '/' ) {
530   if ( grp ) {
531    if ( pwd ) {
532     chown(server, pwd->pw_uid, grp->gr_gid);
533    } else {
534     chown(server, -1, grp->gr_gid);
535    }
536    if ( getuid() == 0 )
537     chmod(server, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP);
538   }
539  }
540 }
541
542 if ( output_buffer_init(&sa) == -1 ) {
543  ROAR_ERR("Can not init output buffer!");
544  return 1;
545 }
546
547 if ( driver == NULL ) {
548  driver = "null";
549 } else {
550  ROAR_WARN("Usage of old driver interface. use -o not -d!");
551 }
552
553 if ( driver_open(&drvinst, &drvid, driver, device, &sa) == -1 ) {
554  ROAR_ERR("Can not open output driver!");
555  return 1;
556 }
557
558 if ( samples_init() == -1 ) {
559  ROAR_ERR("Can not init samples!");
560  return 1;
561 }
562
563
564 signal(SIGINT,  on_sig_int);
565 signal(SIGCHLD, on_sig_chld);
566 signal(SIGPIPE, SIG_IGN);  // ignore broken pipes
567
568 if ( realtime ) {
569#ifdef DEBUG
570  ROAR_WARN("compiled with -DDEBUG but realtime is enabled: for real realtime support compiel without -DDEBUG");
571#endif
572
573  errno = 0;
574  nice(-5*realtime); // -5 for each --realtime
575  if ( errno )
576   ROAR_WARN("Can not decrease nice value by 5: %s", strerror(errno));
577/*
578#ifdef __linux__
579  if ( ioprio_set(IOPRIO_WHO_PROCESS, getpid(), IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0)) == -1 )
580   ROAR_WARN("Can not set io priority: %s", strerror(errno));
581#endif
582*/
583 }
584
585 if ( setids & R_SETGID ) {
586  if ( setgroups(0, (const gid_t *) NULL) == -1 ) {
587   ROAR_ERR("Can not clear supplementary group IDs: %s", strerror(errno));
588  }
589  if ( !grp || setgid(grp->gr_gid) == -1 ) {
590   ROAR_ERR("Can not set GroupID: %s", strerror(errno));
591  }
592 }
593
594
595 clients_set_pid(g_self_client, getpid());
596 clients_set_uid(g_self_client, getuid());
597 clients_set_gid(g_self_client, getgid());
598 clients_get(g_self_client, &self);
599
600 if ( self == NULL ) {
601  ROAR_ERR("Can not get self client!");
602  return 1;
603 }
604
605 strcpy(self->name, "RoarAudio daemon internal");
606
607 if ( daemon ) {
608  close(ROAR_STDIN );
609  close(ROAR_STDOUT);
610  close(ROAR_STDERR);
611  setsid();
612  if ( fork() )
613   _exit(0);
614  clients_set_pid(g_self_client, getpid()); // reset pid as it changed
615 }
616
617 if (chrootdir) {
618  if ( chroot(chrootdir) == -1 ) {
619   ROAR_ERR("Can not chroot to %s: %s", chrootdir, strerror(errno));
620   return 2;
621  }
622  if ( chdir("/") == -1 ) {
623   ROAR_ERR("Can not chdir to /: %s", strerror(errno));
624   return 2;
625  }
626 }
627
628 if ( setids & R_SETUID ) {
629  if ( !pwd || setuid(pwd->pw_uid) == -1 ) {
630   ROAR_ERR("Can not set UserID: %s", strerror(errno));
631   return 3;
632  }
633  clients_set_uid(g_self_client, getuid());
634 }
635
636 // start main loop...
637 main_loop(drvid, drvinst, &sa, sysclocksync);
638
639 // clean up.
640 clean_quit_prep();
641 driver_close(drvinst, drvid);
642 output_buffer_free();
643
644 return 0;
645}
646
647void cleanup_listen_socket (int terminate) {
648
649 if ( g_listen_socket != -1 ) {
650  close(g_listen_socket);
651
652  g_listen_socket = -1;
653
654  if ( *server == '/' )
655   unlink(server);
656 }
657
658 if ( terminate )
659  g_terminate = 1;
660}
661
662void clean_quit_prep (void) {
663 cleanup_listen_socket(0);
664
665 sources_free();
666 streams_free();
667 clients_free();
668 midi_cb_stop(); // stop console beep
669 midi_free();
670}
671
672void clean_quit (void) {
673 clean_quit_prep();
674// driver_close(drvinst, drvid);
675// output_buffer_free();
676 exit(0);
677}
678
679//ll
Note: See TracBrowser for help on using the repository browser.