-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
CFPlatform.c
2219 lines (1869 loc) · 71.7 KB
/
CFPlatform.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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* CFPlatform.c
Copyright (c) 1999-2019, Apple Inc. and the Swift project authors
Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
Responsibility: Tony Parker
*/
#include "CFInternal.h"
#include <CoreFoundation/CFPriv.h>
#if TARGET_OS_MAC
#include <stdlib.h>
#include <sys/stat.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <pwd.h>
#include <crt_externs.h>
#include <mach-o/dyld.h>
#endif
#define _CFEmitInternalDiagnostics 0
#if TARGET_OS_WIN32
#include <lm.h>
#include <sddl.h>
#include <shellapi.h>
#include <shlobj.h>
#include <shlwapi.h>
#include <WinIoCtl.h>
#include <direct.h>
#include <process.h>
#include <processthreadsapi.h>
#define SECURITY_WIN32
#include <Security.h>
#define getcwd _NS_getcwd
#define open _NS_open
#endif
#if TARGET_OS_ANDROID
#include <sys/prctl.h>
#endif
#if TARGET_OS_MAC || TARGET_OS_WIN32
#define kCFPlatformInterfaceStringEncoding kCFStringEncodingUTF8
#else
#define kCFPlatformInterfaceStringEncoding CFStringGetSystemEncoding()
#endif
extern void __CFGetUGIDs(uid_t *euid, gid_t *egid);
#if TARGET_OS_MAC
// CoreGraphics and LaunchServices are only projects (1 Dec 2006) that use these
char **_CFArgv(void) { return *_NSGetArgv(); }
int _CFArgc(void) { return *_NSGetArgc(); }
#endif
#if !TARGET_OS_WASI
CF_PRIVATE Boolean _CFGetCurrentDirectory(char *path, int maxlen) {
return getcwd(path, maxlen) != NULL;
}
#endif
#if TARGET_OS_WIN32
// Returns the path to the CF DLL, which we can then use to find resources like char sets
bool bDllPathCached = false;
CF_PRIVATE const wchar_t *_CFDLLPath(void) {
static wchar_t cachedPath[MAX_PATH+1];
if (!bDllPathCached) {
#ifdef _DEBUG
// might be nice to get this from the project file at some point
wchar_t *DLLFileName = L"CoreFoundation_debug.dll";
#else
wchar_t *DLLFileName = L"CoreFoundation.dll";
#endif
HMODULE ourModule = GetModuleHandleW(DLLFileName);
CFAssert(ourModule, __kCFLogAssertion, "GetModuleHandle failed");
DWORD wResult = GetModuleFileNameW(ourModule, cachedPath, MAX_PATH+1);
CFAssert1(wResult > 0, __kCFLogAssertion, "GetModuleFileName failed: %d", GetLastError());
CFAssert1(wResult < MAX_PATH+1, __kCFLogAssertion, "GetModuleFileName result truncated: %s", cachedPath);
// strip off last component, the DLL name
CFIndex idx;
for (idx = wResult - 1; idx; idx--) {
if ('\\' == cachedPath[idx]) {
cachedPath[idx] = '\0';
break;
}
}
bDllPathCached = true;
}
return cachedPath;
}
#endif // TARGET_OS_WIN32
#if !TARGET_OS_WASI
static const char *__CFProcessPath = NULL;
static const char *__CFprogname = NULL;
const char **_CFGetProgname(void) {
if (!__CFprogname)
_CFProcessPath(); // sets up __CFprogname as a side-effect
return &__CFprogname;
}
const char **_CFGetProcessPath(void) {
if (!__CFProcessPath)
_CFProcessPath(); // sets up __CFProcessPath as a side-effect
return &__CFProcessPath;
}
static inline void _CFSetProgramNameFromPath(const char *path) {
__CFProcessPath = strdup(path);
__CFprogname = strrchr(__CFProcessPath, PATH_SEP);
__CFprogname = (__CFprogname ? __CFprogname + 1 : __CFProcessPath);
}
#if TARGET_OS_BSD && defined(__OpenBSD__)
#include <sys/types.h>
#include <sys/sysctl.h>
#include <sys/exec.h>
#endif
const char *_CFProcessPath(void) {
if (__CFProcessPath) return __CFProcessPath;
#if TARGET_OS_WIN32
wchar_t buf[CFMaxPathSize] = {0};
DWORD rlen = GetModuleFileNameW(NULL, buf, sizeof(buf) / sizeof(buf[0]));
if (0 < rlen) {
char asciiBuf[CFMaxPathSize] = {0};
int res = WideCharToMultiByte(CP_UTF8, 0, buf, rlen, asciiBuf, sizeof(asciiBuf) / sizeof(asciiBuf[0]), NULL, NULL);
if (0 < res) {
_CFSetProgramNameFromPath(asciiBuf);
}
}
if (!__CFProcessPath) {
__CFProcessPath = "";
__CFprogname = __CFProcessPath;
}
return __CFProcessPath;
#elif TARGET_OS_MAC
#if TARGET_OS_OSX
if (!__CFProcessIsRestricted()) {
const char *path = (char *)__CFgetenv("CFProcessPath");
if (path) {
_CFSetProgramNameFromPath(path);
return __CFProcessPath;
}
}
#endif
{
uint32_t size = CFMaxPathSize;
char buffer[size];
if (0 == _NSGetExecutablePath(buffer, &size)) {
_CFSetProgramNameFromPath(buffer);
}
}
if (!__CFProcessPath) {
__CFProcessPath = "";
__CFprogname = __CFProcessPath;
}
return __CFProcessPath;
#elif TARGET_OS_LINUX
char buf[CFMaxPathSize + 1];
ssize_t res = readlink("/proc/self/exe", buf, CFMaxPathSize);
if (res > 0) {
// null terminate, readlink does not
buf[res] = 0;
_CFSetProgramNameFromPath(buf);
} else {
__CFProcessPath = "";
__CFprogname = __CFProcessPath;
}
return __CFProcessPath;
#else // TARGET_OS_BSD
char *argv0 = NULL;
// Get argv[0].
#if defined(__OpenBSD__)
int mib[2] = {CTL_VM, VM_PSSTRINGS};
struct _ps_strings _ps;
size_t len = sizeof(_ps);
if (sysctl(mib, 2, &_ps, &len, NULL, 0) != -1) {
struct ps_strings *ps = _ps.val;
char *res = realpath(ps->ps_argvstr[0], NULL);
argv0 = res? res: strdup(ps->ps_argvstr[0]);
}
#endif
if (!__CFProcessIsRestricted() && argv0 && argv0[0] == '/') {
_CFSetProgramNameFromPath(argv0);
free(argv0);
return __CFProcessPath;
}
// Search PATH.
if (argv0) {
char *paths = getenv("PATH");
char *p = NULL;
while ((p = strsep(&paths, ":")) != NULL) {
char pp[PATH_MAX];
int l = snprintf(pp, PATH_MAX, "%s/%s", p, argv0);
if (l >= PATH_MAX) {
continue;
}
char *res = realpath(pp, NULL);
if (!res) {
continue;
}
if (!__CFProcessIsRestricted() && access(res, X_OK) == 0) {
_CFSetProgramNameFromPath(res);
free(argv0);
free(res);
return __CFProcessPath;
}
free(res);
}
free(argv0);
}
// See if the shell will help.
if (!__CFProcessIsRestricted()) {
char *path = getenv("_");
if (path != NULL) {
_CFSetProgramNameFromPath(path);
return __CFProcessPath;
}
}
// We don't yet have anything left to try.
__CFProcessPath = "";
__CFprogname = __CFProcessPath;
return __CFProcessPath;
#endif
}
#endif // TARGET_OS_WASI
#if TARGET_OS_MAC || TARGET_OS_WIN32 || TARGET_OS_BSD
CF_CROSS_PLATFORM_EXPORT Boolean _CFIsMainThread(void) {
#if defined(__OpenBSD__)
return pthread_equal(pthread_self(), _CFMainPThread) != 0;
#else
return pthread_main_np() == 1;
#endif
}
#endif
#if TARGET_OS_LINUX
#include <unistd.h>
#if __has_include(<syscall.h>)
#include <syscall.h>
#else
#include <sys/syscall.h>
#endif // __has_include(<syscall.h>)
Boolean _CFIsMainThread(void) {
return syscall(SYS_gettid) == getpid();
}
#endif // TARGET_OS_LINUX
#if !TARGET_OS_WASI
CF_PRIVATE CFStringRef _CFProcessNameString(void) {
static CFStringRef __CFProcessNameString = NULL;
if (!__CFProcessNameString) {
const char *processName = *_CFGetProgname();
CFStringRef newStr;
if (processName)
newStr = CFStringCreateWithCString(kCFAllocatorSystemDefault, processName, kCFPlatformInterfaceStringEncoding);
else
newStr = CFSTR("");
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated"
if (!OSAtomicCompareAndSwapPtrBarrier(NULL, (void *) newStr, (void * volatile *)& __CFProcessNameString)) {
#pragma GCC diagnostic pop
CFRelease(newStr); // someone else made the assignment, so just release the extra string.
}
}
return __CFProcessNameString;
}
#endif // !TARGET_OS_WASI
#if TARGET_OS_MAC || TARGET_OS_LINUX || TARGET_OS_BSD
#include <pwd.h>
#include <sys/param.h>
// Set the fallBackToHome parameter to true if we should fall back to the HOME environment variable if all else fails. Otherwise return NULL.
static CFURLRef _CFCopyHomeDirURLForUser(const char *username, bool fallBackToHome) {
const char *fixedHomePath = issetugid() ? NULL : __CFgetenv("CFFIXED_USER_HOME");
__block CFMutableStringRef errorMessage = NULL;
void (^prepareErrorMessage)(void) = ^{
if (!errorMessage) {
errorMessage = CFStringCreateMutable(NULL, 0);
} else {
CFStringAppend(errorMessage, CFSTR("\n"));
}
};
// Calculate the home directory we will use
// First try CFFIXED_USER_HOME (only if not setugid), then fall back to the upwd, then fall back to HOME environment variable
CFURLRef home = NULL;
if (!issetugid() && fixedHomePath) {
home = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, (uint8_t *)fixedHomePath, strlen(fixedHomePath), true);
if (!home) {
prepareErrorMessage();
if (_CFEmitInternalDiagnostics) {
CFStringAppendFormat(errorMessage, NULL, CFSTR("CFURLCreateFromFileSystemRepresentation failed to create URL for CFFIXED_USER_HOME value: %s"), fixedHomePath);
} else {
CFStringAppend(errorMessage, CFSTR("CFURLCreateFromFileSystemRepresentation failed to create URL for CFFIXED_USER_HOME value"));
}
}
}
if (!home) {
struct passwd *upwd = NULL;
if (username) {
errno = 0;
upwd = getpwnam(username);
} else {
uid_t euid;
__CFGetUGIDs(&euid, NULL);
errno = 0;
upwd = getpwuid(euid ?: getuid());
}
if (upwd) {
if (upwd->pw_dir) {
home = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, (uint8_t *)upwd->pw_dir, strlen(upwd->pw_dir), true);
}
if (!home && !username) {
prepareErrorMessage();
if (!upwd->pw_dir) {
CFStringAppend(errorMessage, CFSTR("upwd->pw_dir is NULL"));
} else if (_CFEmitInternalDiagnostics) {
CFStringAppendFormat(errorMessage, NULL, CFSTR("CFURLCreateFromFileSystemRepresentation failed to create URL for upwd->pw_dir value: %s"), upwd->pw_dir);
} else {
CFStringAppend(errorMessage, CFSTR("CFURLCreateFromFileSystemRepresentation failed to create URL for upwd->pw_dir value"));
}
}
} else if (!username) {
int const savederrno = errno;
prepareErrorMessage();
CFStringAppendFormat(errorMessage, NULL, CFSTR("getpwuid failed with code: %d"), savederrno);
}
}
if (fallBackToHome && !home) {
const char *homePath = __CFgetenv("HOME");
if (homePath) {
home = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, (uint8_t *)homePath, strlen(homePath), true);
if (!home) {
prepareErrorMessage();
if (_CFEmitInternalDiagnostics) {
CFStringAppendFormat(errorMessage, NULL, CFSTR("CFURLCreateFromFileSystemRepresentation failed to create URL for HOME value: %s"), homePath);
} else {
CFStringAppend(errorMessage, CFSTR("CFURLCreateFromFileSystemRepresentation failed to create URL for HOME value"));
}
}
}
}
if (errorMessage) {
if (!home) {
os_log_error(_CFOSLog(), "_CFCopyHomeDirURLForUser failed to create a proper home directory. Falling back to /var/empty. Error(s):\n%{public}@", errorMessage);
const char *_var_empty = "/var/empty";
home = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, (const UInt8 *)_var_empty, strlen(_var_empty), true);
}
CFRelease(errorMessage);
}
return home;
}
#endif
#if !TARGET_OS_WASI
#define CFMaxHostNameLength 256
#define CFMaxHostNameSize (CFMaxHostNameLength+1)
CF_PRIVATE CFStringRef _CFStringCreateHostName(void) {
char myName[CFMaxHostNameSize];
// return @"" instead of nil a la CFUserName() and Ali Ozer
if (0 != gethostname(myName, CFMaxHostNameSize)) return CFSTR("");
return CFStringCreateWithCString(kCFAllocatorSystemDefault, myName, kCFPlatformInterfaceStringEncoding);
}
/* These are sanitized versions of the above functions. We might want to eliminate the above ones someday.
These can return NULL.
*/
CF_EXPORT CFStringRef CFGetUserName(void) CF_RETURNS_RETAINED {
return CFCopyUserName();
}
CF_EXPORT CFStringRef CFCopyUserName(void) {
CFStringRef result = NULL;
#if TARGET_OS_MAC || TARGET_OS_LINUX || TARGET_OS_BSD
uid_t euid;
__CFGetUGIDs(&euid, NULL);
struct passwd *upwd = getpwuid(euid ? euid : getuid());
if (upwd && upwd->pw_name) {
result = CFStringCreateWithCString(kCFAllocatorSystemDefault, upwd->pw_name, kCFPlatformInterfaceStringEncoding);
} else {
const char *cuser = __CFgetenv("USER");
if (cuser) {
result = CFStringCreateWithCString(kCFAllocatorSystemDefault, cuser, kCFPlatformInterfaceStringEncoding);
}
}
#elif TARGET_OS_WIN32
wchar_t username[1040];
DWORD size = 1040;
username[0] = 0;
if (GetUserNameW(username, &size)) {
// discount the extra NULL by decrementing the size
result = CFStringCreateWithCharacters(kCFAllocatorSystemDefault, (const UniChar *)username, size - 1);
} else {
const char *cname = __CFgetenv("USERNAME");
if (cname) {
result = CFStringCreateWithCString(kCFAllocatorSystemDefault, cname, kCFPlatformInterfaceStringEncoding);
}
}
#else
#error "Please add an implementation for CFCopyUserName() that copies the account username"
#endif
if (!result)
result = (CFStringRef)CFRetain(CFSTR(""));
return result;
}
#if TARGET_OS_ANDROID
#define pw_gecos pw_name
#endif
CF_CROSS_PLATFORM_EXPORT CFStringRef CFCopyFullUserName(void) {
CFStringRef result = NULL;
#if TARGET_OS_MAC || TARGET_OS_LINUX || TARGET_OS_BSD
uid_t euid;
__CFGetUGIDs(&euid, NULL);
struct passwd *upwd = getpwuid(euid ? euid : getuid());
if (upwd && upwd->pw_gecos) {
result = CFStringCreateWithCString(kCFAllocatorSystemDefault, upwd->pw_gecos, kCFPlatformInterfaceStringEncoding);
}
#elif TARGET_OS_WIN32
ULONG ulLength = 0;
GetUserNameExW(NameDisplay, NULL, &ulLength);
WCHAR *wszBuffer[ulLength + 1];
GetUserNameExW(NameDisplay, (LPWSTR)wszBuffer, &ulLength);
result = CFStringCreateWithCharacters(kCFAllocatorSystemDefault, (UniChar *)wszBuffer, ulLength);
#else
#error "Please add an implementation for CFCopyFullUserName() that copies the full (display) user name"
#endif
if (!result) {
result = (CFStringRef)CFRetain(CFSTR(""));
}
return result;
}
#if TARGET_OS_ANDROID
#undef pw_gecos
#endif
CFURLRef CFCopyHomeDirectoryURL(void) {
#if TARGET_OS_MAC || TARGET_OS_LINUX || TARGET_OS_BSD
return _CFCopyHomeDirURLForUser(NULL, true);
#elif TARGET_OS_WIN32
CFURLRef retVal = NULL;
CFIndex len = 0;
CFStringRef str = NULL;
UniChar pathChars[MAX_PATH];
if (S_OK == SHGetFolderPathW(NULL, CSIDL_PROFILE, NULL, SHGFP_TYPE_CURRENT, (wchar_t *)pathChars)) {
len = (CFIndex)wcslen((wchar_t *)pathChars);
str = CFStringCreateWithCharacters(kCFAllocatorSystemDefault, pathChars, len);
retVal = CFURLCreateWithFileSystemPath(kCFAllocatorSystemDefault, str, kCFURLWindowsPathStyle, true);
CFRelease(str);
}
if (!retVal) {
// Fall back to environment variable, but this will not be unicode compatible
const char *cpath = __CFgetenv("HOMEPATH");
const char *cdrive = __CFgetenv("HOMEDRIVE");
if (cdrive && cpath) {
char fullPath[CFMaxPathSize];
strlcpy(fullPath, cdrive, sizeof(fullPath));
strlcat(fullPath, cpath, sizeof(fullPath));
str = CFStringCreateWithCString(kCFAllocatorSystemDefault, fullPath, kCFPlatformInterfaceStringEncoding);
retVal = CFURLCreateWithFileSystemPath(kCFAllocatorSystemDefault, str, kCFURLWindowsPathStyle, true);
CFRelease(str);
}
}
if (!retVal) {
// Last resort: We have to get "some" directory location, so fall-back to the processes current directory.
UniChar currDir[MAX_PATH];
DWORD dwChars = GetCurrentDirectoryW(MAX_PATH + 1, (wchar_t *)currDir);
if (dwChars > 0) {
len = (CFIndex)wcslen((wchar_t *)currDir);
str = CFStringCreateWithCharacters(kCFAllocatorDefault, currDir, len);
retVal = CFURLCreateWithFileSystemPath(NULL, str, kCFURLWindowsPathStyle, true);
CFRelease(str);
}
}
// We could do more here (as in KB Article Q101507). If that article is to be believed, we should only run into this case on Win95, or through user error.
CFStringRef testPath = CFURLCopyFileSystemPath(retVal, kCFURLWindowsPathStyle);
if (CFStringGetLength(testPath) == 0) {
CFRelease(retVal);
retVal = NULL;
}
if (testPath) CFRelease(testPath);
return retVal;
#else
#error Dont know how to compute users home directories on this platform
#endif
}
CF_EXPORT CFURLRef CFCopyHomeDirectoryURLForUser(CFStringRef uName) {
#if TARGET_IPHONE_SIMULATOR
if (!uName) { // TODO: Handle other cases here? See <rdar://problem/18504645> SIM: CFCopyHomeDirectoryURLForUser should not call getpwuid
static CFURLRef home;
static dispatch_once_t once;
dispatch_once(&once, ^{
const char *env = getenv("CFFIXED_USER_HOME");
if (!env) {
env = getenv("HOME");
}
if (env) {
CFStringRef str = CFStringCreateWithFileSystemRepresentation(kCFAllocatorSystemDefault, env);
if (str) {
home = CFURLCreateWithFileSystemPath(kCFAllocatorSystemDefault, str, kCFURLPOSIXPathStyle, true);
CFRelease(str);
}
}
});
if (home) {
return CFRetain(home);
}
}
#endif
#if TARGET_OS_MAC || TARGET_OS_LINUX || TARGET_OS_BSD
if (!uName) {
return _CFCopyHomeDirURLForUser(NULL, true);
} else {
char buf[128], *user;
SInt32 len = CFStringGetLength(uName), size = CFStringGetMaximumSizeForEncoding(len, kCFPlatformInterfaceStringEncoding);
CFIndex usedSize;
if (size < 127) {
user = buf;
} else {
user = CFAllocatorAllocate(kCFAllocatorSystemDefault, size+1, 0);
}
CFURLRef result = NULL;
if (CFStringGetBytes(uName, CFRangeMake(0, len), kCFPlatformInterfaceStringEncoding, 0, true, (uint8_t *)user, size, &usedSize) == len) {
user[usedSize] = '\0';
result = _CFCopyHomeDirURLForUser(user, false);
} else {
result = _CFCopyHomeDirURLForUser(NULL, false);
}
if (buf != user) {
CFAllocatorDeallocate(kCFAllocatorSystemDefault, user);
}
return result;
}
#elif TARGET_OS_WIN32
if (uName == NULL) {
return CFCopyHomeDirectoryURL();
}
static const wchar_t * const kProfileListPath =
L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\";
static const wchar_t * const kProfileImagePath = L"ProfileImagePath";
CFURLRef url = NULL;
CFIndex ulLength = CFStringGetLength(uName);
UniChar *pwszUserName =
CFAllocatorAllocate(kCFAllocatorSystemDefault,
(ulLength + 1) * sizeof(UniChar), 0);
if (pwszUserName == NULL)
return NULL;
CFStringGetCharacters(uName, CFRangeMake(0, ulLength), pwszUserName);
pwszUserName[ulLength] = L'\0';
DWORD cbSID = 0;
DWORD cchReferencedDomainName = 0;
SID_NAME_USE eUse;
LookupAccountNameW(NULL, pwszUserName, NULL, &cbSID, NULL,
&cchReferencedDomainName, &eUse);
LPBYTE pSID = CFAllocatorAllocate(kCFAllocatorSystemDefault, cbSID, 0);
LPWSTR pwszReferencedDomainName =
CFAllocatorAllocate(kCFAllocatorSystemDefault,
(cchReferencedDomainName + 1) * sizeof(UniChar), 0);
if (LookupAccountNameW(NULL, pwszUserName, pSID, &cbSID,
pwszReferencedDomainName, &cchReferencedDomainName,
&eUse)) {
LPWSTR pwszSID;
if (ConvertSidToStringSidW(pSID, &pwszSID)) {
DWORD cchBuffer = wcslen(kProfileListPath) + wcslen(pwszSID) + 1;
PWSTR pwszKeyPath =
CFAllocatorAllocate(kCFAllocatorSystemDefault,
cchBuffer * sizeof(UniChar), 0);
DWORD dwOffset =
StrCatChainW(pwszKeyPath, cchBuffer, 0, kProfileListPath);
StrCatChainW(pwszKeyPath, cchBuffer, dwOffset, pwszSID);
DWORD cbData = 0;
RegGetValueW(HKEY_LOCAL_MACHINE, pwszKeyPath, kProfileImagePath,
RRF_RT_REG_SZ, NULL, NULL, &cbData);
LPWSTR pwszProfileImagePath =
CFAllocatorAllocate(kCFAllocatorSystemDefault, cbData, 0);
RegGetValueW(HKEY_LOCAL_MACHINE, pwszKeyPath, kProfileImagePath,
RRF_RT_REG_SZ, NULL, pwszProfileImagePath, &cbData);
CFStringRef profile =
CFStringCreateWithCharacters(kCFAllocatorSystemDefault,
pwszProfileImagePath,
cbData / sizeof(wchar_t));
url = CFURLCreateWithFileSystemPath(kCFAllocatorSystemDefault,
profile, kCFURLWindowsPathStyle,
true);
CFRelease(profile);
CFAllocatorDeallocate(kCFAllocatorSystemDefault, pwszProfileImagePath);
CFAllocatorDeallocate(kCFAllocatorSystemDefault, pwszKeyPath);
}
LocalFree(pwszSID);
}
CFAllocatorDeallocate(kCFAllocatorSystemDefault, pwszReferencedDomainName);
CFAllocatorDeallocate(kCFAllocatorSystemDefault, pSID);
CFAllocatorDeallocate(kCFAllocatorSystemDefault, pwszUserName);
return url;
#else
#error Dont know how to compute users home directories on this platform
#endif
}
#undef CFMaxHostNameLength
#undef CFMaxHostNameSize
#endif // !TARGET_OS_WASI
#if TARGET_OS_WIN32
CF_INLINE CFIndex strlen_UniChar(const UniChar* p) {
CFIndex result = 0;
while ((*p++) != 0)
++result;
return result;
}
//#include <shfolder.h>
/*
* _CFCreateApplicationRepositoryPath returns the path to the application's
* repository in a CFMutableStringRef. The path returned will be:
* <nFolder_path>\Apple Computer\<bundle_name>\
* or if the bundle name cannot be obtained:
* <nFolder_path>\Apple Computer\
* where nFolder_path is obtained by calling SHGetFolderPath with nFolder
* (for example, with CSIDL_APPDATA or CSIDL_LOCAL_APPDATA).
*
* The CFMutableStringRef result must be released by the caller.
*
* If anything fails along the way, the result will be NULL.
*/
CF_EXPORT CFMutableStringRef _CFCreateApplicationRepositoryPath(CFAllocatorRef alloc, int nFolder) {
CFMutableStringRef result = NULL;
UniChar szPath[MAX_PATH];
// get the current path to the data repository: CSIDL_APPDATA (roaming) or CSIDL_LOCAL_APPDATA (nonroaming)
if (S_OK == SHGetFolderPathW(NULL, nFolder, NULL, 0, (wchar_t *) szPath)) {
CFStringRef directoryPath;
// make it a CFString
directoryPath = CFStringCreateWithCharacters(alloc, szPath, strlen_UniChar(szPath));
if (directoryPath) {
CFBundleRef bundle;
CFStringRef bundleName;
CFStringRef completePath;
// attempt to get the bundle name
bundle = CFBundleGetMainBundle();
if (bundle) {
bundleName = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(bundle, kCFBundleNameKey);
}
else {
bundleName = NULL;
}
if (bundleName) {
// the path will be "<directoryPath>\Apple Computer\<bundleName>\" if there is a bundle name
completePath = CFStringCreateWithFormat(alloc, NULL, CFSTR("%@\\Apple Computer\\%@\\"), directoryPath, bundleName);
}
else {
// or "<directoryPath>\Apple Computer\" if there is no bundle name.
completePath = CFStringCreateWithFormat(alloc, NULL, CFSTR("%@\\Apple Computer\\"), directoryPath);
}
CFRelease(directoryPath);
// make a mutable copy to return
if (completePath) {
result = CFStringCreateMutableCopy(alloc, 0, completePath);
CFRelease(completePath);
}
}
}
return ( result );
}
#endif
#pragma mark -
#pragma mark Thread Functions
#if TARGET_OS_WIN32
CF_EXPORT void _NS_pthread_setname_np(const char *name) {
_CFThreadSetName(GetCurrentThread(), name);
}
static _CFThreadRef __initialPthread = INVALID_HANDLE_VALUE;
CF_EXPORT int _NS_pthread_main_np() {
if (__initialPthread == INVALID_HANDLE_VALUE)
DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
GetCurrentProcess(), &__initialPthread, 0, FALSE,
DUPLICATE_SAME_ACCESS);
return CompareObjectHandles(__initialPthread, GetCurrentThread());
}
CF_EXPORT bool _NS_pthread_equal(_CFThreadRef t1, _CFThreadRef t2) {
return CompareObjectHandles(t1, t2) == TRUE;
}
#endif
#pragma mark -
#pragma mark Thread Local Data
// If slot >= CF_TSD_MAX_SLOTS, the SPI functions will crash at NULL + slot address.
// If thread data has been torn down, these functions should crash on CF_TSD_BAD_PTR + slot address.
#define CF_TSD_MAX_SLOTS 70
// Windows and Linux, not sure how many times the destructor could get called; CF_TSD_MAX_DESTRUCTOR_CALLS could be 1
#define CF_TSD_BAD_PTR ((void *)0x1000)
typedef void (*tsdDestructor)(void *);
// Data structure to hold TSD data, cleanup functions for each
typedef struct __CFTSDTable {
uint32_t destructorCount;
uintptr_t data[CF_TSD_MAX_SLOTS];
tsdDestructor destructors[CF_TSD_MAX_SLOTS];
} __CFTSDTable;
#if TARGET_OS_WIN32
__stdcall
#endif
static void __CFTSDFinalize(void *arg);
#if TARGET_OS_WIN32
static DWORD __CFTSDIndexKey = 0xFFFFFFFF;
// Called from CFRuntime's startup code, on Windows only
CF_PRIVATE void __CFTSDWindowsInitialize() {
__CFTSDIndexKey = FlsAlloc(__CFTSDFinalize);
}
// Called from CFRuntime's cleanup code, on Windows only
CF_PRIVATE void __CFTSDWindowsCleanup() {
FlsFree(__CFTSDIndexKey);
}
#else
static _CFThreadSpecificKey __CFTSDIndexKey;
#if TARGET_OS_WASI
static void *__CFThreadSpecificData;
#endif
CF_PRIVATE void __CFTSDInitialize() {
#if !TARGET_OS_WASI
static dispatch_once_t once;
dispatch_once(&once, ^{
(void)pthread_key_create(&__CFTSDIndexKey, __CFTSDFinalize);
});
#endif
}
#endif
static void __CFTSDSetSpecific(void *arg) {
#if TARGET_OS_MAC
pthread_setspecific(__CFTSDIndexKey, arg);
#elif TARGET_OS_LINUX || TARGET_OS_BSD
pthread_setspecific(__CFTSDIndexKey, arg);
#elif TARGET_OS_WIN32
FlsSetValue(__CFTSDIndexKey, arg);
#elif TARGET_OS_WASI
__CFThreadSpecificData = arg;
#endif
}
static void *__CFTSDGetSpecific() {
#if TARGET_OS_MAC
return pthread_getspecific(__CFTSDIndexKey);
#elif TARGET_OS_LINUX || TARGET_OS_BSD
return pthread_getspecific(__CFTSDIndexKey);
#elif TARGET_OS_WIN32
return FlsGetValue(__CFTSDIndexKey);
#elif TARGET_OS_WASI
return __CFThreadSpecificData;
#endif
}
_Atomic(bool) __CFMainThreadHasExited = false;
#if TARGET_OS_WIN32
__stdcall
#endif
static void __CFTSDFinalize(void *arg) {
#if TARGET_OS_WASI
__CFMainThreadHasExited = true;
#else
if (_CFIsMainThread()) {
// Important: we need to be sure that the only time we set this flag to true is when we actually can guarentee we ARE the main thread.
__CFMainThreadHasExited = true;
}
#endif
// Set our TSD so we're called again by pthreads. It will call the destructor PTHREAD_DESTRUCTOR_ITERATIONS times as long as a value is set in the thread specific data. We handle each case below.
__CFTSDSetSpecific(arg);
if (!arg || arg == CF_TSD_BAD_PTR) {
// We've already been destroyed. The call above set the bad pointer again. Now we just return.
return;
}
__CFTSDTable *table = (__CFTSDTable *)arg;
table->destructorCount++;
// On first calls invoke destructor. Later we destroy the data.
// Note that invocation of the destructor may cause a value to be set again in the per-thread data slots. The destructor count and destructors are preserved.
// This logic is basically the same as what pthreads does. We just skip the 'created' flag.
for (int32_t i = 0; i < CF_TSD_MAX_SLOTS; i++) {
if (table->data[i] && table->destructors[i]) {
uintptr_t old = table->data[i];
table->data[i] = (uintptr_t)NULL;
table->destructors[i]((void *)(old));
}
}
#if _POSIX_THREADS && !TARGET_OS_WASI
if (table->destructorCount == PTHREAD_DESTRUCTOR_ITERATIONS - 1) { // On PTHREAD_DESTRUCTOR_ITERATIONS-1 call, destroy our data
free(table);
// Now if the destructor is called again we will take the shortcut at the beginning of this function.
__CFTSDSetSpecific(CF_TSD_BAD_PTR);
return;
}
#else
free(table);
__CFTSDSetSpecific(CF_TSD_BAD_PTR);
#endif
}
#if TARGET_OS_MAC
extern int pthread_key_init_np(int, void (*)(void *));
#endif
// Get or initialize a thread local storage. It is created on demand.
static __CFTSDTable *__CFTSDGetTable(const Boolean create) {
__CFTSDTable *table = (__CFTSDTable *)__CFTSDGetSpecific();
// Make sure we're not setting data again after destruction.
if (table == CF_TSD_BAD_PTR) {
return NULL;
}
// Create table on demand
if (!table && create) {
// This memory is freed in the finalize function
table = (__CFTSDTable *)calloc(1, sizeof(__CFTSDTable));
// Windows and Linux have created the table already, we need to initialize it here for other platforms. On Windows, the cleanup function is called by DllMain when a thread exits. On Linux the destructor is set at init time.
#if !TARGET_OS_WIN32
__CFTSDInitialize();
#endif
__CFTSDSetSpecific(table);
}
return table;
}
// For the use of CF and Foundation only
CF_EXPORT void *_CFGetTSDCreateIfNeeded(const uint32_t slot, const Boolean create) CF_RETURNS_NOT_RETAINED {
if (slot >= CF_TSD_MAX_SLOTS) {
_CFLogSimple(kCFLogLevelError, "Error: TSD slot %d out of range (get)", slot);
HALT;
}
void * result = NULL;
__CFTSDTable *table = __CFTSDGetTable(create);
if (table) {
uintptr_t *slots = (uintptr_t *)(table->data);
result = (void *)slots[slot];
}
else if (create) {
// Someone is getting TSD during thread destruction. The table is gone, so we can't get any data anymore.
_CFLogSimple(kCFLogLevelWarning, "Warning: TSD slot %d retrieved but the thread data has already been torn down.", slot);
return NULL;
}
return result;
}
// For the use of CF and Foundation only
CF_EXPORT void *_CFGetTSD(uint32_t slot) {
return _CFGetTSDCreateIfNeeded(slot, true);
}
// For the use of CF and Foundation only
CF_EXPORT void *_CFSetTSD(uint32_t slot, void *newVal, tsdDestructor destructor) {
if (slot >= CF_TSD_MAX_SLOTS) {
_CFLogSimple(kCFLogLevelError, "Error: TSD slot %d out of range (set)", slot);
HALT;
}
__CFTSDTable *table = __CFTSDGetTable(true);
if (!table) {
// Someone is setting TSD during thread destruction. The table is gone, so we can't get any data anymore.
_CFLogSimple(kCFLogLevelWarning, "Warning: TSD slot %d set but the thread data has already been torn down.", slot);
return NULL;
}
void *oldVal = (void *)table->data[slot];
table->data[slot] = (uintptr_t)newVal;
table->destructors[slot] = destructor;
return oldVal;
}
#pragma mark -
#pragma mark Windows Wide to UTF8 and UTF8 to Wide
#if TARGET_OS_WIN32
/* On Windows, we want to use UTF-16LE for path names to get full unicode support. Internally, however, everything remains in UTF-8 representation. These helper functions stand between CF and the Microsoft CRT to ensure that we are using the right representation on both sides. */
#include <sys/stat.h>
#include <share.h>
// Creates a buffer of wchar_t to hold a UTF16LE version of the UTF8 str passed in. Caller must free the buffer when done. If resultLen is non-NULL, it is filled out with the number of characters in the string.
static wchar_t *createWideFileSystemRepresentation(const char *str, CFIndex *resultLen) {
// Get the real length of the string in UTF16 characters
CFStringRef cfStr = CFStringCreateWithCString(kCFAllocatorSystemDefault, str, kCFStringEncodingUTF8);
CFIndex strLen = CFStringGetLength(cfStr);
// Allocate a wide buffer to hold the converted string, including space for a NULL terminator
wchar_t *wideBuf = (wchar_t *)malloc((strLen + 1) * sizeof(wchar_t));
// Copy the string into the buffer and terminate
CFStringGetCharacters(cfStr, CFRangeMake(0, strLen), (UniChar *)wideBuf);
wideBuf[strLen] = 0;
CFRelease(cfStr);
if (resultLen) *resultLen = strLen;
return wideBuf;
}