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