Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2280)

Unified Diff: Source/modules/crypto/SubtleCrypto.cpp

Issue 222003006: [webcrypto] Don't throw any extra WebIDL exceptions from WebCrypto methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add missing expectation Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.h ('k') | Source/modules/crypto/SubtleCrypto.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/SubtleCrypto.cpp
diff --git a/Source/modules/crypto/SubtleCrypto.cpp b/Source/modules/crypto/SubtleCrypto.cpp
index eb449c37904cdb6ff408f5ad83370948445ec1c3..40ff946f4463da8973101934f311c86ab7c36cd8 100644
--- a/Source/modules/crypto/SubtleCrypto.cpp
+++ b/Source/modules/crypto/SubtleCrypto.cpp
@@ -32,7 +32,6 @@
#include "modules/crypto/SubtleCrypto.h"
#include "bindings/v8/Dictionary.h"
-#include "bindings/v8/ExceptionState.h"
#include "modules/crypto/CryptoResultImpl.h"
#include "modules/crypto/Key.h"
#include "modules/crypto/NormalizeAlgorithm.h"
@@ -40,44 +39,44 @@
#include "public/platform/WebCrypto.h"
#include "public/platform/WebCryptoAlgorithm.h"
#include "wtf/ArrayBufferView.h"
+#include "wtf/text/StringBuilder.h"
namespace WebCore {
namespace {
-bool parseAlgorithm(const Dictionary& rawAlgorithm, AlgorithmOperation operationType, blink::WebCryptoAlgorithm &algorithm, ExceptionState& exceptionState, CryptoResult* result)
+// Seems like the generated bindings should take care of these however it
+// currently doesn't. See also http://crbug.com/264520
abarth-chromium 2014/04/02 20:42:40 Can we fix the code generator instead of working a
eroman 2014/04/02 23:46:33 Absolutely. I will take a look at the generator n
+template <typename T>
+bool ensureNotNull(T* x, const char* paramName, CryptoResult* result)
{
- if (!rawAlgorithm.isObject()) {
- exceptionState.throwTypeError("Algorithm: Not an object");
+ if (!x) {
+ StringBuilder strBuilder;
abarth-chromium 2014/04/02 20:42:40 strBuilder -> builder Please use complete words i
eroman 2014/04/02 23:46:33 Done.
+ strBuilder.append("Invalid ");
+ strBuilder.append(paramName);
+ strBuilder.append(" argument");
+ result->completeWithError(blink::WebString(String(strBuilder.toString())));
abarth-chromium 2014/04/02 20:42:40 You can just use operator+ instead of string build
eroman 2014/04/02 23:46:33 Done.
return false;
}
- return parseAlgorithm(rawAlgorithm, operationType, algorithm, result);
+ return true;
}
-ScriptPromise startCryptoOperation(const Dictionary& rawAlgorithm, Key* key, AlgorithmOperation operationType, ArrayBufferView* signature, ArrayBufferView* dataBuffer, ExceptionState& exceptionState)
+ScriptPromise startCryptoOperation(const Dictionary& rawAlgorithm, Key* key, AlgorithmOperation operationType, ArrayBufferView* signature, ArrayBufferView* dataBuffer)
{
- bool requiresKey = operationType != Digest;
-
- // Seems like the generated bindings should take care of these however it
- // currently doesn't. See also http://crbugh.com/264520
- if (requiresKey && !key) {
- exceptionState.throwTypeError("Invalid key argument");
- return ScriptPromise();
- }
- if (operationType == Verify && !signature) {
- exceptionState.throwTypeError("Invalid signature argument");
- return ScriptPromise();
- }
- if (!dataBuffer) {
- exceptionState.throwTypeError("Invalid dataBuffer argument");
- return ScriptPromise();
- }
-
RefPtr<CryptoResultImpl> result = CryptoResultImpl::create();
ScriptPromise promise = result->promise();
+ bool requiresKey = operationType != Digest;
+
+ if (requiresKey && !ensureNotNull(key, "key", result.get()))
+ return promise;
+ if (operationType == Verify && !ensureNotNull(signature, "signature", result.get()))
+ return promise;
+ if (!ensureNotNull(dataBuffer, "dataBuffer", result.get()))
+ return promise;
+
blink::WebCryptoAlgorithm algorithm;
- if (!parseAlgorithm(rawAlgorithm, operationType, algorithm, exceptionState, result.get()))
+ if (!parseAlgorithm(rawAlgorithm, operationType, algorithm, result.get()))
return promise;
if (requiresKey && !key->canBeUsedForAlgorithm(algorithm, operationType, result.get()))
@@ -117,32 +116,32 @@ SubtleCrypto::SubtleCrypto()
ScriptWrappable::init(this);
}
-ScriptPromise SubtleCrypto::encrypt(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::encrypt(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data)
{
- return startCryptoOperation(rawAlgorithm, key, Encrypt, 0, data, exceptionState);
+ return startCryptoOperation(rawAlgorithm, key, Encrypt, 0, data);
}
-ScriptPromise SubtleCrypto::decrypt(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::decrypt(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data)
{
- return startCryptoOperation(rawAlgorithm, key, Decrypt, 0, data, exceptionState);
+ return startCryptoOperation(rawAlgorithm, key, Decrypt, 0, data);
}
-ScriptPromise SubtleCrypto::sign(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::sign(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* data)
{
- return startCryptoOperation(rawAlgorithm, key, Sign, 0, data, exceptionState);
+ return startCryptoOperation(rawAlgorithm, key, Sign, 0, data);
}
-ScriptPromise SubtleCrypto::verifySignature(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* signature, ArrayBufferView* data, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::verifySignature(const Dictionary& rawAlgorithm, Key* key, ArrayBufferView* signature, ArrayBufferView* data)
{
- return startCryptoOperation(rawAlgorithm, key, Verify, signature, data, exceptionState);
+ return startCryptoOperation(rawAlgorithm, key, Verify, signature, data);
}
-ScriptPromise SubtleCrypto::digest(const Dictionary& rawAlgorithm, ArrayBufferView* data, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::digest(const Dictionary& rawAlgorithm, ArrayBufferView* data)
{
- return startCryptoOperation(rawAlgorithm, 0, Digest, 0, data, exceptionState);
+ return startCryptoOperation(rawAlgorithm, 0, Digest, 0, data);
}
-ScriptPromise SubtleCrypto::generateKey(const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::generateKey(const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages)
{
RefPtr<CryptoResultImpl> result = CryptoResultImpl::create();
ScriptPromise promise = result->promise();
@@ -152,23 +151,21 @@ ScriptPromise SubtleCrypto::generateKey(const Dictionary& rawAlgorithm, bool ext
return promise;
blink::WebCryptoAlgorithm algorithm;
- if (!parseAlgorithm(rawAlgorithm, GenerateKey, algorithm, exceptionState, result.get()))
+ if (!parseAlgorithm(rawAlgorithm, GenerateKey, algorithm, result.get()))
return promise;
blink::Platform::current()->crypto()->generateKey(algorithm, extractable, keyUsages, result->result());
return promise;
}
-ScriptPromise SubtleCrypto::importKey(const String& rawFormat, ArrayBufferView* keyData, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::importKey(const String& rawFormat, ArrayBufferView* keyData, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages)
{
- if (!keyData) {
- exceptionState.throwTypeError("Invalid keyData argument");
- return ScriptPromise();
- }
-
RefPtr<CryptoResultImpl> result = CryptoResultImpl::create();
ScriptPromise promise = result->promise();
+ if (!ensureNotNull(keyData, "keyData", result.get()))
+ return promise;
+
blink::WebCryptoKeyFormat format;
if (!Key::parseFormat(rawFormat, format, result.get()))
return promise;
@@ -178,7 +175,7 @@ ScriptPromise SubtleCrypto::importKey(const String& rawFormat, ArrayBufferView*
return promise;
blink::WebCryptoAlgorithm algorithm;
- if (!parseAlgorithm(rawAlgorithm, ImportKey, algorithm, exceptionState, result.get()))
+ if (!parseAlgorithm(rawAlgorithm, ImportKey, algorithm, result.get()))
return promise;
const unsigned char* keyDataBytes = static_cast<unsigned char*>(keyData->baseAddress());
@@ -187,16 +184,14 @@ ScriptPromise SubtleCrypto::importKey(const String& rawFormat, ArrayBufferView*
return promise;
}
-ScriptPromise SubtleCrypto::exportKey(const String& rawFormat, Key* key, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::exportKey(const String& rawFormat, Key* key)
{
- if (!key) {
- exceptionState.throwTypeError("Invalid key argument");
- return ScriptPromise();
- }
-
RefPtr<CryptoResultImpl> result = CryptoResultImpl::create();
ScriptPromise promise = result->promise();
+ if (!ensureNotNull(key, "key", result.get()))
+ return promise;
+
blink::WebCryptoKeyFormat format;
if (!Key::parseFormat(rawFormat, format, result.get()))
return promise;
@@ -210,27 +205,23 @@ ScriptPromise SubtleCrypto::exportKey(const String& rawFormat, Key* key, Excepti
return promise;
}
-ScriptPromise SubtleCrypto::wrapKey(const String& rawFormat, Key* key, Key* wrappingKey, const Dictionary& rawWrapAlgorithm, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::wrapKey(const String& rawFormat, Key* key, Key* wrappingKey, const Dictionary& rawWrapAlgorithm)
{
- if (!key) {
- exceptionState.throwTypeError("Invalid key argument");
- return ScriptPromise();
- }
-
- if (!wrappingKey) {
- exceptionState.throwTypeError("Invalid wrappingKey argument");
- return ScriptPromise();
- }
-
RefPtr<CryptoResultImpl> result = CryptoResultImpl::create();
ScriptPromise promise = result->promise();
+ if (!ensureNotNull(key, "key", result.get()))
+ return promise;
+
+ if (!ensureNotNull(wrappingKey, "wrappingKey", result.get()))
+ return promise;
+
blink::WebCryptoKeyFormat format;
if (!Key::parseFormat(rawFormat, format, result.get()))
return promise;
blink::WebCryptoAlgorithm wrapAlgorithm;
- if (!parseAlgorithm(rawWrapAlgorithm, WrapKey, wrapAlgorithm, exceptionState, result.get()))
+ if (!parseAlgorithm(rawWrapAlgorithm, WrapKey, wrapAlgorithm, result.get()))
return promise;
if (!key->extractable()) {
@@ -245,21 +236,16 @@ ScriptPromise SubtleCrypto::wrapKey(const String& rawFormat, Key* key, Key* wrap
return promise;
}
-ScriptPromise SubtleCrypto::unwrapKey(const String& rawFormat, ArrayBufferView* wrappedKey, Key* unwrappingKey, const Dictionary& rawUnwrapAlgorithm, const Dictionary& rawUnwrappedKeyAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& exceptionState)
+ScriptPromise SubtleCrypto::unwrapKey(const String& rawFormat, ArrayBufferView* wrappedKey, Key* unwrappingKey, const Dictionary& rawUnwrapAlgorithm, const Dictionary& rawUnwrappedKeyAlgorithm, bool extractable, const Vector<String>& rawKeyUsages)
{
- if (!wrappedKey) {
- exceptionState.throwTypeError("Invalid wrappedKey argument");
- return ScriptPromise();
- }
-
- if (!unwrappingKey) {
- exceptionState.throwTypeError("Invalid unwrappingKey argument");
- return ScriptPromise();
- }
-
RefPtr<CryptoResultImpl> result = CryptoResultImpl::create();
ScriptPromise promise = result->promise();
+ if (!ensureNotNull(wrappedKey, "wrappedKey", result.get()))
+ return promise;
+ if (!ensureNotNull(unwrappingKey, "unwrappingKey", result.get()))
+ return promise;
+
blink::WebCryptoKeyFormat format;
if (!Key::parseFormat(rawFormat, format, result.get()))
return promise;
@@ -269,11 +255,11 @@ ScriptPromise SubtleCrypto::unwrapKey(const String& rawFormat, ArrayBufferView*
return promise;
blink::WebCryptoAlgorithm unwrapAlgorithm;
- if (!parseAlgorithm(rawUnwrapAlgorithm, UnwrapKey, unwrapAlgorithm, exceptionState, result.get()))
+ if (!parseAlgorithm(rawUnwrapAlgorithm, UnwrapKey, unwrapAlgorithm, result.get()))
return promise;
blink::WebCryptoAlgorithm unwrappedKeyAlgorithm;
- if (!parseAlgorithm(rawUnwrappedKeyAlgorithm, ImportKey, unwrappedKeyAlgorithm, exceptionState, result.get()))
+ if (!parseAlgorithm(rawUnwrappedKeyAlgorithm, ImportKey, unwrappedKeyAlgorithm, result.get()))
return promise;
if (!unwrappingKey->canBeUsedForAlgorithm(unwrapAlgorithm, UnwrapKey, result.get()))
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.h ('k') | Source/modules/crypto/SubtleCrypto.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698