forked from LibVNC/libvncserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mac.c
726 lines (603 loc) · 22.6 KB
/
mac.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
/*
* OSXvnc Copyright (C) 2001 Dan McGuirk <[email protected]>.
* Original Xvnc code Copyright (C) 1999 AT&T Laboratories Cambridge.
* All Rights Reserved.
*
* Cut in two parts by Johannes Schindelin (2001): libvncserver and OSXvnc.
*
* Completely revamped and adapted to work with contemporary APIs by Christian Beier (2020).
*
* This file implements every system specific function for Mac OS X.
*
* It includes the keyboard function:
*
void KbdAddEvent(down, keySym, cl)
rfbBool down;
rfbKeySym keySym;
rfbClientPtr cl;
*
* the mouse function:
*
void PtrAddEvent(buttonMask, x, y, cl)
int buttonMask;
int x;
int y;
rfbClientPtr cl;
*
*/
#include <Carbon/Carbon.h>
#include <rfb/rfb.h>
#include <rfb/keysym.h>
#include <IOSurface/IOSurface.h>
#include <IOKit/pwr_mgt/IOPMLib.h>
#include <IOKit/pwr_mgt/IOPM.h>
#include <stdio.h>
#include <pthread.h>
/* The main LibVNCServer screen object */
rfbScreenInfoPtr rfbScreen;
/* Operation modes set by CLI options */
rfbBool viewOnly = FALSE, sharedMode = FALSE;
/* Two framebuffers. */
void *frameBufferOne;
void *frameBufferTwo;
/* Pointer to the current backbuffer. */
void *backBuffer;
/* The multi-sceen display number chosen by the user */
int displayNumber = -1;
/* The corresponding multi-sceen display ID */
CGDirectDisplayID displayID;
/* The server's private event source */
CGEventSourceRef eventSource;
/* Screen (un)dimming machinery */
rfbBool preventDimming = FALSE;
rfbBool preventSleep = TRUE;
static pthread_mutex_t dimming_mutex;
static unsigned long dim_time;
static unsigned long sleep_time;
static mach_port_t master_dev_port;
static io_connect_t power_mgt;
static rfbBool initialized = FALSE;
static rfbBool dim_time_saved = FALSE;
static rfbBool sleep_time_saved = FALSE;
/* some variables to enable special behaviour */
int startTime = -1, maxSecsToConnect = 0;
rfbBool disconnectAfterFirstClient = TRUE;
/* a dictionary mapping characters to keycodes */
CFMutableDictionaryRef charKeyMap;
/* a dictionary mapping characters obtained by Shift to keycodes */
CFMutableDictionaryRef charShiftKeyMap;
/* a dictionary mapping characters obtained by Alt-Gr to keycodes */
CFMutableDictionaryRef charAltGrKeyMap;
/* a dictionary mapping characters obtained by Shift+Alt-Gr to keycodes */
CFMutableDictionaryRef charShiftAltGrKeyMap;
/* a table mapping special keys to keycodes. static as these are layout-independent */
static int specialKeyMap[] = {
/* "Special" keys */
XK_space, 49, /* Space */
XK_Return, 36, /* Return */
XK_Delete, 117, /* Delete */
XK_Tab, 48, /* Tab */
XK_Escape, 53, /* Esc */
XK_Caps_Lock, 57, /* Caps Lock */
XK_Num_Lock, 71, /* Num Lock */
XK_Scroll_Lock, 107, /* Scroll Lock */
XK_Pause, 113, /* Pause */
XK_BackSpace, 51, /* Backspace */
XK_Insert, 114, /* Insert */
/* Cursor movement */
XK_Up, 126, /* Cursor Up */
XK_Down, 125, /* Cursor Down */
XK_Left, 123, /* Cursor Left */
XK_Right, 124, /* Cursor Right */
XK_Page_Up, 116, /* Page Up */
XK_Page_Down, 121, /* Page Down */
XK_Home, 115, /* Home */
XK_End, 119, /* End */
/* Numeric keypad */
XK_KP_0, 82, /* KP 0 */
XK_KP_1, 83, /* KP 1 */
XK_KP_2, 84, /* KP 2 */
XK_KP_3, 85, /* KP 3 */
XK_KP_4, 86, /* KP 4 */
XK_KP_5, 87, /* KP 5 */
XK_KP_6, 88, /* KP 6 */
XK_KP_7, 89, /* KP 7 */
XK_KP_8, 91, /* KP 8 */
XK_KP_9, 92, /* KP 9 */
XK_KP_Enter, 76, /* KP Enter */
XK_KP_Decimal, 65, /* KP . */
XK_KP_Add, 69, /* KP + */
XK_KP_Subtract, 78, /* KP - */
XK_KP_Multiply, 67, /* KP * */
XK_KP_Divide, 75, /* KP / */
/* Function keys */
XK_F1, 122, /* F1 */
XK_F2, 120, /* F2 */
XK_F3, 99, /* F3 */
XK_F4, 118, /* F4 */
XK_F5, 96, /* F5 */
XK_F6, 97, /* F6 */
XK_F7, 98, /* F7 */
XK_F8, 100, /* F8 */
XK_F9, 101, /* F9 */
XK_F10, 109, /* F10 */
XK_F11, 103, /* F11 */
XK_F12, 111, /* F12 */
/* Modifier keys */
XK_Shift_L, 56, /* Shift Left */
XK_Shift_R, 56, /* Shift Right */
XK_Control_L, 59, /* Ctrl Left */
XK_Control_R, 59, /* Ctrl Right */
XK_Meta_L, 58, /* Logo Left (-> Option) */
XK_Meta_R, 58, /* Logo Right (-> Option) */
XK_Alt_L, 55, /* Alt Left (-> Command) */
XK_Alt_R, 55, /* Alt Right (-> Command) */
XK_ISO_Level3_Shift, 61, /* Alt-Gr (-> Option Right) */
0x1008FF2B, 63, /* Fn */
/* Weirdness I can't figure out */
#if 0
XK_3270_PrintScreen, 105, /* PrintScrn */
??? 94, 50, /* International */
XK_Menu, 50, /* Menu (-> International) */
#endif
};
/* Global shifting modifier states */
rfbBool isShiftDown;
rfbBool isAltGrDown;
static int
saveDimSettings(void)
{
if (IOPMGetAggressiveness(power_mgt,
kPMMinutesToDim,
&dim_time) != kIOReturnSuccess)
return -1;
dim_time_saved = TRUE;
return 0;
}
static int
restoreDimSettings(void)
{
if (!dim_time_saved)
return -1;
if (IOPMSetAggressiveness(power_mgt,
kPMMinutesToDim,
dim_time) != kIOReturnSuccess)
return -1;
dim_time_saved = FALSE;
dim_time = 0;
return 0;
}
static int
saveSleepSettings(void)
{
if (IOPMGetAggressiveness(power_mgt,
kPMMinutesToSleep,
&sleep_time) != kIOReturnSuccess)
return -1;
sleep_time_saved = TRUE;
return 0;
}
static int
restoreSleepSettings(void)
{
if (!sleep_time_saved)
return -1;
if (IOPMSetAggressiveness(power_mgt,
kPMMinutesToSleep,
sleep_time) != kIOReturnSuccess)
return -1;
sleep_time_saved = FALSE;
sleep_time = 0;
return 0;
}
int
dimmingInit(void)
{
pthread_mutex_init(&dimming_mutex, NULL);
if (IOMasterPort(bootstrap_port, &master_dev_port) != kIOReturnSuccess)
return -1;
if (!(power_mgt = IOPMFindPowerManagement(master_dev_port)))
return -1;
if (preventDimming) {
if (saveDimSettings() < 0)
return -1;
if (IOPMSetAggressiveness(power_mgt,
kPMMinutesToDim, 0) != kIOReturnSuccess)
return -1;
}
if (preventSleep) {
if (saveSleepSettings() < 0)
return -1;
if (IOPMSetAggressiveness(power_mgt,
kPMMinutesToSleep, 0) != kIOReturnSuccess)
return -1;
}
initialized = TRUE;
return 0;
}
int
undim(void)
{
int result = -1;
pthread_mutex_lock(&dimming_mutex);
if (!initialized)
goto DONE;
if (!preventDimming) {
if (saveDimSettings() < 0)
goto DONE;
if (IOPMSetAggressiveness(power_mgt, kPMMinutesToDim, 0) != kIOReturnSuccess)
goto DONE;
if (restoreDimSettings() < 0)
goto DONE;
}
if (!preventSleep) {
if (saveSleepSettings() < 0)
goto DONE;
if (IOPMSetAggressiveness(power_mgt, kPMMinutesToSleep, 0) != kIOReturnSuccess)
goto DONE;
if (restoreSleepSettings() < 0)
goto DONE;
}
result = 0;
DONE:
pthread_mutex_unlock(&dimming_mutex);
return result;
}
int
dimmingShutdown(void)
{
int result = -1;
if (!initialized)
goto DONE;
pthread_mutex_lock(&dimming_mutex);
if (dim_time_saved)
if (restoreDimSettings() < 0)
goto DONE;
if (sleep_time_saved)
if (restoreSleepSettings() < 0)
goto DONE;
result = 0;
DONE:
pthread_mutex_unlock(&dimming_mutex);
return result;
}
void serverShutdown(rfbClientPtr cl);
/*
Synthesize a keyboard event. This is not called on the main thread due to rfbRunEventLoop(..,..,TRUE), but it works.
We first look up the incoming keysym in the keymap for special keys (and save state of the shifting modifiers).
If the incoming keysym does not map to a special key, the char keymaps pertaining to the respective shifting modifier are used
in order to allow for keyboard combos with other modifiers.
As a last resort, the incoming keysym is simply used as a Unicode value. This way MacOS does not support any modifiers though.
*/
void
KbdAddEvent(rfbBool down, rfbKeySym keySym, struct _rfbClientRec* cl)
{
int i;
CGKeyCode keyCode = -1;
CGEventRef keyboardEvent;
int specialKeyFound = 0;
undim();
/* look for special key */
for (i = 0; i < (sizeof(specialKeyMap) / sizeof(int)); i += 2) {
if (specialKeyMap[i] == keySym) {
keyCode = specialKeyMap[i+1];
specialKeyFound = 1;
break;
}
}
if(specialKeyFound) {
/* keycode for special key found */
keyboardEvent = CGEventCreateKeyboardEvent(eventSource, keyCode, down);
/* save state of shifting modifiers */
if(keySym == XK_ISO_Level3_Shift)
isAltGrDown = down;
if(keySym == XK_Shift_L || keySym == XK_Shift_R)
isShiftDown = down;
} else {
/* look for char key */
size_t keyCodeFromDict;
CFStringRef charStr = CFStringCreateWithCharacters(kCFAllocatorDefault, (UniChar*)&keySym, 1);
CFMutableDictionaryRef keyMap = charKeyMap;
if(isShiftDown && !isAltGrDown)
keyMap = charShiftKeyMap;
if(!isShiftDown && isAltGrDown)
keyMap = charAltGrKeyMap;
if(isShiftDown && isAltGrDown)
keyMap = charShiftAltGrKeyMap;
if (CFDictionaryGetValueIfPresent(keyMap, charStr, (const void **)&keyCodeFromDict)) {
/* keycode for ASCII key found */
keyboardEvent = CGEventCreateKeyboardEvent(eventSource, keyCodeFromDict, down);
} else {
/* last resort: use the symbol's utf-16 value, does not support modifiers though */
keyboardEvent = CGEventCreateKeyboardEvent(eventSource, 0, down);
CGEventKeyboardSetUnicodeString(keyboardEvent, 1, (UniChar*)&keySym);
}
CFRelease(charStr);
}
/* Set the Shift modifier explicitly as MacOS sometimes gets internal state wrong and Shift stuck. */
CGEventSetFlags(keyboardEvent, CGEventGetFlags(keyboardEvent) & (isShiftDown ? kCGEventFlagMaskShift : ~kCGEventFlagMaskShift));
CGEventPost(kCGSessionEventTap, keyboardEvent);
CFRelease(keyboardEvent);
}
/* Synthesize a mouse event. This is not called on the main thread due to rfbRunEventLoop(..,..,TRUE), but it works. */
void
PtrAddEvent(buttonMask, x, y, cl)
int buttonMask;
int x;
int y;
rfbClientPtr cl;
{
CGPoint position;
CGRect displayBounds = CGDisplayBounds(displayID);
CGEventRef mouseEvent = NULL;
undim();
position.x = x + displayBounds.origin.x;
position.y = y + displayBounds.origin.y;
/* map buttons 4 5 6 7 to scroll events as per https://github.com/rfbproto/rfbproto/blob/master/rfbproto.rst#745pointerevent */
if(buttonMask & (1 << 3))
mouseEvent = CGEventCreateScrollWheelEvent(eventSource, kCGScrollEventUnitLine, 2, 1, 0);
if(buttonMask & (1 << 4))
mouseEvent = CGEventCreateScrollWheelEvent(eventSource, kCGScrollEventUnitLine, 2, -1, 0);
if(buttonMask & (1 << 5))
mouseEvent = CGEventCreateScrollWheelEvent(eventSource, kCGScrollEventUnitLine, 2, 0, 1);
if(buttonMask & (1 << 6))
mouseEvent = CGEventCreateScrollWheelEvent(eventSource, kCGScrollEventUnitLine, 2, 0, -1);
if (mouseEvent) {
CGEventPost(kCGSessionEventTap, mouseEvent);
CFRelease(mouseEvent);
}
else {
/*
Use the deprecated CGPostMouseEvent API here as we get a buttonmask plus position which is pretty low-level
whereas CGEventCreateMouseEvent is expecting higher-level events. This allows for direct injection of
double clicks and drags whereas we would need to synthesize these events for the high-level API.
*/
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
CGPostMouseEvent(position, TRUE, 3,
(buttonMask & (1 << 0)) ? TRUE : FALSE,
(buttonMask & (1 << 2)) ? TRUE : FALSE,
(buttonMask & (1 << 1)) ? TRUE : FALSE);
#pragma clang diagnostic pop
}
}
/*
Initialises keyboard handling:
This creates four keymaps mapping UniChars to keycodes for the current keyboard layout with no shifting modifiers, Shift, Alt-Gr and Shift+Alt-Gr applied, respectively.
*/
rfbBool keyboardInit()
{
size_t i, keyCodeCount=128;
TISInputSourceRef currentKeyboard = TISCopyCurrentKeyboardInputSource();
const UCKeyboardLayout *keyboardLayout;
if(!currentKeyboard) {
fprintf(stderr, "Could not get current keyboard info\n");
return FALSE;
}
keyboardLayout = (const UCKeyboardLayout *)CFDataGetBytePtr(TISGetInputSourceProperty(currentKeyboard, kTISPropertyUnicodeKeyLayoutData));
printf("Found keyboard layout '%s'\n", CFStringGetCStringPtr(TISGetInputSourceProperty(currentKeyboard, kTISPropertyInputSourceID), kCFStringEncodingUTF8));
charKeyMap = CFDictionaryCreateMutable(kCFAllocatorDefault, keyCodeCount, &kCFCopyStringDictionaryKeyCallBacks, NULL);
charShiftKeyMap = CFDictionaryCreateMutable(kCFAllocatorDefault, keyCodeCount, &kCFCopyStringDictionaryKeyCallBacks, NULL);
charAltGrKeyMap = CFDictionaryCreateMutable(kCFAllocatorDefault, keyCodeCount, &kCFCopyStringDictionaryKeyCallBacks, NULL);
charShiftAltGrKeyMap = CFDictionaryCreateMutable(kCFAllocatorDefault, keyCodeCount, &kCFCopyStringDictionaryKeyCallBacks, NULL);
if(!charKeyMap || !charShiftKeyMap || !charAltGrKeyMap || !charShiftAltGrKeyMap) {
fprintf(stderr, "Could not create keymaps\n");
return FALSE;
}
/* Loop through every keycode to find the character it is mapping to. */
for (i = 0; i < keyCodeCount; ++i) {
UInt32 deadKeyState = 0;
UniChar chars[4];
UniCharCount realLength;
UInt32 m, modifiers[] = {0, kCGEventFlagMaskShift, kCGEventFlagMaskAlternate, kCGEventFlagMaskShift|kCGEventFlagMaskAlternate};
/* do this for no modifier, shift and alt-gr applied */
for(m = 0; m < sizeof(modifiers) / sizeof(modifiers[0]); ++m) {
UCKeyTranslate(keyboardLayout,
i,
kUCKeyActionDisplay,
(modifiers[m] >> 16) & 0xff,
LMGetKbdType(),
kUCKeyTranslateNoDeadKeysBit,
&deadKeyState,
sizeof(chars) / sizeof(chars[0]),
&realLength,
chars);
CFStringRef string = CFStringCreateWithCharacters(kCFAllocatorDefault, chars, 1);
if(string) {
switch(modifiers[m]) {
case 0:
CFDictionaryAddValue(charKeyMap, string, (const void *)i);
break;
case kCGEventFlagMaskShift:
CFDictionaryAddValue(charShiftKeyMap, string, (const void *)i);
break;
case kCGEventFlagMaskAlternate:
CFDictionaryAddValue(charAltGrKeyMap, string, (const void *)i);
break;
case kCGEventFlagMaskShift|kCGEventFlagMaskAlternate:
CFDictionaryAddValue(charShiftAltGrKeyMap, string, (const void *)i);
break;
}
CFRelease(string);
}
}
}
CFRelease(currentKeyboard);
return TRUE;
}
rfbBool
ScreenInit(int argc, char**argv)
{
int bitsPerSample = 8;
CGDisplayCount displayCount;
CGDirectDisplayID displays[32];
/* grab the active displays */
CGGetActiveDisplayList(32, displays, &displayCount);
for (int i=0; i<displayCount; i++) {
CGRect bounds = CGDisplayBounds(displays[i]);
printf("Found %s display %d at (%d,%d) and a resolution of %dx%d\n", (CGDisplayIsMain(displays[i]) ? "primary" : "secondary"), i, (int)bounds.origin.x, (int)bounds.origin.y, (int)bounds.size.width, (int)bounds.size.height);
}
if(displayNumber < 0) {
printf("Using primary display as a default\n");
displayID = CGMainDisplayID();
} else if (displayNumber < displayCount) {
printf("Using specified display %d\n", displayNumber);
displayID = displays[displayNumber];
} else {
fprintf(stderr, "Specified display %d does not exist\n", displayNumber);
return FALSE;
}
rfbScreen = rfbGetScreen(&argc,argv,
CGDisplayPixelsWide(displayID),
CGDisplayPixelsHigh(displayID),
bitsPerSample,
3,
4);
if(!rfbScreen) {
rfbErr("Could not init rfbScreen.\n");
return FALSE;
}
rfbScreen->serverFormat.redShift = bitsPerSample*2;
rfbScreen->serverFormat.greenShift = bitsPerSample*1;
rfbScreen->serverFormat.blueShift = 0;
gethostname(rfbScreen->thisHost, 255);
frameBufferOne = malloc(CGDisplayPixelsWide(displayID) * CGDisplayPixelsHigh(displayID) * 4);
frameBufferTwo = malloc(CGDisplayPixelsWide(displayID) * CGDisplayPixelsHigh(displayID) * 4);
/* back buffer */
backBuffer = frameBufferOne;
/* front buffer */
rfbScreen->frameBuffer = frameBufferTwo;
/* we already capture the cursor in the framebuffer */
rfbScreen->cursor = NULL;
rfbScreen->ptrAddEvent = PtrAddEvent;
rfbScreen->kbdAddEvent = KbdAddEvent;
if(sharedMode) {
rfbScreen->alwaysShared = TRUE;
}
dispatch_queue_t dispatchQueue = dispatch_queue_create("libvncserver.examples.mac", NULL);
CGDisplayStreamRef stream = CGDisplayStreamCreateWithDispatchQueue(displayID,
CGDisplayPixelsWide(displayID),
CGDisplayPixelsHigh(displayID),
'BGRA',
nil,
dispatchQueue,
^(CGDisplayStreamFrameStatus status,
uint64_t displayTime,
IOSurfaceRef frameSurface,
CGDisplayStreamUpdateRef updateRef) {
if (status == kCGDisplayStreamFrameStatusFrameComplete && frameSurface != NULL) {
rfbClientIteratorPtr iterator;
rfbClientPtr cl;
const CGRect *updatedRects;
size_t updatedRectsCount;
size_t r;
if(startTime>0 && time(0)>startTime+maxSecsToConnect)
serverShutdown(0);
/*
Copy new frame to back buffer.
*/
IOSurfaceLock(frameSurface, kIOSurfaceLockReadOnly, NULL);
memcpy(backBuffer,
IOSurfaceGetBaseAddress(frameSurface),
CGDisplayPixelsWide(displayID) * CGDisplayPixelsHigh(displayID) * 4);
IOSurfaceUnlock(frameSurface, kIOSurfaceLockReadOnly, NULL);
/* Lock out client reads. */
iterator=rfbGetClientIterator(rfbScreen);
while((cl=rfbClientIteratorNext(iterator))) {
LOCK(cl->sendMutex);
}
rfbReleaseClientIterator(iterator);
/* Swap framebuffers. */
if (backBuffer == frameBufferOne) {
backBuffer = frameBufferTwo;
rfbScreen->frameBuffer = frameBufferOne;
} else {
backBuffer = frameBufferOne;
rfbScreen->frameBuffer = frameBufferTwo;
}
/* Mark modified rects in new framebuffer. */
updatedRects = CGDisplayStreamUpdateGetRects(updateRef, kCGDisplayStreamUpdateDirtyRects, &updatedRectsCount);
for(r=0; r<updatedRectsCount; ++r) {
rfbMarkRectAsModified(rfbScreen,
updatedRects[r].origin.x,
updatedRects[r].origin.y,
updatedRects[r].origin.x + updatedRects[r].size.width,
updatedRects[r].origin.y + updatedRects[r].size.height);
}
/* Swapping framebuffers finished, reenable client reads. */
iterator=rfbGetClientIterator(rfbScreen);
while((cl=rfbClientIteratorNext(iterator))) {
UNLOCK(cl->sendMutex);
}
rfbReleaseClientIterator(iterator);
}
});
if(stream) {
CGDisplayStreamStart(stream);
} else {
rfbErr("Could not get screen contents. Check if the program has been given screen recording permissions in 'System Preferences'->'Security & Privacy'->'Privacy'->'Screen Recording'.\n");
return FALSE;
}
rfbInitServer(rfbScreen);
return TRUE;
}
void clientGone(rfbClientPtr cl)
{
serverShutdown(cl);
}
enum rfbNewClientAction newClient(rfbClientPtr cl)
{
if(startTime>0 && time(0)>startTime+maxSecsToConnect)
serverShutdown(cl);
if(disconnectAfterFirstClient)
cl->clientGoneHook = clientGone;
cl->viewOnly = viewOnly;
return(RFB_CLIENT_ACCEPT);
}
int main(int argc,char *argv[])
{
int i;
for(i=argc-1;i>0;i--)
if(i<argc-1 && strcmp(argv[i],"-wait4client")==0) {
maxSecsToConnect = atoi(argv[i+1])/1000;
startTime = time(0);
} else if(strcmp(argv[i],"-runforever")==0) {
disconnectAfterFirstClient = FALSE;
} else if(strcmp(argv[i],"-viewonly")==0) {
viewOnly=TRUE;
} else if(strcmp(argv[i],"-shared")==0) {
sharedMode=TRUE;
} else if(strcmp(argv[i],"-display")==0) {
displayNumber = atoi(argv[i+1]);
}
if(!viewOnly && !AXIsProcessTrusted()) {
fprintf(stderr, "You have configured the server to post input events, but it does not have the necessary system permission. Please check if the program has been given permission to control your computer in 'System Preferences'->'Security & Privacy'->'Privacy'->'Accessibility'.\n");
exit(1);
}
dimmingInit();
/* Create a private event source for the server. This helps a lot with modifier keys getting stuck on the OS side
(but does not completely mitigate the issue: For this, we keep track of modifier key state and set it specifically
for the generated keyboard event in the keyboard event handler). */
eventSource = CGEventSourceCreate(kCGEventSourceStatePrivate);
if(!keyboardInit())
exit(1);
if(!ScreenInit(argc,argv))
exit(1);
rfbScreen->newClientHook = newClient;
rfbRunEventLoop(rfbScreen,-1,TRUE);
/*
The VNC machinery is in the background now and framebuffer updating happens on another thread as well.
*/
while(1) {
/* Nothing left to do on the main thread. */
sleep(1);
}
dimmingShutdown();
return(0); /* never ... */
}
void serverShutdown(rfbClientPtr cl)
{
rfbScreenCleanup(rfbScreen);
dimmingShutdown();
exit(0);
}