blob: 4eae90c4e65bc4fd3aec9143e30298457ec11ec2 [file] [log] [blame]
/*
* Copyright (C) 2011-2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "config.h"
#import "RuntimeApplicationChecks.h"
#if PLATFORM(COCOA)
#import <Foundation/NSBundle.h>
#import <wtf/NeverDestroyed.h>
#import <wtf/RunLoop.h>
#import <wtf/spi/darwin/dyldSPI.h>
#import <wtf/text/WTFString.h>
namespace WebCore {
#if !ASSERT_MSG_DISABLED
static bool applicationBundleIdentifierOverrideWasQueried;
#endif
// The application bundle identifier gets set to the UIProcess bundle identifier by the WebProcess and
// the Networking upon initialization. It is unset otherwise.
static String& applicationBundleIdentifierOverride()
{
static NeverDestroyed<String> identifier;
#if !ASSERT_MSG_DISABLED
applicationBundleIdentifierOverrideWasQueried = true;
#endif
return identifier;
}
String applicationBundleIdentifier()
{
// The override only gets set in WebKit2's WebProcess and NetworkProcess. If unset, we use the main bundle identifier.
const auto& identifier = applicationBundleIdentifierOverride();
ASSERT(identifier.isNull() || RunLoop::isMain());
return identifier.isNull() ? String([[NSBundle mainBundle] bundleIdentifier]) : identifier;
}
void setApplicationBundleIdentifier(const String& bundleIdentifier)
{
ASSERT(RunLoop::isMain());
ASSERT_WITH_MESSAGE(!applicationBundleIdentifierOverrideWasQueried, "applicationBundleIsEqualTo() and applicationBundleStartsWith() should not be called before setApplicationBundleIdentifier()");
applicationBundleIdentifierOverride() = bundleIdentifier;
}
static Optional<uint32_t>& applicationSDKVersionOverride()
{
static NeverDestroyed<Optional<uint32_t>> version;
return version;
}
void setApplicationSDKVersion(uint32_t version)
{
applicationSDKVersionOverride() = version;
}
uint32_t applicationSDKVersion()
{
if (applicationSDKVersionOverride())
return *applicationSDKVersionOverride();
return dyld_get_program_sdk_version();
}
bool isInWebProcess()
{
static bool mainBundleIsWebProcess = [[[NSBundle mainBundle] bundleIdentifier] hasPrefix:@"com.apple.WebKit.WebContent"];
return mainBundleIsWebProcess;
}
bool isInNetworkProcess()
{
static bool mainBundleIsNetworkProcess = [[[NSBundle mainBundle] bundleIdentifier] hasPrefix:@"com.apple.WebKit.Networking"];
return mainBundleIsNetworkProcess;
}
static bool applicationBundleIsEqualTo(const String& bundleIdentifierString)
{
return applicationBundleIdentifier() == bundleIdentifierString;
}
#if PLATFORM(MAC)
bool MacApplication::isSafari()
{
static bool isSafari = applicationBundleIsEqualTo("com.apple.Safari"_s) || applicationBundleIsEqualTo("com.apple.SafariTechnologyPreview"_s);
return isSafari;
}
bool MacApplication::isAppleMail()
{
static bool isAppleMail = applicationBundleIsEqualTo("com.apple.mail"_s);
return isAppleMail;
}
bool MacApplication::isIBooks()
{
static bool isIBooks = applicationBundleIsEqualTo("com.apple.iBooksX"_s);
return isIBooks;
}
bool MacApplication::isITunes()
{
static bool isITunes = applicationBundleIsEqualTo("com.apple.iTunes"_s);
return isITunes;
}
bool MacApplication::isMicrosoftMessenger()
{
static bool isMicrosoftMessenger = applicationBundleIsEqualTo("com.microsoft.Messenger"_s);
return isMicrosoftMessenger;
}
bool MacApplication::isAdobeInstaller()
{
static bool isAdobeInstaller = applicationBundleIsEqualTo("com.adobe.Installers.Setup"_s);
return isAdobeInstaller;
}
bool MacApplication::isAOLInstantMessenger()
{
static bool isAOLInstantMessenger = applicationBundleIsEqualTo("com.aol.aim.desktop"_s);
return isAOLInstantMessenger;
}
bool MacApplication::isMicrosoftMyDay()
{
static bool isMicrosoftMyDay = applicationBundleIsEqualTo("com.microsoft.myday"_s);
return isMicrosoftMyDay;
}
bool MacApplication::isMicrosoftOutlook()
{
static bool isMicrosoftOutlook = applicationBundleIsEqualTo("com.microsoft.Outlook"_s);
return isMicrosoftOutlook;
}
bool MacApplication::isQuickenEssentials()
{
static bool isQuickenEssentials = applicationBundleIsEqualTo("com.intuit.QuickenEssentials"_s);
return isQuickenEssentials;
}
bool MacApplication::isAperture()
{
static bool isAperture = applicationBundleIsEqualTo("com.apple.Aperture"_s);
return isAperture;
}
bool MacApplication::isVersions()
{
static bool isVersions = applicationBundleIsEqualTo("com.blackpixel.versions"_s);
return isVersions;
}
bool MacApplication::isHRBlock()
{
static bool isHRBlock = applicationBundleIsEqualTo("com.hrblock.tax.2010"_s);
return isHRBlock;
}
bool MacApplication::isIAdProducer()
{
static bool isIAdProducer = applicationBundleIsEqualTo("com.apple.iAdProducer"_s);
return isIAdProducer;
}
bool MacApplication::isSolidStateNetworksDownloader()
{
static bool isSolidStateNetworksDownloader = applicationBundleIsEqualTo("com.solidstatenetworks.awkhost"_s);
return isSolidStateNetworksDownloader;
}
bool MacApplication::isEpsonSoftwareUpdater()
{
static bool isEpsonSoftwareUpdater = applicationBundleIsEqualTo("com.epson.EPSON_Software_Updater"_s);
return isEpsonSoftwareUpdater;
}
#endif // PLATFORM(MAC)
#if PLATFORM(IOS_FAMILY)
static bool applicationBundleStartsWith(const String& bundleIdentifierPrefix)
{
return applicationBundleIdentifier().startsWith(bundleIdentifierPrefix);
}
bool IOSApplication::isMobileMail()
{
static bool isMobileMail = applicationBundleIsEqualTo("com.apple.mobilemail"_s);
return isMobileMail;
}
bool IOSApplication::isMailCompositionService()
{
static bool isMailCompositionService = applicationBundleIsEqualTo("com.apple.MailCompositionService"_s);
return isMailCompositionService;
}
bool IOSApplication::isMobileSafari()
{
static bool isMobileSafari = applicationBundleIsEqualTo("com.apple.mobilesafari"_s);
return isMobileSafari;
}
bool IOSApplication::isSafariViewService()
{
static bool isSafariViewService = applicationBundleIsEqualTo("com.apple.SafariViewService"_s);
return isSafariViewService;
}
bool IOSApplication::isIMDb()
{
static bool isIMDb = applicationBundleIsEqualTo("com.imdb.imdb"_s);
return isIMDb;
}
bool IOSApplication::isWebBookmarksD()
{
static bool isWebBookmarksD = applicationBundleIsEqualTo("com.apple.webbookmarksd"_s);
return isWebBookmarksD;
}
bool IOSApplication::isDumpRenderTree()
{
// We use a prefix match instead of strict equality since multiple instances of DumpRenderTree
// may be launched, where the bundle identifier of each instance has a unique suffix.
static bool isDumpRenderTree = applicationBundleIsEqualTo("org.webkit.DumpRenderTree"_s); // e.g. org.webkit.DumpRenderTree0
return isDumpRenderTree;
}
bool IOSApplication::isMobileStore()
{
static bool isMobileStore = applicationBundleIsEqualTo("com.apple.MobileStore"_s);
return isMobileStore;
}
bool IOSApplication::isSpringBoard()
{
static bool isSpringBoard = applicationBundleIsEqualTo("com.apple.springboard"_s);
return isSpringBoard;
}
// FIXME: this needs to be changed when the WebProcess is changed to an XPC service.
bool IOSApplication::isWebProcess()
{
return isInWebProcess();
}
bool IOSApplication::isIBooks()
{
static bool isIBooks = applicationBundleIsEqualTo("com.apple.iBooks"_s);
return isIBooks;
}
bool IOSApplication::isIBooksStorytime()
{
static bool isIBooksStorytime = applicationBundleIsEqualTo("com.apple.TVBooks"_s);
return isIBooksStorytime;
}
bool IOSApplication::isTheSecretSocietyHiddenMystery()
{
static bool isTheSecretSocietyHiddenMystery = applicationBundleIsEqualTo("com.g5e.secretsociety"_s);
return isTheSecretSocietyHiddenMystery;
}
bool IOSApplication::isCardiogram()
{
static bool isCardiogram = applicationBundleIsEqualTo("com.cardiogram.ios.heart"_s);
return isCardiogram;
}
bool IOSApplication::isNike()
{
static bool isNike = applicationBundleIsEqualTo("com.nike.omega"_s);
return isNike;
}
bool IOSApplication::isMoviStarPlus()
{
static bool isMoviStarPlus = applicationBundleIsEqualTo("com.prisatv.yomvi"_s);
return isMoviStarPlus;
}
bool IOSApplication::isFirefox()
{
static bool isFirefox = applicationBundleIsEqualTo("org.mozilla.ios.Firefox"_s);
return isFirefox;
}
bool IOSApplication::isAppleApplication()
{
static bool isAppleApplication = applicationBundleStartsWith("com.apple."_s);
return isAppleApplication;
}
bool IOSApplication::isEvernote()
{
static bool isEvernote = applicationBundleIsEqualTo("com.evernote.iPhone.Evernote"_s);
return isEvernote;
}
bool IOSApplication::isEventbrite()
{
static bool isEventbrite = applicationBundleIsEqualTo("com.eventbrite.attendee"_s);
return isEventbrite;
}
bool IOSApplication::isDataActivation()
{
static bool isDataActivation = applicationBundleIsEqualTo("com.apple.DataActivation"_s);
return isDataActivation;
}
#endif
} // namespace WebCore
#endif // PLATFORM(COCOA)