2014-11-14 11:26:24 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
* 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 "GMPLoader.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "mozilla/Attributes.h"
|
2015-12-03 02:07:59 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2014-11-14 11:26:24 +03:00
|
|
|
#include "gmp-entrypoints.h"
|
|
|
|
#include "prlink.h"
|
2015-06-10 05:42:10 +03:00
|
|
|
#include "prenv.h"
|
2015-07-17 02:09:49 +03:00
|
|
|
#include "nsAutoPtr.h"
|
2014-11-14 11:26:24 +03:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2015-07-29 13:27:07 +03:00
|
|
|
#ifdef XP_WIN
|
2014-11-14 11:39:24 +03:00
|
|
|
#include "windows.h"
|
2015-07-29 13:27:07 +03:00
|
|
|
#ifdef MOZ_SANDBOX
|
2014-11-14 11:39:24 +03:00
|
|
|
#include <intrin.h>
|
|
|
|
#include <assert.h>
|
2014-11-14 11:39:18 +03:00
|
|
|
#endif
|
2015-07-29 13:27:07 +03:00
|
|
|
#endif
|
2014-11-14 11:39:18 +03:00
|
|
|
|
2015-10-29 18:27:00 +03:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#include <assert.h>
|
2015-11-16 19:51:00 +03:00
|
|
|
#ifdef HASH_NODE_ID_WITH_DEVICE_ID
|
2015-11-23 18:08:33 +03:00
|
|
|
#include <unistd.h>
|
2015-11-16 19:51:00 +03:00
|
|
|
#include <mach/mach.h>
|
|
|
|
#include <mach/mach_vm.h>
|
|
|
|
#endif
|
2015-10-29 18:27:00 +03:00
|
|
|
#endif
|
|
|
|
|
2014-11-14 11:39:18 +03:00
|
|
|
#if defined(HASH_NODE_ID_WITH_DEVICE_ID)
|
|
|
|
// In order to provide EME plugins with a "device binding" capability,
|
|
|
|
// in the parent we generate and store some random bytes as salt for every
|
|
|
|
// (origin, urlBarOrigin) pair that uses EME. We store these bytes so
|
|
|
|
// that every time we revisit the same origin we get the same salt.
|
|
|
|
// We send this salt to the child on startup. The child collects some
|
|
|
|
// device specific data and munges that with the salt to create the
|
|
|
|
// "node id" that we expose to EME plugins. It then overwrites the device
|
|
|
|
// specific data, and activates the sandbox.
|
|
|
|
#include "rlz/lib/machine_id.h"
|
|
|
|
#include "rlz/lib/string_utils.h"
|
|
|
|
#include "sha256.h"
|
|
|
|
#endif
|
|
|
|
|
2014-11-14 11:26:24 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
|
|
|
class GMPLoaderImpl : public GMPLoader {
|
|
|
|
public:
|
|
|
|
explicit GMPLoaderImpl(SandboxStarter* aStarter)
|
|
|
|
: mSandboxStarter(aStarter)
|
2016-04-12 07:12:20 +03:00
|
|
|
, mAdapter(nullptr)
|
2014-11-14 11:26:24 +03:00
|
|
|
{}
|
|
|
|
virtual ~GMPLoaderImpl() {}
|
|
|
|
|
2016-01-18 06:40:49 +03:00
|
|
|
bool Load(const char* aUTF8LibPath,
|
|
|
|
uint32_t aUTF8LibPathLen,
|
|
|
|
char* aOriginSalt,
|
|
|
|
uint32_t aOriginSaltLen,
|
2016-04-12 07:12:20 +03:00
|
|
|
const GMPPlatformAPI* aPlatformAPI,
|
|
|
|
GMPAdapter* aAdapter) override;
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2016-01-18 06:40:49 +03:00
|
|
|
GMPErr GetAPI(const char* aAPIName,
|
|
|
|
void* aHostAPI,
|
|
|
|
void** aPluginAPI) override;
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2016-01-18 06:40:49 +03:00
|
|
|
void Shutdown() override;
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2015-05-29 19:07:06 +03:00
|
|
|
#if defined(XP_MACOSX) && defined(MOZ_GMP_SANDBOX)
|
2016-01-18 06:40:49 +03:00
|
|
|
void SetSandboxInfo(MacSandboxInfo* aSandboxInfo) override;
|
2014-11-14 11:26:24 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
SandboxStarter* mSandboxStarter;
|
2016-04-12 07:12:20 +03:00
|
|
|
UniquePtr<GMPAdapter> mAdapter;
|
2014-11-14 11:26:24 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
GMPLoader* CreateGMPLoader(SandboxStarter* aStarter) {
|
|
|
|
return static_cast<GMPLoader*>(new GMPLoaderImpl(aStarter));
|
|
|
|
}
|
|
|
|
|
2016-04-12 07:12:20 +03:00
|
|
|
class PassThroughGMPAdapter : public GMPAdapter {
|
|
|
|
public:
|
|
|
|
~PassThroughGMPAdapter() {
|
|
|
|
// Ensure we're always shutdown, even if caller forgets to call GMPShutdown().
|
|
|
|
GMPShutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetAdaptee(PRLibrary* aLib) override
|
|
|
|
{
|
|
|
|
mLib = aLib;
|
|
|
|
}
|
|
|
|
|
|
|
|
GMPErr GMPInit(const GMPPlatformAPI* aPlatformAPI) override
|
|
|
|
{
|
|
|
|
if (!mLib) {
|
|
|
|
return GMPGenericErr;
|
|
|
|
}
|
|
|
|
GMPInitFunc initFunc = reinterpret_cast<GMPInitFunc>(PR_FindFunctionSymbol(mLib, "GMPInit"));
|
|
|
|
if (!initFunc) {
|
|
|
|
return GMPNotImplementedErr;
|
|
|
|
}
|
|
|
|
return initFunc(aPlatformAPI);
|
|
|
|
}
|
|
|
|
|
|
|
|
GMPErr GMPGetAPI(const char* aAPIName, void* aHostAPI, void** aPluginAPI) override
|
|
|
|
{
|
|
|
|
if (!mLib) {
|
|
|
|
return GMPGenericErr;
|
|
|
|
}
|
|
|
|
GMPGetAPIFunc getapiFunc = reinterpret_cast<GMPGetAPIFunc>(PR_FindFunctionSymbol(mLib, "GMPGetAPI"));
|
|
|
|
if (!getapiFunc) {
|
|
|
|
return GMPNotImplementedErr;
|
|
|
|
}
|
|
|
|
return getapiFunc(aAPIName, aHostAPI, aPluginAPI);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GMPShutdown() override
|
|
|
|
{
|
|
|
|
if (mLib) {
|
|
|
|
GMPShutdownFunc shutdownFunc = reinterpret_cast<GMPShutdownFunc>(PR_FindFunctionSymbol(mLib, "GMPShutdown"));
|
|
|
|
if (shutdownFunc) {
|
|
|
|
shutdownFunc();
|
|
|
|
}
|
|
|
|
PR_UnloadLibrary(mLib);
|
|
|
|
mLib = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GMPSetNodeId(const char* aNodeId, uint32_t aLength) override
|
|
|
|
{
|
|
|
|
if (!mLib) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GMPSetNodeIdFunc setNodeIdFunc = reinterpret_cast<GMPSetNodeIdFunc>(PR_FindFunctionSymbol(mLib, "GMPSetNodeId"));
|
|
|
|
if (setNodeIdFunc) {
|
|
|
|
setNodeIdFunc(aNodeId, aLength);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
PRLibrary* mLib = nullptr;
|
|
|
|
};
|
|
|
|
|
2015-01-05 21:36:39 +03:00
|
|
|
#if defined(XP_WIN) && defined(HASH_NODE_ID_WITH_DEVICE_ID)
|
|
|
|
MOZ_NEVER_INLINE
|
|
|
|
static bool
|
|
|
|
GetStackAfterCurrentFrame(uint8_t** aOutTop, uint8_t** aOutBottom)
|
|
|
|
{
|
|
|
|
// "Top" of the free space on the stack is directly after the memory
|
|
|
|
// holding our return address.
|
|
|
|
uint8_t* top = (uint8_t*)_AddressOfReturnAddress();
|
|
|
|
|
|
|
|
// Look down the stack until we find the guard page...
|
|
|
|
MEMORY_BASIC_INFORMATION memInfo = {0};
|
|
|
|
uint8_t* bottom = top;
|
|
|
|
while (1) {
|
|
|
|
if (!VirtualQuery(bottom, &memInfo, sizeof(memInfo))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ((memInfo.Protect & PAGE_GUARD) == PAGE_GUARD) {
|
|
|
|
bottom = (uint8_t*)memInfo.BaseAddress + memInfo.RegionSize;
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (!VirtualQuery(bottom, &memInfo, sizeof(memInfo))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
assert(!(memInfo.Protect & PAGE_GUARD)); // Should have found boundary.
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
} else if (memInfo.State != MEM_COMMIT ||
|
|
|
|
(memInfo.AllocationProtect & PAGE_READWRITE) != PAGE_READWRITE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bottom = (uint8_t*)memInfo.BaseAddress - 1;
|
|
|
|
}
|
|
|
|
*aOutTop = top;
|
|
|
|
*aOutBottom = bottom;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-29 18:27:00 +03:00
|
|
|
#if defined(XP_MACOSX) && defined(HASH_NODE_ID_WITH_DEVICE_ID)
|
2015-11-16 19:51:00 +03:00
|
|
|
static mach_vm_address_t
|
|
|
|
RegionContainingAddress(mach_vm_address_t aAddress)
|
|
|
|
{
|
|
|
|
mach_port_t task;
|
|
|
|
kern_return_t kr = task_for_pid(mach_task_self(), getpid(), &task);
|
|
|
|
if (kr != KERN_SUCCESS) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mach_vm_address_t address = aAddress;
|
|
|
|
mach_vm_size_t size;
|
|
|
|
vm_region_basic_info_data_64_t info;
|
|
|
|
mach_msg_type_number_t count = VM_REGION_BASIC_INFO_COUNT_64;
|
|
|
|
mach_port_t object_name;
|
|
|
|
kr = mach_vm_region(task, &address, &size, VM_REGION_BASIC_INFO_64,
|
|
|
|
reinterpret_cast<vm_region_info_t>(&info), &count,
|
|
|
|
&object_name);
|
|
|
|
if (kr != KERN_SUCCESS || size == 0
|
|
|
|
|| address > aAddress || address + size <= aAddress) {
|
|
|
|
// mach_vm_region failed, or couldn't find region at given address.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
2015-10-29 18:27:00 +03:00
|
|
|
MOZ_NEVER_INLINE
|
|
|
|
static bool
|
|
|
|
GetStackAfterCurrentFrame(uint8_t** aOutTop, uint8_t** aOutBottom)
|
|
|
|
{
|
2015-11-16 19:51:00 +03:00
|
|
|
mach_vm_address_t stackFrame =
|
|
|
|
reinterpret_cast<mach_vm_address_t>(__builtin_frame_address(0));
|
|
|
|
*aOutTop = reinterpret_cast<uint8_t*>(stackFrame);
|
|
|
|
// Kernel code shows that stack is always a single region.
|
|
|
|
*aOutBottom = reinterpret_cast<uint8_t*>(RegionContainingAddress(stackFrame));
|
|
|
|
return *aOutBottom && (*aOutBottom < *aOutTop);
|
2015-10-29 18:27:00 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-09-27 23:29:52 +03:00
|
|
|
#ifdef HASH_NODE_ID_WITH_DEVICE_ID
|
|
|
|
static void SecureMemset(void* start, uint8_t value, size_t size)
|
|
|
|
{
|
|
|
|
// Inline instructions equivalent to RtlSecureZeroMemory().
|
|
|
|
for (size_t i = 0; i < size; ++i) {
|
|
|
|
volatile uint8_t* p = static_cast<volatile uint8_t*>(start) + i;
|
|
|
|
*p = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-11-14 11:26:24 +03:00
|
|
|
bool
|
2015-07-17 02:09:49 +03:00
|
|
|
GMPLoaderImpl::Load(const char* aUTF8LibPath,
|
|
|
|
uint32_t aUTF8LibPathLen,
|
2014-11-14 11:26:24 +03:00
|
|
|
char* aOriginSalt,
|
|
|
|
uint32_t aOriginSaltLen,
|
2016-04-12 07:12:20 +03:00
|
|
|
const GMPPlatformAPI* aPlatformAPI,
|
|
|
|
GMPAdapter* aAdapter)
|
2014-11-14 11:26:24 +03:00
|
|
|
{
|
2014-11-14 11:39:18 +03:00
|
|
|
std::string nodeId;
|
|
|
|
#ifdef HASH_NODE_ID_WITH_DEVICE_ID
|
|
|
|
if (aOriginSaltLen > 0) {
|
2015-10-29 18:25:00 +03:00
|
|
|
std::vector<uint8_t> deviceId;
|
2014-11-14 11:39:18 +03:00
|
|
|
int volumeId;
|
|
|
|
if (!rlz_lib::GetRawMachineId(&deviceId, &volumeId)) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2014-11-14 11:39:18 +03:00
|
|
|
SHA256Context ctx;
|
|
|
|
SHA256_Begin(&ctx);
|
|
|
|
SHA256_Update(&ctx, (const uint8_t*)aOriginSalt, aOriginSaltLen);
|
2015-10-29 18:25:00 +03:00
|
|
|
SHA256_Update(&ctx, deviceId.data(), deviceId.size());
|
2014-11-14 11:39:18 +03:00
|
|
|
SHA256_Update(&ctx, (const uint8_t*)&volumeId, sizeof(int));
|
|
|
|
uint8_t digest[SHA256_LENGTH] = {0};
|
|
|
|
unsigned int digestLen = 0;
|
|
|
|
SHA256_End(&ctx, digest, &digestLen, SHA256_LENGTH);
|
|
|
|
|
|
|
|
// Overwrite all data involved in calculation as it could potentially
|
|
|
|
// identify the user, so there's no chance a GMP can read it and use
|
|
|
|
// it for identity tracking.
|
2015-09-27 23:29:52 +03:00
|
|
|
SecureMemset(&ctx, 0, sizeof(ctx));
|
|
|
|
SecureMemset(aOriginSalt, 0, aOriginSaltLen);
|
|
|
|
SecureMemset(&volumeId, 0, sizeof(volumeId));
|
2015-10-29 18:25:00 +03:00
|
|
|
SecureMemset(deviceId.data(), '*', deviceId.size());
|
|
|
|
deviceId.clear();
|
2014-11-14 11:39:18 +03:00
|
|
|
|
|
|
|
if (!rlz_lib::BytesToString(digest, SHA256_LENGTH, &nodeId)) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-10 05:42:10 +03:00
|
|
|
|
|
|
|
if (!PR_GetEnv("MOZ_GMP_DISABLE_NODE_ID_CLEANUP")) {
|
|
|
|
// We've successfully bound the origin salt to node id.
|
|
|
|
// rlz_lib::GetRawMachineId and/or the system functions it
|
|
|
|
// called could have left user identifiable data on the stack,
|
|
|
|
// so carefully zero the stack down to the guard page.
|
|
|
|
uint8_t* top;
|
|
|
|
uint8_t* bottom;
|
|
|
|
if (!GetStackAfterCurrentFrame(&top, &bottom)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
assert(top >= bottom);
|
|
|
|
// Inline instructions equivalent to RtlSecureZeroMemory().
|
|
|
|
// We can't just use RtlSecureZeroMemory here directly, as in debug
|
|
|
|
// builds, RtlSecureZeroMemory() can't be inlined, and the stack
|
|
|
|
// memory it uses would get wiped by itself running, causing crashes.
|
|
|
|
for (volatile uint8_t* p = (volatile uint8_t*)bottom; p < top; p++) {
|
|
|
|
*p = 0;
|
|
|
|
}
|
2015-01-05 21:36:42 +03:00
|
|
|
}
|
2014-11-14 11:39:18 +03:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
nodeId = std::string(aOriginSalt, aOriginSalt + aOriginSaltLen);
|
|
|
|
}
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2015-10-21 10:46:57 +03:00
|
|
|
// Start the sandbox now that we've generated the device bound node id.
|
|
|
|
// This must happen after the node id is bound to the device id, as
|
|
|
|
// generating the device id requires privileges.
|
|
|
|
if (mSandboxStarter && !mSandboxStarter->Start(aUTF8LibPath)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the GMP.
|
|
|
|
PRLibSpec libSpec;
|
2015-07-29 13:27:07 +03:00
|
|
|
#ifdef XP_WIN
|
2015-07-17 02:09:49 +03:00
|
|
|
int pathLen = MultiByteToWideChar(CP_UTF8, 0, aUTF8LibPath, -1, nullptr, 0);
|
2015-01-26 13:14:39 +03:00
|
|
|
if (pathLen == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-03 02:07:59 +03:00
|
|
|
auto widePath = MakeUnique<wchar_t[]>(pathLen);
|
|
|
|
if (MultiByteToWideChar(CP_UTF8, 0, aUTF8LibPath, -1, widePath.get(), pathLen) == 0) {
|
2015-01-26 13:14:39 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-03 02:07:59 +03:00
|
|
|
libSpec.value.pathname_u = widePath.get();
|
2015-07-17 02:09:49 +03:00
|
|
|
libSpec.type = PR_LibSpec_PathnameU;
|
|
|
|
#else
|
|
|
|
libSpec.value.pathname = aUTF8LibPath;
|
2014-11-14 11:26:24 +03:00
|
|
|
libSpec.type = PR_LibSpec_Pathname;
|
2015-07-17 02:09:49 +03:00
|
|
|
#endif
|
2016-04-12 07:12:20 +03:00
|
|
|
PRLibrary* lib = PR_LoadLibraryWithFlags(libSpec, 0);
|
|
|
|
if (!lib) {
|
2014-11-14 11:26:24 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-12 07:12:20 +03:00
|
|
|
GMPInitFunc initFunc = reinterpret_cast<GMPInitFunc>(PR_FindFunctionSymbol(lib, "GMPInit"));
|
|
|
|
if ((initFunc && aAdapter) ||
|
|
|
|
(!initFunc && !aAdapter)) {
|
|
|
|
// Ensure that if we're dealing with a GMP we do *not* use an adapter
|
|
|
|
// provided from the outside world. This is important as it means we
|
|
|
|
// don't call code not covered by Adobe's plugin-container voucher
|
|
|
|
// before we pass the node Id to Adobe's GMP.
|
2014-11-14 11:26:24 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-12 07:12:20 +03:00
|
|
|
// Note: PassThroughGMPAdapter's code must remain in this file so that it's
|
|
|
|
// covered by Adobe's plugin-container voucher.
|
|
|
|
mAdapter.reset((!aAdapter) ? new PassThroughGMPAdapter() : aAdapter);
|
|
|
|
mAdapter->SetAdaptee(lib);
|
2014-11-14 11:26:24 +03:00
|
|
|
|
2016-04-12 07:12:20 +03:00
|
|
|
mAdapter->GMPInit(aPlatformAPI);
|
2014-11-14 11:26:24 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
GMPErr
|
|
|
|
GMPLoaderImpl::GetAPI(const char* aAPIName,
|
|
|
|
void* aHostAPI,
|
|
|
|
void** aPluginAPI)
|
|
|
|
{
|
2016-04-12 07:12:20 +03:00
|
|
|
return mAdapter->GMPGetAPI(aAPIName, aHostAPI, aPluginAPI);
|
2014-11-14 11:26:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GMPLoaderImpl::Shutdown()
|
|
|
|
{
|
2016-04-12 07:12:20 +03:00
|
|
|
if (mAdapter) {
|
|
|
|
mAdapter->GMPShutdown();
|
2014-11-14 11:26:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-29 19:07:06 +03:00
|
|
|
#if defined(XP_MACOSX) && defined(MOZ_GMP_SANDBOX)
|
2015-04-03 19:51:41 +03:00
|
|
|
void
|
|
|
|
GMPLoaderImpl::SetSandboxInfo(MacSandboxInfo* aSandboxInfo)
|
|
|
|
{
|
|
|
|
if (mSandboxStarter) {
|
|
|
|
mSandboxStarter->SetSandboxInfo(aSandboxInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2014-11-14 11:26:24 +03:00
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|
|
|
|
|