2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-05-15 10:20:00 +00:00
|
|
|
/* 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 "mozilla/dom/SubtleCrypto.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/Promise.h"
|
|
|
|
#include "mozilla/dom/SubtleCryptoBinding.h"
|
|
|
|
#include "mozilla/dom/WebCryptoTask.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-01-09 18:55:44 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(SubtleCrypto, mParent)
|
2014-05-15 10:20:00 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(SubtleCrypto)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(SubtleCrypto)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(SubtleCrypto)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-01-09 18:55:44 +00:00
|
|
|
SubtleCrypto::SubtleCrypto(nsIGlobalObject* aParent)
|
|
|
|
: mParent(aParent)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
SubtleCrypto::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
return SubtleCryptoBinding::Wrap(aCx, this, aGivenProto);
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 01:31:11 +00:00
|
|
|
#define SUBTLECRYPTO_METHOD_BODY(Operation, aRv, ...) \
|
2015-01-09 18:55:44 +00:00
|
|
|
MOZ_ASSERT(mParent); \
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<Promise> p = Promise::Create(mParent, aRv); \
|
2014-07-19 01:31:11 +00:00
|
|
|
if (aRv.Failed()) { \
|
|
|
|
return nullptr; \
|
|
|
|
} \
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<WebCryptoTask> task = WebCryptoTask::Create ## Operation ## Task(__VA_ARGS__); \
|
2014-05-15 10:20:00 +00:00
|
|
|
task->DispatchWithPromise(p); \
|
|
|
|
return p.forget();
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::Encrypt(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-06-23 21:25:13 +00:00
|
|
|
CryptoKey& key,
|
2014-07-19 01:31:11 +00:00
|
|
|
const CryptoOperationData& data,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(Encrypt, aRv, cx, algorithm, key, data)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::Decrypt(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-06-23 21:25:13 +00:00
|
|
|
CryptoKey& key,
|
2014-07-19 01:31:11 +00:00
|
|
|
const CryptoOperationData& data,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(Decrypt, aRv, cx, algorithm, key, data)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::Sign(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-06-23 21:25:13 +00:00
|
|
|
CryptoKey& key,
|
2014-07-19 01:31:11 +00:00
|
|
|
const CryptoOperationData& data,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(Sign, aRv, cx, algorithm, key, data)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::Verify(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-06-23 21:25:13 +00:00
|
|
|
CryptoKey& key,
|
2014-05-15 10:20:00 +00:00
|
|
|
const CryptoOperationData& signature,
|
2014-07-19 01:31:11 +00:00
|
|
|
const CryptoOperationData& data,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(Verify, aRv, cx, algorithm, key, signature, data)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::Digest(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-07-19 01:31:11 +00:00
|
|
|
const CryptoOperationData& data,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(Digest, aRv, cx, algorithm, data)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::ImportKey(JSContext* cx,
|
|
|
|
const nsAString& format,
|
2014-07-19 13:25:00 +00:00
|
|
|
JS::Handle<JSObject*> keyData,
|
2014-05-15 10:20:00 +00:00
|
|
|
const ObjectOrString& algorithm,
|
|
|
|
bool extractable,
|
2014-07-19 01:31:11 +00:00
|
|
|
const Sequence<nsString>& keyUsages,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2016-03-08 10:14:37 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(ImportKey, aRv, mParent, cx, format, keyData,
|
|
|
|
algorithm, extractable, keyUsages)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::ExportKey(const nsAString& format,
|
2014-07-19 01:31:11 +00:00
|
|
|
CryptoKey& key,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(ExportKey, aRv, format, key)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::GenerateKey(JSContext* cx, const ObjectOrString& algorithm,
|
2014-07-19 01:31:11 +00:00
|
|
|
bool extractable, const Sequence<nsString>& keyUsages,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2016-03-08 10:15:29 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(GenerateKey, aRv, mParent, cx, algorithm,
|
|
|
|
extractable, keyUsages)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::DeriveKey(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-06-23 21:25:13 +00:00
|
|
|
CryptoKey& baseKey,
|
2014-05-15 10:20:00 +00:00
|
|
|
const ObjectOrString& derivedKeyType,
|
2014-07-19 01:31:11 +00:00
|
|
|
bool extractable, const Sequence<nsString>& keyUsages,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2016-03-08 10:14:37 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(DeriveKey, aRv, mParent, cx, algorithm, baseKey,
|
2014-07-19 01:31:11 +00:00
|
|
|
derivedKeyType, extractable, keyUsages)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::DeriveBits(JSContext* cx,
|
|
|
|
const ObjectOrString& algorithm,
|
2014-06-23 21:25:13 +00:00
|
|
|
CryptoKey& baseKey,
|
2014-07-19 01:31:11 +00:00
|
|
|
uint32_t length,
|
|
|
|
ErrorResult& aRv)
|
2014-05-15 10:20:00 +00:00
|
|
|
{
|
2014-07-19 01:31:11 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(DeriveBits, aRv, cx, algorithm, baseKey, length)
|
2014-05-15 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 13:24:00 +00:00
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::WrapKey(JSContext* cx,
|
|
|
|
const nsAString& format,
|
|
|
|
CryptoKey& key,
|
|
|
|
CryptoKey& wrappingKey,
|
|
|
|
const ObjectOrString& wrapAlgorithm,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
SUBTLECRYPTO_METHOD_BODY(WrapKey, aRv, cx, format, key, wrappingKey, wrapAlgorithm)
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
SubtleCrypto::UnwrapKey(JSContext* cx,
|
|
|
|
const nsAString& format,
|
|
|
|
const ArrayBufferViewOrArrayBuffer& wrappedKey,
|
|
|
|
CryptoKey& unwrappingKey,
|
|
|
|
const ObjectOrString& unwrapAlgorithm,
|
|
|
|
const ObjectOrString& unwrappedKeyAlgorithm,
|
|
|
|
bool extractable,
|
|
|
|
const Sequence<nsString>& keyUsages,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
2016-03-08 10:14:37 +00:00
|
|
|
SUBTLECRYPTO_METHOD_BODY(UnwrapKey, aRv, mParent, cx, format, wrappedKey,
|
|
|
|
unwrappingKey, unwrapAlgorithm,
|
|
|
|
unwrappedKeyAlgorithm, extractable, keyUsages)
|
2014-07-19 13:24:00 +00:00
|
|
|
}
|
|
|
|
|
2014-05-15 10:20:00 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|