Milestone 5: deliver embedded RDP sessions and lifecycle hardening

This commit is contained in:
Keith Smith
2026-03-03 18:59:26 -07:00
parent 230a401386
commit 36006bd4aa
2941 changed files with 724359 additions and 77 deletions

View File

@@ -0,0 +1,243 @@
/**
* FreeRDP: A Remote Desktop Protocol Implementation
* Server Channels
*
* Copyright 2011-2012 Vic Lee
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <freerdp/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <freerdp/constants.h>
#include <freerdp/server/channels.h>
#include <winpr/crt.h>
#include <winpr/synch.h>
#include <winpr/stream.h>
#include "channels.h"
/**
* this is a workaround to force importing symbols
* will need to fix that later on cleanly
*/
#if defined(CHANNEL_AUDIN_SERVER)
#include <freerdp/server/audin.h>
#endif
#if defined(CHANNEL_RDPSND_SERVER)
#include <freerdp/server/rdpsnd.h>
#endif
#if defined(CHANNEL_CLIPRDR_SERVER)
#include <freerdp/server/cliprdr.h>
#endif
#if defined(CHANNEL_ECHO_SERVER)
#include <freerdp/server/echo.h>
#endif
#if defined(CHANNEL_RDPDR_SERVER)
#include <freerdp/server/rdpdr.h>
#endif
#if defined(CHANNEL_RDPEI_SERVER)
#include <freerdp/server/rdpei.h>
#endif
#if defined(CHANNEL_DRDYNVC_SERVER)
#include <freerdp/server/drdynvc.h>
#endif
#if defined(CHANNEL_REMDESK_SERVER)
#include <freerdp/server/remdesk.h>
#endif
#if defined(CHANNEL_ENCOMSP_SERVER)
#include <freerdp/server/encomsp.h>
#endif
#if defined(CHANNEL_RAIL_SERVER)
#include <freerdp/server/rail.h>
#endif
#if defined(CHANNEL_TELEMETRY_SERVER)
#include <freerdp/server/telemetry.h>
#endif
#if defined(CHANNEL_RDPGFX_SERVER)
#include <freerdp/server/rdpgfx.h>
#endif
#if defined(CHANNEL_DISP_SERVER)
#include <freerdp/server/disp.h>
#endif
#if defined(CHANNEL_RDPEMSC_SERVER)
#include <freerdp/server/rdpemsc.h>
#endif /* CHANNEL_RDPEMSC_SERVER */
#if defined(CHANNEL_RDPECAM_SERVER)
#include <freerdp/server/rdpecam-enumerator.h>
#include <freerdp/server/rdpecam.h>
#endif
#if defined(CHANNEL_LOCATION_SERVER)
#include <freerdp/server/location.h>
#endif /* CHANNEL_LOCATION_SERVER */
#ifdef WITH_CHANNEL_GFXREDIR
#include <freerdp/server/gfxredir.h>
#endif /* WITH_CHANNEL_GFXREDIR */
#if defined(CHANNEL_AINPUT_SERVER)
#include <freerdp/server/ainput.h>
#endif
extern void freerdp_channels_dummy(void);
void freerdp_channels_dummy(void)
{
#if defined(CHANNEL_AUDIN_SERVER)
audin_server_context* audin = nullptr;
#endif
#if defined(CHANNEL_RDPSND_SERVER)
RdpsndServerContext* rdpsnd = nullptr;
#endif
#if defined(CHANNEL_CLIPRDR_SERVER)
CliprdrServerContext* cliprdr = nullptr;
#endif
#if defined(CHANNEL_ECHO_SERVER)
echo_server_context* echo = nullptr;
#endif
#if defined(CHANNEL_RDPDR_SERVER)
RdpdrServerContext* rdpdr = nullptr;
#endif
#if defined(CHANNEL_DRDYNVC_SERVER)
DrdynvcServerContext* drdynvc = nullptr;
#endif
#if defined(CHANNEL_RDPEI_SERVER)
RdpeiServerContext* rdpei = nullptr;
#endif
#if defined(CHANNEL_REMDESK_SERVER)
RemdeskServerContext* remdesk = nullptr;
#endif
#if defined(CHANNEL_ENCOMSP_SERVER)
EncomspServerContext* encomsp = nullptr;
#endif
#if defined(CHANNEL_RAIL_SERVER)
RailServerContext* rail = nullptr;
#endif
#if defined(CHANNEL_TELEMETRY_SERVER)
TelemetryServerContext* telemetry = nullptr;
#endif
#if defined(CHANNEL_RDPGFX_SERVER)
RdpgfxServerContext* rdpgfx = nullptr;
#endif
#if defined(CHANNEL_DISP_SERVER)
DispServerContext* disp = nullptr;
#endif
#if defined(CHANNEL_RDPEMSC_SERVER)
MouseCursorServerContext* mouse_cursor = nullptr;
#endif /* CHANNEL_RDPEMSC_SERVER */
#if defined(CHANNEL_RDPECAM_SERVER)
CamDevEnumServerContext* camera_enumerator = nullptr;
CameraDeviceServerContext* camera_device = nullptr;
#endif
#if defined(CHANNEL_LOCATION_SERVER)
LocationServerContext* location = nullptr;
#endif /* CHANNEL_LOCATION_SERVER */
#ifdef WITH_CHANNEL_GFXREDIR
GfxRedirServerContext* gfxredir;
#endif // WITH_CHANNEL_GFXREDIR
#if defined(CHANNEL_AUDIN_SERVER)
audin = audin_server_context_new(nullptr);
#endif
#if defined(CHANNEL_AUDIN_SERVER)
audin_server_context_free(audin);
#endif
#if defined(CHANNEL_RDPSND_SERVER)
rdpsnd = rdpsnd_server_context_new(nullptr);
rdpsnd_server_context_free(rdpsnd);
#endif
#if defined(CHANNEL_CLIPRDR_SERVER)
cliprdr = cliprdr_server_context_new(nullptr);
cliprdr_server_context_free(cliprdr);
#endif
#if defined(CHANNEL_ECHO_SERVER)
echo = echo_server_context_new(nullptr);
echo_server_context_free(echo);
#endif
#if defined(CHANNEL_RDPDR_SERVER)
rdpdr = rdpdr_server_context_new(nullptr);
rdpdr_server_context_free(rdpdr);
#endif
#if defined(CHANNEL_DRDYNVC_SERVER)
drdynvc = drdynvc_server_context_new(nullptr);
drdynvc_server_context_free(drdynvc);
#endif
#if defined(CHANNEL_RDPEI_SERVER)
rdpei = rdpei_server_context_new(nullptr);
rdpei_server_context_free(rdpei);
#endif
#if defined(CHANNEL_REMDESK_SERVER)
remdesk = remdesk_server_context_new(nullptr);
remdesk_server_context_free(remdesk);
#endif
#if defined(CHANNEL_ENCOMSP_SERVER)
encomsp = encomsp_server_context_new(nullptr);
encomsp_server_context_free(encomsp);
#endif
#if defined(CHANNEL_RAIL_SERVER)
rail = rail_server_context_new(nullptr);
rail_server_context_free(rail);
#endif
#if defined(CHANNEL_TELEMETRY_SERVER)
telemetry = telemetry_server_context_new(nullptr);
telemetry_server_context_free(telemetry);
#endif
#if defined(CHANNEL_RDPGFX_SERVER)
rdpgfx = rdpgfx_server_context_new(nullptr);
rdpgfx_server_context_free(rdpgfx);
#endif
#if defined(CHANNEL_DISP_SERVER)
disp = disp_server_context_new(nullptr);
disp_server_context_free(disp);
#endif
#if defined(CHANNEL_RDPEMSC_SERVER)
mouse_cursor = mouse_cursor_server_context_new(nullptr);
mouse_cursor_server_context_free(mouse_cursor);
#endif /* CHANNEL_RDPEMSC_SERVER */
#if defined(CHANNEL_RDPECAM_SERVER)
camera_enumerator = cam_dev_enum_server_context_new(nullptr);
cam_dev_enum_server_context_free(camera_enumerator);
camera_device = camera_device_server_context_new(nullptr);
camera_device_server_context_free(camera_device);
#endif
#if defined(CHANNEL_LOCATION_SERVER)
location = location_server_context_new(nullptr);
location_server_context_free(location);
#endif /* CHANNEL_LOCATION_SERVER */
#ifdef WITH_CHANNEL_GFXREDIR
gfxredir = gfxredir_server_context_new(nullptr);
gfxredir_server_context_free(gfxredir);
#endif // WITH_CHANNEL_GFXREDIR
#if defined(CHANNEL_AINPUT_SERVER)
{
ainput_server_context* ainput = ainput_server_context_new(nullptr);
ainput_server_context_free(ainput);
}
#endif
}
/**
* end of ugly symbols import workaround
*/