Coverage Report

Created: 2026-08-31 06:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/FreeRDP/channels/cliprdr/cliprdr_common.c
Line
Count
Source
1
/**
2
 * FreeRDP: A Remote Desktop Protocol Implementation
3
 * Cliprdr common
4
 *
5
 * Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6
 * Copyright 2015 Thincast Technologies GmbH
7
 * Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
8
 * Copyright 2019 Kobi Mizrachi <kmizrachi18@gmail.com>
9
 *
10
 * Licensed under the Apache License, Version 2.0 (the "License");
11
 * you may not use this file except in compliance with the License.
12
 * You may obtain a copy of the License at
13
 *
14
 *     http://www.apache.org/licenses/LICENSE-2.0
15
 *
16
 * Unless required by applicable law or agreed to in writing, software
17
 * distributed under the License is distributed on an "AS IS" BASIS,
18
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
 * See the License for the specific language governing permissions and
20
 * limitations under the License.
21
 */
22
23
#include <winpr/crt.h>
24
#include <winpr/stream.h>
25
#include <freerdp/channels/log.h>
26
27
#define TAG CHANNELS_TAG("cliprdr.common")
28
29
#include "cliprdr_common.h"
30
31
static const char* CB_MSG_TYPE_STR(UINT32 type)
32
0
{
33
0
  switch (type)
34
0
  {
35
0
    case CB_TYPE_NONE:
36
0
      return "CB_TYPE_NONE";
37
0
    case CB_MONITOR_READY:
38
0
      return "CB_MONITOR_READY";
39
0
    case CB_FORMAT_LIST:
40
0
      return "CB_FORMAT_LIST";
41
0
    case CB_FORMAT_LIST_RESPONSE:
42
0
      return "CB_FORMAT_LIST_RESPONSE";
43
0
    case CB_FORMAT_DATA_REQUEST:
44
0
      return "CB_FORMAT_DATA_REQUEST";
45
0
    case CB_FORMAT_DATA_RESPONSE:
46
0
      return "CB_FORMAT_DATA_RESPONSE";
47
0
    case CB_TEMP_DIRECTORY:
48
0
      return "CB_TEMP_DIRECTORY";
49
0
    case CB_CLIP_CAPS:
50
0
      return "CB_CLIP_CAPS";
51
0
    case CB_FILECONTENTS_REQUEST:
52
0
      return "CB_FILECONTENTS_REQUEST";
53
0
    case CB_FILECONTENTS_RESPONSE:
54
0
      return "CB_FILECONTENTS_RESPONSE";
55
0
    case CB_LOCK_CLIPDATA:
56
0
      return "CB_LOCK_CLIPDATA";
57
0
    case CB_UNLOCK_CLIPDATA:
58
0
      return "CB_UNLOCK_CLIPDATA";
59
0
    default:
60
0
      return "UNKNOWN";
61
0
  }
62
0
}
63
64
const char* CB_MSG_TYPE_STRING(UINT16 type, char* buffer, size_t size)
65
0
{
66
0
  (void)_snprintf(buffer, size, "%s [0x%04" PRIx16 "]", CB_MSG_TYPE_STR(type), type);
67
0
  return buffer;
68
0
}
69
70
const char* CB_MSG_FLAGS_STRING(UINT16 msgFlags, char* buffer, size_t size)
71
0
{
72
0
  if ((msgFlags & CB_RESPONSE_OK) != 0)
73
0
    winpr_str_append("CB_RESPONSE_OK", buffer, size, "|");
74
0
  if ((msgFlags & CB_RESPONSE_FAIL) != 0)
75
0
    winpr_str_append("CB_RESPONSE_FAIL", buffer, size, "|");
76
0
  if ((msgFlags & CB_ASCII_NAMES) != 0)
77
0
    winpr_str_append("CB_ASCII_NAMES", buffer, size, "|");
78
79
0
  const size_t len = strnlen(buffer, size);
80
0
  if (!len)
81
0
    winpr_str_append("NONE", buffer, size, "");
82
83
0
  char val[32] = WINPR_C_ARRAY_INIT;
84
0
  (void)_snprintf(val, sizeof(val), "[0x%04" PRIx16 "]", msgFlags);
85
0
  winpr_str_append(val, buffer, size, "|");
86
0
  return buffer;
87
0
}
88
89
static BOOL cliprdr_validate_file_contents_request(const CLIPRDR_FILE_CONTENTS_REQUEST* request)
90
334
{
91
  /*
92
   * [MS-RDPECLIP] 2.2.5.3 File Contents Request PDU (CLIPRDR_FILECONTENTS_REQUEST).
93
   *
94
   * A request for the size of the file identified by the lindex field. The size MUST be
95
   * returned as a 64-bit, unsigned integer. The cbRequested field MUST be set to
96
   * 0x00000008 and both the nPositionLow and nPositionHigh fields MUST be
97
   * set to 0x00000000.
98
   */
99
100
334
  if (request->dwFlags & FILECONTENTS_SIZE)
101
266
  {
102
266
    if (request->cbRequested != sizeof(UINT64))
103
170
    {
104
170
      WLog_ERR(TAG, "cbRequested must be %" PRIuz ", got %" PRIu32 "", sizeof(UINT64),
105
170
               request->cbRequested);
106
170
      return FALSE;
107
170
    }
108
109
96
    if (request->nPositionHigh != 0 || request->nPositionLow != 0)
110
95
    {
111
95
      WLog_ERR(TAG, "nPositionHigh and nPositionLow must be set to 0");
112
95
      return FALSE;
113
95
    }
114
96
  }
115
116
69
  return TRUE;
117
334
}
118
119
wStream* cliprdr_packet_new(UINT16 msgType, UINT16 msgFlags, size_t dataLen)
120
0
{
121
0
  WINPR_ASSERT(dataLen < UINT32_MAX);
122
0
  wStream* s = Stream_New(nullptr, dataLen + 8ULL);
123
124
0
  if (!s)
125
0
  {
126
0
    WLog_ERR(TAG, "Stream_New failed!");
127
0
    return nullptr;
128
0
  }
129
130
0
  Stream_Write_UINT16(s, msgType);
131
0
  Stream_Write_UINT16(s, msgFlags);
132
  /* Write actual length after the entire packet has been constructed. */
133
0
  Stream_Write_UINT32(s, 0);
134
0
  return s;
135
0
}
136
137
static void cliprdr_write_file_contents_request(wStream* s,
138
                                                const CLIPRDR_FILE_CONTENTS_REQUEST* request)
139
0
{
140
0
  Stream_Write_UINT32(s, request->streamId);      /* streamId (4 bytes) */
141
0
  Stream_Write_UINT32(s, request->listIndex);     /* listIndex (4 bytes) */
142
0
  Stream_Write_UINT32(s, request->dwFlags);       /* dwFlags (4 bytes) */
143
0
  Stream_Write_UINT32(s, request->nPositionLow);  /* nPositionLow (4 bytes) */
144
0
  Stream_Write_UINT32(s, request->nPositionHigh); /* nPositionHigh (4 bytes) */
145
0
  Stream_Write_UINT32(s, request->cbRequested);   /* cbRequested (4 bytes) */
146
147
0
  if (request->haveClipDataId)
148
0
    Stream_Write_UINT32(s, request->clipDataId); /* clipDataId (4 bytes) */
149
0
}
150
151
static inline void cliprdr_write_lock_unlock_clipdata(wStream* s, UINT32 clipDataId)
152
0
{
153
0
  Stream_Write_UINT32(s, clipDataId);
154
0
}
155
156
static void cliprdr_write_lock_clipdata(wStream* s,
157
                                        const CLIPRDR_LOCK_CLIPBOARD_DATA* lockClipboardData)
158
0
{
159
0
  cliprdr_write_lock_unlock_clipdata(s, lockClipboardData->clipDataId);
160
0
}
161
162
static void cliprdr_write_unlock_clipdata(wStream* s,
163
                                          const CLIPRDR_UNLOCK_CLIPBOARD_DATA* unlockClipboardData)
164
0
{
165
0
  cliprdr_write_lock_unlock_clipdata(s, unlockClipboardData->clipDataId);
166
0
}
167
168
static void cliprdr_write_file_contents_response(wStream* s,
169
                                                 const CLIPRDR_FILE_CONTENTS_RESPONSE* response)
170
0
{
171
0
  Stream_Write_UINT32(s, response->streamId); /* streamId (4 bytes) */
172
0
  Stream_Write(s, response->requestedData, response->cbRequested);
173
0
}
174
175
wStream* cliprdr_packet_lock_clipdata_new(const CLIPRDR_LOCK_CLIPBOARD_DATA* lockClipboardData)
176
0
{
177
0
  wStream* s = nullptr;
178
179
0
  if (!lockClipboardData)
180
0
    return nullptr;
181
182
0
  s = cliprdr_packet_new(CB_LOCK_CLIPDATA, 0, 4);
183
184
0
  if (!s)
185
0
    return nullptr;
186
187
0
  cliprdr_write_lock_clipdata(s, lockClipboardData);
188
0
  return s;
189
0
}
190
191
wStream*
192
cliprdr_packet_unlock_clipdata_new(const CLIPRDR_UNLOCK_CLIPBOARD_DATA* unlockClipboardData)
193
0
{
194
0
  wStream* s = nullptr;
195
196
0
  if (!unlockClipboardData)
197
0
    return nullptr;
198
199
0
  s = cliprdr_packet_new(CB_UNLOCK_CLIPDATA, 0, 4);
200
201
0
  if (!s)
202
0
    return nullptr;
203
204
0
  cliprdr_write_unlock_clipdata(s, unlockClipboardData);
205
0
  return s;
206
0
}
207
208
wStream* cliprdr_packet_file_contents_request_new(const CLIPRDR_FILE_CONTENTS_REQUEST* request)
209
0
{
210
0
  wStream* s = nullptr;
211
212
0
  if (!request)
213
0
    return nullptr;
214
215
0
  s = cliprdr_packet_new(CB_FILECONTENTS_REQUEST, 0, 28);
216
217
0
  if (!s)
218
0
    return nullptr;
219
220
0
  cliprdr_write_file_contents_request(s, request);
221
0
  return s;
222
0
}
223
224
wStream* cliprdr_packet_file_contents_response_new(const CLIPRDR_FILE_CONTENTS_RESPONSE* response)
225
0
{
226
0
  wStream* s = nullptr;
227
228
0
  if (!response)
229
0
    return nullptr;
230
231
0
  s = cliprdr_packet_new(CB_FILECONTENTS_RESPONSE, response->common.msgFlags,
232
0
                         4 + response->cbRequested);
233
234
0
  if (!s)
235
0
    return nullptr;
236
237
0
  cliprdr_write_file_contents_response(s, response);
238
0
  return s;
239
0
}
240
241
wStream* cliprdr_packet_format_list_new(const CLIPRDR_FORMAT_LIST* formatList,
242
                                        BOOL useLongFormatNames, BOOL useAsciiNames)
243
0
{
244
0
  WINPR_ASSERT(formatList);
245
246
0
  if (formatList->common.msgType != CB_FORMAT_LIST)
247
0
    WLog_WARN(TAG, "called with invalid type %08" PRIx32, formatList->common.msgType);
248
249
0
  if (useLongFormatNames && useAsciiNames)
250
0
    WLog_WARN(TAG, "called with invalid arguments useLongFormatNames=true && "
251
0
                   "useAsciiNames=true. useAsciiNames requires "
252
0
                   "useLongFormatNames=false, ignoring argument.");
253
254
0
  const UINT32 length = formatList->numFormats * 36;
255
0
  const size_t formatNameCharSize =
256
0
      (useLongFormatNames || !useAsciiNames) ? sizeof(WCHAR) : sizeof(CHAR);
257
258
0
  wStream* s = cliprdr_packet_new(CB_FORMAT_LIST, 0, length);
259
0
  if (!s)
260
0
  {
261
0
    WLog_ERR(TAG, "cliprdr_packet_new failed!");
262
0
    return nullptr;
263
0
  }
264
265
0
  for (UINT32 index = 0; index < formatList->numFormats; index++)
266
0
  {
267
0
    const CLIPRDR_FORMAT* format = &(formatList->formats[index]);
268
269
0
    const char* szFormatName = format->formatName;
270
0
    size_t formatNameLength = 0;
271
0
    size_t formatNameStrLength = 0;
272
0
    if (szFormatName)
273
0
    {
274
0
      formatNameStrLength = strlen(szFormatName);
275
0
      const SSIZE_T wlen = ConvertUtf8ToWChar(szFormatName, nullptr, 0);
276
0
      if (wlen < 0)
277
0
        goto fail;
278
0
      formatNameLength = WINPR_ASSERTING_INT_CAST(size_t, wlen);
279
0
    }
280
281
0
    size_t formatNameMaxLength = formatNameLength + 1; /* Ensure '\0' termination in output */
282
0
    if (!Stream_EnsureRemainingCapacity(s,
283
0
                                        4 + MAX(32, formatNameMaxLength * formatNameCharSize)))
284
0
      goto fail;
285
286
0
    Stream_Write_UINT32(s, format->formatId); /* formatId (4 bytes) */
287
288
0
    if (!useLongFormatNames)
289
0
    {
290
0
      formatNameMaxLength = useAsciiNames ? 32 : 16;
291
0
      formatNameLength = MIN(formatNameMaxLength - 1, formatNameLength);
292
0
    }
293
294
0
    if (szFormatName && (formatNameLength > 0))
295
0
    {
296
0
      if (useAsciiNames)
297
0
      {
298
0
        Stream_Write(s, szFormatName, formatNameLength);
299
0
        Stream_Zero(s, formatNameMaxLength - formatNameLength);
300
0
      }
301
0
      else
302
0
      {
303
0
        const size_t formatNameWriteLength =
304
0
            MIN(formatNameStrLength, formatNameMaxLength - 1);
305
0
        if (Stream_Write_UTF16_String_From_UTF8(s, formatNameMaxLength, szFormatName,
306
0
                                                formatNameWriteLength, TRUE) < 0)
307
0
          goto fail;
308
0
      }
309
0
    }
310
0
    else
311
0
      Stream_Zero(s, formatNameMaxLength * formatNameCharSize);
312
0
  }
313
314
0
  return s;
315
316
0
fail:
317
0
  Stream_Free(s, TRUE);
318
0
  return nullptr;
319
0
}
320
321
UINT cliprdr_read_unlock_clipdata(wStream* s, CLIPRDR_UNLOCK_CLIPBOARD_DATA* unlockClipboardData)
322
64
{
323
64
  if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
324
6
    return ERROR_INVALID_DATA;
325
326
58
  Stream_Read_UINT32(s, unlockClipboardData->clipDataId); /* clipDataId (4 bytes) */
327
58
  return CHANNEL_RC_OK;
328
64
}
329
330
UINT cliprdr_read_format_data_request(wStream* s, CLIPRDR_FORMAT_DATA_REQUEST* request)
331
56
{
332
56
  if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
333
4
    return ERROR_INVALID_DATA;
334
335
52
  Stream_Read_UINT32(s, request->requestedFormatId); /* requestedFormatId (4 bytes) */
336
52
  return CHANNEL_RC_OK;
337
56
}
338
339
UINT cliprdr_read_format_data_response(wStream* s, CLIPRDR_FORMAT_DATA_RESPONSE* response)
340
29
{
341
29
  response->requestedFormatData = nullptr;
342
343
29
  if (!Stream_CheckAndLogRequiredLength(TAG, s, response->common.dataLen))
344
0
    return ERROR_INVALID_DATA;
345
346
29
  if (response->common.dataLen > 0)
347
27
  {
348
27
    response->requestedFormatData = Stream_ConstPointer(s);
349
27
    if (!Stream_SafeSeek(s, response->common.dataLen))
350
0
      return ERROR_INVALID_DATA;
351
27
  }
352
29
  return CHANNEL_RC_OK;
353
29
}
354
355
UINT cliprdr_read_file_contents_request(wStream* s, CLIPRDR_FILE_CONTENTS_REQUEST* request)
356
341
{
357
341
  if (!Stream_CheckAndLogRequiredLength(TAG, s, 24))
358
7
    return ERROR_INVALID_DATA;
359
360
334
  request->haveClipDataId = FALSE;
361
334
  Stream_Read_UINT32(s, request->streamId);      /* streamId (4 bytes) */
362
334
  Stream_Read_UINT32(s, request->listIndex);     /* listIndex (4 bytes) */
363
334
  Stream_Read_UINT32(s, request->dwFlags);       /* dwFlags (4 bytes) */
364
334
  Stream_Read_UINT32(s, request->nPositionLow);  /* nPositionLow (4 bytes) */
365
334
  Stream_Read_UINT32(s, request->nPositionHigh); /* nPositionHigh (4 bytes) */
366
334
  Stream_Read_UINT32(s, request->cbRequested);   /* cbRequested (4 bytes) */
367
368
334
  if (Stream_GetRemainingLength(s) >= 4)
369
198
  {
370
198
    Stream_Read_UINT32(s, request->clipDataId); /* clipDataId (4 bytes) */
371
198
    request->haveClipDataId = TRUE;
372
198
  }
373
374
334
  if (!cliprdr_validate_file_contents_request(request))
375
265
    return ERROR_BAD_ARGUMENTS;
376
377
69
  return CHANNEL_RC_OK;
378
334
}
379
380
UINT cliprdr_read_file_contents_response(wStream* s, CLIPRDR_FILE_CONTENTS_RESPONSE* response)
381
66
{
382
66
  if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
383
5
    return ERROR_INVALID_DATA;
384
385
61
  Stream_Read_UINT32(s, response->streamId);   /* streamId (4 bytes) */
386
61
  response->requestedData = Stream_ConstPointer(s); /* requestedFileContentsData */
387
388
61
  if (response->common.dataLen < 4)
389
0
  {
390
0
    WLog_WARN(TAG, "dataLen=%" PRIu32 " but expected >= 4", response->common.dataLen);
391
0
    return ERROR_INVALID_DATA;
392
0
  }
393
394
61
  response->cbRequested = response->common.dataLen - 4;
395
61
  if (!Stream_CheckAndLogRequiredLength(TAG, s, response->cbRequested))
396
0
    return ERROR_INVALID_DATA;
397
61
  Stream_Seek(s, response->cbRequested);
398
61
  return CHANNEL_RC_OK;
399
61
}
400
401
UINT cliprdr_read_format_list(wLog* log, wStream* s, CLIPRDR_FORMAT_LIST* formatList,
402
                              BOOL useLongFormatNames)
403
532
{
404
532
  UINT32 index = 0;
405
532
  size_t formatNameLength = 0;
406
532
  const char* szFormatName = nullptr;
407
532
  const WCHAR* wszFormatName = nullptr;
408
532
  wStream sub1buffer = WINPR_C_ARRAY_INIT;
409
532
  CLIPRDR_FORMAT* formats = nullptr;
410
532
  UINT error = ERROR_INTERNAL_ERROR;
411
412
532
  const BOOL asciiNames = (formatList->common.msgFlags & CB_ASCII_NAMES) != 0;
413
414
532
  index = 0;
415
  /* empty format list */
416
532
  formatList->formats = nullptr;
417
532
  formatList->numFormats = 0;
418
419
532
  wStream* sub1 =
420
532
      Stream_StaticConstInit(&sub1buffer, Stream_ConstPointer(s), formatList->common.dataLen);
421
532
  if (!Stream_SafeSeek(s, formatList->common.dataLen))
422
0
    return ERROR_INVALID_DATA;
423
424
532
  if (!formatList->common.dataLen)
425
1
  {
426
1
  }
427
531
  else if (!useLongFormatNames)
428
134
  {
429
134
    const size_t cap = Stream_Capacity(sub1) / 36ULL;
430
134
    if (cap > UINT32_MAX)
431
0
    {
432
0
      WLog_Print(log, WLOG_ERROR, "Invalid short format list length: %" PRIuz "", cap);
433
0
      return ERROR_INTERNAL_ERROR;
434
0
    }
435
134
    formatList->numFormats = (UINT32)cap;
436
437
134
    if (formatList->numFormats)
438
121
      formats = (CLIPRDR_FORMAT*)calloc(formatList->numFormats, sizeof(CLIPRDR_FORMAT));
439
440
134
    if (!formats)
441
13
    {
442
13
      WLog_Print(log, WLOG_ERROR, "calloc failed!");
443
13
      return CHANNEL_RC_NO_MEMORY;
444
13
    }
445
446
121
    formatList->formats = formats;
447
448
175k
    while (Stream_GetRemainingLength(sub1) >= 4)
449
175k
    {
450
175k
      if (index >= formatList->numFormats)
451
29
        goto error_out;
452
453
175k
      CLIPRDR_FORMAT* format = &formats[index];
454
455
175k
      Stream_Read_UINT32(sub1, format->formatId); /* formatId (4 bytes) */
456
457
      /* According to MS-RDPECLIP 2.2.3.1.1.1 formatName is "a 32-byte block containing
458
       * the *null-terminated* name assigned to the Clipboard Format: (32 ASCII 8 characters
459
       * or 16 Unicode characters)"
460
       * However, both Windows RDSH and mstsc violate this specs as seen in the following
461
       * example of a transferred short format name string: [R.i.c.h. .T.e.x.t. .F.o.r.m.a.t.]
462
       * These are 16 unicode characters - *without* terminating null !
463
       */
464
465
175k
      szFormatName = Stream_ConstPointer(sub1);
466
175k
      wszFormatName = Stream_ConstPointer(sub1);
467
175k
      if (!Stream_SafeSeek(sub1, 32))
468
0
        goto error_out;
469
470
175k
      free(format->formatName);
471
175k
      format->formatName = nullptr;
472
473
175k
      if (asciiNames)
474
0
      {
475
0
        if (szFormatName[0])
476
0
        {
477
          /* ensure null termination */
478
0
          format->formatName = strndup(szFormatName, 31);
479
0
          if (!format->formatName)
480
0
          {
481
0
            WLog_Print(log, WLOG_ERROR, "malloc failed!");
482
0
            error = CHANNEL_RC_NO_MEMORY;
483
0
            goto error_out;
484
0
          }
485
0
        }
486
0
      }
487
175k
      else
488
175k
      {
489
175k
        if (wszFormatName[0])
490
97.3k
        {
491
97.3k
          format->formatName = ConvertWCharNToUtf8Alloc(wszFormatName, 16, nullptr);
492
97.3k
          if (!format->formatName)
493
48
            goto error_out;
494
97.3k
        }
495
175k
      }
496
497
175k
      index++;
498
175k
    }
499
121
  }
500
397
  else
501
397
  {
502
397
    wStream sub2buffer = sub1buffer;
503
397
    wStream* sub2 = &sub2buffer;
504
505
    /* Bound must match the read pass below: some clients pad the format list with
506
     * trailing bytes that do not start another entry. */
507
1.01M
    while (Stream_GetRemainingLength(sub1) >= 4)
508
1.01M
    {
509
1.01M
      size_t rest = 0;
510
1.01M
      if (!Stream_SafeSeek(sub1, 4)) /* formatId (4 bytes) */
511
0
        goto error_out;
512
513
1.01M
      wszFormatName = Stream_ConstPointer(sub1);
514
1.01M
      rest = Stream_GetRemainingLength(sub1);
515
1.01M
      formatNameLength = _wcsnlen(wszFormatName, rest / sizeof(WCHAR));
516
517
1.01M
      if (!Stream_SafeSeek(sub1, (formatNameLength + 1) * sizeof(WCHAR)))
518
51
        goto error_out;
519
1.01M
      formatList->numFormats++;
520
1.01M
    }
521
522
346
    if (formatList->numFormats)
523
342
      formats = (CLIPRDR_FORMAT*)calloc(formatList->numFormats, sizeof(CLIPRDR_FORMAT));
524
525
346
    if (!formats)
526
4
    {
527
4
      WLog_Print(log, WLOG_ERROR, "calloc failed!");
528
4
      return CHANNEL_RC_NO_MEMORY;
529
4
    }
530
531
342
    formatList->formats = formats;
532
533
816k
    while (Stream_GetRemainingLength(sub2) >= 4)
534
816k
    {
535
816k
      if (index >= formatList->numFormats)
536
0
        goto error_out;
537
538
816k
      size_t rest = 0;
539
816k
      CLIPRDR_FORMAT* format = &formats[index];
540
541
816k
      Stream_Read_UINT32(sub2, format->formatId); /* formatId (4 bytes) */
542
543
816k
      free(format->formatName);
544
816k
      format->formatName = nullptr;
545
546
816k
      wszFormatName = Stream_ConstPointer(sub2);
547
816k
      rest = Stream_GetRemainingLength(sub2);
548
816k
      formatNameLength = _wcsnlen(wszFormatName, rest / sizeof(WCHAR));
549
816k
      if (!Stream_SafeSeek(sub2, (formatNameLength + 1) * sizeof(WCHAR)))
550
0
        goto error_out;
551
552
816k
      if (formatNameLength)
553
4.85k
      {
554
4.85k
        format->formatName =
555
4.85k
            ConvertWCharNToUtf8Alloc(wszFormatName, formatNameLength, nullptr);
556
4.85k
        if (!format->formatName)
557
75
          goto error_out;
558
4.85k
      }
559
560
815k
      index++;
561
815k
    }
562
342
  }
563
564
312
  return CHANNEL_RC_OK;
565
566
203
error_out:
567
203
  cliprdr_free_format_list(formatList);
568
203
  return error;
569
532
}
570
571
void cliprdr_free_format_list(CLIPRDR_FORMAT_LIST* formatList)
572
515
{
573
515
  if (formatList == nullptr)
574
0
    return;
575
576
515
  if (formatList->formats)
577
463
  {
578
1.26M
    for (UINT32 index = 0; index < formatList->numFormats; index++)
579
1.26M
    {
580
1.26M
      free(formatList->formats[index].formatName);
581
1.26M
    }
582
583
463
    free(formatList->formats);
584
463
    formatList->formats = nullptr;
585
463
    formatList->numFormats = 0;
586
463
  }
587
515
}