Coverage Report

Created: 2026-08-31 06:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/FreeRDP/channels/cliprdr/client/test/TestFuzzChannelCliprdr.c
Line
Count
Source
1
/**
2
 * FreeRDP: A Remote Desktop Protocol Implementation
3
 * libFuzzer harness for cliprdr PDU parsing
4
 */
5
6
#include <stddef.h>
7
#include <stdint.h>
8
9
#include <winpr/crt.h>
10
#include <winpr/stream.h>
11
#include <winpr/wlog.h>
12
13
#include <freerdp/channels/cliprdr.h>
14
15
#include "../../cliprdr_common.h"
16
17
static wLog* g_Log = nullptr;
18
19
static UINT32 fuzz_stream_len_u32(wStream* s)
20
1.08k
{
21
1.08k
  const size_t remaining = Stream_GetRemainingLength(s);
22
1.08k
  return (remaining > UINT32_MAX) ? UINT32_MAX : (UINT32)remaining;
23
1.08k
}
24
25
static void fuzz_format_list(wStream* s, BOOL longNames)
26
532
{
27
532
  CLIPRDR_FORMAT_LIST list = WINPR_C_ARRAY_INIT;
28
532
  list.common.dataLen = fuzz_stream_len_u32(s);
29
30
532
  if (cliprdr_read_format_list(g_Log, s, &list, longNames) == CHANNEL_RC_OK)
31
312
    cliprdr_free_format_list(&list);
32
532
}
33
34
static void fuzz_format_data_request(wStream* s)
35
56
{
36
56
  CLIPRDR_FORMAT_DATA_REQUEST request = WINPR_C_ARRAY_INIT;
37
56
  request.common.dataLen = fuzz_stream_len_u32(s);
38
56
  (void)cliprdr_read_format_data_request(s, &request);
39
56
}
40
41
static void fuzz_format_data_response(wStream* s)
42
29
{
43
29
  CLIPRDR_FORMAT_DATA_RESPONSE response = WINPR_C_ARRAY_INIT;
44
29
  response.common.dataLen = fuzz_stream_len_u32(s);
45
29
  (void)cliprdr_read_format_data_response(s, &response);
46
29
}
47
48
static void fuzz_file_contents_request(wStream* s)
49
341
{
50
341
  CLIPRDR_FILE_CONTENTS_REQUEST request = WINPR_C_ARRAY_INIT;
51
341
  request.common.dataLen = fuzz_stream_len_u32(s);
52
341
  (void)cliprdr_read_file_contents_request(s, &request);
53
341
}
54
55
static void fuzz_file_contents_response(wStream* s)
56
66
{
57
66
  CLIPRDR_FILE_CONTENTS_RESPONSE response = WINPR_C_ARRAY_INIT;
58
66
  const UINT32 dataLen = fuzz_stream_len_u32(s);
59
60
66
  response.common.dataLen = (dataLen >= 4) ? dataLen : 4;
61
66
  (void)cliprdr_read_file_contents_response(s, &response);
62
66
}
63
64
static void fuzz_unlock(wStream* s)
65
64
{
66
64
  CLIPRDR_UNLOCK_CLIPBOARD_DATA data = WINPR_C_ARRAY_INIT;
67
64
  data.common.dataLen = fuzz_stream_len_u32(s);
68
64
  (void)cliprdr_read_unlock_clipdata(s, &data);
69
64
}
70
71
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
72
1.08k
{
73
1.08k
  if (size < 2)
74
1
    return 0;
75
1.08k
  if (size > (1u << 20))
76
0
    return 0;
77
78
1.08k
  if (!g_Log)
79
1
    g_Log = WLog_Get("fuzz.cliprdr");
80
81
1.08k
  BOOL longNames = (data[1] & 0x1) != 0;
82
1.08k
  const uint8_t* body = data + 2;
83
84
1.08k
  wStream buffer = WINPR_C_ARRAY_INIT;
85
1.08k
  wStream* s = Stream_StaticConstInit(&buffer, body, size - 2);
86
1.08k
  if (!s)
87
0
    return 0;
88
89
1.08k
  switch (data[0] % 6)
90
1.08k
  {
91
532
    case 0:
92
532
      fuzz_format_list(s, longNames);
93
532
      break;
94
56
    case 1:
95
56
      fuzz_format_data_request(s);
96
56
      break;
97
29
    case 2:
98
29
      fuzz_format_data_response(s);
99
29
      break;
100
341
    case 3:
101
341
      fuzz_file_contents_request(s);
102
341
      break;
103
66
    case 4:
104
66
      fuzz_file_contents_response(s);
105
66
      break;
106
64
    case 5:
107
64
      fuzz_unlock(s);
108
64
      break;
109
0
    default:
110
0
      break;
111
1.08k
  }
112
113
1.08k
  return 0;
114
1.08k
}