blob: 760e8fda5f1e75177cefef751586eab4940433c8 [file] [log] [blame]
/*
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#if ENABLE(WEB_AUTHN)
#include "BufferSource.h"
#include "PublicKeyCredentialDescriptor.h"
#include "PublicKeyCredentialType.h"
#include <wtf/CrossThreadCopier.h>
#include <wtf/Forward.h>
namespace WebCore {
struct PublicKeyCredentialCreationOptions {
struct Entity {
String name;
String icon;
};
struct RpEntity : public Entity {
mutable String id;
};
struct UserEntity : public Entity {
BufferSource id; // id becomes idVector once it is passed to UIProcess.
Vector<uint8_t> idVector;
String displayName;
};
struct Parameters {
PublicKeyCredentialType type;
int64_t alg;
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<Parameters> decode(Decoder&);
};
RpEntity rp;
UserEntity user;
BufferSource challenge;
Vector<Parameters> pubKeyCredParams;
std::optional<unsigned long> timeout;
Vector<PublicKeyCredentialDescriptor> excludeCredentials;
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<PublicKeyCredentialCreationOptions> decode(Decoder&);
};
template<class Encoder>
void PublicKeyCredentialCreationOptions::Parameters::encode(Encoder& encoder) const
{
encoder << type << alg;
}
template<class Decoder>
std::optional<PublicKeyCredentialCreationOptions::Parameters> PublicKeyCredentialCreationOptions::Parameters::decode(Decoder& decoder)
{
PublicKeyCredentialCreationOptions::Parameters result;
if (!decoder.decodeEnum(result.type))
return std::nullopt;
if (!decoder.decode(result.alg))
return std::nullopt;
return result;
}
// Not every member is encoded.
template<class Encoder>
void PublicKeyCredentialCreationOptions::encode(Encoder& encoder) const
{
encoder << rp.id << rp.name << rp.icon;
Vector<uint8_t> idVector;
idVector.append(user.id.data(), user.id.length());
encoder << idVector << user.displayName << user.name << user.icon << pubKeyCredParams << excludeCredentials;
}
template<class Decoder>
std::optional<PublicKeyCredentialCreationOptions> PublicKeyCredentialCreationOptions::decode(Decoder& decoder)
{
PublicKeyCredentialCreationOptions result;
if (!decoder.decode(result.rp.id))
return std::nullopt;
if (!decoder.decode(result.rp.name))
return std::nullopt;
if (!decoder.decode(result.rp.icon))
return std::nullopt;
if (!decoder.decode(result.user.idVector))
return std::nullopt;
if (!decoder.decode(result.user.displayName))
return std::nullopt;
if (!decoder.decode(result.user.name))
return std::nullopt;
if (!decoder.decode(result.user.icon))
return std::nullopt;
if (!decoder.decode(result.pubKeyCredParams))
return std::nullopt;
if (!decoder.decode(result.excludeCredentials))
return std::nullopt;
return result;
}
} // namespace WebCore
namespace WTF {
// Not every member is copied.
template<> struct CrossThreadCopierBase<false, false, WebCore::PublicKeyCredentialCreationOptions> {
typedef WebCore::PublicKeyCredentialCreationOptions Type;
static Type copy(const Type& source)
{
Type result;
result.rp.name = source.rp.name.isolatedCopy();
result.rp.icon = source.rp.icon.isolatedCopy();
result.rp.id = source.rp.id.isolatedCopy();
result.user.name = source.user.name.isolatedCopy();
result.user.icon = source.user.icon.isolatedCopy();
result.user.displayName = source.user.displayName.isolatedCopy();
result.user.idVector = source.user.idVector;
return result;
}
};
} // namespace WTF
#endif // ENABLE(WEB_AUTHN)