2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-09-24 03:10:07 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-09-24 10:44:00 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2020-08-03 21:26:27 +00:00
|
|
|
#include "gin/handle.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/asar/archive.h"
|
2019-10-02 04:33:07 +00:00
|
|
|
#include "shell/common/asar/asar_util.h"
|
2019-10-31 07:56:00 +00:00
|
|
|
#include "shell/common/gin_converters/file_path_converter.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2019-10-23 16:26:32 +00:00
|
|
|
#include "shell/common/node_util.h"
|
2020-08-03 21:26:27 +00:00
|
|
|
|
2014-09-24 03:10:07 +00:00
|
|
|
namespace {
|
|
|
|
|
2022-03-23 00:37:55 +00:00
|
|
|
class Archive : public node::ObjectWrap {
|
2014-09-24 03:10:07 +00:00
|
|
|
public:
|
2022-03-23 00:37:55 +00:00
|
|
|
static v8::Local<v8::FunctionTemplate> CreateFunctionTemplate(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
auto tpl = v8::FunctionTemplate::New(isolate, Archive::New);
|
|
|
|
tpl->SetClassName(
|
|
|
|
v8::String::NewFromUtf8(isolate, "Archive").ToLocalChecked());
|
|
|
|
tpl->InstanceTemplate()->SetInternalFieldCount(1);
|
|
|
|
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(tpl, "getFileInfo", &Archive::GetFileInfo);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(tpl, "stat", &Archive::Stat);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(tpl, "readdir", &Archive::Readdir);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(tpl, "realpath", &Archive::Realpath);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(tpl, "copyFileOut", &Archive::CopyFileOut);
|
|
|
|
NODE_SET_PROTOTYPE_METHOD(tpl, "getFdAndValidateIntegrityLater",
|
|
|
|
&Archive::GetFD);
|
|
|
|
|
|
|
|
return tpl;
|
2014-09-24 03:10:07 +00:00
|
|
|
}
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
Archive(const Archive&) = delete;
|
|
|
|
Archive& operator=(const Archive&) = delete;
|
|
|
|
|
2014-09-24 03:10:07 +00:00
|
|
|
protected:
|
2022-12-14 17:37:28 +00:00
|
|
|
explicit Archive(std::shared_ptr<asar::Archive> archive)
|
2020-08-03 21:26:27 +00:00
|
|
|
: archive_(std::move(archive)) {}
|
2016-04-25 01:17:54 +00:00
|
|
|
|
2022-03-23 00:37:55 +00:00
|
|
|
static void New(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
isolate->ThrowException(v8::Exception::Error(node::FIXED_ONE_BYTE_STRING(
|
|
|
|
isolate, "failed to convert path to V8")));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-14 17:37:28 +00:00
|
|
|
std::shared_ptr<asar::Archive> archive = asar::GetOrCreateAsarArchive(path);
|
|
|
|
if (!archive) {
|
2022-03-23 00:37:55 +00:00
|
|
|
isolate->ThrowException(v8::Exception::Error(node::FIXED_ONE_BYTE_STRING(
|
|
|
|
isolate, "failed to initialize archive")));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* archive_wrap = new Archive(std::move(archive));
|
|
|
|
archive_wrap->Wrap(args.This());
|
|
|
|
args.GetReturnValue().Set(args.This());
|
|
|
|
}
|
|
|
|
|
2014-09-24 04:02:33 +00:00
|
|
|
// Reads the offset and size of file.
|
2022-03-23 00:37:55 +00:00
|
|
|
static void GetFileInfo(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto* wrap = node::ObjectWrap::Unwrap<Archive>(args.Holder());
|
|
|
|
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-24 03:10:07 +00:00
|
|
|
asar::Archive::FileInfo info;
|
2022-03-23 00:37:55 +00:00
|
|
|
if (!wrap->archive_ || !wrap->archive_->GetFileInfo(path, &info)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
gin_helper::Dictionary dict(isolate, v8::Object::New(isolate));
|
2014-09-24 03:10:07 +00:00
|
|
|
dict.Set("size", info.size);
|
2015-03-20 12:34:58 +00:00
|
|
|
dict.Set("unpacked", info.unpacked);
|
2014-09-24 03:10:07 +00:00
|
|
|
dict.Set("offset", info.offset);
|
2021-09-09 21:49:01 +00:00
|
|
|
if (info.integrity.has_value()) {
|
|
|
|
gin_helper::Dictionary integrity(isolate, v8::Object::New(isolate));
|
|
|
|
asar::HashAlgorithm algorithm = info.integrity.value().algorithm;
|
|
|
|
switch (algorithm) {
|
|
|
|
case asar::HashAlgorithm::SHA256:
|
|
|
|
integrity.Set("algorithm", "SHA256");
|
|
|
|
break;
|
|
|
|
case asar::HashAlgorithm::NONE:
|
|
|
|
CHECK(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
integrity.Set("hash", info.integrity.value().hash);
|
|
|
|
dict.Set("integrity", integrity);
|
|
|
|
}
|
2022-03-23 00:37:55 +00:00
|
|
|
args.GetReturnValue().Set(dict.GetHandle());
|
2014-09-24 03:10:07 +00:00
|
|
|
}
|
|
|
|
|
2014-09-24 04:02:33 +00:00
|
|
|
// Returns a fake result of fs.stat(path).
|
2022-03-23 00:37:55 +00:00
|
|
|
static void Stat(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto* wrap = node::ObjectWrap::Unwrap<Archive>(args.Holder());
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-24 04:02:33 +00:00
|
|
|
asar::Archive::Stats stats;
|
2022-03-23 00:37:55 +00:00
|
|
|
if (!wrap->archive_ || !wrap->archive_->Stat(path, &stats)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
gin_helper::Dictionary dict(isolate, v8::Object::New(isolate));
|
2014-09-24 04:02:33 +00:00
|
|
|
dict.Set("size", stats.size);
|
|
|
|
dict.Set("offset", stats.offset);
|
|
|
|
dict.Set("isFile", stats.is_file);
|
|
|
|
dict.Set("isDirectory", stats.is_directory);
|
|
|
|
dict.Set("isLink", stats.is_link);
|
2022-03-23 00:37:55 +00:00
|
|
|
args.GetReturnValue().Set(dict.GetHandle());
|
2014-09-24 04:02:33 +00:00
|
|
|
}
|
|
|
|
|
2014-09-24 10:44:00 +00:00
|
|
|
// Returns all files under a directory.
|
2022-03-23 00:37:55 +00:00
|
|
|
static void Readdir(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto* wrap = node::ObjectWrap::Unwrap<Archive>(args.Holder());
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-24 10:44:00 +00:00
|
|
|
std::vector<base::FilePath> files;
|
2022-03-23 00:37:55 +00:00
|
|
|
if (!wrap->archive_ || !wrap->archive_->Readdir(path, &files)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
args.GetReturnValue().Set(gin::ConvertToV8(isolate, files));
|
2014-09-24 10:44:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 06:53:41 +00:00
|
|
|
// Returns the path of file with symbol link resolved.
|
2022-03-23 00:37:55 +00:00
|
|
|
static void Realpath(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto* wrap = node::ObjectWrap::Unwrap<Archive>(args.Holder());
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-30 06:53:41 +00:00
|
|
|
base::FilePath realpath;
|
2022-03-23 00:37:55 +00:00
|
|
|
if (!wrap->archive_ || !wrap->archive_->Realpath(path, &realpath)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
args.GetReturnValue().Set(gin::ConvertToV8(isolate, realpath));
|
2014-09-30 06:53:41 +00:00
|
|
|
}
|
|
|
|
|
2014-09-25 08:56:50 +00:00
|
|
|
// Copy the file out into a temporary file and returns the new path.
|
2022-03-23 00:37:55 +00:00
|
|
|
static void CopyFileOut(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto* wrap = node::ObjectWrap::Unwrap<Archive>(args.Holder());
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-25 08:56:50 +00:00
|
|
|
base::FilePath new_path;
|
2022-03-23 00:37:55 +00:00
|
|
|
if (!wrap->archive_ || !wrap->archive_->CopyFileOut(path, &new_path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
args.GetReturnValue().Set(gin::ConvertToV8(isolate, new_path));
|
2014-09-25 08:56:50 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 18:42:54 +00:00
|
|
|
// Return the file descriptor.
|
2022-03-23 00:37:55 +00:00
|
|
|
static void GetFD(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto* wrap = node::ObjectWrap::Unwrap<Archive>(args.Holder());
|
|
|
|
|
|
|
|
args.GetReturnValue().Set(gin::ConvertToV8(
|
|
|
|
isolate, wrap->archive_ ? wrap->archive_->GetUnsafeFD() : -1));
|
2015-05-11 03:02:17 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 17:37:28 +00:00
|
|
|
std::shared_ptr<asar::Archive> archive_;
|
2014-09-24 03:10:07 +00:00
|
|
|
};
|
|
|
|
|
2022-03-23 00:37:55 +00:00
|
|
|
static void InitAsarSupport(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
auto require = args[0];
|
2020-08-03 21:26:27 +00:00
|
|
|
|
2020-07-16 18:38:31 +00:00
|
|
|
// Evaluate asar_bundle.js.
|
|
|
|
std::vector<v8::Local<v8::String>> asar_bundle_params = {
|
2019-01-12 01:00:43 +00:00
|
|
|
node::FIXED_ONE_BYTE_STRING(isolate, "require")};
|
2020-07-16 18:38:31 +00:00
|
|
|
std::vector<v8::Local<v8::Value>> asar_bundle_args = {require};
|
|
|
|
electron::util::CompileAndCall(
|
|
|
|
isolate->GetCurrentContext(), "electron/js2c/asar_bundle",
|
|
|
|
&asar_bundle_params, &asar_bundle_args, nullptr);
|
2015-02-04 18:45:17 +00:00
|
|
|
}
|
|
|
|
|
2022-03-23 00:37:55 +00:00
|
|
|
static void SplitPath(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
auto* isolate = args.GetIsolate();
|
|
|
|
|
|
|
|
base::FilePath path;
|
|
|
|
if (!gin::ConvertFromV8(isolate, args[0], &path)) {
|
|
|
|
args.GetReturnValue().Set(v8::False(isolate));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
|
2019-10-02 04:33:07 +00:00
|
|
|
base::FilePath asar_path, file_path;
|
|
|
|
if (asar::GetAsarArchivePath(path, &asar_path, &file_path, true)) {
|
|
|
|
dict.Set("isAsar", true);
|
|
|
|
dict.Set("asarPath", asar_path);
|
|
|
|
dict.Set("filePath", file_path);
|
|
|
|
} else {
|
|
|
|
dict.Set("isAsar", false);
|
|
|
|
}
|
2022-03-23 00:37:55 +00:00
|
|
|
args.GetReturnValue().Set(dict.GetHandle());
|
2019-10-02 04:33:07 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2022-03-23 00:37:55 +00:00
|
|
|
auto* isolate = exports->GetIsolate();
|
|
|
|
|
|
|
|
auto cons = Archive::CreateFunctionTemplate(isolate)
|
|
|
|
->GetFunction(context)
|
|
|
|
.ToLocalChecked();
|
|
|
|
cons->SetName(node::FIXED_ONE_BYTE_STRING(isolate, "Archive"));
|
|
|
|
|
|
|
|
exports->Set(context, node::FIXED_ONE_BYTE_STRING(isolate, "Archive"), cons)
|
|
|
|
.Check();
|
|
|
|
NODE_SET_METHOD(exports, "splitPath", &SplitPath);
|
|
|
|
NODE_SET_METHOD(exports, "initAsarSupport", &InitAsarSupport);
|
2014-09-24 03:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2020-02-14 11:25:39 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_common_asar, Initialize)
|