1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
/*
* Copyright (C) 2013 Samsung Electronics Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "WebKitAuthenticationRequest.h"
#include "AuthenticationChallengeDisposition.h"
#include "AuthenticationDecisionListener.h"
#include "WebCredential.h"
#include "WebKitAuthenticationRequestPrivate.h"
#include "WebKitCredentialPrivate.h"
#include "WebKitSecurityOriginPrivate.h"
#include "WebProtectionSpace.h"
#include <WebCore/AuthenticationChallenge.h>
#include <WebCore/ProtectionSpace.h>
#include <glib/gi18n-lib.h>
#include <wtf/glib/WTFGType.h>
#include <wtf/text/CString.h>
using namespace WebKit;
using namespace WebCore;
/**
* WebKitAuthenticationRequest:
* @See_also: #WebKitWebView
*
* Represents an authentication request.
*
* Whenever a client attempts to load a page protected by HTTP
* authentication, credentials will need to be provided to authorize access.
* To allow the client to decide how it wishes to handle authentication,
* WebKit will fire a #WebKitWebView::authenticate signal with a
* WebKitAuthenticationRequest object to provide client side
* authentication support. Credentials are exposed through the
* #WebKitCredential object.
*
* In case the client application does not wish
* to handle this signal WebKit will provide a default handler. To handle
* authentication asynchronously, simply increase the reference count of the
* WebKitAuthenticationRequest object.
*/
enum {
AUTHENTICATED,
CANCELLED,
LAST_SIGNAL
};
struct _WebKitAuthenticationRequestPrivate {
RefPtr<AuthenticationChallengeProxy> authenticationChallenge;
bool privateBrowsingEnabled;
bool persistentCredentialStorageEnabled;
bool handledRequest;
CString host;
CString realm;
std::optional<WebCore::Credential> proposedCredential;
std::optional<WebCore::Credential> acceptedCredential;
std::optional<bool> canSaveCredentials;
};
static guint signals[LAST_SIGNAL] = { 0, };
WEBKIT_DEFINE_FINAL_TYPE(WebKitAuthenticationRequest, webkit_authentication_request, G_TYPE_OBJECT, GObject)
static inline WebKitAuthenticationScheme toWebKitAuthenticationScheme(WebCore::ProtectionSpace::AuthenticationScheme coreScheme)
{
switch (coreScheme) {
case WebCore::ProtectionSpace::AuthenticationScheme::Default:
return WEBKIT_AUTHENTICATION_SCHEME_DEFAULT;
case WebCore::ProtectionSpace::AuthenticationScheme::HTTPBasic:
return WEBKIT_AUTHENTICATION_SCHEME_HTTP_BASIC;
case WebCore::ProtectionSpace::AuthenticationScheme::HTTPDigest:
return WEBKIT_AUTHENTICATION_SCHEME_HTTP_DIGEST;
case WebCore::ProtectionSpace::AuthenticationScheme::HTMLForm:
return WEBKIT_AUTHENTICATION_SCHEME_HTML_FORM;
case WebCore::ProtectionSpace::AuthenticationScheme::NTLM:
return WEBKIT_AUTHENTICATION_SCHEME_NTLM;
case WebCore::ProtectionSpace::AuthenticationScheme::Negotiate:
return WEBKIT_AUTHENTICATION_SCHEME_NEGOTIATE;
case WebCore::ProtectionSpace::AuthenticationScheme::ClientCertificateRequested:
return WEBKIT_AUTHENTICATION_SCHEME_CLIENT_CERTIFICATE_REQUESTED;
case WebCore::ProtectionSpace::AuthenticationScheme::ServerTrustEvaluationRequested:
return WEBKIT_AUTHENTICATION_SCHEME_SERVER_TRUST_EVALUATION_REQUESTED;
case WebCore::ProtectionSpace::AuthenticationScheme::ClientCertificatePINRequested:
return WEBKIT_AUTHENTICATION_SCHEME_CLIENT_CERTIFICATE_PIN_REQUESTED;
case WebCore::ProtectionSpace::AuthenticationScheme::Unknown:
return WEBKIT_AUTHENTICATION_SCHEME_UNKNOWN;
default:
ASSERT_NOT_REACHED();
return WEBKIT_AUTHENTICATION_SCHEME_DEFAULT;
}
}
static void webkitAuthenticationRequestDispose(GObject* object)
{
WebKitAuthenticationRequest* request = WEBKIT_AUTHENTICATION_REQUEST(object);
// Make sure the request is always handled before finalizing.
webkit_authentication_request_cancel(request);
G_OBJECT_CLASS(webkit_authentication_request_parent_class)->dispose(object);
}
static void webkit_authentication_request_class_init(WebKitAuthenticationRequestClass* requestClass)
{
GObjectClass* objectClass = G_OBJECT_CLASS(requestClass);
objectClass->dispose = webkitAuthenticationRequestDispose;
/**
* WebKitAuthenticationRequest::authenticated:
* @request: the #WebKitAuthenticationRequest
* @credential: the #WebKitCredential accepted
*
* This signal is emitted when the user authentication request succeeded.
* Applications handling their own credential storage should connect to
* this signal to save the credentials.
*
* Since: 2.30
*/
signals[AUTHENTICATED] =
g_signal_new(
"authenticated",
G_TYPE_FROM_CLASS(objectClass),
G_SIGNAL_RUN_LAST,
0, 0, nullptr,
g_cclosure_marshal_generic,
G_TYPE_NONE, 1,
WEBKIT_TYPE_CREDENTIAL | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* WebKitAuthenticationRequest::cancelled:
* @request: the #WebKitAuthenticationRequest
*
* This signal is emitted when the user authentication request is
* cancelled. It allows the application to dismiss its authentication
* dialog in case of page load failure for example.
*
* Since: 2.2
*/
signals[CANCELLED] =
g_signal_new("cancelled",
G_TYPE_FROM_CLASS(objectClass),
G_SIGNAL_RUN_LAST,
0, 0, 0,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
}
WebKitAuthenticationRequest* webkitAuthenticationRequestCreate(AuthenticationChallengeProxy* authenticationChallenge, bool privateBrowsingEnabled, bool persistentCredentialStorageEnabled)
{
WebKitAuthenticationRequest* request = WEBKIT_AUTHENTICATION_REQUEST(g_object_new(WEBKIT_TYPE_AUTHENTICATION_REQUEST, NULL));
request->priv->authenticationChallenge = authenticationChallenge;
request->priv->privateBrowsingEnabled = privateBrowsingEnabled;
request->priv->persistentCredentialStorageEnabled = persistentCredentialStorageEnabled;
return request;
}
AuthenticationChallengeProxy* webkitAuthenticationRequestGetAuthenticationChallenge(WebKitAuthenticationRequest* request)
{
return request->priv->authenticationChallenge.get();
}
void webkitAuthenticationRequestDidAuthenticate(WebKitAuthenticationRequest* request)
{
auto* credential = webkitCredentialCreate(request->priv->acceptedCredential.value_or(WebCore::Credential()));
g_signal_emit(request, signals[AUTHENTICATED], 0, credential);
webkit_credential_free(credential);
}
const WebCore::Credential& webkitAuthenticationRequestGetProposedCredential(WebKitAuthenticationRequest* request)
{
if (request->priv->proposedCredential)
return request->priv->proposedCredential.value();
return request->priv->authenticationChallenge->core().proposedCredential();
}
/**
* webkit_authentication_request_can_save_credentials:
* @request: a #WebKitAuthenticationRequest
*
* Determine whether this #WebKitAuthenticationRequest should allow the storage of credentials.
*
* Determine whether the authentication method associated with this
* #WebKitAuthenticationRequest should allow the storage of credentials.
* This will return %FALSE if WebKit doesn't support credential storing,
* if private browsing is enabled, or if persistent credential storage has been
* disabled in #WebKitWebsiteDataManager, unless credentials saving has been
* explicitly enabled with webkit_authentication_request_set_can_save_credentials().
*
* Returns: %TRUE if WebKit can store credentials or %FALSE otherwise.
*
* Since: 2.2
*/
gboolean webkit_authentication_request_can_save_credentials(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), FALSE);
if (request->priv->privateBrowsingEnabled)
return FALSE;
if (request->priv->canSaveCredentials)
return request->priv->canSaveCredentials.value();
#if USE(LIBSECRET)
return request->priv->persistentCredentialStorageEnabled;
#else
return FALSE;
#endif
}
/**
* webkit_authentication_request_set_can_save_credentials:
* @request: a #WebKitAuthenticationRequest
* @enabled: value to set
*
* Set whether the authentication method associated with @request
* should allow the storage of credentials.
*
* Set whether the authentication method associated with @request
* should allow the storage of credentials.
* This should be used by applications handling their own credentials
* storage to indicate that it should be supported even when internal
* credential storage is disabled or unsupported.
* Note that storing of credentials will not be allowed on ephemeral
* sessions in any case.
*
* Since: 2.30
*/
void webkit_authentication_request_set_can_save_credentials(WebKitAuthenticationRequest* request, gboolean enabled)
{
g_return_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request));
request->priv->canSaveCredentials = enabled;
}
/**
* webkit_authentication_request_get_proposed_credential:
* @request: a #WebKitAuthenticationRequest
*
* Get the #WebKitCredential of the proposed authentication challenge.
*
* Get the #WebKitCredential of the proposed authentication challenge that was
* stored from a previous session. The client can use this directly for
* authentication or construct their own #WebKitCredential.
*
* Returns: (transfer full): A #WebKitCredential encapsulating credential details
* or %NULL if there is no stored credential.
*
* Since: 2.2
*/
WebKitCredential* webkit_authentication_request_get_proposed_credential(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), nullptr);
const auto& credential = webkitAuthenticationRequestGetProposedCredential(request);
if (credential.isEmpty())
return nullptr;
return webkitCredentialCreate(credential);
}
/**
* webkit_authentication_request_set_proposed_credential:
* @request: a #WebKitAuthenticationRequest
* @credential: a #WebKitCredential, or %NULL
*
* Set the #WebKitCredential of the proposed authentication challenge.
*
* Set the #WebKitCredential of the proposed authentication challenge that was
* stored from a previous session. This should only be used by applications handling
* their own credential storage. (When using the default WebKit credential storage,
* webkit_authentication_request_get_proposed_credential() already contains previously-stored
* credentials.)
* Passing a %NULL @credential will clear the proposed credential.
*
* Since: 2.30
*/
void webkit_authentication_request_set_proposed_credential(WebKitAuthenticationRequest* request, WebKitCredential* credential)
{
g_return_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request));
if (!credential) {
request->priv->proposedCredential = std::nullopt;
return;
}
request->priv->proposedCredential = webkitCredentialGetCredential(credential);
}
/**
* webkit_authentication_request_get_host:
* @request: a #WebKitAuthenticationRequest
*
* Get the host that this authentication challenge is applicable to.
*
* Returns: The host of @request.
*
* Since: 2.2
*/
const gchar* webkit_authentication_request_get_host(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), 0);
if (request->priv->host.isNull())
request->priv->host = request->priv->authenticationChallenge->core().protectionSpace().host().utf8();
return request->priv->host.data();
}
/**
* webkit_authentication_request_get_port:
* @request: a #WebKitAuthenticationRequest
*
* Get the port that this authentication challenge is applicable to.
*
* Returns: The port of @request.
*
* Since: 2.2
*/
guint webkit_authentication_request_get_port(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), 0);
return request->priv->authenticationChallenge->core().protectionSpace().port();
}
/**
* webkit_authentication_request_get_security_origin:
* @request: a #WebKitAuthenticationRequest
*
* Get the #WebKitSecurityOrigin that this authentication challenge is applicable to.
*
* Returns: (transfer full): a newly created #WebKitSecurityOrigin.
*
* Since: 2.30
*/
WebKitSecurityOrigin* webkit_authentication_request_get_security_origin(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), nullptr);
const auto& protectionSpace = request->priv->authenticationChallenge->core().protectionSpace();
String protocol;
switch (protectionSpace.serverType()) {
case ProtectionSpace::ServerType::HTTP:
case ProtectionSpace::ServerType::ProxyHTTP:
protocol = "http"_s;
break;
case ProtectionSpace::ServerType::HTTPS:
case ProtectionSpace::ServerType::ProxyHTTPS:
protocol = "https"_s;
break;
case ProtectionSpace::ServerType::FTP:
case ProtectionSpace::ServerType::ProxyFTP:
protocol = "ftp"_s;
break;
case ProtectionSpace::ServerType::FTPS:
protocol = "ftps"_s;
break;
case ProtectionSpace::ServerType::ProxySOCKS:
protocol = "socks"_s;
break;
}
return webkitSecurityOriginCreate(SecurityOriginData(protocol, protectionSpace.host(), protectionSpace.port()));
}
/**
* webkit_authentication_request_get_realm:
* @request: a #WebKitAuthenticationRequest
*
* Get the realm that this authentication challenge is applicable to.
*
* Returns: The realm of @request.
*
* Since: 2.2
*/
const gchar* webkit_authentication_request_get_realm(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), 0);
if (request->priv->realm.isNull())
request->priv->realm = request->priv->authenticationChallenge->core().protectionSpace().realm().utf8();
return request->priv->realm.data();
}
/**
* webkit_authentication_request_get_scheme:
* @request: a #WebKitAuthenticationRequest
*
* Get the authentication scheme of the authentication challenge.
*
* Returns: The #WebKitAuthenticationScheme of @request.
*
* Since: 2.2
*/
WebKitAuthenticationScheme webkit_authentication_request_get_scheme(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), WEBKIT_AUTHENTICATION_SCHEME_UNKNOWN);
return toWebKitAuthenticationScheme(request->priv->authenticationChallenge->core().protectionSpace().authenticationScheme());
}
/**
* webkit_authentication_request_is_for_proxy:
* @request: a #WebKitAuthenticationRequest
*
* Determine whether the authentication challenge is associated with a proxy server.
*
* Determine whether the authentication challenge is associated with a proxy server rather than an "origin" server.
*
* Returns: %TRUE if authentication is for a proxy or %FALSE otherwise.
*
* Since: 2.2
*/
gboolean webkit_authentication_request_is_for_proxy(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), FALSE);
return request->priv->authenticationChallenge->core().protectionSpace().isProxy();
}
/**
* webkit_authentication_request_is_retry:
* @request: a #WebKitAuthenticationRequest
*
* Determine whether this this is a first attempt or a retry for this authentication challenge.
*
* Returns: %TRUE if authentication attempt is a retry or %FALSE otherwise.
*
* Since: 2.2
*/
gboolean webkit_authentication_request_is_retry(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), 0);
return request->priv->authenticationChallenge->core().previousFailureCount() ? TRUE : FALSE;
}
/**
* webkit_authentication_request_authenticate:
* @request: a #WebKitAuthenticationRequest
* @credential: (transfer none) (allow-none): A #WebKitCredential, or %NULL
*
* Authenticate the #WebKitAuthenticationRequest.
*
* Authenticate the #WebKitAuthenticationRequest using the #WebKitCredential
* supplied. To continue without credentials, pass %NULL as @credential.
*
* Since: 2.2
*/
void webkit_authentication_request_authenticate(WebKitAuthenticationRequest* request, WebKitCredential* credential)
{
g_return_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request));
if (credential)
request->priv->acceptedCredential = webkitCredentialGetCredential(credential);
else
request->priv->acceptedCredential = std::nullopt;
request->priv->authenticationChallenge->listener().completeChallenge(WebKit::AuthenticationChallengeDisposition::UseCredential, request->priv->acceptedCredential.value_or(WebCore::Credential()));
request->priv->handledRequest = true;
}
/**
* webkit_authentication_request_cancel:
* @request: a #WebKitAuthenticationRequest
*
* Cancel the authentication challenge.
*
* This will also cancel the page loading and result in a
* #WebKitWebView::load-failed signal with a #WebKitNetworkError of type %WEBKIT_NETWORK_ERROR_CANCELLED being emitted.
*
* Since: 2.2
*/
void webkit_authentication_request_cancel(WebKitAuthenticationRequest* request)
{
g_return_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request));
if (request->priv->handledRequest)
return;
request->priv->authenticationChallenge->listener().completeChallenge(WebKit::AuthenticationChallengeDisposition::Cancel);
request->priv->acceptedCredential = std::nullopt;
request->priv->handledRequest = true;
g_signal_emit(request, signals[CANCELLED], 0);
}
/**
* webkit_authentication_request_get_certificate_pin_flags:
* @request: a #WebKitAuthenticationRequest
*
* Get the #GTlsPasswordFlags of the %WEBKIT_AUTHENTICATION_SCHEME_CLIENT_CERTIFICATE_PIN_REQUESTED authentication challenge.
*
* Returns: a #GTlsPasswordFlags
*
* Since: 2.34
*/
GTlsPasswordFlags webkit_authentication_request_get_certificate_pin_flags(WebKitAuthenticationRequest* request)
{
g_return_val_if_fail(WEBKIT_IS_AUTHENTICATION_REQUEST(request), G_TLS_PASSWORD_NONE);
return static_cast<GTlsPasswordFlags>(request->priv->authenticationChallenge->core().tlsPasswordFlags());
}
|