2012-11-02 10:14:25 +00:00
|
|
|
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2012-10-28 03:03:18 +00:00
|
|
|
*
|
2012-11-02 10:14:25 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
2012-10-28 03:03:18 +00:00
|
|
|
*
|
2012-11-02 10:14:25 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2012-10-28 03:03:18 +00:00
|
|
|
*
|
2012-11-02 10:14:25 +00:00
|
|
|
* The Original Code is libguac-client-rdp.
|
2012-10-28 03:03:18 +00:00
|
|
|
*
|
2012-11-02 10:14:25 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Michael Jumper.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
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/types.h>
|
|
|
|
#include <freerdp/utils/svc_plugin.h>
|
|
|
|
|
2013-07-17 17:22:03 +00:00
|
|
|
#ifdef ENABLE_WINPR
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
#include <winpr/wtypes.h>
|
|
|
|
#else
|
|
|
|
#include "compat/winpr-stream.h"
|
|
|
|
#include "compat/winpr-wtypes.h"
|
|
|
|
#endif
|
|
|
|
|
2012-10-28 03:03:18 +00:00
|
|
|
#include <guacamole/client.h>
|
|
|
|
|
2012-10-28 07:23:44 +00:00
|
|
|
#include "audio.h"
|
2013-06-18 20:39:07 +00:00
|
|
|
#include "rdpsnd_service.h"
|
|
|
|
#include "rdpsnd_messages.h"
|
2012-10-28 03:03:18 +00:00
|
|
|
|
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 */
|
|
|
|
audio_stream* audio = rdpsnd->audio =
|
|
|
|
(audio_stream*) plugin->channel_entry_points.pExtendedData;
|
|
|
|
|
|
|
|
/* NULL out pExtendedData so we don't lose our audio_stream due to an
|
|
|
|
* 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-08-22 21:51:37 +00:00
|
|
|
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
|
|
|
|
|
|
|
}
|
|
|
|
|