24#include <winpr/stream.h>
25#include <freerdp/channels/log.h>
27#define TAG CHANNELS_TAG("cliprdr.common")
29#include "cliprdr_common.h"
31static const char* CB_MSG_TYPE_STR(UINT32 type)
36 return "CB_TYPE_NONE";
37 case CB_MONITOR_READY:
38 return "CB_MONITOR_READY";
40 return "CB_FORMAT_LIST";
41 case CB_FORMAT_LIST_RESPONSE:
42 return "CB_FORMAT_LIST_RESPONSE";
43 case CB_FORMAT_DATA_REQUEST:
44 return "CB_FORMAT_DATA_REQUEST";
45 case CB_FORMAT_DATA_RESPONSE:
46 return "CB_FORMAT_DATA_RESPONSE";
47 case CB_TEMP_DIRECTORY:
48 return "CB_TEMP_DIRECTORY";
50 return "CB_CLIP_CAPS";
51 case CB_FILECONTENTS_REQUEST:
52 return "CB_FILECONTENTS_REQUEST";
53 case CB_FILECONTENTS_RESPONSE:
54 return "CB_FILECONTENTS_RESPONSE";
55 case CB_LOCK_CLIPDATA:
56 return "CB_LOCK_CLIPDATA";
57 case CB_UNLOCK_CLIPDATA:
58 return "CB_UNLOCK_CLIPDATA";
64const char* CB_MSG_TYPE_STRING(UINT16 type,
char* buffer,
size_t size)
66 (void)_snprintf(buffer, size,
"%s [0x%04" PRIx16
"]", CB_MSG_TYPE_STR(type), type);
70const char* CB_MSG_FLAGS_STRING(UINT16 msgFlags,
char* buffer,
size_t size)
72 if ((msgFlags & CB_RESPONSE_OK) != 0)
73 winpr_str_append(
"CB_RESPONSE_OK", buffer, size,
"|");
74 if ((msgFlags & CB_RESPONSE_FAIL) != 0)
75 winpr_str_append(
"CB_RESPONSE_FAIL", buffer, size,
"|");
76 if ((msgFlags & CB_ASCII_NAMES) != 0)
77 winpr_str_append(
"CB_ASCII_NAMES", buffer, size,
"|");
79 const size_t len = strnlen(buffer, size);
81 winpr_str_append(
"NONE", buffer, size,
"");
83 char val[32] = WINPR_C_ARRAY_INIT;
84 (void)_snprintf(val,
sizeof(val),
"[0x%04" PRIx16
"]", msgFlags);
85 winpr_str_append(val, buffer, size,
"|");
100 if (request->dwFlags & FILECONTENTS_SIZE)
102 if (request->cbRequested !=
sizeof(UINT64))
104 WLog_ERR(TAG,
"cbRequested must be %" PRIuz
", got %" PRIu32
"",
sizeof(UINT64),
105 request->cbRequested);
109 if (request->nPositionHigh != 0 || request->nPositionLow != 0)
111 WLog_ERR(TAG,
"nPositionHigh and nPositionLow must be set to 0");
119wStream* cliprdr_packet_new(UINT16 msgType, UINT16 msgFlags,
size_t dataLen)
121 WINPR_ASSERT(dataLen < UINT32_MAX);
122 wStream* s = Stream_New(
nullptr, dataLen + 8ULL);
126 WLog_ERR(TAG,
"Stream_New failed!");
130 Stream_Write_UINT16(s, msgType);
131 Stream_Write_UINT16(s, msgFlags);
133 Stream_Write_UINT32(s, 0);
137static void cliprdr_write_file_contents_request(
wStream* s,
140 Stream_Write_UINT32(s, request->streamId);
141 Stream_Write_UINT32(s, request->listIndex);
142 Stream_Write_UINT32(s, request->dwFlags);
143 Stream_Write_UINT32(s, request->nPositionLow);
144 Stream_Write_UINT32(s, request->nPositionHigh);
145 Stream_Write_UINT32(s, request->cbRequested);
147 if (request->haveClipDataId)
148 Stream_Write_UINT32(s, request->clipDataId);
151static inline void cliprdr_write_lock_unlock_clipdata(
wStream* s, UINT32 clipDataId)
153 Stream_Write_UINT32(s, clipDataId);
156static void cliprdr_write_lock_clipdata(
wStream* s,
159 cliprdr_write_lock_unlock_clipdata(s, lockClipboardData->clipDataId);
162static void cliprdr_write_unlock_clipdata(
wStream* s,
165 cliprdr_write_lock_unlock_clipdata(s, unlockClipboardData->clipDataId);
168static void cliprdr_write_file_contents_response(
wStream* s,
171 Stream_Write_UINT32(s, response->streamId);
172 Stream_Write(s, response->requestedData, response->cbRequested);
179 if (!lockClipboardData)
182 s = cliprdr_packet_new(CB_LOCK_CLIPDATA, 0, 4);
187 cliprdr_write_lock_clipdata(s, lockClipboardData);
196 if (!unlockClipboardData)
199 s = cliprdr_packet_new(CB_UNLOCK_CLIPDATA, 0, 4);
204 cliprdr_write_unlock_clipdata(s, unlockClipboardData);
215 s = cliprdr_packet_new(CB_FILECONTENTS_REQUEST, 0, 28);
220 cliprdr_write_file_contents_request(s, request);
231 s = cliprdr_packet_new(CB_FILECONTENTS_RESPONSE, response->common.msgFlags,
232 4 + response->cbRequested);
237 cliprdr_write_file_contents_response(s, response);
242 BOOL useLongFormatNames, BOOL useAsciiNames)
244 WINPR_ASSERT(formatList);
246 if (formatList->common.msgType != CB_FORMAT_LIST)
247 WLog_WARN(TAG,
"called with invalid type %08" PRIx32, formatList->common.msgType);
249 if (useLongFormatNames && useAsciiNames)
250 WLog_WARN(TAG,
"called with invalid arguments useLongFormatNames=true && "
251 "useAsciiNames=true. useAsciiNames requires "
252 "useLongFormatNames=false, ignoring argument.");
254 const UINT32 length = formatList->numFormats * 36;
255 const size_t formatNameCharSize =
256 (useLongFormatNames || !useAsciiNames) ?
sizeof(WCHAR) :
sizeof(CHAR);
258 wStream* s = cliprdr_packet_new(CB_FORMAT_LIST, 0, length);
261 WLog_ERR(TAG,
"cliprdr_packet_new failed!");
265 for (UINT32 index = 0; index < formatList->numFormats; index++)
269 const char* szFormatName = format->formatName;
270 size_t formatNameLength = 0;
271 size_t formatNameStrLength = 0;
274 formatNameStrLength = strlen(szFormatName);
275 const SSIZE_T wlen = ConvertUtf8ToWChar(szFormatName,
nullptr, 0);
278 formatNameLength = WINPR_ASSERTING_INT_CAST(
size_t, wlen);
281 size_t formatNameMaxLength = formatNameLength + 1;
282 if (!Stream_EnsureRemainingCapacity(s,
283 4 + MAX(32, formatNameMaxLength * formatNameCharSize)))
286 Stream_Write_UINT32(s, format->formatId);
288 if (!useLongFormatNames)
290 formatNameMaxLength = useAsciiNames ? 32 : 16;
291 formatNameLength = MIN(formatNameMaxLength - 1, formatNameLength);
294 if (szFormatName && (formatNameLength > 0))
298 Stream_Write(s, szFormatName, formatNameLength);
299 Stream_Zero(s, formatNameMaxLength - formatNameLength);
303 const size_t formatNameWriteLength =
304 MIN(formatNameStrLength, formatNameMaxLength - 1);
305 if (Stream_Write_UTF16_String_From_UTF8(s, formatNameMaxLength, szFormatName,
306 formatNameWriteLength, TRUE) < 0)
311 Stream_Zero(s, formatNameMaxLength * formatNameCharSize);
317 Stream_Free(s, TRUE);
323 if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
324 return ERROR_INVALID_DATA;
326 Stream_Read_UINT32(s, unlockClipboardData->clipDataId);
327 return CHANNEL_RC_OK;
332 if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
333 return ERROR_INVALID_DATA;
335 Stream_Read_UINT32(s, request->requestedFormatId);
336 return CHANNEL_RC_OK;
341 response->requestedFormatData =
nullptr;
343 if (!Stream_CheckAndLogRequiredLength(TAG, s, response->common.dataLen))
344 return ERROR_INVALID_DATA;
346 if (response->common.dataLen > 0)
348 response->requestedFormatData = Stream_ConstPointer(s);
349 if (!Stream_SafeSeek(s, response->common.dataLen))
350 return ERROR_INVALID_DATA;
352 return CHANNEL_RC_OK;
357 if (!Stream_CheckAndLogRequiredLength(TAG, s, 24))
358 return ERROR_INVALID_DATA;
360 request->haveClipDataId = FALSE;
361 Stream_Read_UINT32(s, request->streamId);
362 Stream_Read_UINT32(s, request->listIndex);
363 Stream_Read_UINT32(s, request->dwFlags);
364 Stream_Read_UINT32(s, request->nPositionLow);
365 Stream_Read_UINT32(s, request->nPositionHigh);
366 Stream_Read_UINT32(s, request->cbRequested);
368 if (Stream_GetRemainingLength(s) >= 4)
370 Stream_Read_UINT32(s, request->clipDataId);
371 request->haveClipDataId = TRUE;
374 if (!cliprdr_validate_file_contents_request(request))
375 return ERROR_BAD_ARGUMENTS;
377 return CHANNEL_RC_OK;
382 if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
383 return ERROR_INVALID_DATA;
385 Stream_Read_UINT32(s, response->streamId);
386 response->requestedData = Stream_ConstPointer(s);
388 if (response->common.dataLen < 4)
390 WLog_WARN(TAG,
"dataLen=%" PRIu32
" but expected >= 4", response->common.dataLen);
391 return ERROR_INVALID_DATA;
394 response->cbRequested = response->common.dataLen - 4;
395 if (!Stream_CheckAndLogRequiredLength(TAG, s, response->cbRequested))
396 return ERROR_INVALID_DATA;
397 Stream_Seek(s, response->cbRequested);
398 return CHANNEL_RC_OK;
402 BOOL useLongFormatNames)
405 size_t formatNameLength = 0;
406 const char* szFormatName =
nullptr;
407 const WCHAR* wszFormatName =
nullptr;
408 wStream sub1buffer = WINPR_C_ARRAY_INIT;
410 UINT error = ERROR_INTERNAL_ERROR;
412 const BOOL asciiNames = (formatList->common.msgFlags & CB_ASCII_NAMES) != 0;
416 formatList->formats =
nullptr;
417 formatList->numFormats = 0;
420 Stream_StaticConstInit(&sub1buffer, Stream_ConstPointer(s), formatList->common.dataLen);
421 if (!Stream_SafeSeek(s, formatList->common.dataLen))
422 return ERROR_INVALID_DATA;
424 if (!formatList->common.dataLen)
427 else if (!useLongFormatNames)
429 const size_t cap = Stream_Capacity(sub1) / 36ULL;
430 if (cap > UINT32_MAX)
432 WLog_Print(log, WLOG_ERROR,
"Invalid short format list length: %" PRIuz
"", cap);
433 return ERROR_INTERNAL_ERROR;
435 formatList->numFormats = (UINT32)cap;
437 if (formatList->numFormats)
442 WLog_Print(log, WLOG_ERROR,
"calloc failed!");
443 return CHANNEL_RC_NO_MEMORY;
446 formatList->formats = formats;
448 while (Stream_GetRemainingLength(sub1) >= 4)
450 if (index >= formatList->numFormats)
455 Stream_Read_UINT32(sub1, format->formatId);
465 szFormatName = Stream_ConstPointer(sub1);
466 wszFormatName = Stream_ConstPointer(sub1);
467 if (!Stream_SafeSeek(sub1, 32))
470 free(format->formatName);
471 format->formatName =
nullptr;
478 format->formatName = strndup(szFormatName, 31);
479 if (!format->formatName)
481 WLog_Print(log, WLOG_ERROR,
"malloc failed!");
482 error = CHANNEL_RC_NO_MEMORY;
489 if (wszFormatName[0])
491 format->formatName = ConvertWCharNToUtf8Alloc(wszFormatName, 16,
nullptr);
492 if (!format->formatName)
502 wStream sub2buffer = sub1buffer;
507 while (Stream_GetRemainingLength(sub1) >= 4)
510 if (!Stream_SafeSeek(sub1, 4))
513 wszFormatName = Stream_ConstPointer(sub1);
514 rest = Stream_GetRemainingLength(sub1);
515 formatNameLength = _wcsnlen(wszFormatName, rest /
sizeof(WCHAR));
517 if (!Stream_SafeSeek(sub1, (formatNameLength + 1) *
sizeof(WCHAR)))
519 formatList->numFormats++;
522 if (formatList->numFormats)
527 WLog_Print(log, WLOG_ERROR,
"calloc failed!");
528 return CHANNEL_RC_NO_MEMORY;
531 formatList->formats = formats;
533 while (Stream_GetRemainingLength(sub2) >= 4)
535 if (index >= formatList->numFormats)
541 Stream_Read_UINT32(sub2, format->formatId);
543 free(format->formatName);
544 format->formatName =
nullptr;
546 wszFormatName = Stream_ConstPointer(sub2);
547 rest = Stream_GetRemainingLength(sub2);
548 formatNameLength = _wcsnlen(wszFormatName, rest /
sizeof(WCHAR));
549 if (!Stream_SafeSeek(sub2, (formatNameLength + 1) *
sizeof(WCHAR)))
552 if (formatNameLength)
555 ConvertWCharNToUtf8Alloc(wszFormatName, formatNameLength,
nullptr);
556 if (!format->formatName)
564 return CHANNEL_RC_OK;
567 cliprdr_free_format_list(formatList);
573 if (formatList ==
nullptr)
576 if (formatList->formats)
578 for (UINT32 index = 0; index < formatList->numFormats; index++)
580 free(formatList->formats[index].formatName);
583 free(formatList->formats);
584 formatList->formats =
nullptr;
585 formatList->numFormats = 0;