Coverage Report

Created: 2026-09-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/FreeRDP/libfreerdp/core/message.c
Line
Count
Source
1
/**
2
 * FreeRDP: A Remote Desktop Protocol Implementation
3
 * Asynchronous Message Queue
4
 *
5
 * Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6
 * Copyright 2017 Armin Novak <armin.novak@thincast.com>
7
 * Copyright 2017 Thincast Technologies GmbH
8
 *
9
 * Licensed under the Apache License, Version 2.0 (the "License");
10
 * you may not use this file except in compliance with the License.
11
 * You may obtain a copy of the License at
12
 *
13
 *     http://www.apache.org/licenses/LICENSE-2.0
14
 *
15
 * Unless required by applicable law or agreed to in writing, software
16
 * distributed under the License is distributed on an "AS IS" BASIS,
17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
 * See the License for the specific language governing permissions and
19
 * limitations under the License.
20
 */
21
22
#include <freerdp/config.h>
23
24
#include <winpr/assert.h>
25
26
#include "rdp.h"
27
#include "message.h"
28
#include "transport.h"
29
30
#include <freerdp/log.h>
31
#include <freerdp/freerdp.h>
32
33
#include <winpr/crt.h>
34
#include <winpr/stream.h>
35
#include <winpr/collections.h>
36
37
#include "../cache/pointer.h"
38
#include "../cache/bitmap.h"
39
#include "../cache/palette.h"
40
#include "../cache/glyph.h"
41
#include "../cache/brush.h"
42
#include "../cache/cache.h"
43
44
#define TAG FREERDP_TAG("core.message")
45
46
/* Update */
47
48
static BOOL update_message_BeginPaint(rdpContext* context)
49
0
{
50
0
  rdp_update_internal* up = nullptr;
51
52
0
  if (!context || !context->update)
53
0
    return FALSE;
54
55
0
  up = update_cast(context->update);
56
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, BeginPaint), nullptr,
57
0
                           nullptr);
58
0
}
59
60
static BOOL update_message_EndPaint(rdpContext* context)
61
0
{
62
0
  rdp_update_internal* up = nullptr;
63
64
0
  if (!context || !context->update)
65
0
    return FALSE;
66
67
0
  up = update_cast(context->update);
68
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, EndPaint), nullptr,
69
0
                           nullptr);
70
0
}
71
72
static BOOL update_message_SetBounds(rdpContext* context, const rdpBounds* bounds)
73
0
{
74
0
  rdpBounds* wParam = nullptr;
75
0
  rdp_update_internal* up = nullptr;
76
77
0
  if (!context || !context->update)
78
0
    return FALSE;
79
80
0
  if (bounds)
81
0
  {
82
0
    wParam = (rdpBounds*)malloc(sizeof(rdpBounds));
83
84
0
    if (!wParam)
85
0
      return FALSE;
86
87
0
    CopyMemory(wParam, bounds, sizeof(rdpBounds));
88
0
  }
89
90
0
  up = update_cast(context->update);
91
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, SetBounds),
92
0
                           (void*)wParam, nullptr);
93
0
}
94
95
static BOOL update_message_Synchronize(rdpContext* context)
96
0
{
97
0
  rdp_update_internal* up = nullptr;
98
99
0
  if (!context || !context->update)
100
0
    return FALSE;
101
102
0
  up = update_cast(context->update);
103
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, Synchronize), nullptr,
104
0
                           nullptr);
105
0
}
106
107
static BOOL update_message_DesktopResize(rdpContext* context)
108
0
{
109
0
  rdp_update_internal* up = nullptr;
110
111
0
  if (!context || !context->update)
112
0
    return FALSE;
113
114
0
  up = update_cast(context->update);
115
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, DesktopResize),
116
0
                           nullptr, nullptr);
117
0
}
118
119
static BOOL update_message_BitmapUpdate(rdpContext* context, const BITMAP_UPDATE* bitmap)
120
0
{
121
0
  BITMAP_UPDATE* wParam = nullptr;
122
0
  rdp_update_internal* up = nullptr;
123
124
0
  if (!context || !context->update || !bitmap)
125
0
    return FALSE;
126
127
0
  wParam = copy_bitmap_update(context, bitmap);
128
129
0
  if (!wParam)
130
0
    return FALSE;
131
132
0
  up = update_cast(context->update);
133
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, BitmapUpdate),
134
0
                           (void*)wParam, nullptr);
135
0
}
136
137
static BOOL update_message_Palette(rdpContext* context, const PALETTE_UPDATE* palette)
138
0
{
139
0
  PALETTE_UPDATE* wParam = nullptr;
140
0
  rdp_update_internal* up = nullptr;
141
142
0
  if (!context || !context->update || !palette)
143
0
    return FALSE;
144
145
0
  wParam = copy_palette_update(context, palette);
146
147
0
  if (!wParam)
148
0
    return FALSE;
149
150
0
  up = update_cast(context->update);
151
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, Palette),
152
0
                           (void*)wParam, nullptr);
153
0
}
154
155
static BOOL update_message_PlaySound(rdpContext* context, const PLAY_SOUND_UPDATE* playSound)
156
0
{
157
0
  PLAY_SOUND_UPDATE* wParam = nullptr;
158
0
  rdp_update_internal* up = nullptr;
159
160
0
  if (!context || !context->update || !playSound)
161
0
    return FALSE;
162
163
0
  wParam = (PLAY_SOUND_UPDATE*)malloc(sizeof(PLAY_SOUND_UPDATE));
164
165
0
  if (!wParam)
166
0
    return FALSE;
167
168
0
  CopyMemory(wParam, playSound, sizeof(PLAY_SOUND_UPDATE));
169
170
0
  up = update_cast(context->update);
171
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, PlaySound),
172
0
                           (void*)wParam, nullptr);
173
0
}
174
175
static BOOL update_message_SetKeyboardIndicators(rdpContext* context, UINT16 led_flags)
176
0
{
177
0
  rdp_update_internal* up = nullptr;
178
179
0
  if (!context || !context->update)
180
0
    return FALSE;
181
182
0
  up = update_cast(context->update);
183
0
  return MessageQueue_Post(up->queue, (void*)context,
184
0
                           MakeMessageId(Update, SetKeyboardIndicators), (void*)(size_t)led_flags,
185
0
                           nullptr);
186
0
}
187
188
static BOOL update_message_SetKeyboardImeStatus(rdpContext* context, UINT16 imeId, UINT32 imeState,
189
                                                UINT32 imeConvMode)
190
0
{
191
0
  rdp_update_internal* up = nullptr;
192
193
0
  if (!context || !context->update)
194
0
    return FALSE;
195
196
0
  up = update_cast(context->update);
197
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, SetKeyboardImeStatus),
198
0
                           (void*)(size_t)((((UINT32)imeId << 16UL) & 0xFFFF0000) | imeState),
199
0
                           (void*)(size_t)imeConvMode);
200
0
}
201
202
static BOOL update_message_RefreshRect(rdpContext* context, BYTE count, const RECTANGLE_16* areas)
203
0
{
204
0
  RECTANGLE_16* lParam = nullptr;
205
0
  rdp_update_internal* up = nullptr;
206
207
0
  if (!context || !context->update || !areas)
208
0
    return FALSE;
209
210
0
  lParam = (RECTANGLE_16*)calloc(count, sizeof(RECTANGLE_16));
211
212
0
  if (!lParam)
213
0
    return FALSE;
214
215
0
  CopyMemory(lParam, areas, sizeof(RECTANGLE_16) * count);
216
217
0
  up = update_cast(context->update);
218
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, RefreshRect),
219
0
                           (void*)(size_t)count, (void*)lParam);
220
0
}
221
222
static BOOL update_message_SuppressOutput(rdpContext* context, BYTE allow, const RECTANGLE_16* area)
223
0
{
224
0
  RECTANGLE_16* lParam = nullptr;
225
0
  rdp_update_internal* up = nullptr;
226
227
0
  if (!context || !context->update)
228
0
    return FALSE;
229
230
0
  if (area)
231
0
  {
232
0
    lParam = (RECTANGLE_16*)malloc(sizeof(RECTANGLE_16));
233
234
0
    if (!lParam)
235
0
      return FALSE;
236
237
0
    CopyMemory(lParam, area, sizeof(RECTANGLE_16));
238
0
  }
239
240
0
  up = update_cast(context->update);
241
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, SuppressOutput),
242
0
                           (void*)(size_t)allow, (void*)lParam);
243
0
}
244
245
static BOOL update_message_SurfaceCommand(rdpContext* context, wStream* s)
246
0
{
247
0
  wStream* wParam = nullptr;
248
0
  rdp_update_internal* up = nullptr;
249
250
0
  if (!context || !context->update || !s)
251
0
    return FALSE;
252
253
0
  wParam = Stream_New(nullptr, Stream_GetRemainingLength(s));
254
255
0
  if (!wParam)
256
0
    return FALSE;
257
258
0
  Stream_Copy(s, wParam, Stream_GetRemainingLength(s));
259
0
  Stream_ResetPosition(wParam);
260
261
0
  up = update_cast(context->update);
262
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, SurfaceCommand),
263
0
                           (void*)wParam, nullptr);
264
0
}
265
266
static BOOL update_message_SurfaceBits(rdpContext* context,
267
                                       const SURFACE_BITS_COMMAND* surfaceBitsCommand)
268
0
{
269
0
  SURFACE_BITS_COMMAND* wParam = nullptr;
270
0
  rdp_update_internal* up = nullptr;
271
272
0
  if (!context || !context->update || !surfaceBitsCommand)
273
0
    return FALSE;
274
275
0
  wParam = copy_surface_bits_command(context, surfaceBitsCommand);
276
277
0
  if (!wParam)
278
0
    return FALSE;
279
280
0
  up = update_cast(context->update);
281
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, SurfaceBits),
282
0
                           (void*)wParam, nullptr);
283
0
}
284
285
static BOOL update_message_SurfaceFrameMarker(rdpContext* context,
286
                                              const SURFACE_FRAME_MARKER* surfaceFrameMarker)
287
0
{
288
0
  SURFACE_FRAME_MARKER* wParam = nullptr;
289
0
  rdp_update_internal* up = nullptr;
290
291
0
  if (!context || !context->update || !surfaceFrameMarker)
292
0
    return FALSE;
293
294
0
  wParam = (SURFACE_FRAME_MARKER*)malloc(sizeof(SURFACE_FRAME_MARKER));
295
296
0
  if (!wParam)
297
0
    return FALSE;
298
299
0
  CopyMemory(wParam, surfaceFrameMarker, sizeof(SURFACE_FRAME_MARKER));
300
301
0
  up = update_cast(context->update);
302
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(Update, SurfaceFrameMarker),
303
0
                           (void*)wParam, nullptr);
304
0
}
305
306
static BOOL update_message_SurfaceFrameAcknowledge(rdpContext* context, UINT32 frameId)
307
0
{
308
0
  rdp_update_internal* up = nullptr;
309
310
0
  if (!context || !context->update)
311
0
    return FALSE;
312
313
0
  up = update_cast(context->update);
314
0
  return MessageQueue_Post(up->queue, (void*)context,
315
0
                           MakeMessageId(Update, SurfaceFrameAcknowledge), (void*)(size_t)frameId,
316
0
                           nullptr);
317
0
}
318
319
/* Primary Update */
320
321
static BOOL update_message_DstBlt(rdpContext* context, const DSTBLT_ORDER* dstBlt)
322
0
{
323
0
  DSTBLT_ORDER* wParam = nullptr;
324
0
  rdp_update_internal* up = nullptr;
325
326
0
  if (!context || !context->update || !dstBlt)
327
0
    return FALSE;
328
329
0
  wParam = (DSTBLT_ORDER*)malloc(sizeof(DSTBLT_ORDER));
330
331
0
  if (!wParam)
332
0
    return FALSE;
333
334
0
  CopyMemory(wParam, dstBlt, sizeof(DSTBLT_ORDER));
335
336
0
  up = update_cast(context->update);
337
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, DstBlt),
338
0
                           (void*)wParam, nullptr);
339
0
}
340
341
static BOOL update_message_PatBlt(rdpContext* context, PATBLT_ORDER* patBlt)
342
0
{
343
0
  PATBLT_ORDER* wParam = nullptr;
344
0
  rdp_update_internal* up = nullptr;
345
346
0
  if (!context || !context->update || !patBlt)
347
0
    return FALSE;
348
349
0
  wParam = (PATBLT_ORDER*)malloc(sizeof(PATBLT_ORDER));
350
351
0
  if (!wParam)
352
0
    return FALSE;
353
354
0
  CopyMemory(wParam, patBlt, sizeof(PATBLT_ORDER));
355
0
  wParam->brush.data = (BYTE*)wParam->brush.p8x8;
356
357
0
  up = update_cast(context->update);
358
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, PatBlt),
359
0
                           (void*)wParam, nullptr);
360
0
}
361
362
static BOOL update_message_ScrBlt(rdpContext* context, const SCRBLT_ORDER* scrBlt)
363
0
{
364
0
  SCRBLT_ORDER* wParam = nullptr;
365
0
  rdp_update_internal* up = nullptr;
366
367
0
  if (!context || !context->update || !scrBlt)
368
0
    return FALSE;
369
370
0
  wParam = (SCRBLT_ORDER*)malloc(sizeof(SCRBLT_ORDER));
371
372
0
  if (!wParam)
373
0
    return FALSE;
374
375
0
  CopyMemory(wParam, scrBlt, sizeof(SCRBLT_ORDER));
376
377
0
  up = update_cast(context->update);
378
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, ScrBlt),
379
0
                           (void*)wParam, nullptr);
380
0
}
381
382
static BOOL update_message_OpaqueRect(rdpContext* context, const OPAQUE_RECT_ORDER* opaqueRect)
383
0
{
384
0
  OPAQUE_RECT_ORDER* wParam = nullptr;
385
0
  rdp_update_internal* up = nullptr;
386
387
0
  if (!context || !context->update || !opaqueRect)
388
0
    return FALSE;
389
390
0
  wParam = (OPAQUE_RECT_ORDER*)malloc(sizeof(OPAQUE_RECT_ORDER));
391
392
0
  if (!wParam)
393
0
    return FALSE;
394
395
0
  CopyMemory(wParam, opaqueRect, sizeof(OPAQUE_RECT_ORDER));
396
397
0
  up = update_cast(context->update);
398
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, OpaqueRect),
399
0
                           (void*)wParam, nullptr);
400
0
}
401
402
static BOOL update_message_DrawNineGrid(rdpContext* context,
403
                                        const DRAW_NINE_GRID_ORDER* drawNineGrid)
404
0
{
405
0
  DRAW_NINE_GRID_ORDER* wParam = nullptr;
406
0
  rdp_update_internal* up = nullptr;
407
408
0
  if (!context || !context->update || !drawNineGrid)
409
0
    return FALSE;
410
411
0
  wParam = (DRAW_NINE_GRID_ORDER*)malloc(sizeof(DRAW_NINE_GRID_ORDER));
412
413
0
  if (!wParam)
414
0
    return FALSE;
415
416
0
  CopyMemory(wParam, drawNineGrid, sizeof(DRAW_NINE_GRID_ORDER));
417
418
0
  up = update_cast(context->update);
419
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, DrawNineGrid),
420
0
                           (void*)wParam, nullptr);
421
0
}
422
423
static BOOL update_message_MultiDstBlt(rdpContext* context, const MULTI_DSTBLT_ORDER* multiDstBlt)
424
0
{
425
0
  MULTI_DSTBLT_ORDER* wParam = nullptr;
426
0
  rdp_update_internal* up = nullptr;
427
428
0
  if (!context || !context->update || !multiDstBlt)
429
0
    return FALSE;
430
431
0
  wParam = (MULTI_DSTBLT_ORDER*)malloc(sizeof(MULTI_DSTBLT_ORDER));
432
433
0
  if (!wParam)
434
0
    return FALSE;
435
436
0
  CopyMemory(wParam, multiDstBlt, sizeof(MULTI_DSTBLT_ORDER));
437
438
0
  up = update_cast(context->update);
439
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, MultiDstBlt),
440
0
                           (void*)wParam, nullptr);
441
0
}
442
443
static BOOL update_message_MultiPatBlt(rdpContext* context, const MULTI_PATBLT_ORDER* multiPatBlt)
444
0
{
445
0
  MULTI_PATBLT_ORDER* wParam = nullptr;
446
0
  rdp_update_internal* up = nullptr;
447
448
0
  if (!context || !context->update || !multiPatBlt)
449
0
    return FALSE;
450
451
0
  wParam = (MULTI_PATBLT_ORDER*)malloc(sizeof(MULTI_PATBLT_ORDER));
452
453
0
  if (!wParam)
454
0
    return FALSE;
455
456
0
  CopyMemory(wParam, multiPatBlt, sizeof(MULTI_PATBLT_ORDER));
457
0
  wParam->brush.data = (BYTE*)wParam->brush.p8x8;
458
459
0
  up = update_cast(context->update);
460
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, MultiPatBlt),
461
0
                           (void*)wParam, nullptr);
462
0
}
463
464
static BOOL update_message_MultiScrBlt(rdpContext* context, const MULTI_SCRBLT_ORDER* multiScrBlt)
465
0
{
466
0
  MULTI_SCRBLT_ORDER* wParam = nullptr;
467
0
  rdp_update_internal* up = nullptr;
468
469
0
  if (!context || !context->update || !multiScrBlt)
470
0
    return FALSE;
471
472
0
  wParam = (MULTI_SCRBLT_ORDER*)malloc(sizeof(MULTI_SCRBLT_ORDER));
473
474
0
  if (!wParam)
475
0
    return FALSE;
476
477
0
  CopyMemory(wParam, multiScrBlt, sizeof(MULTI_SCRBLT_ORDER));
478
479
0
  up = update_cast(context->update);
480
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, MultiScrBlt),
481
0
                           (void*)wParam, nullptr);
482
0
}
483
484
static BOOL update_message_MultiOpaqueRect(rdpContext* context,
485
                                           const MULTI_OPAQUE_RECT_ORDER* multiOpaqueRect)
486
0
{
487
0
  MULTI_OPAQUE_RECT_ORDER* wParam = nullptr;
488
0
  rdp_update_internal* up = nullptr;
489
490
0
  if (!context || !context->update || !multiOpaqueRect)
491
0
    return FALSE;
492
493
0
  wParam = (MULTI_OPAQUE_RECT_ORDER*)malloc(sizeof(MULTI_OPAQUE_RECT_ORDER));
494
495
0
  if (!wParam)
496
0
    return FALSE;
497
498
0
  CopyMemory(wParam, multiOpaqueRect, sizeof(MULTI_OPAQUE_RECT_ORDER));
499
500
0
  up = update_cast(context->update);
501
0
  return MessageQueue_Post(up->queue, (void*)context,
502
0
                           MakeMessageId(PrimaryUpdate, MultiOpaqueRect), (void*)wParam, nullptr);
503
0
}
504
505
static BOOL update_message_MultiDrawNineGrid(rdpContext* context,
506
                                             const MULTI_DRAW_NINE_GRID_ORDER* multiDrawNineGrid)
507
0
{
508
0
  MULTI_DRAW_NINE_GRID_ORDER* wParam = nullptr;
509
0
  rdp_update_internal* up = nullptr;
510
511
0
  if (!context || !context->update || !multiDrawNineGrid)
512
0
    return FALSE;
513
514
0
  wParam = (MULTI_DRAW_NINE_GRID_ORDER*)malloc(sizeof(MULTI_DRAW_NINE_GRID_ORDER));
515
516
0
  if (!wParam)
517
0
    return FALSE;
518
519
0
  CopyMemory(wParam, multiDrawNineGrid, sizeof(MULTI_DRAW_NINE_GRID_ORDER));
520
  /* TODO: complete copy */
521
522
0
  up = update_cast(context->update);
523
0
  return MessageQueue_Post(up->queue, (void*)context,
524
0
                           MakeMessageId(PrimaryUpdate, MultiDrawNineGrid), (void*)wParam,
525
0
                           nullptr);
526
0
}
527
528
static BOOL update_message_LineTo(rdpContext* context, const LINE_TO_ORDER* lineTo)
529
0
{
530
0
  LINE_TO_ORDER* wParam = nullptr;
531
0
  rdp_update_internal* up = nullptr;
532
533
0
  if (!context || !context->update || !lineTo)
534
0
    return FALSE;
535
536
0
  wParam = (LINE_TO_ORDER*)malloc(sizeof(LINE_TO_ORDER));
537
538
0
  if (!wParam)
539
0
    return FALSE;
540
541
0
  CopyMemory(wParam, lineTo, sizeof(LINE_TO_ORDER));
542
543
0
  up = update_cast(context->update);
544
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, LineTo),
545
0
                           (void*)wParam, nullptr);
546
0
}
547
548
static BOOL update_message_Polyline(rdpContext* context, const POLYLINE_ORDER* polyline)
549
0
{
550
0
  POLYLINE_ORDER* wParam = nullptr;
551
0
  rdp_update_internal* up = nullptr;
552
553
0
  if (!context || !context->update || !polyline)
554
0
    return FALSE;
555
556
0
  wParam = (POLYLINE_ORDER*)malloc(sizeof(POLYLINE_ORDER));
557
558
0
  if (!wParam)
559
0
    return FALSE;
560
561
0
  CopyMemory(wParam, polyline, sizeof(POLYLINE_ORDER));
562
0
  wParam->points = (DELTA_POINT*)calloc(wParam->numDeltaEntries, sizeof(DELTA_POINT));
563
564
0
  if (!wParam->points)
565
0
  {
566
0
    free(wParam);
567
0
    return FALSE;
568
0
  }
569
570
0
  CopyMemory(wParam->points, polyline->points, sizeof(DELTA_POINT) * wParam->numDeltaEntries);
571
572
0
  up = update_cast(context->update);
573
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, Polyline),
574
0
                           (void*)wParam, nullptr);
575
0
}
576
577
static BOOL update_message_MemBlt(rdpContext* context, MEMBLT_ORDER* memBlt)
578
0
{
579
0
  MEMBLT_ORDER* wParam = nullptr;
580
0
  rdp_update_internal* up = nullptr;
581
582
0
  if (!context || !context->update || !memBlt)
583
0
    return FALSE;
584
585
0
  wParam = (MEMBLT_ORDER*)malloc(sizeof(MEMBLT_ORDER));
586
587
0
  if (!wParam)
588
0
    return FALSE;
589
590
0
  CopyMemory(wParam, memBlt, sizeof(MEMBLT_ORDER));
591
592
0
  up = update_cast(context->update);
593
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, MemBlt),
594
0
                           (void*)wParam, nullptr);
595
0
}
596
597
static BOOL update_message_Mem3Blt(rdpContext* context, MEM3BLT_ORDER* mem3Blt)
598
0
{
599
0
  MEM3BLT_ORDER* wParam = nullptr;
600
0
  rdp_update_internal* up = nullptr;
601
602
0
  if (!context || !context->update || !mem3Blt)
603
0
    return FALSE;
604
605
0
  wParam = (MEM3BLT_ORDER*)malloc(sizeof(MEM3BLT_ORDER));
606
607
0
  if (!wParam)
608
0
    return FALSE;
609
610
0
  CopyMemory(wParam, mem3Blt, sizeof(MEM3BLT_ORDER));
611
0
  wParam->brush.data = (BYTE*)wParam->brush.p8x8;
612
613
0
  up = update_cast(context->update);
614
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, Mem3Blt),
615
0
                           (void*)wParam, nullptr);
616
0
}
617
618
static BOOL update_message_SaveBitmap(rdpContext* context, const SAVE_BITMAP_ORDER* saveBitmap)
619
0
{
620
0
  SAVE_BITMAP_ORDER* wParam = nullptr;
621
0
  rdp_update_internal* up = nullptr;
622
623
0
  if (!context || !context->update || !saveBitmap)
624
0
    return FALSE;
625
626
0
  wParam = (SAVE_BITMAP_ORDER*)malloc(sizeof(SAVE_BITMAP_ORDER));
627
628
0
  if (!wParam)
629
0
    return FALSE;
630
631
0
  CopyMemory(wParam, saveBitmap, sizeof(SAVE_BITMAP_ORDER));
632
633
0
  up = update_cast(context->update);
634
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, SaveBitmap),
635
0
                           (void*)wParam, nullptr);
636
0
}
637
638
static BOOL update_message_GlyphIndex(rdpContext* context, GLYPH_INDEX_ORDER* glyphIndex)
639
0
{
640
0
  GLYPH_INDEX_ORDER* wParam = nullptr;
641
0
  rdp_update_internal* up = nullptr;
642
643
0
  if (!context || !context->update || !glyphIndex)
644
0
    return FALSE;
645
646
0
  wParam = (GLYPH_INDEX_ORDER*)malloc(sizeof(GLYPH_INDEX_ORDER));
647
648
0
  if (!wParam)
649
0
    return FALSE;
650
651
0
  CopyMemory(wParam, glyphIndex, sizeof(GLYPH_INDEX_ORDER));
652
0
  wParam->brush.data = (BYTE*)wParam->brush.p8x8;
653
654
0
  up = update_cast(context->update);
655
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, GlyphIndex),
656
0
                           (void*)wParam, nullptr);
657
0
}
658
659
static BOOL update_message_FastIndex(rdpContext* context, const FAST_INDEX_ORDER* fastIndex)
660
0
{
661
0
  FAST_INDEX_ORDER* wParam = nullptr;
662
0
  rdp_update_internal* up = nullptr;
663
664
0
  if (!context || !context->update || !fastIndex)
665
0
    return FALSE;
666
667
0
  wParam = (FAST_INDEX_ORDER*)malloc(sizeof(FAST_INDEX_ORDER));
668
669
0
  if (!wParam)
670
0
    return FALSE;
671
672
0
  CopyMemory(wParam, fastIndex, sizeof(FAST_INDEX_ORDER));
673
674
0
  up = update_cast(context->update);
675
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, FastIndex),
676
0
                           (void*)wParam, nullptr);
677
0
}
678
679
static BOOL update_message_FastGlyph(rdpContext* context, const FAST_GLYPH_ORDER* fastGlyph)
680
0
{
681
0
  FAST_GLYPH_ORDER* wParam = nullptr;
682
0
  rdp_update_internal* up = nullptr;
683
684
0
  if (!context || !context->update || !fastGlyph)
685
0
    return FALSE;
686
687
0
  wParam = (FAST_GLYPH_ORDER*)malloc(sizeof(FAST_GLYPH_ORDER));
688
689
0
  if (!wParam)
690
0
    return FALSE;
691
692
0
  CopyMemory(wParam, fastGlyph, sizeof(FAST_GLYPH_ORDER));
693
694
0
  if (wParam->cbData > 1)
695
0
  {
696
0
    wParam->glyphData.aj = (BYTE*)malloc(fastGlyph->glyphData.cb);
697
698
0
    if (!wParam->glyphData.aj)
699
0
    {
700
0
      free(wParam);
701
0
      return FALSE;
702
0
    }
703
704
0
    CopyMemory(wParam->glyphData.aj, fastGlyph->glyphData.aj, fastGlyph->glyphData.cb);
705
0
  }
706
0
  else
707
0
  {
708
0
    wParam->glyphData.aj = nullptr;
709
0
  }
710
711
0
  up = update_cast(context->update);
712
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, FastGlyph),
713
0
                           (void*)wParam, nullptr);
714
0
}
715
716
static BOOL update_message_PolygonSC(rdpContext* context, const POLYGON_SC_ORDER* polygonSC)
717
0
{
718
0
  if (!context || !context->update || !polygonSC)
719
0
    return FALSE;
720
721
0
  POLYGON_SC_ORDER* wParam = (POLYGON_SC_ORDER*)malloc(sizeof(POLYGON_SC_ORDER));
722
723
0
  if (!wParam)
724
0
    return FALSE;
725
726
0
  *wParam = *polygonSC;
727
0
  if (polygonSC->numPoints > 0)
728
0
  {
729
0
    wParam->points = (DELTA_POINT*)calloc(polygonSC->numPoints, sizeof(DELTA_POINT));
730
731
0
    if (!wParam->points)
732
0
    {
733
0
      free(wParam);
734
0
      return FALSE;
735
0
    }
736
737
0
    CopyMemory(wParam->points, polygonSC->points, sizeof(DELTA_POINT) * wParam->numPoints);
738
0
  }
739
740
0
  rdp_update_internal* up = update_cast(context->update);
741
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, PolygonSC),
742
0
                           (void*)wParam, nullptr);
743
0
}
744
745
static BOOL update_message_PolygonCB(rdpContext* context, POLYGON_CB_ORDER* polygonCB)
746
0
{
747
0
  if (!context || !context->update || !polygonCB)
748
0
    return FALSE;
749
750
0
  POLYGON_CB_ORDER* wParam = (POLYGON_CB_ORDER*)malloc(sizeof(POLYGON_CB_ORDER));
751
752
0
  if (!wParam)
753
0
    return FALSE;
754
755
0
  *wParam = *polygonCB;
756
0
  if (polygonCB->numPoints > 0)
757
0
  {
758
0
    wParam->points = (DELTA_POINT*)calloc(polygonCB->numPoints, sizeof(DELTA_POINT));
759
760
0
    if (!wParam->points)
761
0
    {
762
0
      free(wParam);
763
0
      return FALSE;
764
0
    }
765
766
0
    CopyMemory(wParam->points, polygonCB->points, sizeof(DELTA_POINT) * wParam->numPoints);
767
0
  }
768
769
0
  wParam->brush.data = (BYTE*)wParam->brush.p8x8;
770
771
0
  rdp_update_internal* up = update_cast(context->update);
772
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, PolygonCB),
773
0
                           (void*)wParam, nullptr);
774
0
}
775
776
static BOOL update_message_EllipseSC(rdpContext* context, const ELLIPSE_SC_ORDER* ellipseSC)
777
0
{
778
0
  if (!context || !context->update || !ellipseSC)
779
0
    return FALSE;
780
781
0
  ELLIPSE_SC_ORDER* wParam = (ELLIPSE_SC_ORDER*)malloc(sizeof(ELLIPSE_SC_ORDER));
782
783
0
  if (!wParam)
784
0
    return FALSE;
785
786
0
  CopyMemory(wParam, ellipseSC, sizeof(ELLIPSE_SC_ORDER));
787
788
0
  rdp_update_internal* up = update_cast(context->update);
789
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, EllipseSC),
790
0
                           (void*)wParam, nullptr);
791
0
}
792
793
static BOOL update_message_EllipseCB(rdpContext* context, const ELLIPSE_CB_ORDER* ellipseCB)
794
0
{
795
0
  ELLIPSE_CB_ORDER* wParam = nullptr;
796
0
  rdp_update_internal* up = nullptr;
797
798
0
  if (!context || !context->update || !ellipseCB)
799
0
    return FALSE;
800
801
0
  wParam = (ELLIPSE_CB_ORDER*)malloc(sizeof(ELLIPSE_CB_ORDER));
802
803
0
  if (!wParam)
804
0
    return FALSE;
805
806
0
  CopyMemory(wParam, ellipseCB, sizeof(ELLIPSE_CB_ORDER));
807
0
  wParam->brush.data = (BYTE*)wParam->brush.p8x8;
808
809
0
  up = update_cast(context->update);
810
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PrimaryUpdate, EllipseCB),
811
0
                           (void*)wParam, nullptr);
812
0
}
813
814
/* Secondary Update */
815
816
static BOOL update_message_CacheBitmap(rdpContext* context,
817
                                       const CACHE_BITMAP_ORDER* cacheBitmapOrder)
818
0
{
819
0
  CACHE_BITMAP_ORDER* wParam = nullptr;
820
0
  rdp_update_internal* up = nullptr;
821
822
0
  if (!context || !context->update || !cacheBitmapOrder)
823
0
    return FALSE;
824
825
0
  wParam = copy_cache_bitmap_order(context, cacheBitmapOrder);
826
827
0
  if (!wParam)
828
0
    return FALSE;
829
830
0
  up = update_cast(context->update);
831
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(SecondaryUpdate, CacheBitmap),
832
0
                           (void*)wParam, nullptr);
833
0
}
834
835
static BOOL update_message_CacheBitmapV2(rdpContext* context,
836
                                         CACHE_BITMAP_V2_ORDER* cacheBitmapV2Order)
837
0
{
838
0
  CACHE_BITMAP_V2_ORDER* wParam = nullptr;
839
0
  rdp_update_internal* up = nullptr;
840
841
0
  if (!context || !context->update || !cacheBitmapV2Order)
842
0
    return FALSE;
843
844
0
  wParam = copy_cache_bitmap_v2_order(context, cacheBitmapV2Order);
845
846
0
  if (!wParam)
847
0
    return FALSE;
848
849
0
  up = update_cast(context->update);
850
0
  return MessageQueue_Post(up->queue, (void*)context,
851
0
                           MakeMessageId(SecondaryUpdate, CacheBitmapV2), (void*)wParam, nullptr);
852
0
}
853
854
static BOOL update_message_CacheBitmapV3(rdpContext* context,
855
                                         CACHE_BITMAP_V3_ORDER* cacheBitmapV3Order)
856
0
{
857
0
  CACHE_BITMAP_V3_ORDER* wParam = nullptr;
858
0
  rdp_update_internal* up = nullptr;
859
860
0
  if (!context || !context->update || !cacheBitmapV3Order)
861
0
    return FALSE;
862
863
0
  wParam = copy_cache_bitmap_v3_order(context, cacheBitmapV3Order);
864
865
0
  if (!wParam)
866
0
    return FALSE;
867
868
0
  up = update_cast(context->update);
869
0
  return MessageQueue_Post(up->queue, (void*)context,
870
0
                           MakeMessageId(SecondaryUpdate, CacheBitmapV3), (void*)wParam, nullptr);
871
0
}
872
873
static BOOL update_message_CacheColorTable(rdpContext* context,
874
                                           const CACHE_COLOR_TABLE_ORDER* cacheColorTableOrder)
875
0
{
876
0
  CACHE_COLOR_TABLE_ORDER* wParam = nullptr;
877
0
  rdp_update_internal* up = nullptr;
878
879
0
  if (!context || !context->update || !cacheColorTableOrder)
880
0
    return FALSE;
881
882
0
  wParam = copy_cache_color_table_order(context, cacheColorTableOrder);
883
884
0
  if (!wParam)
885
0
    return FALSE;
886
887
0
  up = update_cast(context->update);
888
0
  return MessageQueue_Post(up->queue, (void*)context,
889
0
                           MakeMessageId(SecondaryUpdate, CacheColorTable), (void*)wParam,
890
0
                           nullptr);
891
0
}
892
893
static BOOL update_message_CacheGlyph(rdpContext* context, const CACHE_GLYPH_ORDER* cacheGlyphOrder)
894
0
{
895
0
  CACHE_GLYPH_ORDER* wParam = nullptr;
896
0
  rdp_update_internal* up = nullptr;
897
898
0
  if (!context || !context->update || !cacheGlyphOrder)
899
0
    return FALSE;
900
901
0
  wParam = copy_cache_glyph_order(context, cacheGlyphOrder);
902
903
0
  if (!wParam)
904
0
    return FALSE;
905
906
0
  up = update_cast(context->update);
907
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(SecondaryUpdate, CacheGlyph),
908
0
                           (void*)wParam, nullptr);
909
0
}
910
911
static BOOL update_message_CacheGlyphV2(rdpContext* context,
912
                                        const CACHE_GLYPH_V2_ORDER* cacheGlyphV2Order)
913
0
{
914
0
  CACHE_GLYPH_V2_ORDER* wParam = nullptr;
915
0
  rdp_update_internal* up = nullptr;
916
917
0
  if (!context || !context->update || !cacheGlyphV2Order)
918
0
    return FALSE;
919
920
0
  wParam = copy_cache_glyph_v2_order(context, cacheGlyphV2Order);
921
922
0
  if (!wParam)
923
0
    return FALSE;
924
925
0
  up = update_cast(context->update);
926
0
  return MessageQueue_Post(up->queue, (void*)context,
927
0
                           MakeMessageId(SecondaryUpdate, CacheGlyphV2), (void*)wParam, nullptr);
928
0
}
929
930
static BOOL update_message_CacheBrush(rdpContext* context, const CACHE_BRUSH_ORDER* cacheBrushOrder)
931
0
{
932
0
  CACHE_BRUSH_ORDER* wParam = nullptr;
933
0
  rdp_update_internal* up = nullptr;
934
935
0
  if (!context || !context->update || !cacheBrushOrder)
936
0
    return FALSE;
937
938
0
  wParam = copy_cache_brush_order(context, cacheBrushOrder);
939
940
0
  if (!wParam)
941
0
    return FALSE;
942
943
0
  up = update_cast(context->update);
944
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(SecondaryUpdate, CacheBrush),
945
0
                           (void*)wParam, nullptr);
946
0
}
947
948
/* Alternate Secondary Update */
949
950
static BOOL
951
update_message_CreateOffscreenBitmap(rdpContext* context,
952
                                     const CREATE_OFFSCREEN_BITMAP_ORDER* createOffscreenBitmap)
953
0
{
954
0
  CREATE_OFFSCREEN_BITMAP_ORDER* wParam = nullptr;
955
0
  rdp_update_internal* up = nullptr;
956
957
0
  if (!context || !context->update || !createOffscreenBitmap)
958
0
    return FALSE;
959
960
0
  wParam = (CREATE_OFFSCREEN_BITMAP_ORDER*)malloc(sizeof(CREATE_OFFSCREEN_BITMAP_ORDER));
961
962
0
  if (!wParam)
963
0
    return FALSE;
964
965
0
  CopyMemory(wParam, createOffscreenBitmap, sizeof(CREATE_OFFSCREEN_BITMAP_ORDER));
966
0
  wParam->deleteList.cIndices = createOffscreenBitmap->deleteList.cIndices;
967
0
  wParam->deleteList.sIndices = wParam->deleteList.cIndices;
968
0
  wParam->deleteList.indices = (UINT16*)calloc(wParam->deleteList.cIndices, sizeof(UINT16));
969
970
0
  if (!wParam->deleteList.indices)
971
0
  {
972
0
    free(wParam);
973
0
    return FALSE;
974
0
  }
975
976
0
  CopyMemory(wParam->deleteList.indices, createOffscreenBitmap->deleteList.indices,
977
0
             wParam->deleteList.cIndices);
978
979
0
  up = update_cast(context->update);
980
0
  return MessageQueue_Post(up->queue, (void*)context,
981
0
                           MakeMessageId(AltSecUpdate, CreateOffscreenBitmap), (void*)wParam,
982
0
                           nullptr);
983
0
}
984
985
static BOOL update_message_SwitchSurface(rdpContext* context,
986
                                         const SWITCH_SURFACE_ORDER* switchSurface)
987
0
{
988
0
  SWITCH_SURFACE_ORDER* wParam = nullptr;
989
0
  rdp_update_internal* up = nullptr;
990
991
0
  if (!context || !context->update || !switchSurface)
992
0
    return FALSE;
993
994
0
  wParam = (SWITCH_SURFACE_ORDER*)malloc(sizeof(SWITCH_SURFACE_ORDER));
995
996
0
  if (!wParam)
997
0
    return FALSE;
998
999
0
  CopyMemory(wParam, switchSurface, sizeof(SWITCH_SURFACE_ORDER));
1000
1001
0
  up = update_cast(context->update);
1002
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(AltSecUpdate, SwitchSurface),
1003
0
                           (void*)wParam, nullptr);
1004
0
}
1005
1006
static BOOL
1007
update_message_CreateNineGridBitmap(rdpContext* context,
1008
                                    const CREATE_NINE_GRID_BITMAP_ORDER* createNineGridBitmap)
1009
0
{
1010
0
  CREATE_NINE_GRID_BITMAP_ORDER* wParam = nullptr;
1011
0
  rdp_update_internal* up = nullptr;
1012
1013
0
  if (!context || !context->update || !createNineGridBitmap)
1014
0
    return FALSE;
1015
1016
0
  wParam = (CREATE_NINE_GRID_BITMAP_ORDER*)malloc(sizeof(CREATE_NINE_GRID_BITMAP_ORDER));
1017
1018
0
  if (!wParam)
1019
0
    return FALSE;
1020
1021
0
  CopyMemory(wParam, createNineGridBitmap, sizeof(CREATE_NINE_GRID_BITMAP_ORDER));
1022
1023
0
  up = update_cast(context->update);
1024
0
  return MessageQueue_Post(up->queue, (void*)context,
1025
0
                           MakeMessageId(AltSecUpdate, CreateNineGridBitmap), (void*)wParam,
1026
0
                           nullptr);
1027
0
}
1028
1029
static BOOL update_message_FrameMarker(rdpContext* context, const FRAME_MARKER_ORDER* frameMarker)
1030
0
{
1031
0
  FRAME_MARKER_ORDER* wParam = nullptr;
1032
0
  rdp_update_internal* up = nullptr;
1033
1034
0
  if (!context || !context->update || !frameMarker)
1035
0
    return FALSE;
1036
1037
0
  wParam = (FRAME_MARKER_ORDER*)malloc(sizeof(FRAME_MARKER_ORDER));
1038
1039
0
  if (!wParam)
1040
0
    return FALSE;
1041
1042
0
  CopyMemory(wParam, frameMarker, sizeof(FRAME_MARKER_ORDER));
1043
1044
0
  up = update_cast(context->update);
1045
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(AltSecUpdate, FrameMarker),
1046
0
                           (void*)wParam, nullptr);
1047
0
}
1048
1049
static BOOL update_message_StreamBitmapFirst(rdpContext* context,
1050
                                             const STREAM_BITMAP_FIRST_ORDER* streamBitmapFirst)
1051
0
{
1052
0
  STREAM_BITMAP_FIRST_ORDER* wParam = nullptr;
1053
0
  rdp_update_internal* up = nullptr;
1054
1055
0
  if (!context || !context->update || !streamBitmapFirst)
1056
0
    return FALSE;
1057
1058
0
  wParam = (STREAM_BITMAP_FIRST_ORDER*)malloc(sizeof(STREAM_BITMAP_FIRST_ORDER));
1059
1060
0
  if (!wParam)
1061
0
    return FALSE;
1062
1063
0
  CopyMemory(wParam, streamBitmapFirst, sizeof(STREAM_BITMAP_FIRST_ORDER));
1064
  /* TODO: complete copy */
1065
1066
0
  up = update_cast(context->update);
1067
0
  return MessageQueue_Post(up->queue, (void*)context,
1068
0
                           MakeMessageId(AltSecUpdate, StreamBitmapFirst), (void*)wParam,
1069
0
                           nullptr);
1070
0
}
1071
1072
static BOOL update_message_StreamBitmapNext(rdpContext* context,
1073
                                            const STREAM_BITMAP_NEXT_ORDER* streamBitmapNext)
1074
0
{
1075
0
  STREAM_BITMAP_NEXT_ORDER* wParam = nullptr;
1076
0
  rdp_update_internal* up = nullptr;
1077
1078
0
  if (!context || !context->update || !streamBitmapNext)
1079
0
    return FALSE;
1080
1081
0
  wParam = (STREAM_BITMAP_NEXT_ORDER*)malloc(sizeof(STREAM_BITMAP_NEXT_ORDER));
1082
1083
0
  if (!wParam)
1084
0
    return FALSE;
1085
1086
0
  CopyMemory(wParam, streamBitmapNext, sizeof(STREAM_BITMAP_NEXT_ORDER));
1087
  /* TODO: complete copy */
1088
1089
0
  up = update_cast(context->update);
1090
0
  return MessageQueue_Post(up->queue, (void*)context,
1091
0
                           MakeMessageId(AltSecUpdate, StreamBitmapNext), (void*)wParam, nullptr);
1092
0
}
1093
1094
static BOOL update_message_DrawGdiPlusFirst(rdpContext* context,
1095
                                            const DRAW_GDIPLUS_FIRST_ORDER* drawGdiPlusFirst)
1096
0
{
1097
0
  DRAW_GDIPLUS_FIRST_ORDER* wParam = nullptr;
1098
0
  rdp_update_internal* up = nullptr;
1099
1100
0
  if (!context || !context->update || !drawGdiPlusFirst)
1101
0
    return FALSE;
1102
1103
0
  wParam = (DRAW_GDIPLUS_FIRST_ORDER*)malloc(sizeof(DRAW_GDIPLUS_FIRST_ORDER));
1104
1105
0
  if (!wParam)
1106
0
    return FALSE;
1107
1108
0
  CopyMemory(wParam, drawGdiPlusFirst, sizeof(DRAW_GDIPLUS_FIRST_ORDER));
1109
  /* TODO: complete copy */
1110
0
  up = update_cast(context->update);
1111
0
  return MessageQueue_Post(up->queue, (void*)context,
1112
0
                           MakeMessageId(AltSecUpdate, DrawGdiPlusFirst), (void*)wParam, nullptr);
1113
0
}
1114
1115
static BOOL update_message_DrawGdiPlusNext(rdpContext* context,
1116
                                           const DRAW_GDIPLUS_NEXT_ORDER* drawGdiPlusNext)
1117
0
{
1118
0
  DRAW_GDIPLUS_NEXT_ORDER* wParam = nullptr;
1119
0
  rdp_update_internal* up = nullptr;
1120
1121
0
  if (!context || !context->update || !drawGdiPlusNext)
1122
0
    return FALSE;
1123
1124
0
  wParam = (DRAW_GDIPLUS_NEXT_ORDER*)malloc(sizeof(DRAW_GDIPLUS_NEXT_ORDER));
1125
1126
0
  if (!wParam)
1127
0
    return FALSE;
1128
1129
0
  CopyMemory(wParam, drawGdiPlusNext, sizeof(DRAW_GDIPLUS_NEXT_ORDER));
1130
  /* TODO: complete copy */
1131
1132
0
  up = update_cast(context->update);
1133
0
  return MessageQueue_Post(up->queue, (void*)context,
1134
0
                           MakeMessageId(AltSecUpdate, DrawGdiPlusNext), (void*)wParam, nullptr);
1135
0
}
1136
1137
static BOOL update_message_DrawGdiPlusEnd(rdpContext* context,
1138
                                          const DRAW_GDIPLUS_END_ORDER* drawGdiPlusEnd)
1139
0
{
1140
0
  DRAW_GDIPLUS_END_ORDER* wParam = nullptr;
1141
0
  rdp_update_internal* up = nullptr;
1142
1143
0
  if (!context || !context->update || !drawGdiPlusEnd)
1144
0
    return FALSE;
1145
1146
0
  wParam = (DRAW_GDIPLUS_END_ORDER*)malloc(sizeof(DRAW_GDIPLUS_END_ORDER));
1147
1148
0
  if (!wParam)
1149
0
    return FALSE;
1150
1151
0
  CopyMemory(wParam, drawGdiPlusEnd, sizeof(DRAW_GDIPLUS_END_ORDER));
1152
  /* TODO: complete copy */
1153
1154
0
  up = update_cast(context->update);
1155
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(AltSecUpdate, DrawGdiPlusEnd),
1156
0
                           (void*)wParam, nullptr);
1157
0
}
1158
1159
static BOOL
1160
update_message_DrawGdiPlusCacheFirst(rdpContext* context,
1161
                                     const DRAW_GDIPLUS_CACHE_FIRST_ORDER* drawGdiPlusCacheFirst)
1162
0
{
1163
0
  DRAW_GDIPLUS_CACHE_FIRST_ORDER* wParam = nullptr;
1164
0
  rdp_update_internal* up = nullptr;
1165
1166
0
  if (!context || !context->update || !drawGdiPlusCacheFirst)
1167
0
    return FALSE;
1168
1169
0
  wParam = (DRAW_GDIPLUS_CACHE_FIRST_ORDER*)malloc(sizeof(DRAW_GDIPLUS_CACHE_FIRST_ORDER));
1170
1171
0
  if (!wParam)
1172
0
    return FALSE;
1173
1174
0
  CopyMemory(wParam, drawGdiPlusCacheFirst, sizeof(DRAW_GDIPLUS_CACHE_FIRST_ORDER));
1175
  /* TODO: complete copy */
1176
1177
0
  up = update_cast(context->update);
1178
0
  return MessageQueue_Post(up->queue, (void*)context,
1179
0
                           MakeMessageId(AltSecUpdate, DrawGdiPlusCacheFirst), (void*)wParam,
1180
0
                           nullptr);
1181
0
}
1182
1183
static BOOL
1184
update_message_DrawGdiPlusCacheNext(rdpContext* context,
1185
                                    const DRAW_GDIPLUS_CACHE_NEXT_ORDER* drawGdiPlusCacheNext)
1186
0
{
1187
0
  DRAW_GDIPLUS_CACHE_NEXT_ORDER* wParam = nullptr;
1188
0
  rdp_update_internal* up = nullptr;
1189
1190
0
  if (!context || !context->update || !drawGdiPlusCacheNext)
1191
0
    return FALSE;
1192
1193
0
  wParam = (DRAW_GDIPLUS_CACHE_NEXT_ORDER*)malloc(sizeof(DRAW_GDIPLUS_CACHE_NEXT_ORDER));
1194
1195
0
  if (!wParam)
1196
0
    return FALSE;
1197
1198
0
  CopyMemory(wParam, drawGdiPlusCacheNext, sizeof(DRAW_GDIPLUS_CACHE_NEXT_ORDER));
1199
  /* TODO: complete copy */
1200
1201
0
  up = update_cast(context->update);
1202
0
  return MessageQueue_Post(up->queue, (void*)context,
1203
0
                           MakeMessageId(AltSecUpdate, DrawGdiPlusCacheNext), (void*)wParam,
1204
0
                           nullptr);
1205
0
}
1206
1207
static BOOL
1208
update_message_DrawGdiPlusCacheEnd(rdpContext* context,
1209
                                   const DRAW_GDIPLUS_CACHE_END_ORDER* drawGdiPlusCacheEnd)
1210
0
{
1211
0
  DRAW_GDIPLUS_CACHE_END_ORDER* wParam = nullptr;
1212
0
  rdp_update_internal* up = nullptr;
1213
1214
0
  if (!context || !context->update || !drawGdiPlusCacheEnd)
1215
0
    return FALSE;
1216
1217
0
  wParam = (DRAW_GDIPLUS_CACHE_END_ORDER*)malloc(sizeof(DRAW_GDIPLUS_CACHE_END_ORDER));
1218
1219
0
  if (!wParam)
1220
0
    return FALSE;
1221
1222
0
  CopyMemory(wParam, drawGdiPlusCacheEnd, sizeof(DRAW_GDIPLUS_CACHE_END_ORDER));
1223
  /* TODO: complete copy */
1224
1225
0
  up = update_cast(context->update);
1226
0
  return MessageQueue_Post(up->queue, (void*)context,
1227
0
                           MakeMessageId(AltSecUpdate, DrawGdiPlusCacheEnd), (void*)wParam,
1228
0
                           nullptr);
1229
0
}
1230
1231
/* Window Update */
1232
static RAIL_UNICODE_STRING rail_unicode_string_clone(const RAIL_UNICODE_STRING* str)
1233
0
{
1234
0
  WINPR_ASSERT(str);
1235
0
  WINPR_ASSERT(((str->length == 0) && (str->string == nullptr)) ||
1236
0
               (str->length == _wcsnlen(str->string, str->length)));
1237
0
  RAIL_UNICODE_STRING clone = { .string = wcsndup(str->string, str->length),
1238
0
                              .length = str->length };
1239
0
  return clone;
1240
0
}
1241
1242
static void window_state_order_free(WINDOW_STATE_ORDER* order)
1243
0
{
1244
0
  if (!order)
1245
0
    return;
1246
0
  free(order->windowRects);
1247
0
  free(order->visibilityRects);
1248
0
  rail_unicode_string_free(&order->titleInfo);
1249
0
  rail_unicode_string_free(&order->OverlayDescription);
1250
1251
0
  free(order);
1252
0
}
1253
1254
static WINDOW_STATE_ORDER* window_state_order_clone(const WINDOW_STATE_ORDER* order)
1255
0
{
1256
0
  WINDOW_STATE_ORDER* clone = calloc(1, sizeof(WINDOW_STATE_ORDER));
1257
0
  if (!clone)
1258
0
    return nullptr;
1259
0
  *clone = *order;
1260
1261
0
  clone->titleInfo = rail_unicode_string_clone(&order->titleInfo);
1262
0
  clone->OverlayDescription = rail_unicode_string_clone(&order->OverlayDescription);
1263
0
  clone->windowRects = rectangles_clone(order->windowRects, order->numWindowRects);
1264
0
  clone->visibilityRects = rectangles_clone(order->visibilityRects, order->numVisibilityRects);
1265
0
  if ((!clone->windowRects && (clone->numWindowRects > 0)) ||
1266
0
      (!clone->visibilityRects && (clone->numVisibilityRects > 0)) ||
1267
0
      (!clone->titleInfo.string && (clone->titleInfo.length > 0)) ||
1268
0
      (!clone->OverlayDescription.string && (clone->OverlayDescription.length > 0)))
1269
0
  {
1270
0
    window_state_order_free(clone);
1271
0
    return nullptr;
1272
0
  }
1273
0
  return clone;
1274
0
}
1275
1276
static BOOL update_message_WindowCreate(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1277
                                        const WINDOW_STATE_ORDER* windowState)
1278
0
{
1279
0
  if (!context || !context->update || !orderInfo || !windowState)
1280
0
    return FALSE;
1281
1282
0
  WINDOW_ORDER_INFO* wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1283
1284
0
  if (!wParam)
1285
0
    return FALSE;
1286
1287
0
  *wParam = *orderInfo;
1288
1289
0
  WINDOW_STATE_ORDER* lParam = window_state_order_clone(windowState);
1290
1291
0
  if (!lParam)
1292
0
  {
1293
0
    free(wParam);
1294
0
    return FALSE;
1295
0
  }
1296
1297
0
  rdp_update_internal* up = update_cast(context->update);
1298
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(WindowUpdate, WindowCreate),
1299
0
                           (void*)wParam, (void*)lParam);
1300
0
}
1301
1302
static BOOL update_message_WindowUpdate(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1303
                                        const WINDOW_STATE_ORDER* windowState)
1304
0
{
1305
0
  if (!context || !context->update || !orderInfo || !windowState)
1306
0
    return FALSE;
1307
1308
0
  WINDOW_ORDER_INFO* wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1309
1310
0
  if (!wParam)
1311
0
    return FALSE;
1312
1313
0
  *wParam = *orderInfo;
1314
1315
0
  WINDOW_STATE_ORDER* lParam = window_state_order_clone(windowState);
1316
1317
0
  if (!lParam)
1318
0
  {
1319
0
    free(wParam);
1320
0
    return FALSE;
1321
0
  }
1322
1323
0
  rdp_update_internal* up = update_cast(context->update);
1324
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(WindowUpdate, WindowUpdate),
1325
0
                           (void*)wParam, (void*)lParam);
1326
0
}
1327
1328
static BOOL update_message_WindowIcon(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1329
                                      const WINDOW_ICON_ORDER* windowIcon)
1330
0
{
1331
0
  if (!context || !context->update || !orderInfo || !windowIcon)
1332
0
    return FALSE;
1333
1334
0
  WINDOW_ORDER_INFO* wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1335
1336
0
  if (!wParam)
1337
0
    return FALSE;
1338
1339
0
  *wParam = *orderInfo;
1340
1341
0
  WINDOW_ICON_ORDER* lParam = (WINDOW_ICON_ORDER*)calloc(1, sizeof(WINDOW_ICON_ORDER));
1342
1343
0
  if (!lParam)
1344
0
    goto out_fail;
1345
1346
0
  *lParam = *windowIcon;
1347
0
  lParam->iconInfo = calloc(1, sizeof(ICON_INFO));
1348
1349
0
  if (!lParam->iconInfo)
1350
0
    goto out_fail;
1351
1352
0
  *lParam->iconInfo = *windowIcon->iconInfo;
1353
1354
0
  WLog_VRB(TAG, "update_message_WindowIcon");
1355
1356
0
  if (windowIcon->iconInfo->cbBitsColor > 0)
1357
0
  {
1358
0
    lParam->iconInfo->bitsColor = (BYTE*)malloc(windowIcon->iconInfo->cbBitsColor);
1359
1360
0
    if (!lParam->iconInfo->bitsColor)
1361
0
      goto out_fail;
1362
1363
0
    CopyMemory(lParam->iconInfo->bitsColor, windowIcon->iconInfo->bitsColor,
1364
0
               windowIcon->iconInfo->cbBitsColor);
1365
0
  }
1366
1367
0
  if (windowIcon->iconInfo->cbBitsMask > 0)
1368
0
  {
1369
0
    lParam->iconInfo->bitsMask = (BYTE*)malloc(windowIcon->iconInfo->cbBitsMask);
1370
1371
0
    if (!lParam->iconInfo->bitsMask)
1372
0
      goto out_fail;
1373
1374
0
    CopyMemory(lParam->iconInfo->bitsMask, windowIcon->iconInfo->bitsMask,
1375
0
               windowIcon->iconInfo->cbBitsMask);
1376
0
  }
1377
1378
0
  if (windowIcon->iconInfo->cbColorTable > 0)
1379
0
  {
1380
0
    lParam->iconInfo->colorTable = (BYTE*)malloc(windowIcon->iconInfo->cbColorTable);
1381
1382
0
    if (!lParam->iconInfo->colorTable)
1383
0
      goto out_fail;
1384
1385
0
    CopyMemory(lParam->iconInfo->colorTable, windowIcon->iconInfo->colorTable,
1386
0
               windowIcon->iconInfo->cbColorTable);
1387
0
  }
1388
1389
0
  rdp_update_internal* up = update_cast(context->update);
1390
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(WindowUpdate, WindowIcon),
1391
0
                           (void*)wParam, (void*)lParam);
1392
0
out_fail:
1393
1394
0
  if (lParam && lParam->iconInfo)
1395
0
  {
1396
0
    free(lParam->iconInfo->bitsColor);
1397
0
    free(lParam->iconInfo->bitsMask);
1398
0
    free(lParam->iconInfo->colorTable);
1399
0
    free(lParam->iconInfo);
1400
0
  }
1401
1402
0
  free(lParam);
1403
0
  free(wParam);
1404
0
  return FALSE;
1405
0
}
1406
1407
static BOOL update_message_WindowCachedIcon(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1408
                                            const WINDOW_CACHED_ICON_ORDER* windowCachedIcon)
1409
0
{
1410
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1411
0
  WINDOW_CACHED_ICON_ORDER* lParam = nullptr;
1412
0
  rdp_update_internal* up = nullptr;
1413
1414
0
  if (!context || !context->update || !orderInfo || !windowCachedIcon)
1415
0
    return FALSE;
1416
1417
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1418
1419
0
  if (!wParam)
1420
0
    return FALSE;
1421
1422
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1423
0
  lParam = (WINDOW_CACHED_ICON_ORDER*)malloc(sizeof(WINDOW_CACHED_ICON_ORDER));
1424
1425
0
  if (!lParam)
1426
0
  {
1427
0
    free(wParam);
1428
0
    return FALSE;
1429
0
  }
1430
1431
0
  CopyMemory(lParam, windowCachedIcon, sizeof(WINDOW_CACHED_ICON_ORDER));
1432
1433
0
  up = update_cast(context->update);
1434
0
  return MessageQueue_Post(up->queue, (void*)context,
1435
0
                           MakeMessageId(WindowUpdate, WindowCachedIcon), (void*)wParam,
1436
0
                           (void*)lParam);
1437
0
}
1438
1439
static BOOL update_message_WindowDelete(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo)
1440
0
{
1441
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1442
0
  rdp_update_internal* up = nullptr;
1443
1444
0
  if (!context || !context->update || !orderInfo)
1445
0
    return FALSE;
1446
1447
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1448
1449
0
  if (!wParam)
1450
0
    return FALSE;
1451
1452
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1453
1454
0
  up = update_cast(context->update);
1455
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(WindowUpdate, WindowDelete),
1456
0
                           (void*)wParam, nullptr);
1457
0
}
1458
1459
static void notify_icon_state_order_free(NOTIFY_ICON_STATE_ORDER* notify)
1460
0
{
1461
0
  if (!notify)
1462
0
    return;
1463
1464
0
  rail_unicode_string_free(&notify->toolTip);
1465
0
  rail_unicode_string_free(&notify->infoTip.text);
1466
0
  rail_unicode_string_free(&notify->infoTip.title);
1467
0
  free(notify->icon.bitsColor);
1468
0
  free(notify->icon.bitsMask);
1469
0
  free(notify->icon.colorTable);
1470
0
  free(notify);
1471
0
}
1472
1473
static BOOL icon_info_clone(ICON_INFO* dst, const ICON_INFO* src)
1474
0
{
1475
0
  dst->bitsColor = nullptr;
1476
0
  dst->bitsMask = nullptr;
1477
0
  dst->colorTable = nullptr;
1478
1479
0
  if (src->cbBitsColor > 0)
1480
0
  {
1481
0
    dst->bitsColor = (BYTE*)malloc(src->cbBitsColor);
1482
0
    if (!dst->bitsColor)
1483
0
      return FALSE;
1484
0
    CopyMemory(dst->bitsColor, src->bitsColor, src->cbBitsColor);
1485
0
  }
1486
1487
0
  if (src->cbBitsMask > 0)
1488
0
  {
1489
0
    dst->bitsMask = (BYTE*)malloc(src->cbBitsMask);
1490
0
    if (!dst->bitsMask)
1491
0
      return FALSE;
1492
0
    CopyMemory(dst->bitsMask, src->bitsMask, src->cbBitsMask);
1493
0
  }
1494
1495
0
  if (src->cbColorTable > 0)
1496
0
  {
1497
0
    dst->colorTable = (BYTE*)malloc(src->cbColorTable);
1498
0
    if (!dst->colorTable)
1499
0
      return FALSE;
1500
0
    CopyMemory(dst->colorTable, src->colorTable, src->cbColorTable);
1501
0
  }
1502
1503
0
  return TRUE;
1504
0
}
1505
1506
static NOTIFY_ICON_STATE_ORDER* notify_icon_state_order_clone(const NOTIFY_ICON_STATE_ORDER* order)
1507
0
{
1508
0
  NOTIFY_ICON_STATE_ORDER* clone = calloc(1, sizeof(NOTIFY_ICON_STATE_ORDER));
1509
0
  if (!clone)
1510
0
    return nullptr;
1511
1512
0
  *clone = *order;
1513
0
  clone->toolTip = rail_unicode_string_clone(&order->toolTip);
1514
0
  clone->infoTip.text = rail_unicode_string_clone(&order->infoTip.text);
1515
0
  clone->infoTip.title = rail_unicode_string_clone(&order->infoTip.title);
1516
1517
0
  if (!icon_info_clone(&clone->icon, &order->icon) ||
1518
0
      (!clone->toolTip.string && (order->toolTip.length > 0)) ||
1519
0
      (!clone->infoTip.text.string && (order->infoTip.text.length > 0)) ||
1520
0
      (!clone->infoTip.title.string && (order->infoTip.title.length > 0)))
1521
0
  {
1522
0
    notify_icon_state_order_free(clone);
1523
0
    return nullptr;
1524
0
  }
1525
1526
0
  return clone;
1527
0
}
1528
1529
static BOOL update_message_NotifyIconCreate(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1530
                                            const NOTIFY_ICON_STATE_ORDER* notifyIconState)
1531
0
{
1532
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1533
0
  NOTIFY_ICON_STATE_ORDER* lParam = nullptr;
1534
0
  rdp_update_internal* up = nullptr;
1535
1536
0
  if (!context || !context->update || !orderInfo || !notifyIconState)
1537
0
    return FALSE;
1538
1539
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1540
1541
0
  if (!wParam)
1542
0
    return FALSE;
1543
1544
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1545
0
  lParam = notify_icon_state_order_clone(notifyIconState);
1546
1547
0
  if (!lParam)
1548
0
  {
1549
0
    free(wParam);
1550
0
    return FALSE;
1551
0
  }
1552
1553
0
  up = update_cast(context->update);
1554
0
  return MessageQueue_Post(up->queue, (void*)context,
1555
0
                           MakeMessageId(WindowUpdate, NotifyIconCreate), (void*)wParam,
1556
0
                           (void*)lParam);
1557
0
}
1558
1559
static BOOL update_message_NotifyIconUpdate(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1560
                                            const NOTIFY_ICON_STATE_ORDER* notifyIconState)
1561
0
{
1562
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1563
0
  NOTIFY_ICON_STATE_ORDER* lParam = nullptr;
1564
0
  rdp_update_internal* up = nullptr;
1565
1566
0
  if (!context || !context->update || !orderInfo || !notifyIconState)
1567
0
    return FALSE;
1568
1569
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1570
1571
0
  if (!wParam)
1572
0
    return FALSE;
1573
1574
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1575
0
  lParam = notify_icon_state_order_clone(notifyIconState);
1576
1577
0
  if (!lParam)
1578
0
  {
1579
0
    free(wParam);
1580
0
    return FALSE;
1581
0
  }
1582
1583
0
  up = update_cast(context->update);
1584
0
  return MessageQueue_Post(up->queue, (void*)context,
1585
0
                           MakeMessageId(WindowUpdate, NotifyIconUpdate), (void*)wParam,
1586
0
                           (void*)lParam);
1587
0
}
1588
1589
static BOOL update_message_NotifyIconDelete(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo)
1590
0
{
1591
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1592
0
  rdp_update_internal* up = nullptr;
1593
1594
0
  if (!context || !context->update || !orderInfo)
1595
0
    return FALSE;
1596
1597
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1598
1599
0
  if (!wParam)
1600
0
    return FALSE;
1601
1602
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1603
1604
0
  up = update_cast(context->update);
1605
0
  return MessageQueue_Post(up->queue, (void*)context,
1606
0
                           MakeMessageId(WindowUpdate, NotifyIconDelete), (void*)wParam, nullptr);
1607
0
}
1608
1609
static BOOL update_message_MonitoredDesktop(rdpContext* context, const WINDOW_ORDER_INFO* orderInfo,
1610
                                            const MONITORED_DESKTOP_ORDER* monitoredDesktop)
1611
0
{
1612
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1613
0
  MONITORED_DESKTOP_ORDER* lParam = nullptr;
1614
0
  rdp_update_internal* up = nullptr;
1615
1616
0
  if (!context || !context->update || !orderInfo || !monitoredDesktop)
1617
0
    return FALSE;
1618
1619
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1620
1621
0
  if (!wParam)
1622
0
    return FALSE;
1623
1624
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1625
0
  lParam = (MONITORED_DESKTOP_ORDER*)malloc(sizeof(MONITORED_DESKTOP_ORDER));
1626
1627
0
  if (!lParam)
1628
0
  {
1629
0
    free(wParam);
1630
0
    return FALSE;
1631
0
  }
1632
1633
0
  CopyMemory(lParam, monitoredDesktop, sizeof(MONITORED_DESKTOP_ORDER));
1634
0
  lParam->windowIds = nullptr;
1635
1636
0
  if (lParam->numWindowIds)
1637
0
  {
1638
0
    lParam->windowIds = (UINT32*)calloc(lParam->numWindowIds, sizeof(UINT32));
1639
0
    CopyMemory(lParam->windowIds, monitoredDesktop->windowIds, lParam->numWindowIds);
1640
0
  }
1641
1642
0
  up = update_cast(context->update);
1643
0
  return MessageQueue_Post(up->queue, (void*)context,
1644
0
                           MakeMessageId(WindowUpdate, MonitoredDesktop), (void*)wParam,
1645
0
                           (void*)lParam);
1646
0
}
1647
1648
static BOOL update_message_NonMonitoredDesktop(rdpContext* context,
1649
                                               const WINDOW_ORDER_INFO* orderInfo)
1650
0
{
1651
0
  WINDOW_ORDER_INFO* wParam = nullptr;
1652
0
  rdp_update_internal* up = nullptr;
1653
1654
0
  if (!context || !context->update || !orderInfo)
1655
0
    return FALSE;
1656
1657
0
  wParam = (WINDOW_ORDER_INFO*)malloc(sizeof(WINDOW_ORDER_INFO));
1658
1659
0
  if (!wParam)
1660
0
    return FALSE;
1661
1662
0
  CopyMemory(wParam, orderInfo, sizeof(WINDOW_ORDER_INFO));
1663
1664
0
  up = update_cast(context->update);
1665
0
  return MessageQueue_Post(up->queue, (void*)context,
1666
0
                           MakeMessageId(WindowUpdate, NonMonitoredDesktop), (void*)wParam,
1667
0
                           nullptr);
1668
0
}
1669
1670
/* Pointer Update */
1671
1672
static BOOL update_message_PointerPosition(rdpContext* context,
1673
                                           const POINTER_POSITION_UPDATE* pointerPosition)
1674
0
{
1675
0
  POINTER_POSITION_UPDATE* wParam = nullptr;
1676
0
  rdp_update_internal* up = nullptr;
1677
1678
0
  if (!context || !context->update || !pointerPosition)
1679
0
    return FALSE;
1680
1681
0
  wParam = copy_pointer_position_update(context, pointerPosition);
1682
1683
0
  if (!wParam)
1684
0
    return FALSE;
1685
1686
0
  up = update_cast(context->update);
1687
0
  return MessageQueue_Post(up->queue, (void*)context,
1688
0
                           MakeMessageId(PointerUpdate, PointerPosition), (void*)wParam, nullptr);
1689
0
}
1690
1691
static BOOL update_message_PointerSystem(rdpContext* context,
1692
                                         const POINTER_SYSTEM_UPDATE* pointerSystem)
1693
0
{
1694
0
  POINTER_SYSTEM_UPDATE* wParam = nullptr;
1695
0
  rdp_update_internal* up = nullptr;
1696
1697
0
  if (!context || !context->update || !pointerSystem)
1698
0
    return FALSE;
1699
1700
0
  wParam = copy_pointer_system_update(context, pointerSystem);
1701
1702
0
  if (!wParam)
1703
0
    return FALSE;
1704
1705
0
  up = update_cast(context->update);
1706
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PointerUpdate, PointerSystem),
1707
0
                           (void*)wParam, nullptr);
1708
0
}
1709
1710
static BOOL update_message_PointerColor(rdpContext* context,
1711
                                        const POINTER_COLOR_UPDATE* pointerColor)
1712
0
{
1713
0
  POINTER_COLOR_UPDATE* wParam = nullptr;
1714
0
  rdp_update_internal* up = nullptr;
1715
1716
0
  if (!context || !context->update || !pointerColor)
1717
0
    return FALSE;
1718
1719
0
  wParam = copy_pointer_color_update(context, pointerColor);
1720
1721
0
  if (!wParam)
1722
0
    return FALSE;
1723
1724
0
  up = update_cast(context->update);
1725
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PointerUpdate, PointerColor),
1726
0
                           (void*)wParam, nullptr);
1727
0
}
1728
1729
static BOOL update_message_PointerLarge(rdpContext* context, const POINTER_LARGE_UPDATE* pointer)
1730
0
{
1731
0
  POINTER_LARGE_UPDATE* wParam = nullptr;
1732
0
  rdp_update_internal* up = nullptr;
1733
1734
0
  if (!context || !context->update || !pointer)
1735
0
    return FALSE;
1736
1737
0
  wParam = copy_pointer_large_update(context, pointer);
1738
1739
0
  if (!wParam)
1740
0
    return FALSE;
1741
1742
0
  up = update_cast(context->update);
1743
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PointerUpdate, PointerLarge),
1744
0
                           (void*)wParam, nullptr);
1745
0
}
1746
1747
static BOOL update_message_PointerNew(rdpContext* context, const POINTER_NEW_UPDATE* pointerNew)
1748
0
{
1749
0
  POINTER_NEW_UPDATE* wParam = nullptr;
1750
0
  rdp_update_internal* up = nullptr;
1751
1752
0
  if (!context || !context->update || !pointerNew)
1753
0
    return FALSE;
1754
1755
0
  wParam = copy_pointer_new_update(context, pointerNew);
1756
1757
0
  if (!wParam)
1758
0
    return FALSE;
1759
1760
0
  up = update_cast(context->update);
1761
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PointerUpdate, PointerNew),
1762
0
                           (void*)wParam, nullptr);
1763
0
}
1764
1765
static BOOL update_message_PointerCached(rdpContext* context,
1766
                                         const POINTER_CACHED_UPDATE* pointerCached)
1767
0
{
1768
0
  POINTER_CACHED_UPDATE* wParam = nullptr;
1769
0
  rdp_update_internal* up = nullptr;
1770
1771
0
  if (!context || !context->update || !pointerCached)
1772
0
    return FALSE;
1773
1774
0
  wParam = copy_pointer_cached_update(context, pointerCached);
1775
1776
0
  if (!wParam)
1777
0
    return FALSE;
1778
1779
0
  up = update_cast(context->update);
1780
0
  return MessageQueue_Post(up->queue, (void*)context, MakeMessageId(PointerUpdate, PointerCached),
1781
0
                           (void*)wParam, nullptr);
1782
0
}
1783
1784
/* Message Queue */
1785
static BOOL update_message_free_update_class(wMessage* msg, int type)
1786
0
{
1787
0
  rdpContext* context = nullptr;
1788
1789
0
  if (!msg)
1790
0
    return FALSE;
1791
1792
0
  context = (rdpContext*)msg->context;
1793
1794
0
  switch (type)
1795
0
  {
1796
0
    case Update_BeginPaint:
1797
0
      break;
1798
1799
0
    case Update_EndPaint:
1800
0
      break;
1801
1802
0
    case Update_SetBounds:
1803
0
      free(msg->wParam);
1804
0
      break;
1805
1806
0
    case Update_Synchronize:
1807
0
      break;
1808
1809
0
    case Update_DesktopResize:
1810
0
      break;
1811
1812
0
    case Update_BitmapUpdate:
1813
0
    {
1814
0
      BITMAP_UPDATE* wParam = (BITMAP_UPDATE*)msg->wParam;
1815
0
      free_bitmap_update(context, wParam);
1816
0
    }
1817
0
    break;
1818
1819
0
    case Update_Palette:
1820
0
    {
1821
0
      PALETTE_UPDATE* palette = (PALETTE_UPDATE*)msg->wParam;
1822
0
      free_palette_update(context, palette);
1823
0
    }
1824
0
    break;
1825
1826
0
    case Update_PlaySound:
1827
0
      free(msg->wParam);
1828
0
      break;
1829
1830
0
    case Update_RefreshRect:
1831
0
      free(msg->lParam);
1832
0
      break;
1833
1834
0
    case Update_SuppressOutput:
1835
0
      free(msg->lParam);
1836
0
      break;
1837
1838
0
    case Update_SurfaceCommand:
1839
0
    {
1840
0
      wStream* s = (wStream*)msg->wParam;
1841
0
      Stream_Free(s, TRUE);
1842
0
    }
1843
0
    break;
1844
1845
0
    case Update_SurfaceBits:
1846
0
    {
1847
0
      SURFACE_BITS_COMMAND* wParam = (SURFACE_BITS_COMMAND*)msg->wParam;
1848
0
      free_surface_bits_command(context, wParam);
1849
0
    }
1850
0
    break;
1851
1852
0
    case Update_SurfaceFrameMarker:
1853
0
      free(msg->wParam);
1854
0
      break;
1855
1856
0
    case Update_SurfaceFrameAcknowledge:
1857
0
    case Update_SetKeyboardIndicators:
1858
0
    case Update_SetKeyboardImeStatus:
1859
0
      break;
1860
1861
0
    default:
1862
0
      return FALSE;
1863
0
  }
1864
1865
0
  return TRUE;
1866
0
}
1867
1868
static BOOL update_message_process_update_class(rdpUpdateProxy* proxy, wMessage* msg, int type)
1869
0
{
1870
0
  BOOL rc = FALSE;
1871
1872
0
  if (!proxy || !msg)
1873
0
    return FALSE;
1874
1875
0
  switch (type)
1876
0
  {
1877
0
    case Update_BeginPaint:
1878
0
      rc = IFCALLRESULT(TRUE, proxy->BeginPaint, msg->context);
1879
0
      break;
1880
1881
0
    case Update_EndPaint:
1882
0
      rc = IFCALLRESULT(TRUE, proxy->EndPaint, msg->context);
1883
0
      break;
1884
1885
0
    case Update_SetBounds:
1886
0
      rc = IFCALLRESULT(TRUE, proxy->SetBounds, msg->context, (rdpBounds*)msg->wParam);
1887
0
      break;
1888
1889
0
    case Update_Synchronize:
1890
0
      rc = IFCALLRESULT(TRUE, proxy->Synchronize, msg->context);
1891
0
      break;
1892
1893
0
    case Update_DesktopResize:
1894
0
      rc = IFCALLRESULT(TRUE, proxy->DesktopResize, msg->context);
1895
0
      break;
1896
1897
0
    case Update_BitmapUpdate:
1898
0
      rc = IFCALLRESULT(TRUE, proxy->BitmapUpdate, msg->context, (BITMAP_UPDATE*)msg->wParam);
1899
0
      break;
1900
1901
0
    case Update_Palette:
1902
0
      rc = IFCALLRESULT(TRUE, proxy->Palette, msg->context, (PALETTE_UPDATE*)msg->wParam);
1903
0
      break;
1904
1905
0
    case Update_PlaySound:
1906
0
      rc =
1907
0
          IFCALLRESULT(TRUE, proxy->PlaySound, msg->context, (PLAY_SOUND_UPDATE*)msg->wParam);
1908
0
      break;
1909
1910
0
    case Update_RefreshRect:
1911
0
      rc = IFCALLRESULT(TRUE, proxy->RefreshRect, msg->context, (BYTE)(size_t)msg->wParam,
1912
0
                        (RECTANGLE_16*)msg->lParam);
1913
0
      break;
1914
1915
0
    case Update_SuppressOutput:
1916
0
      rc = IFCALLRESULT(TRUE, proxy->SuppressOutput, msg->context, (BYTE)(size_t)msg->wParam,
1917
0
                        (RECTANGLE_16*)msg->lParam);
1918
0
      break;
1919
1920
0
    case Update_SurfaceCommand:
1921
0
      rc = IFCALLRESULT(TRUE, proxy->SurfaceCommand, msg->context, (wStream*)msg->wParam);
1922
0
      break;
1923
1924
0
    case Update_SurfaceBits:
1925
0
      rc = IFCALLRESULT(TRUE, proxy->SurfaceBits, msg->context,
1926
0
                        (SURFACE_BITS_COMMAND*)msg->wParam);
1927
0
      break;
1928
1929
0
    case Update_SurfaceFrameMarker:
1930
0
      rc = IFCALLRESULT(TRUE, proxy->SurfaceFrameMarker, msg->context,
1931
0
                        (SURFACE_FRAME_MARKER*)msg->wParam);
1932
0
      break;
1933
1934
0
    case Update_SurfaceFrameAcknowledge:
1935
0
      rc = IFCALLRESULT(TRUE, proxy->SurfaceFrameAcknowledge, msg->context,
1936
0
                        (UINT32)(size_t)msg->wParam);
1937
0
      break;
1938
1939
0
    case Update_SetKeyboardIndicators:
1940
0
      rc = IFCALLRESULT(TRUE, proxy->SetKeyboardIndicators, msg->context,
1941
0
                        (UINT16)(size_t)msg->wParam);
1942
0
      break;
1943
1944
0
    case Update_SetKeyboardImeStatus:
1945
0
    {
1946
0
      const UINT16 imeId = ((size_t)msg->wParam) >> 16 & 0xFFFF;
1947
0
      const UINT32 imeState = ((size_t)msg->wParam) & 0xFFFF;
1948
0
      const UINT32 imeConvMode = ((size_t)msg->lParam) & 0xFFFFFFFFUL;
1949
0
      rc = IFCALLRESULT(TRUE, proxy->SetKeyboardImeStatus, msg->context, imeId, imeState,
1950
0
                        imeConvMode);
1951
0
    }
1952
0
    break;
1953
1954
0
    default:
1955
0
      break;
1956
0
  }
1957
1958
0
  return rc;
1959
0
}
1960
1961
static BOOL update_message_free_primary_update_class(wMessage* msg, int type)
1962
0
{
1963
0
  if (!msg)
1964
0
    return FALSE;
1965
1966
0
  switch (type)
1967
0
  {
1968
0
    case PrimaryUpdate_DstBlt:
1969
0
      free(msg->wParam);
1970
0
      break;
1971
1972
0
    case PrimaryUpdate_PatBlt:
1973
0
      free(msg->wParam);
1974
0
      break;
1975
1976
0
    case PrimaryUpdate_ScrBlt:
1977
0
      free(msg->wParam);
1978
0
      break;
1979
1980
0
    case PrimaryUpdate_OpaqueRect:
1981
0
      free(msg->wParam);
1982
0
      break;
1983
1984
0
    case PrimaryUpdate_DrawNineGrid:
1985
0
      free(msg->wParam);
1986
0
      break;
1987
1988
0
    case PrimaryUpdate_MultiDstBlt:
1989
0
      free(msg->wParam);
1990
0
      break;
1991
1992
0
    case PrimaryUpdate_MultiPatBlt:
1993
0
      free(msg->wParam);
1994
0
      break;
1995
1996
0
    case PrimaryUpdate_MultiScrBlt:
1997
0
      free(msg->wParam);
1998
0
      break;
1999
2000
0
    case PrimaryUpdate_MultiOpaqueRect:
2001
0
      free(msg->wParam);
2002
0
      break;
2003
2004
0
    case PrimaryUpdate_MultiDrawNineGrid:
2005
0
      free(msg->wParam);
2006
0
      break;
2007
2008
0
    case PrimaryUpdate_LineTo:
2009
0
      free(msg->wParam);
2010
0
      break;
2011
2012
0
    case PrimaryUpdate_Polyline:
2013
0
    {
2014
0
      POLYLINE_ORDER* wParam = (POLYLINE_ORDER*)msg->wParam;
2015
0
      free(wParam->points);
2016
0
      free(wParam);
2017
0
    }
2018
0
    break;
2019
2020
0
    case PrimaryUpdate_MemBlt:
2021
0
      free(msg->wParam);
2022
0
      break;
2023
2024
0
    case PrimaryUpdate_Mem3Blt:
2025
0
      free(msg->wParam);
2026
0
      break;
2027
2028
0
    case PrimaryUpdate_SaveBitmap:
2029
0
      free(msg->wParam);
2030
0
      break;
2031
2032
0
    case PrimaryUpdate_GlyphIndex:
2033
0
      free(msg->wParam);
2034
0
      break;
2035
2036
0
    case PrimaryUpdate_FastIndex:
2037
0
      free(msg->wParam);
2038
0
      break;
2039
2040
0
    case PrimaryUpdate_FastGlyph:
2041
0
    {
2042
0
      FAST_GLYPH_ORDER* wParam = (FAST_GLYPH_ORDER*)msg->wParam;
2043
0
      free(wParam->glyphData.aj);
2044
0
      free(wParam);
2045
0
    }
2046
0
    break;
2047
2048
0
    case PrimaryUpdate_PolygonSC:
2049
0
    {
2050
0
      POLYGON_SC_ORDER* wParam = (POLYGON_SC_ORDER*)msg->wParam;
2051
0
      free(wParam->points);
2052
0
      free(wParam);
2053
0
    }
2054
0
    break;
2055
2056
0
    case PrimaryUpdate_PolygonCB:
2057
0
    {
2058
0
      POLYGON_CB_ORDER* wParam = (POLYGON_CB_ORDER*)msg->wParam;
2059
0
      free(wParam->points);
2060
0
      free(wParam);
2061
0
    }
2062
0
    break;
2063
2064
0
    case PrimaryUpdate_EllipseSC:
2065
0
      free(msg->wParam);
2066
0
      break;
2067
2068
0
    case PrimaryUpdate_EllipseCB:
2069
0
      free(msg->wParam);
2070
0
      break;
2071
2072
0
    default:
2073
0
      return FALSE;
2074
0
  }
2075
2076
0
  return TRUE;
2077
0
}
2078
2079
static BOOL update_message_process_primary_update_class(rdpUpdateProxy* proxy, wMessage* msg,
2080
                                                        int type)
2081
0
{
2082
0
  if (!proxy || !msg)
2083
0
    return FALSE;
2084
2085
0
  switch (type)
2086
0
  {
2087
0
    case PrimaryUpdate_DstBlt:
2088
0
      return IFCALLRESULT(TRUE, proxy->DstBlt, msg->context, (DSTBLT_ORDER*)msg->wParam);
2089
2090
0
    case PrimaryUpdate_PatBlt:
2091
0
      return IFCALLRESULT(TRUE, proxy->PatBlt, msg->context, (PATBLT_ORDER*)msg->wParam);
2092
2093
0
    case PrimaryUpdate_ScrBlt:
2094
0
      return IFCALLRESULT(TRUE, proxy->ScrBlt, msg->context, (SCRBLT_ORDER*)msg->wParam);
2095
2096
0
    case PrimaryUpdate_OpaqueRect:
2097
0
      return IFCALLRESULT(TRUE, proxy->OpaqueRect, msg->context,
2098
0
                          (OPAQUE_RECT_ORDER*)msg->wParam);
2099
2100
0
    case PrimaryUpdate_DrawNineGrid:
2101
0
      return IFCALLRESULT(TRUE, proxy->DrawNineGrid, msg->context,
2102
0
                          (DRAW_NINE_GRID_ORDER*)msg->wParam);
2103
2104
0
    case PrimaryUpdate_MultiDstBlt:
2105
0
      return IFCALLRESULT(TRUE, proxy->MultiDstBlt, msg->context,
2106
0
                          (MULTI_DSTBLT_ORDER*)msg->wParam);
2107
2108
0
    case PrimaryUpdate_MultiPatBlt:
2109
0
      return IFCALLRESULT(TRUE, proxy->MultiPatBlt, msg->context,
2110
0
                          (MULTI_PATBLT_ORDER*)msg->wParam);
2111
2112
0
    case PrimaryUpdate_MultiScrBlt:
2113
0
      return IFCALLRESULT(TRUE, proxy->MultiScrBlt, msg->context,
2114
0
                          (MULTI_SCRBLT_ORDER*)msg->wParam);
2115
2116
0
    case PrimaryUpdate_MultiOpaqueRect:
2117
0
      return IFCALLRESULT(TRUE, proxy->MultiOpaqueRect, msg->context,
2118
0
                          (MULTI_OPAQUE_RECT_ORDER*)msg->wParam);
2119
2120
0
    case PrimaryUpdate_MultiDrawNineGrid:
2121
0
      return IFCALLRESULT(TRUE, proxy->MultiDrawNineGrid, msg->context,
2122
0
                          (MULTI_DRAW_NINE_GRID_ORDER*)msg->wParam);
2123
2124
0
    case PrimaryUpdate_LineTo:
2125
0
      return IFCALLRESULT(TRUE, proxy->LineTo, msg->context, (LINE_TO_ORDER*)msg->wParam);
2126
2127
0
    case PrimaryUpdate_Polyline:
2128
0
      return IFCALLRESULT(TRUE, proxy->Polyline, msg->context, (POLYLINE_ORDER*)msg->wParam);
2129
2130
0
    case PrimaryUpdate_MemBlt:
2131
0
      return IFCALLRESULT(TRUE, proxy->MemBlt, msg->context, (MEMBLT_ORDER*)msg->wParam);
2132
2133
0
    case PrimaryUpdate_Mem3Blt:
2134
0
      return IFCALLRESULT(TRUE, proxy->Mem3Blt, msg->context, (MEM3BLT_ORDER*)msg->wParam);
2135
2136
0
    case PrimaryUpdate_SaveBitmap:
2137
0
      return IFCALLRESULT(TRUE, proxy->SaveBitmap, msg->context,
2138
0
                          (SAVE_BITMAP_ORDER*)msg->wParam);
2139
2140
0
    case PrimaryUpdate_GlyphIndex:
2141
0
      return IFCALLRESULT(TRUE, proxy->GlyphIndex, msg->context,
2142
0
                          (GLYPH_INDEX_ORDER*)msg->wParam);
2143
2144
0
    case PrimaryUpdate_FastIndex:
2145
0
      return IFCALLRESULT(TRUE, proxy->FastIndex, msg->context,
2146
0
                          (FAST_INDEX_ORDER*)msg->wParam);
2147
2148
0
    case PrimaryUpdate_FastGlyph:
2149
0
      return IFCALLRESULT(TRUE, proxy->FastGlyph, msg->context,
2150
0
                          (FAST_GLYPH_ORDER*)msg->wParam);
2151
2152
0
    case PrimaryUpdate_PolygonSC:
2153
0
      return IFCALLRESULT(TRUE, proxy->PolygonSC, msg->context,
2154
0
                          (POLYGON_SC_ORDER*)msg->wParam);
2155
2156
0
    case PrimaryUpdate_PolygonCB:
2157
0
      return IFCALLRESULT(TRUE, proxy->PolygonCB, msg->context,
2158
0
                          (POLYGON_CB_ORDER*)msg->wParam);
2159
2160
0
    case PrimaryUpdate_EllipseSC:
2161
0
      return IFCALLRESULT(TRUE, proxy->EllipseSC, msg->context,
2162
0
                          (ELLIPSE_SC_ORDER*)msg->wParam);
2163
2164
0
    case PrimaryUpdate_EllipseCB:
2165
0
      return IFCALLRESULT(TRUE, proxy->EllipseCB, msg->context,
2166
0
                          (ELLIPSE_CB_ORDER*)msg->wParam);
2167
2168
0
    default:
2169
0
      return FALSE;
2170
0
  }
2171
0
}
2172
2173
static BOOL update_message_free_secondary_update_class(wMessage* msg, int type)
2174
0
{
2175
0
  rdpContext* context = nullptr;
2176
2177
0
  if (!msg)
2178
0
    return FALSE;
2179
2180
0
  context = msg->context;
2181
2182
0
  switch (type)
2183
0
  {
2184
0
    case SecondaryUpdate_CacheBitmap:
2185
0
    {
2186
0
      CACHE_BITMAP_ORDER* wParam = (CACHE_BITMAP_ORDER*)msg->wParam;
2187
0
      free_cache_bitmap_order(context, wParam);
2188
0
    }
2189
0
    break;
2190
2191
0
    case SecondaryUpdate_CacheBitmapV2:
2192
0
    {
2193
0
      CACHE_BITMAP_V2_ORDER* wParam = (CACHE_BITMAP_V2_ORDER*)msg->wParam;
2194
0
      free_cache_bitmap_v2_order(context, wParam);
2195
0
    }
2196
0
    break;
2197
2198
0
    case SecondaryUpdate_CacheBitmapV3:
2199
0
    {
2200
0
      CACHE_BITMAP_V3_ORDER* wParam = (CACHE_BITMAP_V3_ORDER*)msg->wParam;
2201
0
      free_cache_bitmap_v3_order(context, wParam);
2202
0
    }
2203
0
    break;
2204
2205
0
    case SecondaryUpdate_CacheColorTable:
2206
0
    {
2207
0
      CACHE_COLOR_TABLE_ORDER* wParam = (CACHE_COLOR_TABLE_ORDER*)msg->wParam;
2208
0
      free_cache_color_table_order(context, wParam);
2209
0
    }
2210
0
    break;
2211
2212
0
    case SecondaryUpdate_CacheGlyph:
2213
0
    {
2214
0
      CACHE_GLYPH_ORDER* wParam = (CACHE_GLYPH_ORDER*)msg->wParam;
2215
0
      free_cache_glyph_order(context, wParam);
2216
0
    }
2217
0
    break;
2218
2219
0
    case SecondaryUpdate_CacheGlyphV2:
2220
0
    {
2221
0
      CACHE_GLYPH_V2_ORDER* wParam = (CACHE_GLYPH_V2_ORDER*)msg->wParam;
2222
0
      free_cache_glyph_v2_order(context, wParam);
2223
0
    }
2224
0
    break;
2225
2226
0
    case SecondaryUpdate_CacheBrush:
2227
0
    {
2228
0
      CACHE_BRUSH_ORDER* wParam = (CACHE_BRUSH_ORDER*)msg->wParam;
2229
0
      free_cache_brush_order(context, wParam);
2230
0
    }
2231
0
    break;
2232
2233
0
    default:
2234
0
      return FALSE;
2235
0
  }
2236
2237
0
  return TRUE;
2238
0
}
2239
2240
static BOOL update_message_process_secondary_update_class(rdpUpdateProxy* proxy, wMessage* msg,
2241
                                                          int type)
2242
0
{
2243
0
  if (!proxy || !msg)
2244
0
    return FALSE;
2245
2246
0
  switch (type)
2247
0
  {
2248
0
    case SecondaryUpdate_CacheBitmap:
2249
0
      return IFCALLRESULT(TRUE, proxy->CacheBitmap, msg->context,
2250
0
                          (CACHE_BITMAP_ORDER*)msg->wParam);
2251
2252
0
    case SecondaryUpdate_CacheBitmapV2:
2253
0
      return IFCALLRESULT(TRUE, proxy->CacheBitmapV2, msg->context,
2254
0
                          (CACHE_BITMAP_V2_ORDER*)msg->wParam);
2255
2256
0
    case SecondaryUpdate_CacheBitmapV3:
2257
0
      return IFCALLRESULT(TRUE, proxy->CacheBitmapV3, msg->context,
2258
0
                          (CACHE_BITMAP_V3_ORDER*)msg->wParam);
2259
2260
0
    case SecondaryUpdate_CacheColorTable:
2261
0
      return IFCALLRESULT(TRUE, proxy->CacheColorTable, msg->context,
2262
0
                          (CACHE_COLOR_TABLE_ORDER*)msg->wParam);
2263
2264
0
    case SecondaryUpdate_CacheGlyph:
2265
0
      return IFCALLRESULT(TRUE, proxy->CacheGlyph, msg->context,
2266
0
                          (CACHE_GLYPH_ORDER*)msg->wParam);
2267
2268
0
    case SecondaryUpdate_CacheGlyphV2:
2269
0
      return IFCALLRESULT(TRUE, proxy->CacheGlyphV2, msg->context,
2270
0
                          (CACHE_GLYPH_V2_ORDER*)msg->wParam);
2271
2272
0
    case SecondaryUpdate_CacheBrush:
2273
0
      return IFCALLRESULT(TRUE, proxy->CacheBrush, msg->context,
2274
0
                          (CACHE_BRUSH_ORDER*)msg->wParam);
2275
2276
0
    default:
2277
0
      return FALSE;
2278
0
  }
2279
0
}
2280
2281
static BOOL update_message_free_altsec_update_class(wMessage* msg, int type)
2282
0
{
2283
0
  if (!msg)
2284
0
    return FALSE;
2285
2286
0
  switch (type)
2287
0
  {
2288
0
    case AltSecUpdate_CreateOffscreenBitmap:
2289
0
    {
2290
0
      CREATE_OFFSCREEN_BITMAP_ORDER* wParam = (CREATE_OFFSCREEN_BITMAP_ORDER*)msg->wParam;
2291
0
      free(wParam->deleteList.indices);
2292
0
      free(wParam);
2293
0
    }
2294
0
    break;
2295
2296
0
    case AltSecUpdate_SwitchSurface:
2297
0
      free(msg->wParam);
2298
0
      break;
2299
2300
0
    case AltSecUpdate_CreateNineGridBitmap:
2301
0
      free(msg->wParam);
2302
0
      break;
2303
2304
0
    case AltSecUpdate_FrameMarker:
2305
0
      free(msg->wParam);
2306
0
      break;
2307
2308
0
    case AltSecUpdate_StreamBitmapFirst:
2309
0
      free(msg->wParam);
2310
0
      break;
2311
2312
0
    case AltSecUpdate_StreamBitmapNext:
2313
0
      free(msg->wParam);
2314
0
      break;
2315
2316
0
    case AltSecUpdate_DrawGdiPlusFirst:
2317
0
      free(msg->wParam);
2318
0
      break;
2319
2320
0
    case AltSecUpdate_DrawGdiPlusNext:
2321
0
      free(msg->wParam);
2322
0
      break;
2323
2324
0
    case AltSecUpdate_DrawGdiPlusEnd:
2325
0
      free(msg->wParam);
2326
0
      break;
2327
2328
0
    case AltSecUpdate_DrawGdiPlusCacheFirst:
2329
0
      free(msg->wParam);
2330
0
      break;
2331
2332
0
    case AltSecUpdate_DrawGdiPlusCacheNext:
2333
0
      free(msg->wParam);
2334
0
      break;
2335
2336
0
    case AltSecUpdate_DrawGdiPlusCacheEnd:
2337
0
      free(msg->wParam);
2338
0
      break;
2339
2340
0
    default:
2341
0
      return FALSE;
2342
0
  }
2343
2344
0
  return TRUE;
2345
0
}
2346
2347
static BOOL update_message_process_altsec_update_class(rdpUpdateProxy* proxy, wMessage* msg,
2348
                                                       int type)
2349
0
{
2350
0
  if (!proxy || !msg)
2351
0
    return FALSE;
2352
2353
0
  switch (type)
2354
0
  {
2355
0
    case AltSecUpdate_CreateOffscreenBitmap:
2356
0
      return IFCALLRESULT(TRUE, proxy->CreateOffscreenBitmap, msg->context,
2357
0
                          (CREATE_OFFSCREEN_BITMAP_ORDER*)msg->wParam);
2358
2359
0
    case AltSecUpdate_SwitchSurface:
2360
0
      return IFCALLRESULT(TRUE, proxy->SwitchSurface, msg->context,
2361
0
                          (SWITCH_SURFACE_ORDER*)msg->wParam);
2362
2363
0
    case AltSecUpdate_CreateNineGridBitmap:
2364
0
      return IFCALLRESULT(TRUE, proxy->CreateNineGridBitmap, msg->context,
2365
0
                          (CREATE_NINE_GRID_BITMAP_ORDER*)msg->wParam);
2366
2367
0
    case AltSecUpdate_FrameMarker:
2368
0
      return IFCALLRESULT(TRUE, proxy->FrameMarker, msg->context,
2369
0
                          (FRAME_MARKER_ORDER*)msg->wParam);
2370
2371
0
    case AltSecUpdate_StreamBitmapFirst:
2372
0
      return IFCALLRESULT(TRUE, proxy->StreamBitmapFirst, msg->context,
2373
0
                          (STREAM_BITMAP_FIRST_ORDER*)msg->wParam);
2374
2375
0
    case AltSecUpdate_StreamBitmapNext:
2376
0
      return IFCALLRESULT(TRUE, proxy->StreamBitmapNext, msg->context,
2377
0
                          (STREAM_BITMAP_NEXT_ORDER*)msg->wParam);
2378
2379
0
    case AltSecUpdate_DrawGdiPlusFirst:
2380
0
      return IFCALLRESULT(TRUE, proxy->DrawGdiPlusFirst, msg->context,
2381
0
                          (DRAW_GDIPLUS_FIRST_ORDER*)msg->wParam);
2382
2383
0
    case AltSecUpdate_DrawGdiPlusNext:
2384
0
      return IFCALLRESULT(TRUE, proxy->DrawGdiPlusNext, msg->context,
2385
0
                          (DRAW_GDIPLUS_NEXT_ORDER*)msg->wParam);
2386
2387
0
    case AltSecUpdate_DrawGdiPlusEnd:
2388
0
      return IFCALLRESULT(TRUE, proxy->DrawGdiPlusEnd, msg->context,
2389
0
                          (DRAW_GDIPLUS_END_ORDER*)msg->wParam);
2390
2391
0
    case AltSecUpdate_DrawGdiPlusCacheFirst:
2392
0
      return IFCALLRESULT(TRUE, proxy->DrawGdiPlusCacheFirst, msg->context,
2393
0
                          (DRAW_GDIPLUS_CACHE_FIRST_ORDER*)msg->wParam);
2394
2395
0
    case AltSecUpdate_DrawGdiPlusCacheNext:
2396
0
      return IFCALLRESULT(TRUE, proxy->DrawGdiPlusCacheNext, msg->context,
2397
0
                          (DRAW_GDIPLUS_CACHE_NEXT_ORDER*)msg->wParam);
2398
2399
0
    case AltSecUpdate_DrawGdiPlusCacheEnd:
2400
0
      return IFCALLRESULT(TRUE, proxy->DrawGdiPlusCacheEnd, msg->context,
2401
0
                          (DRAW_GDIPLUS_CACHE_END_ORDER*)msg->wParam);
2402
2403
0
    default:
2404
0
      return FALSE;
2405
0
  }
2406
0
}
2407
2408
static BOOL update_message_free_window_update_class(wMessage* msg, int type)
2409
0
{
2410
0
  if (!msg)
2411
0
    return FALSE;
2412
2413
0
  switch (type)
2414
0
  {
2415
0
    case WindowUpdate_WindowCreate:
2416
0
      free(msg->wParam);
2417
0
      window_state_order_free(msg->lParam);
2418
0
      break;
2419
2420
0
    case WindowUpdate_WindowUpdate:
2421
0
      free(msg->wParam);
2422
0
      window_state_order_free(msg->lParam);
2423
0
      break;
2424
2425
0
    case WindowUpdate_WindowIcon:
2426
0
    {
2427
0
      WINDOW_ORDER_INFO* orderInfo = (WINDOW_ORDER_INFO*)msg->wParam;
2428
0
      WINDOW_ICON_ORDER* windowIcon = (WINDOW_ICON_ORDER*)msg->lParam;
2429
2430
0
      if (windowIcon->iconInfo->cbBitsColor > 0)
2431
0
      {
2432
0
        free(windowIcon->iconInfo->bitsColor);
2433
0
      }
2434
2435
0
      if (windowIcon->iconInfo->cbBitsMask > 0)
2436
0
      {
2437
0
        free(windowIcon->iconInfo->bitsMask);
2438
0
      }
2439
2440
0
      if (windowIcon->iconInfo->cbColorTable > 0)
2441
0
      {
2442
0
        free(windowIcon->iconInfo->colorTable);
2443
0
      }
2444
2445
0
      free(orderInfo);
2446
0
      free(windowIcon->iconInfo);
2447
0
      free(windowIcon);
2448
0
    }
2449
0
    break;
2450
2451
0
    case WindowUpdate_WindowCachedIcon:
2452
0
      free(msg->wParam);
2453
0
      free(msg->lParam);
2454
0
      break;
2455
2456
0
    case WindowUpdate_WindowDelete:
2457
0
      free(msg->wParam);
2458
0
      break;
2459
2460
0
    case WindowUpdate_NotifyIconCreate:
2461
0
      free(msg->wParam);
2462
0
      notify_icon_state_order_free(msg->lParam);
2463
0
      break;
2464
2465
0
    case WindowUpdate_NotifyIconUpdate:
2466
0
      free(msg->wParam);
2467
0
      notify_icon_state_order_free(msg->lParam);
2468
0
      break;
2469
2470
0
    case WindowUpdate_NotifyIconDelete:
2471
0
      free(msg->wParam);
2472
0
      break;
2473
2474
0
    case WindowUpdate_MonitoredDesktop:
2475
0
    {
2476
0
      MONITORED_DESKTOP_ORDER* lParam = (MONITORED_DESKTOP_ORDER*)msg->lParam;
2477
0
      free(msg->wParam);
2478
0
      free(lParam->windowIds);
2479
0
      free(lParam);
2480
0
    }
2481
0
    break;
2482
2483
0
    case WindowUpdate_NonMonitoredDesktop:
2484
0
      free(msg->wParam);
2485
0
      break;
2486
2487
0
    default:
2488
0
      return FALSE;
2489
0
  }
2490
2491
0
  return TRUE;
2492
0
}
2493
2494
static BOOL update_message_process_window_update_class(rdpUpdateProxy* proxy, wMessage* msg,
2495
                                                       int type)
2496
0
{
2497
0
  if (!proxy || !msg)
2498
0
    return FALSE;
2499
2500
0
  switch (type)
2501
0
  {
2502
0
    case WindowUpdate_WindowCreate:
2503
0
      return IFCALLRESULT(TRUE, proxy->WindowCreate, msg->context,
2504
0
                          (WINDOW_ORDER_INFO*)msg->wParam, (WINDOW_STATE_ORDER*)msg->lParam);
2505
2506
0
    case WindowUpdate_WindowUpdate:
2507
0
      return IFCALLRESULT(TRUE, proxy->WindowCreate, msg->context,
2508
0
                          (WINDOW_ORDER_INFO*)msg->wParam, (WINDOW_STATE_ORDER*)msg->lParam);
2509
2510
0
    case WindowUpdate_WindowIcon:
2511
0
    {
2512
0
      WINDOW_ORDER_INFO* orderInfo = (WINDOW_ORDER_INFO*)msg->wParam;
2513
0
      WINDOW_ICON_ORDER* windowIcon = (WINDOW_ICON_ORDER*)msg->lParam;
2514
0
      return IFCALLRESULT(TRUE, proxy->WindowIcon, msg->context, orderInfo, windowIcon);
2515
0
    }
2516
2517
0
    case WindowUpdate_WindowCachedIcon:
2518
0
      return IFCALLRESULT(TRUE, proxy->WindowCachedIcon, msg->context,
2519
0
                          (WINDOW_ORDER_INFO*)msg->wParam,
2520
0
                          (WINDOW_CACHED_ICON_ORDER*)msg->lParam);
2521
2522
0
    case WindowUpdate_WindowDelete:
2523
0
      return IFCALLRESULT(TRUE, proxy->WindowDelete, msg->context,
2524
0
                          (WINDOW_ORDER_INFO*)msg->wParam);
2525
2526
0
    case WindowUpdate_NotifyIconCreate:
2527
0
      return IFCALLRESULT(TRUE, proxy->NotifyIconCreate, msg->context,
2528
0
                          (WINDOW_ORDER_INFO*)msg->wParam,
2529
0
                          (NOTIFY_ICON_STATE_ORDER*)msg->lParam);
2530
2531
0
    case WindowUpdate_NotifyIconUpdate:
2532
0
      return IFCALLRESULT(TRUE, proxy->NotifyIconUpdate, msg->context,
2533
0
                          (WINDOW_ORDER_INFO*)msg->wParam,
2534
0
                          (NOTIFY_ICON_STATE_ORDER*)msg->lParam);
2535
2536
0
    case WindowUpdate_NotifyIconDelete:
2537
0
      return IFCALLRESULT(TRUE, proxy->NotifyIconDelete, msg->context,
2538
0
                          (WINDOW_ORDER_INFO*)msg->wParam);
2539
2540
0
    case WindowUpdate_MonitoredDesktop:
2541
0
      return IFCALLRESULT(TRUE, proxy->MonitoredDesktop, msg->context,
2542
0
                          (WINDOW_ORDER_INFO*)msg->wParam,
2543
0
                          (MONITORED_DESKTOP_ORDER*)msg->lParam);
2544
2545
0
    case WindowUpdate_NonMonitoredDesktop:
2546
0
      return IFCALLRESULT(TRUE, proxy->NonMonitoredDesktop, msg->context,
2547
0
                          (WINDOW_ORDER_INFO*)msg->wParam);
2548
2549
0
    default:
2550
0
      return FALSE;
2551
0
  }
2552
0
}
2553
2554
static BOOL update_message_free_pointer_update_class(wMessage* msg, int type)
2555
0
{
2556
0
  rdpContext* context = nullptr;
2557
2558
0
  if (!msg)
2559
0
    return FALSE;
2560
2561
0
  context = msg->context;
2562
2563
0
  switch (type)
2564
0
  {
2565
0
    case PointerUpdate_PointerPosition:
2566
0
    {
2567
0
      POINTER_POSITION_UPDATE* wParam = (POINTER_POSITION_UPDATE*)msg->wParam;
2568
0
      free_pointer_position_update(context, wParam);
2569
0
    }
2570
0
    break;
2571
2572
0
    case PointerUpdate_PointerSystem:
2573
0
    {
2574
0
      POINTER_SYSTEM_UPDATE* wParam = (POINTER_SYSTEM_UPDATE*)msg->wParam;
2575
0
      free_pointer_system_update(context, wParam);
2576
0
    }
2577
0
    break;
2578
2579
0
    case PointerUpdate_PointerCached:
2580
0
    {
2581
0
      POINTER_CACHED_UPDATE* wParam = (POINTER_CACHED_UPDATE*)msg->wParam;
2582
0
      free_pointer_cached_update(context, wParam);
2583
0
    }
2584
0
    break;
2585
2586
0
    case PointerUpdate_PointerColor:
2587
0
    {
2588
0
      POINTER_COLOR_UPDATE* wParam = (POINTER_COLOR_UPDATE*)msg->wParam;
2589
0
      free_pointer_color_update(context, wParam);
2590
0
    }
2591
0
    break;
2592
2593
0
    case PointerUpdate_PointerNew:
2594
0
    {
2595
0
      POINTER_NEW_UPDATE* wParam = (POINTER_NEW_UPDATE*)msg->wParam;
2596
0
      free_pointer_new_update(context, wParam);
2597
0
    }
2598
0
    break;
2599
2600
0
    default:
2601
0
      return FALSE;
2602
0
  }
2603
2604
0
  return TRUE;
2605
0
}
2606
2607
static BOOL update_message_process_pointer_update_class(rdpUpdateProxy* proxy, wMessage* msg,
2608
                                                        int type)
2609
0
{
2610
0
  if (!proxy || !msg)
2611
0
    return FALSE;
2612
2613
0
  switch (type)
2614
0
  {
2615
0
    case PointerUpdate_PointerPosition:
2616
0
      return IFCALLRESULT(TRUE, proxy->PointerPosition, msg->context,
2617
0
                          (POINTER_POSITION_UPDATE*)msg->wParam);
2618
2619
0
    case PointerUpdate_PointerSystem:
2620
0
      return IFCALLRESULT(TRUE, proxy->PointerSystem, msg->context,
2621
0
                          (POINTER_SYSTEM_UPDATE*)msg->wParam);
2622
2623
0
    case PointerUpdate_PointerColor:
2624
0
      return IFCALLRESULT(TRUE, proxy->PointerColor, msg->context,
2625
0
                          (POINTER_COLOR_UPDATE*)msg->wParam);
2626
2627
0
    case PointerUpdate_PointerNew:
2628
0
      return IFCALLRESULT(TRUE, proxy->PointerNew, msg->context,
2629
0
                          (POINTER_NEW_UPDATE*)msg->wParam);
2630
2631
0
    case PointerUpdate_PointerCached:
2632
0
      return IFCALLRESULT(TRUE, proxy->PointerCached, msg->context,
2633
0
                          (POINTER_CACHED_UPDATE*)msg->wParam);
2634
2635
0
    default:
2636
0
      return FALSE;
2637
0
  }
2638
0
}
2639
2640
static BOOL update_message_free_class(wMessage* msg, int msgClass, int msgType)
2641
0
{
2642
0
  BOOL status = FALSE;
2643
2644
0
  switch (msgClass)
2645
0
  {
2646
0
    case Update_Class:
2647
0
      status = update_message_free_update_class(msg, msgType);
2648
0
      break;
2649
2650
0
    case PrimaryUpdate_Class:
2651
0
      status = update_message_free_primary_update_class(msg, msgType);
2652
0
      break;
2653
2654
0
    case SecondaryUpdate_Class:
2655
0
      status = update_message_free_secondary_update_class(msg, msgType);
2656
0
      break;
2657
2658
0
    case AltSecUpdate_Class:
2659
0
      status = update_message_free_altsec_update_class(msg, msgType);
2660
0
      break;
2661
2662
0
    case WindowUpdate_Class:
2663
0
      status = update_message_free_window_update_class(msg, msgType);
2664
0
      break;
2665
2666
0
    case PointerUpdate_Class:
2667
0
      status = update_message_free_pointer_update_class(msg, msgType);
2668
0
      break;
2669
2670
0
    default:
2671
0
      break;
2672
0
  }
2673
2674
0
  if (!status)
2675
0
    WLog_ERR(TAG, "Unknown message: class: %d type: %d", msgClass, msgType);
2676
2677
0
  return status;
2678
0
}
2679
2680
static int update_message_process_class(rdpUpdateProxy* proxy, wMessage* msg, int msgClass,
2681
                                        int msgType)
2682
0
{
2683
0
  BOOL status = FALSE;
2684
2685
0
  switch (msgClass)
2686
0
  {
2687
0
    case Update_Class:
2688
0
      status = update_message_process_update_class(proxy, msg, msgType);
2689
0
      break;
2690
2691
0
    case PrimaryUpdate_Class:
2692
0
      status = update_message_process_primary_update_class(proxy, msg, msgType);
2693
0
      break;
2694
2695
0
    case SecondaryUpdate_Class:
2696
0
      status = update_message_process_secondary_update_class(proxy, msg, msgType);
2697
0
      break;
2698
2699
0
    case AltSecUpdate_Class:
2700
0
      status = update_message_process_altsec_update_class(proxy, msg, msgType);
2701
0
      break;
2702
2703
0
    case WindowUpdate_Class:
2704
0
      status = update_message_process_window_update_class(proxy, msg, msgType);
2705
0
      break;
2706
2707
0
    case PointerUpdate_Class:
2708
0
      status = update_message_process_pointer_update_class(proxy, msg, msgType);
2709
0
      break;
2710
2711
0
    default:
2712
0
      status = FALSE;
2713
0
      break;
2714
0
  }
2715
2716
0
  if (!status)
2717
0
  {
2718
0
    WLog_ERR(TAG, "message: class: %d type: %d failed", msgClass, msgType);
2719
0
    return -1;
2720
0
  }
2721
2722
0
  return 0;
2723
0
}
2724
2725
int update_message_queue_process_message(rdpUpdate* update, wMessage* message)
2726
0
{
2727
0
  int status = 0;
2728
0
  int msgClass = 0;
2729
0
  int msgType = 0;
2730
0
  rdp_update_internal* up = update_cast(update);
2731
2732
0
  if (!update || !message)
2733
0
    return -1;
2734
2735
0
  if (message->id == WMQ_QUIT)
2736
0
    return 0;
2737
2738
0
  msgClass = GetMessageClass(message->id);
2739
0
  msgType = GetMessageType(message->id);
2740
0
  status = update_message_process_class(up->proxy, message, msgClass, msgType);
2741
0
  update_message_free_class(message, msgClass, msgType);
2742
2743
0
  if (status < 0)
2744
0
    return -1;
2745
2746
0
  return 1;
2747
0
}
2748
2749
int update_message_queue_free_message(wMessage* message)
2750
0
{
2751
0
  int msgClass = 0;
2752
0
  int msgType = 0;
2753
2754
0
  if (!message)
2755
0
    return -1;
2756
2757
0
  if (message->id == WMQ_QUIT)
2758
0
    return 0;
2759
2760
0
  msgClass = GetMessageClass(message->id);
2761
0
  msgType = GetMessageType(message->id);
2762
0
  return update_message_free_class(message, msgClass, msgType);
2763
0
}
2764
2765
int update_message_queue_process_pending_messages(rdpUpdate* update)
2766
0
{
2767
0
  int status = 1;
2768
0
  wMessage message = WINPR_C_ARRAY_INIT;
2769
0
  rdp_update_internal* up = update_cast(update);
2770
2771
0
  wMessageQueue* queue = up->queue;
2772
2773
0
  while (MessageQueue_Peek(queue, &message, TRUE))
2774
0
  {
2775
0
    status = update_message_queue_process_message(update, &message);
2776
2777
0
    if (!status)
2778
0
      break;
2779
0
  }
2780
2781
0
  return status;
2782
0
}
2783
2784
static BOOL update_message_register_interface(rdpUpdateProxy* message, rdpUpdate* update)
2785
0
{
2786
0
  rdpPrimaryUpdate* primary = nullptr;
2787
0
  rdpSecondaryUpdate* secondary = nullptr;
2788
0
  rdpAltSecUpdate* altsec = nullptr;
2789
0
  rdpWindowUpdate* window = nullptr;
2790
0
  rdpPointerUpdate* pointer = nullptr;
2791
2792
0
  if (!message || !update)
2793
0
    return FALSE;
2794
2795
0
  primary = update->primary;
2796
0
  secondary = update->secondary;
2797
0
  altsec = update->altsec;
2798
0
  window = update->window;
2799
0
  pointer = update->pointer;
2800
2801
0
  if (!primary || !secondary || !altsec || !window || !pointer)
2802
0
    return FALSE;
2803
2804
  /* Update */
2805
0
  message->BeginPaint = update->BeginPaint;
2806
0
  message->EndPaint = update->EndPaint;
2807
0
  message->SetBounds = update->SetBounds;
2808
0
  message->Synchronize = update->Synchronize;
2809
0
  message->DesktopResize = update->DesktopResize;
2810
0
  message->BitmapUpdate = update->BitmapUpdate;
2811
0
  message->Palette = update->Palette;
2812
0
  message->PlaySound = update->PlaySound;
2813
0
  message->SetKeyboardIndicators = update->SetKeyboardIndicators;
2814
0
  message->SetKeyboardImeStatus = update->SetKeyboardImeStatus;
2815
0
  message->RefreshRect = update->RefreshRect;
2816
0
  message->SuppressOutput = update->SuppressOutput;
2817
0
  message->SurfaceCommand = update->SurfaceCommand;
2818
0
  message->SurfaceBits = update->SurfaceBits;
2819
0
  message->SurfaceFrameMarker = update->SurfaceFrameMarker;
2820
0
  message->SurfaceFrameAcknowledge = update->SurfaceFrameAcknowledge;
2821
0
  update->BeginPaint = update_message_BeginPaint;
2822
0
  update->EndPaint = update_message_EndPaint;
2823
0
  update->SetBounds = update_message_SetBounds;
2824
0
  update->Synchronize = update_message_Synchronize;
2825
0
  update->DesktopResize = update_message_DesktopResize;
2826
0
  update->BitmapUpdate = update_message_BitmapUpdate;
2827
0
  update->Palette = update_message_Palette;
2828
0
  update->PlaySound = update_message_PlaySound;
2829
0
  update->SetKeyboardIndicators = update_message_SetKeyboardIndicators;
2830
0
  update->SetKeyboardImeStatus = update_message_SetKeyboardImeStatus;
2831
0
  update->RefreshRect = update_message_RefreshRect;
2832
0
  update->SuppressOutput = update_message_SuppressOutput;
2833
0
  update->SurfaceCommand = update_message_SurfaceCommand;
2834
0
  update->SurfaceBits = update_message_SurfaceBits;
2835
0
  update->SurfaceFrameMarker = update_message_SurfaceFrameMarker;
2836
0
  update->SurfaceFrameAcknowledge = update_message_SurfaceFrameAcknowledge;
2837
  /* Primary Update */
2838
0
  message->DstBlt = primary->DstBlt;
2839
0
  message->PatBlt = primary->PatBlt;
2840
0
  message->ScrBlt = primary->ScrBlt;
2841
0
  message->OpaqueRect = primary->OpaqueRect;
2842
0
  message->DrawNineGrid = primary->DrawNineGrid;
2843
0
  message->MultiDstBlt = primary->MultiDstBlt;
2844
0
  message->MultiPatBlt = primary->MultiPatBlt;
2845
0
  message->MultiScrBlt = primary->MultiScrBlt;
2846
0
  message->MultiOpaqueRect = primary->MultiOpaqueRect;
2847
0
  message->MultiDrawNineGrid = primary->MultiDrawNineGrid;
2848
0
  message->LineTo = primary->LineTo;
2849
0
  message->Polyline = primary->Polyline;
2850
0
  message->MemBlt = primary->MemBlt;
2851
0
  message->Mem3Blt = primary->Mem3Blt;
2852
0
  message->SaveBitmap = primary->SaveBitmap;
2853
0
  message->GlyphIndex = primary->GlyphIndex;
2854
0
  message->FastIndex = primary->FastIndex;
2855
0
  message->FastGlyph = primary->FastGlyph;
2856
0
  message->PolygonSC = primary->PolygonSC;
2857
0
  message->PolygonCB = primary->PolygonCB;
2858
0
  message->EllipseSC = primary->EllipseSC;
2859
0
  message->EllipseCB = primary->EllipseCB;
2860
0
  primary->DstBlt = update_message_DstBlt;
2861
0
  primary->PatBlt = update_message_PatBlt;
2862
0
  primary->ScrBlt = update_message_ScrBlt;
2863
0
  primary->OpaqueRect = update_message_OpaqueRect;
2864
0
  primary->DrawNineGrid = update_message_DrawNineGrid;
2865
0
  primary->MultiDstBlt = update_message_MultiDstBlt;
2866
0
  primary->MultiPatBlt = update_message_MultiPatBlt;
2867
0
  primary->MultiScrBlt = update_message_MultiScrBlt;
2868
0
  primary->MultiOpaqueRect = update_message_MultiOpaqueRect;
2869
0
  primary->MultiDrawNineGrid = update_message_MultiDrawNineGrid;
2870
0
  primary->LineTo = update_message_LineTo;
2871
0
  primary->Polyline = update_message_Polyline;
2872
0
  primary->MemBlt = update_message_MemBlt;
2873
0
  primary->Mem3Blt = update_message_Mem3Blt;
2874
0
  primary->SaveBitmap = update_message_SaveBitmap;
2875
0
  primary->GlyphIndex = update_message_GlyphIndex;
2876
0
  primary->FastIndex = update_message_FastIndex;
2877
0
  primary->FastGlyph = update_message_FastGlyph;
2878
0
  primary->PolygonSC = update_message_PolygonSC;
2879
0
  primary->PolygonCB = update_message_PolygonCB;
2880
0
  primary->EllipseSC = update_message_EllipseSC;
2881
0
  primary->EllipseCB = update_message_EllipseCB;
2882
  /* Secondary Update */
2883
0
  message->CacheBitmap = secondary->CacheBitmap;
2884
0
  message->CacheBitmapV2 = secondary->CacheBitmapV2;
2885
0
  message->CacheBitmapV3 = secondary->CacheBitmapV3;
2886
0
  message->CacheColorTable = secondary->CacheColorTable;
2887
0
  message->CacheGlyph = secondary->CacheGlyph;
2888
0
  message->CacheGlyphV2 = secondary->CacheGlyphV2;
2889
0
  message->CacheBrush = secondary->CacheBrush;
2890
0
  secondary->CacheBitmap = update_message_CacheBitmap;
2891
0
  secondary->CacheBitmapV2 = update_message_CacheBitmapV2;
2892
0
  secondary->CacheBitmapV3 = update_message_CacheBitmapV3;
2893
0
  secondary->CacheColorTable = update_message_CacheColorTable;
2894
0
  secondary->CacheGlyph = update_message_CacheGlyph;
2895
0
  secondary->CacheGlyphV2 = update_message_CacheGlyphV2;
2896
0
  secondary->CacheBrush = update_message_CacheBrush;
2897
  /* Alternate Secondary Update */
2898
0
  message->CreateOffscreenBitmap = altsec->CreateOffscreenBitmap;
2899
0
  message->SwitchSurface = altsec->SwitchSurface;
2900
0
  message->CreateNineGridBitmap = altsec->CreateNineGridBitmap;
2901
0
  message->FrameMarker = altsec->FrameMarker;
2902
0
  message->StreamBitmapFirst = altsec->StreamBitmapFirst;
2903
0
  message->StreamBitmapNext = altsec->StreamBitmapNext;
2904
0
  message->DrawGdiPlusFirst = altsec->DrawGdiPlusFirst;
2905
0
  message->DrawGdiPlusNext = altsec->DrawGdiPlusNext;
2906
0
  message->DrawGdiPlusEnd = altsec->DrawGdiPlusEnd;
2907
0
  message->DrawGdiPlusCacheFirst = altsec->DrawGdiPlusCacheFirst;
2908
0
  message->DrawGdiPlusCacheNext = altsec->DrawGdiPlusCacheNext;
2909
0
  message->DrawGdiPlusCacheEnd = altsec->DrawGdiPlusCacheEnd;
2910
0
  altsec->CreateOffscreenBitmap = update_message_CreateOffscreenBitmap;
2911
0
  altsec->SwitchSurface = update_message_SwitchSurface;
2912
0
  altsec->CreateNineGridBitmap = update_message_CreateNineGridBitmap;
2913
0
  altsec->FrameMarker = update_message_FrameMarker;
2914
0
  altsec->StreamBitmapFirst = update_message_StreamBitmapFirst;
2915
0
  altsec->StreamBitmapNext = update_message_StreamBitmapNext;
2916
0
  altsec->DrawGdiPlusFirst = update_message_DrawGdiPlusFirst;
2917
0
  altsec->DrawGdiPlusNext = update_message_DrawGdiPlusNext;
2918
0
  altsec->DrawGdiPlusEnd = update_message_DrawGdiPlusEnd;
2919
0
  altsec->DrawGdiPlusCacheFirst = update_message_DrawGdiPlusCacheFirst;
2920
0
  altsec->DrawGdiPlusCacheNext = update_message_DrawGdiPlusCacheNext;
2921
0
  altsec->DrawGdiPlusCacheEnd = update_message_DrawGdiPlusCacheEnd;
2922
  /* Window Update */
2923
0
  message->WindowCreate = window->WindowCreate;
2924
0
  message->WindowUpdate = window->WindowUpdate;
2925
0
  message->WindowIcon = window->WindowIcon;
2926
0
  message->WindowCachedIcon = window->WindowCachedIcon;
2927
0
  message->WindowDelete = window->WindowDelete;
2928
0
  message->NotifyIconCreate = window->NotifyIconCreate;
2929
0
  message->NotifyIconUpdate = window->NotifyIconUpdate;
2930
0
  message->NotifyIconDelete = window->NotifyIconDelete;
2931
0
  message->MonitoredDesktop = window->MonitoredDesktop;
2932
0
  message->NonMonitoredDesktop = window->NonMonitoredDesktop;
2933
0
  window->WindowCreate = update_message_WindowCreate;
2934
0
  window->WindowUpdate = update_message_WindowUpdate;
2935
0
  window->WindowIcon = update_message_WindowIcon;
2936
0
  window->WindowCachedIcon = update_message_WindowCachedIcon;
2937
0
  window->WindowDelete = update_message_WindowDelete;
2938
0
  window->NotifyIconCreate = update_message_NotifyIconCreate;
2939
0
  window->NotifyIconUpdate = update_message_NotifyIconUpdate;
2940
0
  window->NotifyIconDelete = update_message_NotifyIconDelete;
2941
0
  window->MonitoredDesktop = update_message_MonitoredDesktop;
2942
0
  window->NonMonitoredDesktop = update_message_NonMonitoredDesktop;
2943
  /* Pointer Update */
2944
0
  message->PointerPosition = pointer->PointerPosition;
2945
0
  message->PointerSystem = pointer->PointerSystem;
2946
0
  message->PointerColor = pointer->PointerColor;
2947
0
  message->PointerLarge = pointer->PointerLarge;
2948
0
  message->PointerNew = pointer->PointerNew;
2949
0
  message->PointerCached = pointer->PointerCached;
2950
0
  pointer->PointerPosition = update_message_PointerPosition;
2951
0
  pointer->PointerSystem = update_message_PointerSystem;
2952
0
  pointer->PointerColor = update_message_PointerColor;
2953
0
  pointer->PointerLarge = update_message_PointerLarge;
2954
0
  pointer->PointerNew = update_message_PointerNew;
2955
0
  pointer->PointerCached = update_message_PointerCached;
2956
0
  return TRUE;
2957
0
}
2958
2959
static DWORD WINAPI update_message_proxy_thread(LPVOID arg)
2960
0
{
2961
0
  rdpUpdate* update = (rdpUpdate*)arg;
2962
0
  wMessage message = WINPR_C_ARRAY_INIT;
2963
0
  rdp_update_internal* up = update_cast(update);
2964
2965
0
  while (MessageQueue_Wait(up->queue))
2966
0
  {
2967
0
    int status = 0;
2968
2969
0
    if (MessageQueue_Peek(up->queue, &message, TRUE))
2970
0
      status = update_message_queue_process_message(update, &message);
2971
2972
0
    if (!status)
2973
0
      break;
2974
0
  }
2975
2976
0
  ExitThread(0);
2977
0
  return 0;
2978
0
}
2979
2980
rdpUpdateProxy* update_message_proxy_new(rdpUpdate* update)
2981
0
{
2982
0
  rdpUpdateProxy* message = nullptr;
2983
2984
0
  if (!update)
2985
0
    return nullptr;
2986
2987
0
  if (!(message = (rdpUpdateProxy*)calloc(1, sizeof(rdpUpdateProxy))))
2988
0
    return nullptr;
2989
2990
0
  message->update = update;
2991
0
  update_message_register_interface(message, update);
2992
2993
0
  if (!(message->thread =
2994
0
            CreateThread(nullptr, 0, update_message_proxy_thread, update, 0, nullptr)))
2995
0
  {
2996
0
    WLog_ERR(TAG, "Failed to create proxy thread");
2997
0
    free(message);
2998
0
    return nullptr;
2999
0
  }
3000
3001
0
  return message;
3002
0
}
3003
3004
void update_message_proxy_free(rdpUpdateProxy* message)
3005
0
{
3006
0
  if (message)
3007
0
  {
3008
0
    rdp_update_internal* up = update_cast(message->update);
3009
0
    if (MessageQueue_PostQuit(up->queue, 0))
3010
0
      (void)WaitForSingleObject(message->thread, INFINITE);
3011
3012
0
    (void)CloseHandle(message->thread);
3013
0
    free(message);
3014
0
  }
3015
0
}
3016
3017
/* Event Queue */
3018
static int input_message_free_input_class(wMessage* msg, int type)
3019
0
{
3020
0
  int status = 0;
3021
3022
0
  WINPR_UNUSED(msg);
3023
3024
0
  switch (type)
3025
0
  {
3026
0
    case Input_SynchronizeEvent:
3027
0
      break;
3028
3029
0
    case Input_KeyboardEvent:
3030
0
      break;
3031
3032
0
    case Input_UnicodeKeyboardEvent:
3033
0
      break;
3034
3035
0
    case Input_MouseEvent:
3036
0
      break;
3037
3038
0
    case Input_ExtendedMouseEvent:
3039
0
      break;
3040
3041
0
    case Input_FocusInEvent:
3042
0
      break;
3043
3044
0
    case Input_KeyboardPauseEvent:
3045
0
      break;
3046
3047
0
    default:
3048
0
      status = -1;
3049
0
      break;
3050
0
  }
3051
3052
0
  return status;
3053
0
}
3054
3055
static int input_message_process_input_class(rdpInputProxy* proxy, wMessage* msg, int type)
3056
0
{
3057
0
  int status = 0;
3058
3059
0
  if (!proxy || !msg)
3060
0
    return -1;
3061
3062
0
  switch (type)
3063
0
  {
3064
0
    case Input_SynchronizeEvent:
3065
0
      IFCALL(proxy->SynchronizeEvent, msg->context, (UINT32)(size_t)msg->wParam);
3066
0
      break;
3067
3068
0
    case Input_KeyboardEvent:
3069
0
      IFCALL(proxy->KeyboardEvent, msg->context, (UINT16)(size_t)msg->wParam,
3070
0
             (UINT8)(size_t)msg->lParam);
3071
0
      break;
3072
3073
0
    case Input_UnicodeKeyboardEvent:
3074
0
      IFCALL(proxy->UnicodeKeyboardEvent, msg->context, (UINT16)(size_t)msg->wParam,
3075
0
             (UINT16)(size_t)msg->lParam);
3076
0
      break;
3077
3078
0
    case Input_MouseEvent:
3079
0
    {
3080
0
      UINT32 pos = 0;
3081
0
      UINT16 x = 0;
3082
0
      UINT16 y = 0;
3083
0
      pos = (UINT32)(size_t)msg->lParam;
3084
0
      x = ((pos & 0xFFFF0000) >> 16);
3085
0
      y = (pos & 0x0000FFFF);
3086
0
      IFCALL(proxy->MouseEvent, msg->context, (UINT16)(size_t)msg->wParam, x, y);
3087
0
    }
3088
0
    break;
3089
3090
0
    case Input_ExtendedMouseEvent:
3091
0
    {
3092
0
      UINT32 pos = 0;
3093
0
      UINT16 x = 0;
3094
0
      UINT16 y = 0;
3095
0
      pos = (UINT32)(size_t)msg->lParam;
3096
0
      x = ((pos & 0xFFFF0000) >> 16);
3097
0
      y = (pos & 0x0000FFFF);
3098
0
      IFCALL(proxy->ExtendedMouseEvent, msg->context, (UINT16)(size_t)msg->wParam, x, y);
3099
0
    }
3100
0
    break;
3101
3102
0
    case Input_FocusInEvent:
3103
0
      IFCALL(proxy->FocusInEvent, msg->context, (UINT16)(size_t)msg->wParam);
3104
0
      break;
3105
3106
0
    case Input_KeyboardPauseEvent:
3107
0
      IFCALL(proxy->KeyboardPauseEvent, msg->context);
3108
0
      break;
3109
3110
0
    default:
3111
0
      status = -1;
3112
0
      break;
3113
0
  }
3114
3115
0
  return status;
3116
0
}
3117
3118
static int input_message_free_class(wMessage* msg, int msgClass, int msgType)
3119
0
{
3120
0
  int status = 0;
3121
3122
0
  switch (msgClass)
3123
0
  {
3124
0
    case Input_Class:
3125
0
      status = input_message_free_input_class(msg, msgType);
3126
0
      break;
3127
3128
0
    default:
3129
0
      status = -1;
3130
0
      break;
3131
0
  }
3132
3133
0
  if (status < 0)
3134
0
    WLog_ERR(TAG, "Unknown event: class: %d type: %d", msgClass, msgType);
3135
3136
0
  return status;
3137
0
}
3138
3139
static int input_message_process_class(rdpInputProxy* proxy, wMessage* msg, int msgClass,
3140
                                       int msgType)
3141
0
{
3142
0
  int status = 0;
3143
3144
0
  switch (msgClass)
3145
0
  {
3146
0
    case Input_Class:
3147
0
      status = input_message_process_input_class(proxy, msg, msgType);
3148
0
      break;
3149
3150
0
    default:
3151
0
      status = -1;
3152
0
      break;
3153
0
  }
3154
3155
0
  if (status < 0)
3156
0
    WLog_ERR(TAG, "Unknown event: class: %d type: %d", msgClass, msgType);
3157
3158
0
  return status;
3159
0
}
3160
3161
int input_message_queue_free_message(wMessage* message)
3162
0
{
3163
0
  int status = 0;
3164
0
  int msgClass = 0;
3165
0
  int msgType = 0;
3166
3167
0
  if (!message)
3168
0
    return -1;
3169
3170
0
  if (message->id == WMQ_QUIT)
3171
0
    return 0;
3172
3173
0
  msgClass = GetMessageClass(message->id);
3174
0
  msgType = GetMessageType(message->id);
3175
0
  status = input_message_free_class(message, msgClass, msgType);
3176
3177
0
  if (status < 0)
3178
0
    return -1;
3179
3180
0
  return 1;
3181
0
}
3182
3183
int input_message_queue_process_message(rdpInput* input, wMessage* message)
3184
0
{
3185
0
  int status = 0;
3186
0
  int msgClass = 0;
3187
0
  int msgType = 0;
3188
0
  rdp_input_internal* in = input_cast(input);
3189
3190
0
  if (!message)
3191
0
    return -1;
3192
3193
0
  if (message->id == WMQ_QUIT)
3194
0
    return 0;
3195
3196
0
  msgClass = GetMessageClass(message->id);
3197
0
  msgType = GetMessageType(message->id);
3198
0
  status = input_message_process_class(in->proxy, message, msgClass, msgType);
3199
0
  input_message_free_class(message, msgClass, msgType);
3200
3201
0
  if (status < 0)
3202
0
    return -1;
3203
3204
0
  return 1;
3205
0
}
3206
3207
int input_message_queue_process_pending_messages(rdpInput* input)
3208
0
{
3209
0
  int status = 1;
3210
0
  wMessage message = WINPR_C_ARRAY_INIT;
3211
0
  rdp_input_internal* in = input_cast(input);
3212
3213
0
  if (!in->queue)
3214
0
    return -1;
3215
3216
0
  wMessageQueue* queue = in->queue;
3217
3218
0
  while (MessageQueue_Peek(queue, &message, TRUE))
3219
0
  {
3220
0
    status = input_message_queue_process_message(input, &message);
3221
3222
0
    if (!status)
3223
0
      break;
3224
0
  }
3225
3226
0
  return status;
3227
0
}