mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
Remove sandbox ductwork conditional code.
This commit is contained in:
parent
aa9ae963f6
commit
c8462db202
44 changed files with 5 additions and 916 deletions
|
|
@ -8,9 +8,6 @@
|
|||
#include "GMPUtils.h"
|
||||
#include "nsIFile.h"
|
||||
#include "nsIRunnable.h"
|
||||
#if defined(XP_WIN) && defined(MOZ_SANDBOX)
|
||||
#include "WinUtils.h"
|
||||
#endif
|
||||
|
||||
#include "base/string_util.h"
|
||||
#include "base/process_util.h"
|
||||
|
|
@ -56,38 +53,7 @@ GMPProcessParent::Launch(int32_t aTimeoutMs)
|
|||
|
||||
vector<string> args;
|
||||
|
||||
#if defined(XP_WIN) && defined(MOZ_SANDBOX)
|
||||
std::wstring wGMPPath = UTF8ToWide(mGMPPath.c_str());
|
||||
|
||||
// The sandbox doesn't allow file system rules where the paths contain
|
||||
// symbolic links or junction points. Sometimes the Users folder has been
|
||||
// moved to another drive using a junction point, so allow for this specific
|
||||
// case. See bug 1236680 for details.
|
||||
if (!widget::WinUtils::ResolveJunctionPointsAndSymLinks(wGMPPath)) {
|
||||
GMP_LOG("ResolveJunctionPointsAndSymLinks failed for GMP path=%S",
|
||||
wGMPPath.c_str());
|
||||
NS_WARNING("ResolveJunctionPointsAndSymLinks failed for GMP path.");
|
||||
return false;
|
||||
}
|
||||
GMP_LOG("GMPProcessParent::Launch() resolved path to %S", wGMPPath.c_str());
|
||||
|
||||
// If the GMP path is a network path that is not mapped to a drive letter,
|
||||
// then we need to fix the path format for the sandbox rule.
|
||||
wchar_t volPath[MAX_PATH];
|
||||
if (::GetVolumePathNameW(wGMPPath.c_str(), volPath, MAX_PATH) &&
|
||||
::GetDriveTypeW(volPath) == DRIVE_REMOTE &&
|
||||
wGMPPath.compare(0, 2, L"\\\\") == 0) {
|
||||
std::wstring sandboxGMPPath(wGMPPath);
|
||||
sandboxGMPPath.insert(1, L"??\\UNC");
|
||||
mAllowedFilesRead.push_back(sandboxGMPPath + L"\\*");
|
||||
} else {
|
||||
mAllowedFilesRead.push_back(wGMPPath + L"\\*");
|
||||
}
|
||||
|
||||
args.push_back(WideToUTF8(wGMPPath));
|
||||
#else
|
||||
args.push_back(mGMPPath);
|
||||
#endif
|
||||
|
||||
args.push_back(string(voucherPath.BeginReading(), voucherPath.EndReading()));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue