darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 1 | /* |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 2 | * 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.com | aaced4c | 2016-11-30 20:20:32 +0000 | [diff] [blame] | 5 | * Copyright (C) 2004-2006, 2010, 2012-2016 Apple Inc. All rights reserved. |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 6 | * (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 |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 20 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 | * Boston, MA 02110-1301, USA. |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 22 | * |
| 23 | */ |
| 24 | |
| 25 | #include "config.h" |
| 26 | #include "HTMLKeygenElement.h" |
darin | 6142065 | 2006-04-13 06:32:52 +0000 | [diff] [blame] | 27 | |
weinig@apple.com | c360893 | 2010-05-19 17:48:06 +0000 | [diff] [blame] | 28 | #include "Attribute.h" |
commit-queue@webkit.org | c723367 | 2017-09-12 14:53:18 +0000 | [diff] [blame] | 29 | #include "DOMFormData.h" |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 30 | #include "Document.h" |
bfulgham@apple.com | aaced4c | 2016-11-30 20:20:32 +0000 | [diff] [blame] | 31 | #include "ElementChildIterator.h" |
eseidel | e34973b | 2006-05-15 21:16:29 +0000 | [diff] [blame] | 32 | #include "HTMLNames.h" |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 33 | #include "HTMLSelectElement.h" |
darin | 6142065 | 2006-04-13 06:32:52 +0000 | [diff] [blame] | 34 | #include "HTMLOptionElement.h" |
darin | b53ebdc | 2006-07-09 15:10:21 +0000 | [diff] [blame] | 35 | #include "SSLKeyGenerator.h" |
tkent@chromium.org | 553b172 | 2011-04-08 06:03:31 +0000 | [diff] [blame] | 36 | #include "ShadowRoot.h" |
darin | 6142065 | 2006-04-13 06:32:52 +0000 | [diff] [blame] | 37 | #include "Text.h" |
fpizlo@apple.com | 197cd32 | 2018-03-17 06:11:00 +0000 | [diff] [blame] | 38 | #include <wtf/IsoMallocInlines.h> |
akling@apple.com | ee1218c | 2016-01-09 13:13:41 +0000 | [diff] [blame] | 39 | #include <wtf/NeverDestroyed.h> |
bolsinga@apple.com | 97e42c4 | 2008-11-15 04:47:20 +0000 | [diff] [blame] | 40 | #include <wtf/StdLibExtras.h> |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 41 | |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 42 | namespace WebCore { |
| 43 | |
fpizlo@apple.com | 197cd32 | 2018-03-17 06:11:00 +0000 | [diff] [blame] | 44 | WTF_MAKE_ISO_ALLOCATED_IMPL(HTMLKeygenElement); |
| 45 | |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 46 | using namespace HTMLNames; |
| 47 | |
andersca@apple.com | 16d2dd4 | 2014-01-16 23:08:24 +0000 | [diff] [blame] | 48 | class KeygenSelectElement final : public HTMLSelectElement { |
fpizlo@apple.com | 197cd32 | 2018-03-17 06:11:00 +0000 | [diff] [blame] | 49 | WTF_MAKE_ISO_ALLOCATED_INLINE(KeygenSelectElement); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 50 | public: |
commit-queue@webkit.org | 59fb48b | 2015-05-08 02:18:32 +0000 | [diff] [blame] | 51 | static Ref<KeygenSelectElement> create(Document& document) |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 52 | { |
commit-queue@webkit.org | 59fb48b | 2015-05-08 02:18:32 +0000 | [diff] [blame] | 53 | return adoptRef(*new KeygenSelectElement(document)); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 54 | } |
| 55 | |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 56 | protected: |
weinig@apple.com | 6becaaf | 2013-09-14 21:33:13 +0000 | [diff] [blame] | 57 | KeygenSelectElement(Document& document) |
weinig@apple.com | 4917883 | 2013-09-15 00:39:29 +0000 | [diff] [blame] | 58 | : HTMLSelectElement(selectTag, document, 0) |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 59 | { |
darin@apple.com | 0ce67df | 2019-06-17 01:48:13 +0000 | [diff] [blame] | 60 | static NeverDestroyed<AtomString> pseudoId("-webkit-keygen-select", AtomString::ConstructFromLiteral); |
shinyak@chromium.org | 9e7ad9f | 2012-11-12 06:35:20 +0000 | [diff] [blame] | 61 | setPseudo(pseudoId); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 62 | } |
dominicc@chromium.org | e27f5b3 | 2011-06-03 10:35:54 +0000 | [diff] [blame] | 63 | |
| 64 | private: |
darin@apple.com | 11ff47c | 2016-03-04 16:47:55 +0000 | [diff] [blame] | 65 | Ref<Element> cloneElementWithoutAttributesAndChildren(Document& targetDocument) override |
dominicc@chromium.org | e27f5b3 | 2011-06-03 10:35:54 +0000 | [diff] [blame] | 66 | { |
rniwa@webkit.org | 199b9bf | 2014-12-16 19:08:54 +0000 | [diff] [blame] | 67 | return create(targetDocument); |
dominicc@chromium.org | e27f5b3 | 2011-06-03 10:35:54 +0000 | [diff] [blame] | 68 | } |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 69 | }; |
| 70 | |
weinig@apple.com | 6becaaf | 2013-09-14 21:33:13 +0000 | [diff] [blame] | 71 | inline HTMLKeygenElement::HTMLKeygenElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form) |
weinig@apple.com | 4917883 | 2013-09-15 00:39:29 +0000 | [diff] [blame] | 72 | : HTMLFormControlElementWithState(tagName, document, form) |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 73 | { |
jchaffraix@webkit.org | 74dae40 | 2008-12-01 23:07:04 +0000 | [diff] [blame] | 74 | ASSERT(hasTagName(keygenTag)); |
darin@apple.com | 877ce5b | 2010-05-28 15:38:58 +0000 | [diff] [blame] | 75 | |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 76 | // Create a select element with one option element for each key size. |
weinig@apple.com | 3b7e4b1 | 2008-10-04 22:52:19 +0000 | [diff] [blame] | 77 | Vector<String> keys; |
| 78 | getSupportedKeySizes(keys); |
tkent@chromium.org | 553b172 | 2011-04-08 06:03:31 +0000 | [diff] [blame] | 79 | |
cdumez@apple.com | f45d2b5 | 2016-05-11 19:02:09 +0000 | [diff] [blame] | 80 | auto select = KeygenSelectElement::create(document); |
commit-queue@webkit.org | acb8e1d | 2015-10-06 13:31:14 +0000 | [diff] [blame] | 81 | for (auto& key : keys) { |
cdumez@apple.com | f45d2b5 | 2016-05-11 19:02:09 +0000 | [diff] [blame] | 82 | auto option = HTMLOptionElement::create(document); |
darin@apple.com | 4a588ff | 2016-11-11 20:16:03 +0000 | [diff] [blame] | 83 | select->appendChild(option); |
| 84 | option->appendChild(Text::create(document, key)); |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 85 | } |
tkent@chromium.org | 553b172 | 2011-04-08 06:03:31 +0000 | [diff] [blame] | 86 | |
darin@apple.com | 4a588ff | 2016-11-11 20:16:03 +0000 | [diff] [blame] | 87 | ensureUserAgentShadowRoot().appendChild(select); |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 88 | } |
| 89 | |
weinig@apple.com | 02f433a | 2015-01-06 22:32:48 +0000 | [diff] [blame] | 90 | Ref<HTMLKeygenElement> HTMLKeygenElement::create(const QualifiedName& tagName, Document& document, HTMLFormElement* form) |
darin@apple.com | 877ce5b | 2010-05-28 15:38:58 +0000 | [diff] [blame] | 91 | { |
weinig@apple.com | 02f433a | 2015-01-06 22:32:48 +0000 | [diff] [blame] | 92 | return adoptRef(*new HTMLKeygenElement(tagName, document, form)); |
darin@apple.com | 877ce5b | 2010-05-28 15:38:58 +0000 | [diff] [blame] | 93 | } |
| 94 | |
darin@apple.com | 0ce67df | 2019-06-17 01:48:13 +0000 | [diff] [blame] | 95 | void HTMLKeygenElement::parseAttribute(const QualifiedName& name, const AtomString& value) |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 96 | { |
| 97 | // Reflect disabled attribute on the shadow select element |
akling@apple.com | 43e9d04 | 2012-11-18 16:55:06 +0000 | [diff] [blame] | 98 | if (name == disabledAttr) |
| 99 | shadowSelect()->setAttribute(name, value); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 100 | |
akling@apple.com | 43e9d04 | 2012-11-18 16:55:06 +0000 | [diff] [blame] | 101 | HTMLFormControlElement::parseAttribute(name, value); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 102 | } |
| 103 | |
cdumez@apple.com | 201affa | 2016-03-09 18:45:18 +0000 | [diff] [blame] | 104 | bool HTMLKeygenElement::isKeytypeRSA() const |
| 105 | { |
rniwa@webkit.org | e999a05 | 2016-07-16 15:21:55 +0000 | [diff] [blame] | 106 | const auto& keyType = attributeWithoutSynchronization(keytypeAttr); |
cdumez@apple.com | 201affa | 2016-03-09 18:45:18 +0000 | [diff] [blame] | 107 | return keyType.isNull() || equalLettersIgnoringASCIICase(keyType, "rsa"); |
| 108 | } |
| 109 | |
darin@apple.com | 0ce67df | 2019-06-17 01:48:13 +0000 | [diff] [blame] | 110 | void HTMLKeygenElement::setKeytype(const AtomString& value) |
cdumez@apple.com | 201affa | 2016-03-09 18:45:18 +0000 | [diff] [blame] | 111 | { |
| 112 | setAttributeWithoutSynchronization(keytypeAttr, value); |
| 113 | } |
| 114 | |
| 115 | String HTMLKeygenElement::keytype() const |
| 116 | { |
utatane.tea@gmail.com | 8407763 | 2018-06-23 08:39:34 +0000 | [diff] [blame] | 117 | return isKeytypeRSA() ? "rsa"_s : emptyString(); |
cdumez@apple.com | 201affa | 2016-03-09 18:45:18 +0000 | [diff] [blame] | 118 | } |
| 119 | |
commit-queue@webkit.org | c723367 | 2017-09-12 14:53:18 +0000 | [diff] [blame] | 120 | bool HTMLKeygenElement::appendFormData(DOMFormData& formData, bool) |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 121 | { |
| 122 | // Only RSA is supported at this time. |
cdumez@apple.com | 201affa | 2016-03-09 18:45:18 +0000 | [diff] [blame] | 123 | if (!isKeytypeRSA()) |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 124 | return false; |
jiewen_tan@apple.com | cb11109 | 2018-04-25 22:10:01 +0000 | [diff] [blame] | 125 | auto value = document().signedPublicKeyAndChallengeString(shadowSelect()->selectedIndex(), attributeWithoutSynchronization(challengeAttr), document().baseURL()); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 126 | if (value.isNull()) |
| 127 | return false; |
commit-queue@webkit.org | c723367 | 2017-09-12 14:53:18 +0000 | [diff] [blame] | 128 | formData.append(name(), value); |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 129 | return true; |
| 130 | } |
| 131 | |
darin@apple.com | 0ce67df | 2019-06-17 01:48:13 +0000 | [diff] [blame] | 132 | const AtomString& HTMLKeygenElement::formControlType() const |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 133 | { |
darin@apple.com | 0ce67df | 2019-06-17 01:48:13 +0000 | [diff] [blame] | 134 | static NeverDestroyed<const AtomString> keygen("keygen", AtomString::ConstructFromLiteral); |
darin | 4a24479 | 2006-05-05 15:22:33 +0000 | [diff] [blame] | 135 | return keygen; |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 136 | } |
| 137 | |
rniwa@webkit.org | dca2862 | 2019-08-20 19:59:00 +0000 | [diff] [blame] | 138 | int HTMLKeygenElement::defaultTabIndex() const |
| 139 | { |
| 140 | return 0; |
| 141 | } |
| 142 | |
morrita@google.com | 9a75681 | 2011-02-07 01:40:17 +0000 | [diff] [blame] | 143 | void HTMLKeygenElement::reset() |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 144 | { |
tkent@chromium.org | 553b172 | 2011-04-08 06:03:31 +0000 | [diff] [blame] | 145 | static_cast<HTMLFormControlElement*>(shadowSelect())->reset(); |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 146 | } |
| 147 | |
tkent@chromium.org | 32545b4 | 2012-07-12 04:08:40 +0000 | [diff] [blame] | 148 | bool HTMLKeygenElement::shouldSaveAndRestoreFormControlState() const |
| 149 | { |
| 150 | return false; |
| 151 | } |
| 152 | |
tkent@chromium.org | 553b172 | 2011-04-08 06:03:31 +0000 | [diff] [blame] | 153 | HTMLSelectElement* HTMLKeygenElement::shadowSelect() const |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 154 | { |
jiewen_tan@apple.com | 147b934 | 2017-10-19 01:01:21 +0000 | [diff] [blame] | 155 | auto root = userAgentShadowRoot(); |
bfulgham@apple.com | aaced4c | 2016-11-30 20:20:32 +0000 | [diff] [blame] | 156 | if (!root) |
| 157 | return nullptr; |
| 158 | |
| 159 | return childrenOfType<HTMLSelectElement>(*root).first(); |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | } // namespace |