2013-12-29 04:53:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Glyptodon LLC
|
2012-10-28 03:03:18 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2012-11-02 10:14:25 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2012-11-02 10:14:25 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "rdpsnd_service.h"
|
|
|
|
#include "rdpsnd_messages.h"
|
2012-10-28 03:03:18 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-11-02 10:14:25 +00:00
|
|
|
|
2012-10-28 03:03:18 +00:00
|
|
|
#include <freerdp/constants.h>
|
|
|
|
#include <freerdp/utils/svc_plugin.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <guacamole/audio.h>
|
|
|
|
#include <guacamole/client.h>
|
2012-10-28 03:03:18 +00:00
|
|
|
|
2013-07-17 17:22:03 +00:00
|
|
|
#ifdef ENABLE_WINPR
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
#else
|
|
|
|
#include "compat/winpr-stream.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-17 17:48:41 +00:00
|
|
|
/**
|
|
|
|
* Entry point for RDPSND virtual channel.
|
|
|
|
*/
|
|
|
|
int VirtualChannelEntry(PCHANNEL_ENTRY_POINTS pEntryPoints) {
|
|
|
|
|
|
|
|
/* Allocate plugin */
|
|
|
|
guac_rdpsndPlugin* rdpsnd =
|
|
|
|
(guac_rdpsndPlugin*) calloc(1, sizeof(guac_rdpsndPlugin));
|
2012-11-02 10:14:25 +00:00
|
|
|
|
2013-07-17 17:48:41 +00:00
|
|
|
/* Init channel def */
|
2013-07-20 00:56:55 +00:00
|
|
|
strcpy(rdpsnd->plugin.channel_def.name, "rdpsnd");
|
2013-07-17 17:48:41 +00:00
|
|
|
rdpsnd->plugin.channel_def.options =
|
|
|
|
CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP;
|
2012-10-28 03:03:18 +00:00
|
|
|
|
2013-07-17 17:48:41 +00:00
|
|
|
/* Set callbacks */
|
|
|
|
rdpsnd->plugin.connect_callback = guac_rdpsnd_process_connect;
|
|
|
|
rdpsnd->plugin.receive_callback = guac_rdpsnd_process_receive;
|
|
|
|
rdpsnd->plugin.event_callback = guac_rdpsnd_process_event;
|
|
|
|
rdpsnd->plugin.terminate_callback = guac_rdpsnd_process_terminate;
|
2012-11-02 10:14:25 +00:00
|
|
|
|
2013-07-17 17:48:41 +00:00
|
|
|
/* Finish init */
|
|
|
|
svc_plugin_init((rdpSvcPlugin*) rdpsnd, pEntryPoints);
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
2012-11-02 10:14:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Service Handlers
|
|
|
|
*/
|
2012-10-28 03:03:18 +00:00
|
|
|
|
|
|
|
void guac_rdpsnd_process_connect(rdpSvcPlugin* plugin) {
|
|
|
|
|
2013-08-22 21:51:37 +00:00
|
|
|
guac_rdpsndPlugin* rdpsnd = (guac_rdpsndPlugin*) plugin;
|
|
|
|
|
|
|
|
/* Get audio stream from plugin parameters */
|
2013-09-24 19:01:02 +00:00
|
|
|
guac_audio_stream* audio = rdpsnd->audio =
|
|
|
|
(guac_audio_stream*) plugin->channel_entry_points.pExtendedData;
|
2013-08-22 21:51:37 +00:00
|
|
|
|
2013-09-24 19:01:02 +00:00
|
|
|
/* NULL out pExtendedData so we don't lose our guac_audio_stream due to an
|
2013-08-22 21:51:37 +00:00
|
|
|
* automatic free() within libfreerdp */
|
|
|
|
plugin->channel_entry_points.pExtendedData = NULL;
|
2012-10-28 03:03:18 +00:00
|
|
|
|
2013-07-17 17:53:51 +00:00
|
|
|
#ifdef RDPSVCPLUGIN_INTERVAL_MS
|
2012-11-02 10:14:25 +00:00
|
|
|
/* Update every 10 ms */
|
|
|
|
plugin->interval_ms = 10;
|
2013-07-17 17:53:51 +00:00
|
|
|
#endif
|
2012-11-02 10:14:25 +00:00
|
|
|
|
2012-10-28 03:03:18 +00:00
|
|
|
/* Log that sound has been loaded */
|
2013-07-17 17:48:41 +00:00
|
|
|
guac_client_log_info(audio->client, "guacsnd connected.");
|
2012-10-28 03:03:18 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void guac_rdpsnd_process_terminate(rdpSvcPlugin* plugin) {
|
2013-07-17 01:59:26 +00:00
|
|
|
free(plugin);
|
2012-10-28 03:03:18 +00:00
|
|
|
}
|
|
|
|
|
2013-07-17 06:33:03 +00:00
|
|
|
void guac_rdpsnd_process_event(rdpSvcPlugin* plugin, wMessage* event) {
|
2012-11-02 10:14:25 +00:00
|
|
|
freerdp_event_free(event);
|
2012-10-28 03:03:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void guac_rdpsnd_process_receive(rdpSvcPlugin* plugin,
|
2013-07-17 06:33:03 +00:00
|
|
|
wStream* input_stream) {
|
2012-10-28 03:03:18 +00:00
|
|
|
|
2012-11-02 10:14:25 +00:00
|
|
|
guac_rdpsndPlugin* rdpsnd = (guac_rdpsndPlugin*) plugin;
|
|
|
|
guac_rdpsnd_pdu_header header;
|
2012-10-28 03:03:18 +00:00
|
|
|
|
2012-10-28 07:23:44 +00:00
|
|
|
/* Get audio stream from plugin */
|
2013-09-24 19:01:02 +00:00
|
|
|
guac_audio_stream* audio = rdpsnd->audio;
|
2012-10-28 03:03:18 +00:00
|
|
|
|
2012-11-02 10:14:25 +00:00
|
|
|
/* Read RDPSND PDU header */
|
2013-07-17 17:22:03 +00:00
|
|
|
Stream_Read_UINT8(input_stream, header.message_type);
|
|
|
|
Stream_Seek_UINT8(input_stream);
|
|
|
|
Stream_Read_UINT16(input_stream, header.body_size);
|
2012-11-02 10:14:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If next PDU is SNDWAVE (due to receiving WaveInfo PDU previously),
|
|
|
|
* ignore the header and parse as a Wave PDU.
|
|
|
|
*/
|
|
|
|
if (rdpsnd->next_pdu_is_wave) {
|
|
|
|
guac_rdpsnd_wave_handler(rdpsnd, audio, input_stream, &header);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dispatch message to standard handlers */
|
|
|
|
switch (header.message_type) {
|
|
|
|
|
|
|
|
/* Server Audio Formats and Version PDU */
|
|
|
|
case SNDC_FORMATS:
|
|
|
|
guac_rdpsnd_formats_handler(rdpsnd, audio,
|
|
|
|
input_stream, &header);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Training PDU */
|
|
|
|
case SNDC_TRAINING:
|
|
|
|
guac_rdpsnd_training_handler(rdpsnd, audio,
|
|
|
|
input_stream, &header);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* WaveInfo PDU */
|
|
|
|
case SNDC_WAVE:
|
|
|
|
guac_rdpsnd_wave_info_handler(rdpsnd, audio,
|
|
|
|
input_stream, &header);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Close PDU */
|
|
|
|
case SNDC_CLOSE:
|
|
|
|
guac_rdpsnd_close_handler(rdpsnd, audio,
|
|
|
|
input_stream, &header);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
2012-10-28 03:03:18 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|