blob: ae1aaed26a1c669fe7ee07a9664c17ba5f8b176b [file] [log] [blame]
darinb9481ed2006-03-20 02:57:59 +00001/*
darinb9481ed2006-03-20 02:57:59 +00002 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org)
bfulgham@apple.comaaced4c2016-11-30 20:20:32 +00005 * Copyright (C) 2004-2006, 2010, 2012-2016 Apple Inc. All rights reserved.
darinb9481ed2006-03-20 02:57:59 +00006 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to
ddkilzerc8eccec2007-09-26 02:29:57 +000020 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
darinb9481ed2006-03-20 02:57:59 +000022 *
23 */
24
25#include "config.h"
26#include "HTMLKeygenElement.h"
darin61420652006-04-13 06:32:52 +000027
weinig@apple.comc3608932010-05-19 17:48:06 +000028#include "Attribute.h"
commit-queue@webkit.orgc7233672017-09-12 14:53:18 +000029#include "DOMFormData.h"
darinb9481ed2006-03-20 02:57:59 +000030#include "Document.h"
bfulgham@apple.comaaced4c2016-11-30 20:20:32 +000031#include "ElementChildIterator.h"
eseidele34973b2006-05-15 21:16:29 +000032#include "HTMLNames.h"
morrita@google.com9a756812011-02-07 01:40:17 +000033#include "HTMLSelectElement.h"
darin61420652006-04-13 06:32:52 +000034#include "HTMLOptionElement.h"
darinb53ebdc2006-07-09 15:10:21 +000035#include "SSLKeyGenerator.h"
tkent@chromium.org553b1722011-04-08 06:03:31 +000036#include "ShadowRoot.h"
darin61420652006-04-13 06:32:52 +000037#include "Text.h"
fpizlo@apple.com197cd322018-03-17 06:11:00 +000038#include <wtf/IsoMallocInlines.h>
akling@apple.comee1218c2016-01-09 13:13:41 +000039#include <wtf/NeverDestroyed.h>
bolsinga@apple.com97e42c42008-11-15 04:47:20 +000040#include <wtf/StdLibExtras.h>
darinb9481ed2006-03-20 02:57:59 +000041
darinb9481ed2006-03-20 02:57:59 +000042namespace WebCore {
43
fpizlo@apple.com197cd322018-03-17 06:11:00 +000044WTF_MAKE_ISO_ALLOCATED_IMPL(HTMLKeygenElement);
45
darinb9481ed2006-03-20 02:57:59 +000046using namespace HTMLNames;
47
andersca@apple.com16d2dd42014-01-16 23:08:24 +000048class KeygenSelectElement final : public HTMLSelectElement {
fpizlo@apple.com197cd322018-03-17 06:11:00 +000049 WTF_MAKE_ISO_ALLOCATED_INLINE(KeygenSelectElement);
morrita@google.com9a756812011-02-07 01:40:17 +000050public:
commit-queue@webkit.org59fb48b2015-05-08 02:18:32 +000051 static Ref<KeygenSelectElement> create(Document& document)
morrita@google.com9a756812011-02-07 01:40:17 +000052 {
commit-queue@webkit.org59fb48b2015-05-08 02:18:32 +000053 return adoptRef(*new KeygenSelectElement(document));
morrita@google.com9a756812011-02-07 01:40:17 +000054 }
55
morrita@google.com9a756812011-02-07 01:40:17 +000056protected:
weinig@apple.com6becaaf2013-09-14 21:33:13 +000057 KeygenSelectElement(Document& document)
weinig@apple.com49178832013-09-15 00:39:29 +000058 : HTMLSelectElement(selectTag, document, 0)
morrita@google.com9a756812011-02-07 01:40:17 +000059 {
darin@apple.com0ce67df2019-06-17 01:48:13 +000060 static NeverDestroyed<AtomString> pseudoId("-webkit-keygen-select", AtomString::ConstructFromLiteral);
shinyak@chromium.org9e7ad9f2012-11-12 06:35:20 +000061 setPseudo(pseudoId);
morrita@google.com9a756812011-02-07 01:40:17 +000062 }
dominicc@chromium.orge27f5b32011-06-03 10:35:54 +000063
64private:
darin@apple.com11ff47c2016-03-04 16:47:55 +000065 Ref<Element> cloneElementWithoutAttributesAndChildren(Document& targetDocument) override
dominicc@chromium.orge27f5b32011-06-03 10:35:54 +000066 {
rniwa@webkit.org199b9bf2014-12-16 19:08:54 +000067 return create(targetDocument);
dominicc@chromium.orge27f5b32011-06-03 10:35:54 +000068 }
morrita@google.com9a756812011-02-07 01:40:17 +000069};
70
weinig@apple.com6becaaf2013-09-14 21:33:13 +000071inline HTMLKeygenElement::HTMLKeygenElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
weinig@apple.com49178832013-09-15 00:39:29 +000072 : HTMLFormControlElementWithState(tagName, document, form)
darinb9481ed2006-03-20 02:57:59 +000073{
jchaffraix@webkit.org74dae402008-12-01 23:07:04 +000074 ASSERT(hasTagName(keygenTag));
darin@apple.com877ce5b2010-05-28 15:38:58 +000075
morrita@google.com9a756812011-02-07 01:40:17 +000076 // Create a select element with one option element for each key size.
weinig@apple.com3b7e4b12008-10-04 22:52:19 +000077 Vector<String> keys;
78 getSupportedKeySizes(keys);
tkent@chromium.org553b1722011-04-08 06:03:31 +000079
cdumez@apple.comf45d2b52016-05-11 19:02:09 +000080 auto select = KeygenSelectElement::create(document);
commit-queue@webkit.orgacb8e1d2015-10-06 13:31:14 +000081 for (auto& key : keys) {
cdumez@apple.comf45d2b52016-05-11 19:02:09 +000082 auto option = HTMLOptionElement::create(document);
darin@apple.com4a588ff2016-11-11 20:16:03 +000083 select->appendChild(option);
84 option->appendChild(Text::create(document, key));
darinb9481ed2006-03-20 02:57:59 +000085 }
tkent@chromium.org553b1722011-04-08 06:03:31 +000086
darin@apple.com4a588ff2016-11-11 20:16:03 +000087 ensureUserAgentShadowRoot().appendChild(select);
darinb9481ed2006-03-20 02:57:59 +000088}
89
weinig@apple.com02f433a2015-01-06 22:32:48 +000090Ref<HTMLKeygenElement> HTMLKeygenElement::create(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
darin@apple.com877ce5b2010-05-28 15:38:58 +000091{
weinig@apple.com02f433a2015-01-06 22:32:48 +000092 return adoptRef(*new HTMLKeygenElement(tagName, document, form));
darin@apple.com877ce5b2010-05-28 15:38:58 +000093}
94
darin@apple.com0ce67df2019-06-17 01:48:13 +000095void HTMLKeygenElement::parseAttribute(const QualifiedName& name, const AtomString& value)
morrita@google.com9a756812011-02-07 01:40:17 +000096{
97 // Reflect disabled attribute on the shadow select element
akling@apple.com43e9d042012-11-18 16:55:06 +000098 if (name == disabledAttr)
99 shadowSelect()->setAttribute(name, value);
morrita@google.com9a756812011-02-07 01:40:17 +0000100
akling@apple.com43e9d042012-11-18 16:55:06 +0000101 HTMLFormControlElement::parseAttribute(name, value);
morrita@google.com9a756812011-02-07 01:40:17 +0000102}
103
cdumez@apple.com201affa2016-03-09 18:45:18 +0000104bool HTMLKeygenElement::isKeytypeRSA() const
105{
rniwa@webkit.orge999a052016-07-16 15:21:55 +0000106 const auto& keyType = attributeWithoutSynchronization(keytypeAttr);
cdumez@apple.com201affa2016-03-09 18:45:18 +0000107 return keyType.isNull() || equalLettersIgnoringASCIICase(keyType, "rsa");
108}
109
darin@apple.com0ce67df2019-06-17 01:48:13 +0000110void HTMLKeygenElement::setKeytype(const AtomString& value)
cdumez@apple.com201affa2016-03-09 18:45:18 +0000111{
112 setAttributeWithoutSynchronization(keytypeAttr, value);
113}
114
115String HTMLKeygenElement::keytype() const
116{
utatane.tea@gmail.com84077632018-06-23 08:39:34 +0000117 return isKeytypeRSA() ? "rsa"_s : emptyString();
cdumez@apple.com201affa2016-03-09 18:45:18 +0000118}
119
commit-queue@webkit.orgc7233672017-09-12 14:53:18 +0000120bool HTMLKeygenElement::appendFormData(DOMFormData& formData, bool)
morrita@google.com9a756812011-02-07 01:40:17 +0000121{
122 // Only RSA is supported at this time.
cdumez@apple.com201affa2016-03-09 18:45:18 +0000123 if (!isKeytypeRSA())
morrita@google.com9a756812011-02-07 01:40:17 +0000124 return false;
jiewen_tan@apple.comcb111092018-04-25 22:10:01 +0000125 auto value = document().signedPublicKeyAndChallengeString(shadowSelect()->selectedIndex(), attributeWithoutSynchronization(challengeAttr), document().baseURL());
morrita@google.com9a756812011-02-07 01:40:17 +0000126 if (value.isNull())
127 return false;
commit-queue@webkit.orgc7233672017-09-12 14:53:18 +0000128 formData.append(name(), value);
morrita@google.com9a756812011-02-07 01:40:17 +0000129 return true;
130}
131
darin@apple.com0ce67df2019-06-17 01:48:13 +0000132const AtomString& HTMLKeygenElement::formControlType() const
darinb9481ed2006-03-20 02:57:59 +0000133{
darin@apple.com0ce67df2019-06-17 01:48:13 +0000134 static NeverDestroyed<const AtomString> keygen("keygen", AtomString::ConstructFromLiteral);
darin4a244792006-05-05 15:22:33 +0000135 return keygen;
darinb9481ed2006-03-20 02:57:59 +0000136}
137
rniwa@webkit.orgdca28622019-08-20 19:59:00 +0000138int HTMLKeygenElement::defaultTabIndex() const
139{
140 return 0;
141}
142
morrita@google.com9a756812011-02-07 01:40:17 +0000143void HTMLKeygenElement::reset()
darinb9481ed2006-03-20 02:57:59 +0000144{
tkent@chromium.org553b1722011-04-08 06:03:31 +0000145 static_cast<HTMLFormControlElement*>(shadowSelect())->reset();
darinb9481ed2006-03-20 02:57:59 +0000146}
147
tkent@chromium.org32545b42012-07-12 04:08:40 +0000148bool HTMLKeygenElement::shouldSaveAndRestoreFormControlState() const
149{
150 return false;
151}
152
tkent@chromium.org553b1722011-04-08 06:03:31 +0000153HTMLSelectElement* HTMLKeygenElement::shadowSelect() const
darinb9481ed2006-03-20 02:57:59 +0000154{
jiewen_tan@apple.com147b9342017-10-19 01:01:21 +0000155 auto root = userAgentShadowRoot();
bfulgham@apple.comaaced4c2016-11-30 20:20:32 +0000156 if (!root)
157 return nullptr;
158
159 return childrenOfType<HTMLSelectElement>(*root).first();
darinb9481ed2006-03-20 02:57:59 +0000160}
161
162} // namespace