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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsMacUtilsImpl.h"
#include "base/command_line.h"
#include "base/process_util.h"
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/Logging.h"
#include "mozilla/Omnijar.h"
#include "nsComponentManagerUtils.h"
#include "nsCOMPtr.h"
#include "nsDirectoryServiceDefs.h"
#include "nsIFile.h"
#include "nsReadableUtils.h"
#include "nsServiceManagerUtils.h"
#include "nsString.h"
#include "nsThreadUtils.h"
#include "nsXULAppAPI.h"
#include "prenv.h"
#if defined(MOZ_SANDBOX)
# include "mozilla/SandboxSettings.h"
#endif
#include <CoreFoundation/CoreFoundation.h>
#include <CoreServices/CoreServices.h>
#if defined(__aarch64__)
# include <dlfcn.h>
#endif
#include <sys/sysctl.h>
using mozilla::StaticMutexAutoLock;
using namespace nsMacUtilsImpl;
static mozilla::LazyLogModule sMacUtilsLog("macutils");
#define LOG(args...) MOZ_LOG(sMacUtilsLog, mozilla::LogLevel::Debug, (args))
#if defined(MOZ_SANDBOX) || defined(__aarch64__)
// For thread safe setting/checking of sCachedAppPath
static StaticMutex sCachedAppPathMutex;
// Cache the appDir returned from GetAppPath to avoid doing I/O
static StaticAutoPtr<nsCString> sCachedAppPath
MOZ_GUARDED_BY(sCachedAppPathMutex);
#endif
// The cached machine architectures of the .app bundle which can
// be multiple architectures for universal binaries.
static std::atomic<uint32_t> sBundleArchMaskAtomic = 0;
#if defined(__aarch64__)
// Limit XUL translation to one attempt
static std::atomic<bool> sIsXULTranslated = false;
#endif
// Info.plist key associated with the developer repo path
#define MAC_DEV_REPO_KEY "MozillaDeveloperRepoPath"
// Info.plist key associated with the developer repo object directory
#define MAC_DEV_OBJ_KEY "MozillaDeveloperObjPath"
// Workaround this constant not being available in the macOS SDK
#define kCFBundleExecutableArchitectureARM64 0x0100000c
enum TCSMStatus { TCSM_Unknown = 0, TCSM_Available, TCSM_Unavailable };
// Initialize with Unknown until we've checked if TCSM is available to set
static Atomic<TCSMStatus> sTCSMStatus(TCSM_Unknown);
#if defined(MOZ_SANDBOX) || defined(__aarch64__)
// Utility method to call ClearOnShutdown() on the main thread
static nsresult ClearCachedAppPathOnShutdown() {
MOZ_ASSERT(NS_IsMainThread());
ClearOnShutdown(&sCachedAppPath);
return NS_OK;
}
// Get the path to the .app directory (aka bundle) for the parent process.
// When executing in the child process, this is the outer .app (such as
// Firefox.app) and not the inner .app containing the child process
// executable. We don't rely on the actual .app extension to allow for the
// bundle being renamed.
bool nsMacUtilsImpl::GetAppPath(nsCString& aAppPath) {
StaticMutexAutoLock lock(sCachedAppPathMutex);
if (sCachedAppPath) {
aAppPath.Assign(*sCachedAppPath);
return true;
}
nsAutoCString appPath;
nsAutoCString appBinaryPath(
(CommandLine::ForCurrentProcess()->argv()[0]).c_str());
// The binary path resides within the .app dir in Contents/MacOS,
// e.g., Firefox.app/Contents/MacOS/firefox. Search backwards in
// the binary path for the end of .app path.
auto pattern = "/Contents/MacOS/"_ns;
nsAutoCString::const_iterator start, end;
appBinaryPath.BeginReading(start);
appBinaryPath.EndReading(end);
if (RFindInReadable(pattern, start, end,
nsCaseInsensitiveCStringComparator)) {
end = start;
appBinaryPath.BeginReading(start);
// If we're executing in a child process, get the parent .app path
// by searching backwards once more. The child executable resides
// in Firefox.app/Contents/MacOS/plugin-container/Contents/MacOS.
if (!XRE_IsParentProcess()) {
if (RFindInReadable(pattern, start, end,
nsCaseInsensitiveCStringComparator)) {
end = start;
appBinaryPath.BeginReading(start);
} else {
return false;
}
}
appPath.Assign(Substring(start, end));
} else {
return false;
}
nsCOMPtr<nsIFile> app;
nsresult rv = NS_NewNativeLocalFile(appPath, getter_AddRefs(app));
if (NS_FAILED(rv)) {
return false;
}
rv = app->Normalize();
if (NS_FAILED(rv)) {
return false;
}
app->GetNativePath(aAppPath);
if (!sCachedAppPath) {
sCachedAppPath = new nsCString(aAppPath);
if (NS_IsMainThread()) {
ClearCachedAppPathOnShutdown();
} else {
NS_DispatchToMainThread(
NS_NewRunnableFunction("ClearCachedAppPathOnShutdown",
[] { ClearCachedAppPathOnShutdown(); }));
}
}
return true;
}
#endif /* MOZ_SANDBOX || __aarch64__ */
#if defined(MOZ_SANDBOX) && defined(DEBUG)
// If XPCOM_MEM_BLOAT_LOG or XPCOM_MEM_LEAK_LOG is set to a log file
// path, return the path to the parent directory (where sibling log
// files will be saved.)
nsresult nsMacUtilsImpl::GetBloatLogDir(nsCString& aDirectoryPath) {
nsAutoCString bloatLog(PR_GetEnv("XPCOM_MEM_BLOAT_LOG"));
if (bloatLog.IsEmpty()) {
bloatLog = PR_GetEnv("XPCOM_MEM_LEAK_LOG");
}
if (!bloatLog.IsEmpty() && bloatLog != "1" && bloatLog != "2") {
return GetDirectoryPath(bloatLog.get(), aDirectoryPath);
}
return NS_OK;
}
// Given a path to a file, return the directory which contains it.
nsresult nsMacUtilsImpl::GetDirectoryPath(const char* aPath,
nsCString& aDirectoryPath) {
nsresult rv = NS_OK;
nsCOMPtr<nsIFile> file;
rv = NS_NewNativeLocalFile(nsDependentCString(aPath), getter_AddRefs(file));
NS_ENSURE_SUCCESS(rv, rv);
nsCOMPtr<nsIFile> directoryFile;
rv = file->GetParent(getter_AddRefs(directoryFile));
NS_ENSURE_SUCCESS(rv, rv);
rv = directoryFile->Normalize();
NS_ENSURE_SUCCESS(rv, rv);
if (NS_FAILED(directoryFile->GetNativePath(aDirectoryPath))) {
MOZ_CRASH("Failed to get path for an nsIFile");
}
return NS_OK;
}
#endif /* MOZ_SANDBOX && DEBUG */
/* static */
bool nsMacUtilsImpl::IsTCSMAvailable() {
if (sTCSMStatus == TCSM_Unknown) {
uint32_t oldVal = 0;
size_t oldValSize = sizeof(oldVal);
int rv = sysctlbyname("kern.tcsm_available", &oldVal, &oldValSize, NULL, 0);
TCSMStatus newStatus;
if (rv < 0 || oldVal == 0) {
newStatus = TCSM_Unavailable;
} else {
newStatus = TCSM_Available;
}
// The value of sysctl kern.tcsm_available is the same for all
// threads within the same process. If another thread raced with us
// and initialized sTCSMStatus first (changing it from
// TCSM_Unknown), we can continue without needing to update it
// again. Hence, we ignore compareExchange's return value.
(void)sTCSMStatus.compareExchange(TCSM_Unknown, newStatus);
}
return (sTCSMStatus == TCSM_Available);
}
static nsresult EnableTCSM() {
uint32_t newVal = 1;
int rv = sysctlbyname("kern.tcsm_enable", NULL, 0, &newVal, sizeof(newVal));
if (rv < 0) {
return NS_ERROR_UNEXPECTED;
}
return NS_OK;
}
#if defined(DEBUG)
static bool IsTCSMEnabled() {
uint32_t oldVal = 0;
size_t oldValSize = sizeof(oldVal);
int rv = sysctlbyname("kern.tcsm_enable", &oldVal, &oldValSize, NULL, 0);
return (rv == 0) && (oldVal != 0);
}
#endif
/*
* Intentionally return void so that failures will be ignored in non-debug
* builds. This method uses new sysctls which may not be as thoroughly tested
* and we don't want to cause crashes handling the failure due to an OS bug.
*/
/* static */
void nsMacUtilsImpl::EnableTCSMIfAvailable() {
if (IsTCSMAvailable()) {
if (NS_FAILED(EnableTCSM())) {
NS_WARNING("Failed to enable TCSM");
}
MOZ_ASSERT(IsTCSMEnabled());
}
}
// Returns 0 on error.
/* static */
uint32_t nsMacUtilsImpl::GetPhysicalCPUCount() {
uint32_t oldVal = 0;
size_t oldValSize = sizeof(oldVal);
int rv = sysctlbyname("hw.physicalcpu_max", &oldVal, &oldValSize, NULL, 0);
if (rv == -1) {
return 0;
}
return oldVal;
}
/*
* Helper function to read a string value for a given key from the .app's
* Info.plist.
*/
static nsresult GetStringValueFromBundlePlist(const nsAString& aKey,
nsAutoCString& aValue) {
CFBundleRef mainBundle = CFBundleGetMainBundle();
if (mainBundle == nullptr) {
return NS_ERROR_FAILURE;
}
// Read this app's bundle Info.plist as a dictionary
CFDictionaryRef bundleInfoDict = CFBundleGetInfoDictionary(mainBundle);
if (bundleInfoDict == nullptr) {
return NS_ERROR_FAILURE;
}
nsAutoCString keyAutoCString = NS_ConvertUTF16toUTF8(aKey);
CFStringRef key = CFStringCreateWithCString(
kCFAllocatorDefault, keyAutoCString.get(), kCFStringEncodingUTF8);
if (key == nullptr) {
return NS_ERROR_FAILURE;
}
CFStringRef value = (CFStringRef)CFDictionaryGetValue(bundleInfoDict, key);
CFRelease(key);
if (value == nullptr) {
return NS_ERROR_FAILURE;
}
CFIndex valueLength = CFStringGetLength(value);
if (valueLength == 0) {
return NS_ERROR_FAILURE;
}
const char* valueCString =
CFStringGetCStringPtr(value, kCFStringEncodingUTF8);
if (valueCString) {
aValue.Assign(valueCString);
return NS_OK;
}
CFIndex maxLength =
CFStringGetMaximumSizeForEncoding(valueLength, kCFStringEncodingUTF8) + 1;
char* valueBuffer = static_cast<char*>(moz_xmalloc(maxLength));
if (!CFStringGetCString(value, valueBuffer, maxLength,
kCFStringEncodingUTF8)) {
free(valueBuffer);
return NS_ERROR_FAILURE;
}
aValue.Assign(valueBuffer);
free(valueBuffer);
return NS_OK;
}
/*
* Helper function for reading a path string from the .app's Info.plist
* and returning a directory object for that path with symlinks resolved.
*/
static nsresult GetDirFromBundlePlist(const nsAString& aKey, nsIFile** aDir) {
nsresult rv;
nsAutoCString dirPath;
rv = GetStringValueFromBundlePlist(aKey, dirPath);
NS_ENSURE_SUCCESS(rv, rv);
nsCOMPtr<nsIFile> dir;
rv = NS_NewNativeLocalFile(dirPath, getter_AddRefs(dir));
NS_ENSURE_SUCCESS(rv, rv);
rv = dir->Normalize();
NS_ENSURE_SUCCESS(rv, rv);
bool isDirectory = false;
rv = dir->IsDirectory(&isDirectory);
NS_ENSURE_SUCCESS(rv, rv);
if (!isDirectory) {
return NS_ERROR_FILE_NOT_DIRECTORY;
}
dir.swap(*aDir);
return NS_OK;
}
nsresult nsMacUtilsImpl::GetRepoDir(nsIFile** aRepoDir) {
#if defined(MOZ_SANDBOX)
MOZ_ASSERT(!mozilla::IsPackagedBuild());
#endif
return GetDirFromBundlePlist(NS_LITERAL_STRING_FROM_CSTRING(MAC_DEV_REPO_KEY),
aRepoDir);
}
nsresult nsMacUtilsImpl::GetObjDir(nsIFile** aObjDir) {
#if defined(MOZ_SANDBOX)
MOZ_ASSERT(!mozilla::IsPackagedBuild());
#endif
return GetDirFromBundlePlist(NS_LITERAL_STRING_FROM_CSTRING(MAC_DEV_OBJ_KEY),
aObjDir);
}
/* static */
nsresult nsMacUtilsImpl::GetArchitecturesForBundle(uint32_t* aArchMask) {
MOZ_ASSERT(aArchMask);
*aArchMask = sBundleArchMaskAtomic;
if (*aArchMask != 0) {
return NS_OK;
}
CFBundleRef mainBundle = ::CFBundleGetMainBundle();
if (!mainBundle) {
return NS_ERROR_FAILURE;
}
CFArrayRef archList = ::CFBundleCopyExecutableArchitectures(mainBundle);
if (!archList) {
return NS_ERROR_FAILURE;
}
CFIndex archCount = ::CFArrayGetCount(archList);
for (CFIndex i = 0; i < archCount; i++) {
CFNumberRef arch =
static_cast<CFNumberRef>(::CFArrayGetValueAtIndex(archList, i));
int archInt = 0;
if (!::CFNumberGetValue(arch, kCFNumberIntType, &archInt)) {
::CFRelease(archList);
return NS_ERROR_FAILURE;
}
if (archInt == kCFBundleExecutableArchitecturePPC) {
*aArchMask |= base::PROCESS_ARCH_PPC;
} else if (archInt == kCFBundleExecutableArchitectureI386) {
*aArchMask |= base::PROCESS_ARCH_I386;
} else if (archInt == kCFBundleExecutableArchitecturePPC64) {
*aArchMask |= base::PROCESS_ARCH_PPC_64;
} else if (archInt == kCFBundleExecutableArchitectureX86_64) {
*aArchMask |= base::PROCESS_ARCH_X86_64;
} else if (archInt == kCFBundleExecutableArchitectureARM64) {
*aArchMask |= base::PROCESS_ARCH_ARM_64;
}
}
::CFRelease(archList);
sBundleArchMaskAtomic = *aArchMask;
return NS_OK;
}
/* static */
nsresult nsMacUtilsImpl::GetArchitecturesForBinary(const char* aPath,
uint32_t* aArchMask) {
MOZ_ASSERT(aArchMask);
*aArchMask = 0;
CFURLRef url = ::CFURLCreateFromFileSystemRepresentation(
kCFAllocatorDefault, (const UInt8*)aPath, strlen(aPath), false);
if (!url) {
return NS_ERROR_FAILURE;
}
CFArrayRef archs = ::CFBundleCopyExecutableArchitecturesForURL(url);
if (!archs) {
CFRelease(url);
return NS_ERROR_FAILURE;
}
CFIndex archCount = ::CFArrayGetCount(archs);
for (CFIndex i = 0; i < archCount; i++) {
CFNumberRef currentArch =
static_cast<CFNumberRef>(::CFArrayGetValueAtIndex(archs, i));
int currentArchInt = 0;
if (!::CFNumberGetValue(currentArch, kCFNumberIntType, ¤tArchInt)) {
continue;
}
switch (currentArchInt) {
case kCFBundleExecutableArchitectureX86_64:
*aArchMask |= base::PROCESS_ARCH_X86_64;
break;
case kCFBundleExecutableArchitectureARM64:
*aArchMask |= base::PROCESS_ARCH_ARM_64;
break;
default:
break;
}
}
CFRelease(url);
CFRelease(archs);
// We expect x86 or ARM64 or both.
if (*aArchMask == 0) {
return NS_ERROR_UNEXPECTED;
}
return NS_OK;
}
#if defined(__aarch64__)
// Pre-translate XUL so that x64 child processes launched after this
// translation will not incur the translation overhead delaying startup.
// Returns 1 if translation is in progress, -1 on an error encountered before
// translation, and otherwise returns the result of rosetta_translate_binaries.
/* static */
int nsMacUtilsImpl::PreTranslateXUL() {
bool expected = false;
if (!sIsXULTranslated.compare_exchange_strong(expected, true)) {
// Translation is already done or in progress.
return 1;
}
// Get the path to XUL by first getting the
// outer .app path and appending the path to XUL.
nsCString xulPath;
if (!GetAppPath(xulPath)) {
return -1;
}
xulPath.Append("/Contents/MacOS/XUL");
return PreTranslateBinary(xulPath);
}
// Use Chromium's method to pre-translate the provided binary using the
// undocumented function "rosetta_translate_binaries" from libRosetta.dylib.
// Re-translating the same binary does not cause translation to occur again.
// Returns -1 on an error encountered before translation, otherwise returns
// the rosetta_translate_binaries result. This method is partly copied from
// Chromium code.
/* static */
int nsMacUtilsImpl::PreTranslateBinary(nsCString aBinaryPath) {
// Do not attempt to use this in child processes. Child
// processes executing should already be translated and
// sandboxing may interfere with translation.
MOZ_ASSERT(XRE_IsParentProcess());
if (!XRE_IsParentProcess()) {
return -1;
}
// Translation can take several seconds and therefore
// should not be done on the main thread.
MOZ_ASSERT(!NS_IsMainThread());
if (NS_IsMainThread()) {
return -1;
}
// @available() is not available for macOS 11 at this time so use
// -Wunguarded-availability-new to avoid compiler warnings caused
// by an earlier minimum SDK. ARM64 builds require the 11.0 SDK and
// can not be run on earlier OS versions so this is not a concern.
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wunguarded-availability-new"
// If Rosetta is not installed, do not proceed.
if (!CFBundleIsArchitectureLoadable(CPU_TYPE_X86_64)) {
return -1;
}
# pragma clang diagnostic pop
if (aBinaryPath.IsEmpty()) {
return -1;
}
// int rosetta_translate_binaries(const char*[] paths, int npaths)
using rosetta_translate_binaries_t = int (*)(const char*[], int);
static auto rosetta_translate_binaries = []() {
void* libRosetta =
dlopen("/usr/lib/libRosetta.dylib", RTLD_LAZY | RTLD_LOCAL);
if (!libRosetta) {
return static_cast<rosetta_translate_binaries_t>(nullptr);
}
return reinterpret_cast<rosetta_translate_binaries_t>(
dlsym(libRosetta, "rosetta_translate_binaries"));
}();
if (!rosetta_translate_binaries) {
return -1;
}
const char* pathPtr = aBinaryPath.get();
return rosetta_translate_binaries(&pathPtr, 1);
}
#endif
std::string CFStringToStdString(CFStringRef aString) {
if (!aString) {
return std::string();
}
CFIndex length = CFStringGetLength(aString);
CFIndex maxSize =
CFStringGetMaximumSizeForEncoding(length, kCFStringEncodingUTF8) + 1;
mozilla::UniquePtr<char[]> buffer = mozilla::MakeUnique<char[]>(maxSize);
if (!buffer) {
return std::string();
}
if (CFStringGetCString(aString, buffer.get(), maxSize,
kCFStringEncodingUTF8)) {
std::string result(buffer.get());
return result;
}
return std::string();
}
//
// Read the code signature information of the binary at `aPath` and return
// A string description of the signature type in `aSignatureType`. Returns
// CodeSignatureType::UnexpectedError if a failure occurs while reading the
// signature information.
//
CodeSignatureType GetSignatureTypeImpl(const nsCString& aPath) {
LOG("Reading code signature: %s", aPath.get());
CFStringRef pathRef = CFStringCreateWithCString(
kCFAllocatorDefault, aPath.get(), kCFStringEncodingUTF8);
if (!pathRef) {
return CodeSignatureType::UnexpectedError;
}
CFURLRef fileURLRef = CFURLCreateWithFileSystemPath(
kCFAllocatorDefault, pathRef, kCFURLPOSIXPathStyle, false);
CFRelease(pathRef);
if (!fileURLRef) {
return CodeSignatureType::UnexpectedError;
}
// Create a static code object. Due to return value semantics being
// underspecified in the API documentation, we have some duplicate checks
// for unsigned code. We expect SecStaticCodeCheckValidity to return
// errSecCSUnsigned. In testing, SecStaticCodeCreateWithPath succeeds for
// unsigned code. SecStaticCodeCheckValidity fails for unsigned code.
// Having no kSecCodeInfoFlags is documented as an indicator of unsigned
// code.
SecStaticCodeRef staticCode = nullptr;
OSStatus status =
SecStaticCodeCreateWithPath(fileURLRef, kSecCSDefaultFlags, &staticCode);
CFRelease(fileURLRef);
if (status != errSecSuccess) {
if (staticCode) {
CFRelease(staticCode);
}
if (status == errSecCSUnsigned) {
return CodeSignatureType::Unsigned;
}
LOG("SecStaticCodeCreateWithPath failure: %d", (int)status);
return CodeSignatureType::UnexpectedError;
}
// Check validity and determine if unsigned
status = SecStaticCodeCheckValidity(staticCode, kSecCSDefaultFlags, nullptr);
if (status != errSecSuccess) {
CFRelease(staticCode);
if (status == errSecCSUnsigned) {
return CodeSignatureType::Unsigned;
}
LOG("SecStaticCodeCheckValidity failure: %d", (int)status);
return CodeSignatureType::UnexpectedError;
}
// Retrieve more detailed signing information dictionary
CFDictionaryRef signingInfo = nullptr;
status = SecCodeCopySigningInformation(staticCode, kSecCSSigningInformation,
&signingInfo);
CFRelease(staticCode);
if (status != errSecSuccess || !signingInfo) {
if (signingInfo) {
CFRelease(signingInfo);
}
LOG("SecCodeCopySigningInformation failure: %d", (int)status);
return CodeSignatureType::UnexpectedError;
}
CFNumberRef flagsRef =
(CFNumberRef)CFDictionaryGetValue(signingInfo, kSecCodeInfoFlags);
if (!flagsRef) {
// Is it signed? No kSecCodeInfoFlags key indicates unsigned
// code per SecCodeCopySigningInformation documentation.
CFRelease(signingInfo);
return CodeSignatureType::Unsigned;
}
// Check Code Directory flags for ad-hoc signing
uint32_t codeDirectoryFlags = 0;
CFNumberGetValue(flagsRef, kCFNumberSInt32Type, &codeDirectoryFlags);
CFArrayRef certificates =
(CFArrayRef)CFDictionaryGetValue(signingInfo, kSecCodeInfoCertificates);
if (!certificates) {
CodeSignatureType rv;
if (codeDirectoryFlags & kSecCodeSignatureAdhoc) {
// Ad-hoc signature with no certificates
rv = CodeSignatureType::AdHoc;
} else {
// No certificates found and not ad-hoc
LOG("NULL certificates array");
rv = CodeSignatureType::Other;
}
CFRelease(signingInfo);
return rv;
}
if (CFArrayGetCount(certificates) == 0) {
LOG("Zero length certificates array");
CFRelease(signingInfo);
return CodeSignatureType::Other;
}
// Extract the leaf certificate common name.
// The leaf certificate is the first one in the array.
SecCertificateRef leafCert =
(SecCertificateRef)CFArrayGetValueAtIndex(certificates, 0);
CFStringRef commonNameRef = nullptr;
std::string commonName;
if (SecCertificateCopyCommonName(leafCert, &commonNameRef) != errSecSuccess ||
!commonNameRef) {
if (commonNameRef) {
CFRelease(commonNameRef);
}
CFRelease(signingInfo);
// No leaf common name
LOG("No leaf common name");
return CodeSignatureType::Other;
}
commonName = CFStringToStdString(commonNameRef);
LOG("Leaf common name: %s", commonName.c_str());
CFRelease(commonNameRef);
CFRelease(signingInfo);
// Classify signature based on leaf certificate common name
if (commonName == "Apple Mac OS Application Signing") {
return CodeSignatureType::AppStore;
} else if (commonName == "Software Signing") {
return CodeSignatureType::AppleSystem;
} else if (commonName.find("Developer ID Application:") !=
std::string::npos) {
return CodeSignatureType::DeveloperID;
} else if (commonName.find("Apple Development:") != std::string::npos) {
return CodeSignatureType::Development;
} else {
return CodeSignatureType::Other;
}
}
CodeSignatureType nsMacUtilsImpl::GetSignatureType(const nsCString& aPath) {
CodeSignatureType signatureType = GetSignatureTypeImpl(aPath);
LOG("Code signature type for module %s: %s", aPath.get(),
CodeSignatureTypeToString(signatureType).get());
return signatureType;
}
nsCString nsMacUtilsImpl::CodeSignatureTypeToString(CodeSignatureType aType) {
switch (aType) {
case CodeSignatureType::UnexpectedError:
return "Unexpected Error"_ns;
case CodeSignatureType::Unsigned:
return "Unsigned"_ns;
case CodeSignatureType::AdHoc:
return "Ad-Hoc"_ns;
case CodeSignatureType::DeveloperID:
return "Developer ID"_ns;
case CodeSignatureType::AppStore:
return "App Store"_ns;
case CodeSignatureType::AppleSystem:
return "Apple System"_ns;
case CodeSignatureType::Development:
return "Development"_ns;
case CodeSignatureType::Other:
return "Other"_ns;
}
return "Unknown"_ns;
}
|