c2e899b6df
rdp_recv_save_session_info is a client side only function, remove from server side tests
118 lines
3.1 KiB
C
118 lines
3.1 KiB
C
#include <freerdp/client.h>
|
|
|
|
#include "../fastpath.h"
|
|
#include "../surface.h"
|
|
#include "../window.h"
|
|
#include "../info.h"
|
|
#include "../multitransport.h"
|
|
|
|
static BOOL test_client(const uint8_t* Data, size_t Size)
|
|
{
|
|
RDP_CLIENT_ENTRY_POINTS entry = { 0 };
|
|
|
|
entry.Version = RDP_CLIENT_INTERFACE_VERSION;
|
|
entry.Size = sizeof(RDP_CLIENT_ENTRY_POINTS_V1);
|
|
entry.ContextSize = sizeof(rdpContext);
|
|
|
|
rdpContext* context = freerdp_client_context_new(&entry);
|
|
if (!context)
|
|
goto fail;
|
|
|
|
rdpRdp* rdp = context->rdp;
|
|
WINPR_ASSERT(rdp);
|
|
|
|
wStream sbuffer = { 0 };
|
|
wStream* s = Stream_StaticConstInit(&sbuffer, Data, Size);
|
|
|
|
{
|
|
rdpFastPath* fastpath = rdp->fastpath;
|
|
WINPR_ASSERT(fastpath);
|
|
|
|
fastpath_recv_updates(fastpath, s);
|
|
fastpath_recv_inputs(fastpath, s);
|
|
|
|
UINT16 length = 0;
|
|
fastpath_read_header_rdp(fastpath, s, &length);
|
|
fastpath_decrypt(fastpath, s, &length);
|
|
}
|
|
|
|
{
|
|
UINT16 length = 0;
|
|
UINT16 flags = 0;
|
|
UINT16 channelId = 0;
|
|
UINT16 tpktLength = 0;
|
|
UINT16 remainingLength = 0;
|
|
UINT16 type = 0;
|
|
UINT16 securityFlags = 0;
|
|
UINT32 share_id = 0;
|
|
BYTE compressed_type = 0;
|
|
BYTE btype = 0;
|
|
UINT16 compressed_len = 0;
|
|
|
|
rdp_recv_callback(rdp->transport, s, rdp);
|
|
rdp_read_security_header(rdp, s, &flags, &length);
|
|
rdp_read_header(rdp, s, &length, &channelId);
|
|
rdp_read_share_control_header(rdp, s, &tpktLength, &remainingLength, &type, &channelId);
|
|
rdp_read_share_data_header(rdp, s, &length, &btype, &share_id, &compressed_type,
|
|
&compressed_len);
|
|
rdp_recv_enhanced_security_redirection_packet(rdp, s);
|
|
rdp_recv_out_of_sequence_pdu(rdp, s, type, length);
|
|
rdp_recv_message_channel_pdu(rdp, s, securityFlags);
|
|
}
|
|
{
|
|
rdpUpdate* update = rdp->update;
|
|
UINT16 channelId = 0;
|
|
UINT16 length = 0;
|
|
UINT16 pduSource = 0;
|
|
UINT16 pduLength = 0;
|
|
update_recv_order(update, s);
|
|
update_recv_altsec_window_order(update, s);
|
|
update_recv_play_sound(update, s);
|
|
update_recv_pointer(update, s);
|
|
update_recv_surfcmds(update, s);
|
|
rdp_recv_get_active_header(rdp, s, &channelId, &length);
|
|
rdp_recv_demand_active(rdp, s, pduSource, length);
|
|
rdp_recv_confirm_active(rdp, s, pduLength);
|
|
}
|
|
{
|
|
rdpNla* nla = nla_new(rdp->context, rdp->transport);
|
|
nla_recv_pdu(nla, s);
|
|
nla_free(nla);
|
|
}
|
|
{
|
|
rdp_recv_heartbeat_packet(rdp, s);
|
|
rdp->state = CONNECTION_STATE_SECURE_SETTINGS_EXCHANGE;
|
|
rdp_recv_client_info(rdp, s);
|
|
rdp_recv_save_session_info(rdp, s);
|
|
}
|
|
{
|
|
freerdp_is_valid_mcs_create_request(Data, Size);
|
|
freerdp_is_valid_mcs_create_response(Data, Size);
|
|
}
|
|
{
|
|
multitransport_recv_request(rdp->multitransport, s);
|
|
multitransport_recv_response(rdp->multitransport, s);
|
|
}
|
|
{
|
|
autodetect_recv_request_packet(rdp->autodetect, RDP_TRANSPORT_TCP, s);
|
|
autodetect_recv_response_packet(rdp->autodetect, RDP_TRANSPORT_TCP, s);
|
|
}
|
|
{
|
|
rdp_recv_deactivate_all(rdp, s);
|
|
rdp_recv_server_synchronize_pdu(rdp, s);
|
|
rdp_recv_client_synchronize_pdu(rdp, s);
|
|
|
|
rdp_recv_data_pdu(rdp, s);
|
|
rdp_recv_font_map_pdu(rdp, s);
|
|
}
|
|
fail:
|
|
freerdp_client_context_free(context);
|
|
return TRUE;
|
|
}
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)
|
|
{
|
|
test_client(Data, Size);
|
|
return 0;
|
|
}
|