source: roaraudio/roard/req.c @ 4329:4a974f9aacc3

Last change on this file since 4329:4a974f9aacc3 was 4329:4a974f9aacc3, checked in by phi, 14 years ago

updated check for OT in kick command

File size: 32.6 KB
Line 
1//req.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
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, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include "roard.h"
27
28static void * _dataspace(struct roar_message * mes, char ** data, uint32_t flags[2], size_t len) {
29 if ( len <= LIBROAR_BUFFER_MSGDATA )
30  return mes->data;
31
32 if ( *data != NULL )
33  free(*data);
34
35 *data = malloc(len);
36
37 ROAR_DBG("_dataspace(mes=%p, data=%p, flags=%p, len=%llu): *data=%p", mes, data, flags, (long long unsigned int)len, *data);
38
39 if ( *data == NULL )
40  return NULL;
41
42 flags[1] |= COMMAND_FLAG_OUT_LONGDATA;
43
44 return *data;
45}
46
47int req_on_noop        (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
48 mes->cmd     = ROAR_CMD_OK;
49 mes->pos     = g_pos;
50 mes->datalen = 0;
51 return 0;
52}
53
54int req_on_identify    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
55 struct roar_client * c;
56 int max_len;
57
58 if ( mes->datalen < 1 )
59  return -1;
60
61 clients_get(client, &c);
62
63 if ( mes->data[0] == 1 ) {
64  if ( c->pid == -1 ) {
65   c->pid       = ROAR_NET2HOST32(*(uint32_t*)((mes->data)+1));
66   ROAR_DBG("req_on_identify(): new PID: c->pid = %i", c->pid);
67  }
68
69  ROAR_DBG("req_on_identify(): final PID: c->pid = %i", c->pid);
70
71  max_len = (mes->datalen - 5) < (ROAR_BUFFER_NAME-1) ? (mes->datalen - 5) : (ROAR_BUFFER_NAME-1);
72
73  strncpy(c->name, mes->data + 5, max_len);
74  c->name[max_len] = 0;
75
76  mes->cmd     = ROAR_CMD_OK;
77  mes->pos     = g_pos;
78  mes->datalen = 0;
79
80  ROAR_DBG("req_on_identify(*): client=%i, pid=%i", client, c->pid);
81  ROAR_DBG("req_on_identify(*) = 0");
82  return 0;
83 }
84
85 return -1;
86}
87
88int req_on_auth        (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
89 // TODO: add code to support some auth.
90 mes->cmd     = ROAR_CMD_OK;
91 mes->pos     = g_pos;
92 mes->datalen = 0;
93 return 0;
94}
95
96
97int req_on_whoami      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
98 mes->cmd     = ROAR_CMD_OK;
99 mes->pos     = g_pos;
100 mes->datalen = 1;
101 mes->data[0] = client;
102 return 0;
103}
104
105
106int req_on_new_stream  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
107 int stream;
108 struct roar_stream * s;
109 struct roar_stream * source_stream;
110 struct roar_audio_info * info;
111 struct roar_audio_info * source_info;
112
113 ROAR_DBG("req_on_new_stream(client=%i, ...): creating stream...", client);
114 if ((stream = streams_new()) == -1 )
115  return -1;
116
117 ROAR_DBG("req_on_new_stream(client=%i, ...): stream=%i", client, stream);
118
119 ROAR_DBG("req_on_new_stream(client=%i, ...): getting stream...", client);
120 if ( streams_get(stream, (struct roar_stream_server **)&s) == -1 ) {
121  streams_delete(stream);
122  return -1;
123 }
124
125 ROAR_DBG("req_on_new_stream(client=%i, ...): set client of stream...", client);
126 if ( client_stream_add(client, stream) == -1 ) {
127  streams_delete(stream);
128  return -1;
129 }
130
131 ROAR_DBG("req_on_new_stream(client=%i, ...): loading stream from message...", client);
132 if ( roar_stream_m2s(s, mes) == -1 ) {
133  streams_delete(stream);
134  return -1;
135 }
136
137 ROAR_DBG("req_on_new_stream(client=%i, ...): setting id and codec of stream...", client);
138 ROAR_STREAM(s)->id = stream; // roar_stream_m2s() resets this
139 ROAR_STREAM_SERVER(s)->codec_orgi = ROAR_STREAM(s)->info.codec;
140
141 ROAR_DBG("req_on_new_stream(client=%i, ...): setting direction stream...", client);
142 // int streams_set_dir    (int id, int dir, int defaults)
143 if ( streams_set_dir(stream, ROAR_STREAM(s)->dir, 1) == -1 ) {
144  streams_delete(stream);
145  return -1;
146 }
147
148 ROAR_DBG("req_on_new_stream(client=%i, ...): setting up direction specific stream settings...", client);
149 switch (ROAR_STREAM(s)->dir) {
150  case ROAR_DIR_LIGHT_IN:
151  case ROAR_DIR_LIGHT_OUT:
152#ifndef ROAR_WITHOUT_DCOMP_LIGHT
153    info = &(ROAR_STREAM(s)->info);
154
155    info->channels = 0;
156    info->bits     = 0;
157    info->rate     = 0;
158#else
159    streams_delete(stream);
160    return -1;
161#endif
162
163   break;
164  case ROAR_DIR_MIDI_IN:
165  case ROAR_DIR_MIDI_OUT:
166#ifndef ROAR_WITHOUT_DCOMP_MIDI
167    info = &(ROAR_STREAM(s)->info);
168
169    info->channels = ROAR_MIDI_CHANNELS_DEFAULT;
170    info->bits     = ROAR_MIDI_BITS;
171    info->rate     = 0;
172#else
173    streams_delete(stream);
174    return -1;
175#endif
176
177   break;
178
179  case ROAR_DIR_RAW_IN:
180#ifndef ROAR_WITHOUT_DCOMP_RAW
181    if ( ROAR_STREAM(s)->pos_rel_id == -1     ||
182         ROAR_STREAM(s)->pos_rel_id == stream ||
183         streams_get_dir(ROAR_STREAM(s)->pos_rel_id) != ROAR_DIR_RAW_OUT
184       ) {
185     ROAR_STREAM(s)->pos_rel_id = -1; // force this here as it will try to delete itself while deleting
186                                      // in case rel_id == stream
187     streams_delete(stream);
188     return -1;
189    }
190#else
191  case ROAR_DIR_RAW_OUT:
192    streams_delete(stream);
193    return -1;
194#endif
195
196   break;
197  case ROAR_DIR_THRU:
198
199    if ( ROAR_STREAM(s)->pos_rel_id == -1 || ROAR_STREAM(s)->pos_rel_id == stream ) {
200     ROAR_STREAM(s)->pos_rel_id = -1; // force this here as it will try to delete itself while deleting
201                                      // in case rel_id == stream
202     streams_delete(stream);
203     return -1;
204    }
205
206    if ( streams_get(ROAR_STREAM(s)->pos_rel_id, (struct roar_stream_server **)&source_stream) == -1 ) {
207     streams_delete(stream);
208     return -1;
209    }
210
211    info        = &(ROAR_STREAM(s)->info);
212    source_info = &(ROAR_STREAM(source_stream)->info);
213
214    info->channels = source_info->channels;
215    info->bits     = source_info->bits;
216    info->rate     = source_info->rate;
217    info->codec    = source_info->codec;
218    ROAR_STREAM_SERVER(s)->codec_orgi = ROAR_STREAM_SERVER(source_stream)->codec_orgi;
219
220   break;
221  case ROAR_DIR_FILTER:
222    info        = &(ROAR_STREAM(s)->info);
223
224    if ( ROAR_STREAM(s)->pos_rel_id == -1 ) {
225     source_info = g_sa;
226    } else {
227     if ( streams_get(ROAR_STREAM(s)->pos_rel_id, (struct roar_stream_server **)&source_stream) == -1 ) {
228      streams_delete(stream);
229      return -1;
230     }
231     source_info = &(ROAR_STREAM(source_stream)->info);
232    }
233
234    if ( info->channels != source_info->channels || info->bits != source_info->bits ||
235         info->codec    != source_info->codec    || info->rate != source_info->rate ) {
236     // the stream parameters don't match the one of the stream being filtered.
237     // -> delete and reject the stream.
238     streams_delete(stream);
239     return -1;
240    }
241   break;
242 }
243
244 ROAR_DBG("req_on_new_stream(client=%i, ...): returning (OK, stream=%i)...", client, stream);
245
246 mes->cmd     = ROAR_CMD_OK;
247 mes->stream  = stream;
248 mes->datalen = 0;
249
250 return 0;
251}
252
253int req_on_exec_stream (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
254 int r;
255
256 ROAR_DBG("req_on_exec_stream(client=%i, mes={stream=%i,...},...): execing stream", client, mes->stream);
257
258
259 if ( streams_is_ready(mes->stream) ) {
260  flags[1] |= COMMAND_FLAG_OUT_CLOSECON;
261 } else {
262  if ( (r = client_stream_exec(client, mes->stream)) == -1 )
263   return -1;
264 }
265
266 ROAR_DBG("req_on_exec_stream(client=%i, mes={stream=%i,...},...): returning (OK)...", client, mes->stream);
267 mes->cmd     = ROAR_CMD_OK;
268 mes->datalen = 0;
269
270 return 0;
271}
272
273int req_on_con_stream  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
274 char   host[80] = {0};
275 int    port = 0;
276 int    type;
277 int    fh;
278 int    len;
279
280 if ( mes->datalen < 4 )
281  return -1;
282
283 if ( *(mes->data) != 0 )
284  return -1;
285
286 if ( mes->datalen > 80 ) // we do not support long messages here
287  return -1;
288
289 type = (unsigned)mes->data[1];
290 port = ROAR_NET2HOST16(((uint16_t*)mes->data)[1]);
291
292 len = mes->datalen - 4;
293
294 strncpy(host, &(mes->data[4]), len);
295 host[len] = 0;
296
297 if ( type > ROAR_SOCKET_TYPE_MAX )
298  return -1;
299
300 if ( type == ROAR_SOCKET_TYPE_FILE ) // disabled because of security resons
301  return -1;
302
303 if ( type == ROAR_SOCKET_TYPE_FORK ) // why should we connect to ourself?
304  return -1;
305
306 ROAR_DBG("req_on_con_stream(*): CONNECT(type=%i, host='%s', port=%i)", type, host, port);
307
308 if ( (fh = roar_socket_open(ROAR_SOCKET_MODE_CONNECT, type, host, port)) == -1 )
309  return -1;
310
311 if ( client_stream_set_fh(client, mes->stream, fh) == -1 ) {
312  close(fh);
313  return 1;
314 }
315
316 mes->datalen = 0;
317 mes->cmd     = ROAR_CMD_OK;
318
319 return 0;
320}
321
322int req_on_passfh      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
323 int sock = clients_get_fh(client);
324 int16_t * d = (int16_t*)mes->data;
325 struct roard_listen * lsock;
326 int listening;
327 int fh;
328 int i;
329
330 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...) = ?", client, mes->stream);
331
332 if ( (fh = roar_socket_recv_fh(sock, NULL, NULL)) == -1 ) {
333  ROAR_WARN("req_on_passfh(client=%i, mes={stream=%i,...},...): was unabled to get filehandle from remote end. bad.", client, mes->stream);
334  ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (ERROR)...", client, mes->stream);
335  return -1;
336 }
337
338 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): fh=%i", client, mes->stream, fh);
339
340 if ( mes->stream != -1 ) { // stream pass:
341  ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): This is a stream passfh", client, mes->stream);
342
343  if ( client_stream_set_fh(client, mes->stream, fh) == -1 ) {
344   close(fh);
345   ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (ERROR)...", client, mes->stream);
346   return -1;
347  }
348
349  ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (OK)...", client, mes->stream);
350
351  mes->datalen = 0;
352  mes->cmd     = ROAR_CMD_OK;
353
354  return 0;
355 }
356
357// non-stream pass:
358
359 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): This is a client passfh", client, mes->stream);
360
361/*
362 0: Version,   16
363 1: Flags,     16
364 2: Protocol,  16
365 3: Byteorder, 16
366 Options...
367*/
368
369 if ( mes->datalen < 4*2 )
370  return -1;
371
372 for (i = 0; i < 4; i++) {
373  d[i] = ROAR_NET2HOST16(d[i]);
374 }
375
376 if ( d[0] != 0 ) // version
377  return -1;
378
379 listening = d[1] & ROAR_CLIENTPASS_FLAG_LISTEN;
380
381 if ( listening )
382  d[1] -= ROAR_CLIENTPASS_FLAG_LISTEN;
383
384 if ( d[1] != 0 ) // flags
385  return -1;
386
387 if ( listening ) {
388  if ( get_listen(&lsock, NULL) == -1 ) {
389   close(fh);
390   return -1;
391  }
392
393  roar_vio_open_fh_socket(&(lsock->sock), fh);
394  lsock->used   = 1;
395  lsock->proto  = d[2];
396 } else {
397  if ( clients_new_from_fh(fh, d[2], d[3], 1) == -1 )
398   return -1;
399 }
400
401 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (OK)...", client, mes->stream);
402
403 mes->datalen = 0;
404 mes->cmd     = ROAR_CMD_OK;
405
406 return 0;
407}
408
409#ifdef ROAR_SUPPORT_META
410int req_on_set_meta    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
411 int type;
412 int mode;
413 int namelen, vallen;
414 char   val[255+1];
415 char   name[ROAR_META_MAX_NAMELEN+1];
416
417 if ( mes->datalen < 3 )
418  return -1;
419
420 if ( mes->data[0] != 0 ) // version
421  return -1;
422
423 mode = (unsigned) mes->data[1];
424 type = (unsigned) mes->data[2];
425
426 ROAR_DBG("req_on_set_meta(*): mode=%i, type=%i", mode, type);
427
428 if ( mode == ROAR_META_MODE_CLEAR ) {
429  stream_meta_clear(mes->stream);
430  mes->datalen = 0;
431  mes->cmd     = ROAR_CMD_OK;
432  return 0;
433 } else if ( mode == ROAR_META_MODE_DELETE ) { // unsuppoerted at the moment
434  return -1;
435 } else if ( mode == ROAR_META_MODE_FINALIZE ) {
436  stream_meta_finalize(mes->stream);
437  mes->datalen = 0;
438  mes->cmd     = ROAR_CMD_OK;
439  return 0;
440 } else if ( mode == ROAR_META_MODE_SET || mode == ROAR_META_MODE_ADD ) {
441  if ( mes->datalen < 5 )
442   return -1;
443
444  namelen = (unsigned) mes->data[3];
445  vallen  = (unsigned) mes->data[4];
446
447  ROAR_DBG("req_on_set_meta(*): namelen=%i, vallen=%i", namelen, vallen);
448
449  if ( mes->datalen < (5 + namelen + vallen) )
450   return -1;
451
452  if ( namelen > ROAR_META_MAX_NAMELEN )
453   return -1;
454
455  strncpy(name, &(mes->data[5]), namelen);
456  name[namelen] = 0;
457
458  if ( vallen > 255 )
459   return -1;
460
461  strncpy(val, &(mes->data[5+namelen]), vallen);
462  val[vallen] = 0;
463
464  if ( mode == ROAR_META_MODE_SET ) {
465   if ( stream_meta_set(mes->stream, type, name, val) == -1 )
466    return -1;
467  } else {
468   if ( stream_meta_add(mes->stream, type, name, val) == -1 )
469    return -1;
470  }
471
472  mes->datalen = 0;
473  mes->cmd     = ROAR_CMD_OK;
474  return 0;
475 } else { // unknown mode!
476  return -1;
477 }
478
479 return -1;
480}
481
482int req_on_get_meta    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
483 int vallen;
484 int type;
485 char val[LIBROAR_BUFFER_MSGDATA-1];
486
487 if ( mes->datalen != 2 )
488  return -1;
489
490 if ( mes->data[0] != 0 ) // version
491  return -1;
492
493 type = (unsigned) mes->data[1];
494
495 if ( stream_meta_get(mes->stream, type, NULL, val, LIBROAR_BUFFER_MSGDATA-2) == -1 )
496  return -1;
497
498 vallen = strlen(val);
499
500 mes->cmd     = ROAR_CMD_OK;
501 mes->datalen = 2 + vallen;
502
503 mes->data[0] = 0;
504 mes->data[1] = (unsigned char) vallen;
505
506 val[vallen] = 0;
507
508 strncpy(&(mes->data[2]), val, vallen+1);
509
510 return 0;
511}
512
513int req_on_list_meta   (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
514 int i;
515 int len = 0;
516 int types[ROAR_META_MAX_PER_STREAM];
517
518 if ( mes->datalen != 1 )
519  return -1;
520
521 if ( mes->data[0] != 0 ) // version
522  return -1;
523
524 if ( (len = stream_meta_list(mes->stream, types, ROAR_META_MAX_PER_STREAM)) == -1 )
525  return -1;
526
527 mes->cmd     = ROAR_CMD_OK;
528 mes->datalen = 1 + len;
529 mes->data[0] = 0;
530
531 for (i = 0; i < len; i++)
532  mes->data[i+1] = types[i];
533
534 return 0;
535}
536#endif
537
538int req_on_server_oinfo    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
539 struct roar_stream s;
540//ROAR_DIR_OUTPUT
541
542 memset(&s, 0, sizeof(struct roar_stream));
543
544 s.dir           = ROAR_DIR_MIXING;
545 s.pos_rel_id    = -1;
546 s.info.rate     = g_sa->rate;
547 s.info.bits     = g_sa->bits;
548 s.info.channels = g_sa->channels;
549 s.info.codec    = g_sa->codec;
550 s.pos           = g_pos;
551
552 if ( roar_stream_s2m(&s, mes) == -1 )
553  return -1;
554
555 mes->cmd = ROAR_CMD_OK;
556
557 return 0;
558}
559
560
561int req_on_get_standby (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
562 mes->cmd     = ROAR_CMD_OK;
563 mes->pos     = g_pos;
564 mes->datalen = 2;
565
566 *((uint16_t*)mes->data) = ROAR_HOST2NET16((unsigned) g_standby);
567
568 return 0;
569}
570
571int req_on_set_standby (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
572 if ( mes->datalen != 2 )
573  return -1;
574
575 g_standby = ROAR_NET2HOST16(*((uint16_t*)mes->data));
576
577 mes->cmd     = ROAR_CMD_OK;
578 mes->pos     = g_pos;
579 mes->datalen = 0;
580
581 return 0;
582}
583
584int req_on_exit      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
585 int term = 0;
586
587 if ( mes->datalen == 1 )
588  term = mes->data[0];
589
590 mes->cmd     = ROAR_CMD_OK;
591 mes->pos     = g_pos;
592 mes->datalen = 0;
593
594 ROAR_DBG("req_on_exit(*): term=%i", term);
595
596 if ( term ) {
597  cleanup_listen_socket(1);
598 } else {
599  alive = 0;
600 }
601
602 return 0;
603}
604
605int req_on_list_clients(int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
606 unsigned char filter, cmp;
607 uint32_t id;
608 int clients[ROAR_CLIENTS_MAX];
609 int i, c = 0;
610
611 if ( roar_ctl_m2f(mes, &filter, &cmp, &id) == -1 )
612  return -1;
613
614 // TODO: add code to support filter
615 if ( filter != ROAR_CTL_FILTER_ANY )
616  return -1;
617
618 for (i = 0; i < ROAR_CLIENTS_MAX; i++) {
619  if ( g_clients[i] != NULL ) {
620   clients[c++] = i;
621  }
622 }
623
624 roar_ctl_ia2m(mes, clients, c);
625
626 mes->cmd = ROAR_CMD_OK;
627
628 return 0;
629}
630int req_on_list_streams(int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
631 unsigned char filter, cmp;
632 uint32_t id;
633 int streams[ROAR_STREAMS_MAX];
634 int i, c = 0;
635
636 if ( roar_ctl_m2f(mes, &filter, &cmp, &id) == -1 )
637  return -1;
638
639 // TODO: add code to support filter
640 if ( filter != ROAR_CTL_FILTER_ANY )
641  return -1;
642
643 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
644  if ( g_streams[i] != NULL ) {
645   streams[c++] = i;
646  }
647 }
648
649 roar_ctl_ia2m(mes, streams, c);
650
651 mes->cmd = ROAR_CMD_OK;
652
653 return 0;
654}
655
656int req_on_get_client  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
657 struct roar_client * c;
658
659 if ( mes->datalen != 1 )
660  return -1;
661
662 if ( clients_get(mes->data[0], &c) == -1 )
663  return -1;
664
665 mes->cmd = ROAR_CMD_OK;
666
667 return roar_ctl_c2m(mes, c);
668}
669
670int req_on_get_stream  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
671 struct roar_stream_server * s;
672
673 if ( mes->datalen != 1 )
674  return -1;
675
676 if ( streams_get(mes->data[0], &s) == -1 )
677  return -1;
678
679 mes->cmd = ROAR_CMD_OK;
680 mes->stream = mes->data[0];
681
682 return roar_stream_s2m(ROAR_STREAM(s), mes);
683}
684
685int req_on_get_stream_para (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
686 struct roar_stream * s;
687 struct roar_stream_server * ss;
688 struct roar_audio_info * audio_info;
689 struct roar_stream_ltm * ltm;
690 uint16_t * d  = (uint16_t *) mes->data;
691 int64_t * d64 = ( int64_t *) mes->data;
692 int64_t * d64ptr;
693 int i, h, k;
694 char * str;
695 size_t needed;
696 int test, bits;
697
698 ROAR_DBG("req_on_get_stream_para(client=%i, mes=%p{.stream=%i, .datalen=%i,...}, data=%p, flags=%p) = ?", client, mes, (int)mes->stream, (int)mes->datalen, data, flags);
699
700 if ( mes->datalen < 4 )
701  return -1;
702
703 for (i = 0; i < 2; i++) {
704  d[i] = ROAR_NET2HOST16(d[i]);
705 }
706
707 if ( d[0] != 0 ) {
708  ROAR_WARN("req_on_get_stream_para(*): unsupported command version: %i, %i", (int)d[0], (int)d[1]);
709  return -1;
710 }
711
712 switch (d[1]) {
713  case ROAR_STREAM_PARA_INFO:
714    if ( streams_get(mes->stream, &ss) == -1 ) {
715     ROAR_WARN("req_on_get_stream_para(*): request on non existing (or other error?) stream %i", mes->stream);
716     return -1;
717    }
718
719    if ( streams_calc_delay(mes->stream) == -1 ) {
720     ROAR_WARN("req_on_get_stream_para(*): can not calc delay for stream %i", mes->stream);
721    }
722
723    s = ROAR_STREAM(ss);
724
725    audio_info = &(s->info);
726
727    mes->datalen = 2*12;
728
729    d[ 2] = ROAR_OUTPUT_CALC_OUTBUFSIZE(audio_info);
730    d[ 3] = ss->pre_underruns;
731    d[ 4] = ss->post_underruns;
732    d[ 5] = ss->codec_orgi;
733    d[ 6] = (ss->flags & 0xFFFF) | (ss->primary ? ROAR_FLAG_PRIMARY : 0) | (ss->driver_id != -1 ? ROAR_FLAG_OUTPUT : 0);
734    d[ 7] = ss->delay/1000;
735    d[ 8] = ss->state;
736    d[ 9] = (ss->flags & 0xFFFF0000) >> 16;
737    d[10] = ss->mixer_stream;
738    d[11] = ss->role;
739
740    ROAR_DBG("req_on_get_stream_para(*): ss->driver_id=%i", ss->driver_id);
741
742    ROAR_DBG("req_on_get_stream_para(*): delay=%i, send delay=%i", ss->delay, d[7]);
743
744    for (i = 0; i < mes->datalen/2; i++) {
745     d[i] = ROAR_HOST2NET16(d[i]);
746    }
747
748    mes->pos = s->pos;
749   break;
750
751  case ROAR_STREAM_PARA_NAME:
752   str = streams_get_name(mes->stream);
753
754   if ( str == NULL )
755    return -1;
756
757    mes->datalen = 4 + strlen(str);
758
759    if ( mes->datalen > LIBROAR_BUFFER_MSGDATA )
760     return -1;
761
762    strncpy(((char*)&(mes->data))+4, str, mes->datalen);
763
764    d[0] = ROAR_HOST2NET16(d[0]);
765    d[1] = ROAR_HOST2NET16(d[1]);
766   break;
767
768  case ROAR_STREAM_PARA_CHANMAP:
769    if ( streams_get(mes->stream, &ss) == -1 ) {
770     ROAR_WARN("req_on_get_stream_para(*): request on non existing (or other error?) stream %i", mes->stream);
771     return -1;
772    }
773
774    s = ROAR_STREAM(ss);
775
776    memcpy(&(mes->data[4]), ss->chanmap.in, s->info.channels);
777    mes->datalen = 2*2 + s->info.channels;
778
779    d[0] = ROAR_HOST2NET16(d[0]);
780    d[1] = ROAR_HOST2NET16(d[1]);
781   break;
782
783  case ROAR_STREAM_PARA_LTM:
784    ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM request...", client);
785
786    if ( mes->datalen < (6 * 2) ) {
787     ROAR_ERR("req_on_get_stream_para(client=%i, ...): LTM request of client is corruped: message too short", client);
788     return -1;
789    }
790
791    for (i = 2; i < mes->datalen/2; i++) {
792     d[i] = ROAR_NET2HOST16(d[i]);
793    }
794
795    if ( d[2] != ROAR_LTM_SST_GET_RAW ) {
796     ROAR_ERR("req_on_get_stream_para(client=%i, ...): LTM request of client is corruped: unknown LTM subtype: %i", client, (int)d[2]);
797     return -1;
798    }
799
800    ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM request of type GET_RAW", client);
801
802    test = d[5];
803    bits = 0;
804    while (test) {
805     if ( test & 0x1 )
806      bits++;
807
808     test >>= 1;
809    }
810
811    needed = 0;
812
813    if ( mes->stream == -1 ) {
814     ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM multi-stream request...", client);
815
816     for (i = 6; i < mes->datalen/2; i++) {
817      if ( (ltm = streams_ltm_get(d[i], d[5], d[3])) == NULL )
818       return -1;
819
820      needed += ltm->channels;
821     }
822    } else {
823     ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM single-stream request for stream %i...", client, mes->stream);
824     if ( (ltm = streams_ltm_get(mes->stream, d[5], d[3])) == NULL )
825      return -1;
826
827     needed = ltm->channels;
828    }
829
830    needed *= bits;
831
832    needed += mes->stream == -1 ? (mes->datalen/2) - 6 : 1;
833
834    ROAR_DBG("req_on_get_stream_para(client=%i, ...): data size for answer is %i 64 bit sub-packets", client, (int)needed);
835
836    ROAR_DBG("req_on_get_stream_para(client=%i, ...): mes->datalen=%i, data=%p{%p}", client, (int)mes->datalen, data, *data);
837    d64 = _dataspace(mes, data, flags, needed * 8);
838    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
839
840    if ( (d = roar_mm_malloc(mes->datalen)) == NULL )
841     return -1;
842
843    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d=%p, data=%p{%p}", client, d, data, *data);
844
845
846    ROAR_DBG("req_on_get_stream_para(client=%i, ...): mes->datalen=%i, data=%p{%p}", client, (int)mes->datalen, data, *data);
847    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
848    memcpy(d, mes->data, mes->datalen);
849    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
850
851    d64ptr = d64;
852
853    ROAR_DBG("req_on_get_stream_para(client=%i, ...): mes->datalen=%i, data=%p{%p}", client, (int)mes->datalen, data, *data);
854    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
855
856    if ( mes->stream == -1 ) {
857     for (i = 6; i < mes->datalen/2; i++) {
858      ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
859
860      if ( (ltm = streams_ltm_get(d[i], d[5], d[3])) == NULL )
861       return -1;
862
863      *d64ptr = ltm->channels & 0xFFFF;
864       d64ptr++;
865
866      for (h = 0; h < ltm->channels; h++) {
867       for (k = 0; k < ROAR_LTM_MTBITS; k++) {
868        if ( d[5] & (1<<k) ) {
869         switch (1<<k) {
870          case ROAR_LTM_MT_RMS:
871            *d64ptr = ltm->cur[h].rms;
872           break;
873          default:
874            ROAR_ERR("req_on_get_stream_para(client=%i, ...): client requets unknown MT for LTM: bit %i", client, k);
875         }
876         d64ptr++;
877        }
878       }
879      }
880     }
881    } else {
882     if ( (ltm = streams_ltm_get(mes->stream, d[5], d[3])) == NULL )
883      return -1;
884
885     *d64ptr = ltm->channels & 0xFFFF;
886      d64ptr++;
887
888     for (h = 0; h < ltm->channels; h++) {
889      for (k = 0; k < ROAR_LTM_MTBITS; k++) {
890       if ( d[5] & (1<<k) ) {
891        switch (1<<k) {
892         case ROAR_LTM_MT_RMS:
893           *d64ptr = ltm->cur[h].rms;
894           ROAR_DBG("req_on_get_stream_para(client=%i, ...): rms=%lli to %p", client, (long long int)*d64ptr, d64ptr);
895          break;
896         default:
897           ROAR_ERR("req_on_get_stream_para(client=%i, ...): client requets unknown MT for LTM: bit %i", client, k);
898        }
899        d64ptr++;
900       }
901      }
902     }
903    }
904
905    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
906
907    roar_mm_free(d);
908
909    for (i = 0; i < needed; i++) {
910     d64[i] = ROAR_HOST2NET64(d64[i]);
911    }
912
913    mes->datalen = needed * 8;
914    ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM d64=%p, d64ptr=%p", client, d64, d64ptr);
915    ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM final message has %i byte of data", client, (int)mes->datalen);
916    ROAR_DBG("req_on_get_stream_para(client=%i, ...): d64=%p, data=%p{%p}", client, d64, data, *data);
917    ROAR_DBG("req_on_get_stream_para(client=%i, ...): LTM GET_RAW request: OK. returning...", client);
918   break;
919
920  default:
921    ROAR_WARN("req_on_get_stream_para(*): unsupported command: %i", d[1]);
922    return -1;
923 }
924
925 ROAR_DBG("req_on_get_stream_para(client=%i, mes=%p{.stream=%i, .datalen=%i,...}, data=%p, flags=%p) = 0 // returning OK", client, mes, (int)mes->stream, (int)mes->datalen, data, flags);
926 mes->cmd = ROAR_CMD_OK;
927 return 0;
928}
929
930int req_on_set_stream_para (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
931 uint16_t * d = (uint16_t *) mes->data;
932 int i;
933
934 if ( mes->datalen < 2*2 )
935  return -1;
936
937 for (i = 0; i < 2; i++) {
938  d[i] = ROAR_NET2HOST16(d[i]);
939 }
940
941 if ( d[0] != 0 )
942  return -1;
943
944 switch (d[1]) {
945  case ROAR_STREAM_PARA_FLAGS:
946    if ( mes->datalen != 2*4 )
947     return -1;
948
949    d[2] = ROAR_NET2HOST16(d[2]);
950    d[3] = ROAR_NET2HOST16(d[3]);
951
952    ROAR_DBG("req_on_set_stream_para(*): request seems to be valid");
953
954    if ( d[2] == ROAR_RESET_FLAG ) {
955     if ( streams_reset_flag(mes->stream, d[3]) == -1 )
956      return -1;
957    } else {
958     if ( streams_set_flag(mes->stream, d[3]) == -1 )
959      return -1;
960    }
961   break;
962  case ROAR_STREAM_PARA_CHANMAP:
963    if ( streams_set_map(mes->stream, &(mes->data[4]), mes->datalen - 4) == -1 )
964     return -1;
965   break;
966  case ROAR_STREAM_PARA_ROLE:
967    if ( mes->datalen != 2*3 )
968     return -1;
969
970    d[2] = ROAR_NET2HOST16(d[2]);
971
972    if ( streams_set_role(mes->stream, d[2]) == -1 )
973     return -1;
974   break;
975  case ROAR_STREAM_PARA_LTM:
976    if ( mes->datalen < (6 * 2) )
977     return -1;
978
979    for (i = 2; i < mes->datalen/2; i++) {
980     d[i] = ROAR_NET2HOST16(d[i]);
981    }
982
983    if ( mes->stream == -1 ) {
984     for (i = 6; i < mes->datalen/2; i++)
985      if ( streams_ltm_ctl(d[i], d[5], d[3], d[2]) == -1 )
986       return -1;
987    } else {
988     if ( streams_ltm_ctl(mes->stream, d[5], d[3], d[2]) == -1 )
989      return -1;
990    }
991   break;
992  default:
993    ROAR_WARN("req_on_set_stream_para(*): unsupported command version: %i, %i", d[0], d[1]);
994    return -1;
995   break;
996 }
997
998 mes->cmd     = ROAR_CMD_OK;
999 mes->datalen = 0;
1000
1001 return 0;
1002}
1003
1004int req_on_kick (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1005 uint16_t * info = (uint16_t *) mes->data;
1006 int is_stream = 0;
1007
1008 if ( mes->datalen != 4 )
1009  return -1;
1010
1011 info[0] = ROAR_NET2HOST16(info[0]);
1012 info[1] = ROAR_NET2HOST16(info[1]);
1013
1014 switch (info[0]) {
1015  case ROAR_OT_CLIENT:
1016    clients_delete(info[1]);
1017   break;
1018  case ROAR_OT_STREAM:
1019    is_stream = 1;
1020   break;
1021  case ROAR_OT_SOURCE:
1022    if ( streams_get_flag(info[1], ROAR_FLAG_SOURCE) != 1 )
1023     return -1;
1024    is_stream = 1;
1025   break;
1026  case ROAR_OT_OUTPUT:
1027    if ( streams_get_flag(info[1], ROAR_FLAG_OUTPUT) != 1 )
1028     return -1;
1029    is_stream = 1;
1030   break;
1031  default:
1032/* TODO: those types should be handled, too:
1033#define ROAR_OT_SAMPLE    4
1034#define ROAR_OT_MIXER     6
1035#define ROAR_OT_BRIDGE    7
1036#define ROAR_OT_LISTEN    8
1037#define ROAR_OT_ACTION    9
1038#define ROAR_OT_MSGQUEUE 10
1039#define ROAR_OT_MSGBUS   11
1040*/
1041    return -1;
1042   break;
1043 }
1044
1045 if ( is_stream ) {
1046  if ( streams_get_flag(info[1], ROAR_FLAG_IMMUTABLE) == 1 )
1047   return -1;
1048
1049  streams_delete(info[1]);
1050 }
1051
1052 mes->cmd     = ROAR_CMD_OK;
1053 mes->datalen = 0;
1054
1055 return 0;
1056}
1057
1058int req_on_attach      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1059 uint16_t * info = (uint16_t *) mes->data;
1060
1061 if ( mes->datalen < 6 )
1062  return -1;
1063
1064 info[0] = ROAR_NET2HOST16(info[0]);
1065 info[1] = ROAR_NET2HOST16(info[1]);
1066 info[2] = ROAR_NET2HOST16(info[2]);
1067
1068 if ( info[0] != 0 )
1069  return -1;
1070
1071 if ( info[1] == ROAR_ATTACH_SIMPLE ) {
1072  if ( client_stream_move(info[2], mes->stream) == -1 )
1073   return -1;
1074 } else {
1075  return -1;
1076 }
1077
1078 mes->cmd     = ROAR_CMD_OK;
1079 mes->datalen = 0;
1080
1081 return 0;
1082}
1083
1084int req_on_set_vol (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1085 struct roar_stream_server * s;
1086 uint16_t * info = (uint16_t *) mes->data;
1087 uint16_t   version;
1088 uint16_t   scale = 65535;
1089 int stream;
1090 int i;
1091 int chans;
1092
1093 ROAR_DBG("req_on_set_vol(*) = ?");
1094 ROAR_DBG("req_on_set_vol(*): mes->datalen=%i", mes->datalen);
1095
1096 if ( mes->datalen < (4*2) )
1097  return -1;
1098
1099 version = ROAR_NET2HOST16(info[0]);
1100 ROAR_DBG("req_on_set_vol(*): version=%i", (int)version);
1101
1102 switch (version) {
1103  case 0:
1104    stream = ROAR_NET2HOST16(info[1]);
1105   break;
1106  case 1:
1107    stream = mes->stream;
1108    scale  = ROAR_NET2HOST16(info[1]);
1109   break;
1110  default:
1111    return -1;
1112   break;
1113 }
1114 ROAR_DBG("req_on_set_vol(*): stream=%i", stream);
1115
1116 if ( scale == 0 )
1117  return -1;
1118
1119 // TODO: change this code.
1120 //       we should not directly change the stream object but use some stream_*()-func
1121 //       for that job.
1122
1123 if ( stream < 0 || stream >= ROAR_STREAMS_MAX )
1124  return -1;
1125
1126 s = g_streams[stream];
1127
1128 if ( s == NULL )
1129  return -1;
1130
1131 ROAR_DBG("req_on_set_vol(*): s=%p", s);
1132
1133 info[2] = ROAR_NET2HOST16(info[2]);
1134
1135 if ( info[2] == ROAR_SET_VOL_ALL ) {
1136  chans = (mes->datalen/2) - 3;
1137  ROAR_DBG("req_on_set_vol(*): mode is ROAR_SET_VOL_ALL, channes=%i", chans);
1138
1139  if ( chans >= ROAR_MAX_CHANNELS )
1140   return -1;
1141
1142  ROAR_DBG("req_on_set_vol(*): mixer at %p", s->mixer.mixer);
1143
1144  for (i = 0; i < chans; i++) {
1145   s->mixer.mixer[i] = ROAR_NET2HOST16(info[i+3]);
1146   ROAR_DBG("req_on_set_vol(*): channel %i: %i", i, ROAR_NET2HOST16(info[i+3]));
1147  }
1148
1149  s->mixer.scale = scale;
1150
1151  ROAR_DBG("req_on_set_vol(*): mixer changed!");
1152
1153 } else if ( info[2] == ROAR_SET_VOL_ONE ) {
1154  ROAR_DBG("req_on_set_vol(*): mode is ROAR_SET_VOL_ONE");
1155  if ( ROAR_NET2HOST16(info[3]) >= ROAR_MAX_CHANNELS )
1156   return -1;
1157
1158  s->mixer.mixer[ROAR_NET2HOST16(info[3])] = ROAR_NET2HOST16(info[4]);
1159
1160  s->mixer.scale = scale;
1161 } else {
1162  return -1;
1163 }
1164
1165 if ( streams_set_mixer(stream) == -1 )
1166  return -1;
1167
1168 mes->cmd     = ROAR_CMD_OK;
1169 mes->datalen = 0;
1170
1171 return 0;
1172}
1173
1174int req_on_get_vol (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1175 uint16_t * info = (uint16_t *) mes->data;
1176 uint16_t   version = -1;
1177 int stream;
1178 struct roar_stream_server * s;
1179 int i;
1180 int chans;
1181
1182 ROAR_DBG("req_on_get_vol(*) = ?");
1183 ROAR_DBG("req_on_get_vol(*): mes->datalen=%i", mes->datalen);
1184
1185 if ( mes->datalen < 2 ) {
1186  return -1;
1187 }
1188
1189 version = ROAR_NET2HOST16(info[0]);
1190
1191 switch (version) {
1192  case 0:
1193    if ( mes->datalen < (2*2) )
1194     return -1;
1195
1196    stream = ROAR_NET2HOST16(info[1]);
1197   break;
1198  case 1:
1199    stream = mes->stream;
1200   break;
1201  default:
1202    return -1;
1203   break;
1204 }
1205
1206 ROAR_DBG("req_on_get_vol(*): stream=%i", stream);
1207
1208 // TODO: change this code.
1209 //       we should not directly change the stream object but use some stream_*()-func
1210 //       for that job.
1211
1212 if ( stream < 0 || stream >= ROAR_STREAMS_MAX )
1213  return -1;
1214
1215 s = g_streams[stream];
1216
1217 if ( s == NULL )
1218  return -1;
1219
1220 ROAR_DBG("req_on_get_vol(*): s=%p", s);
1221
1222 // ok, we have everything
1223
1224 info[0] = ROAR_HOST2NET16(version);
1225
1226 switch (version) {
1227  case 0:
1228    info[1] = ROAR_HOST2NET16(chans = ROAR_STREAM(s)->info.channels);
1229
1230    for (i = 0; i < chans; i++)
1231     info[2+i] = ROAR_HOST2NET16(s->mixer.mixer[i]);
1232
1233     mes->datalen = (2 + chans)*2;
1234   break;
1235  case 1:
1236    info[1] = ROAR_HOST2NET16(chans = ROAR_STREAM(s)->info.channels);
1237    info[2] = ROAR_HOST2NET16(s->mixer.scale);
1238    info[3] = ROAR_HOST2NET16(s->mixer.rpg_mul);
1239    info[4] = ROAR_HOST2NET16(s->mixer.rpg_div);
1240
1241    for (i = 0; i < chans; i++)
1242     info[5+i] = ROAR_HOST2NET16(s->mixer.mixer[i]);
1243
1244     mes->datalen = (5 + chans)*2;
1245   break;
1246  default:
1247    return -1;
1248   break;
1249 }
1250
1251 mes->cmd = ROAR_CMD_OK;
1252
1253 return 0;
1254}
1255
1256int req_on_add_data (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1257 struct roar_buffer * b;
1258 char               * buf;
1259
1260 if ( roar_buffer_new_data(&b, mes->datalen, (void **)&buf) == -1 ) {
1261  ROAR_ERR("req_on_add_data(*): Can not alloc buffer space!");
1262  ROAR_DBG("req_on_add_data(*) = -1");
1263  return -1;
1264 }
1265
1266 if ( data == NULL ) {
1267  memcpy(buf, mes->data, mes->datalen);
1268 } else {
1269  memcpy(buf, *data, mes->datalen);
1270 }
1271
1272 if ( stream_add_buffer(mes->stream, b) == -1 ) {
1273  roar_buffer_free(b);
1274  return -1;
1275 }
1276
1277 mes->cmd     = ROAR_CMD_OK_STOP;
1278 mes->datalen = 0;
1279
1280 return 0;
1281}
1282
1283int req_on_beep        (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1284 struct roar_beep bs;
1285 int16_t * info = (int16_t*)mes->data;
1286 int stream;
1287
1288 memset(&bs, 0, sizeof(bs));
1289
1290 if ( mes->datalen > 0 ) {
1291  if ( mes->datalen < 2 )
1292   return -1;
1293
1294  if ( ROAR_NET2HOST16(info[0]) != 0 ) /* version */
1295   return -1;
1296
1297  if ( mes->datalen != 8*2 )
1298   return -1;
1299
1300  bs.vol  = ROAR_NET2HOST16(info[1]);
1301  bs.time = ROAR_NET2HOST16(info[2]);
1302  bs.freq = ROAR_NET2HOST16(info[3]);
1303  bs.type = ROAR_NET2HOST16(info[4]);
1304  bs.x    = ROAR_NET2HOST16(info[5]);
1305  bs.y    = ROAR_NET2HOST16(info[6]);
1306  bs.z    = ROAR_NET2HOST16(info[7]);
1307 }
1308
1309 if ( (stream = beep_start(client, &bs)) == -1 )
1310  return -1;
1311
1312 mes->stream  = stream;
1313 mes->cmd     = ROAR_CMD_OK_STOP;
1314 mes->datalen = 0;
1315
1316 return 0;
1317}
1318
1319//ll
Note: See TracBrowser for help on using the repository browser.