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

Side by Side Diff: ios/web/net/crw_cert_verification_controller.h

Issue 1322193003: WKWebView(iOS9): correctly update SSL status for current navigation item (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@reland_cert_verification
Patch Set: Minor comments update. Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_WEB_NET_CRW_CERT_VERIFICATION_CONTROLLER_H_ 5 #ifndef IOS_WEB_NET_CRW_CERT_VERIFICATION_CONTROLLER_H_
6 #define IOS_WEB_NET_CRW_CERT_VERIFICATION_CONTROLLER_H_ 6 #define IOS_WEB_NET_CRW_CERT_VERIFICATION_CONTROLLER_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 9
10 #import "base/memory/ref_counted.h" 10 #import "base/memory/ref_counted.h"
11 #include "ios/web/public/security_style.h"
11 #include "net/cert/cert_status_flags.h" 12 #include "net/cert/cert_status_flags.h"
12 13
13 namespace net { 14 namespace net {
14 class X509Certificate; 15 class X509Certificate;
15 } 16 }
16 17
17 namespace web { 18 namespace web {
18 19
19 class BrowserState; 20 class BrowserState;
20 21
21 // Accept policy for valid or invalid SSL cert. 22 // Accept policy for valid or invalid SSL cert.
22 typedef NS_ENUM(NSInteger, CertAcceptPolicy) { 23 typedef NS_ENUM(NSInteger, CertAcceptPolicy) {
23 // Cert status can't be determined due to an error. Caller should not proceed 24 // Cert status can't be determined due to an error. Caller should not proceed
24 // with the load, but show net error page instead. 25 // with the load, but show net error page instead.
25 CERT_ACCEPT_POLICY_NON_RECOVERABLE_ERROR = 0, 26 CERT_ACCEPT_POLICY_NON_RECOVERABLE_ERROR = 0,
26 // Cert is not valid. Caller may present SSL warning and ask user if they 27 // Cert is not valid. Caller may present SSL warning and ask user if they
27 // want to proceed with the load. 28 // want to proceed with the load.
28 CERT_ACCEPT_POLICY_RECOVERABLE_ERROR, 29 CERT_ACCEPT_POLICY_RECOVERABLE_ERROR,
29 // Cert is valid. Caller should proceed with the load. 30 // Cert is valid. Caller should proceed with the load.
30 CERT_ACCEPT_POLICY_ALLOW, 31 CERT_ACCEPT_POLICY_ALLOW,
31 }; 32 };
32 33
33 // Completion handler called by decidePolicyForCert:host:completionHandler:. 34 // Completion handler called by decidePolicyForCert:host:completionHandler:.
34 typedef void (^PolicyDecisionHandler)(web::CertAcceptPolicy, net::CertStatus); 35 typedef void (^PolicyDecisionHandler)(web::CertAcceptPolicy, net::CertStatus);
36 // Completion handler called by decidePolicyForCert:host:completionHandler:.
37 typedef void (^StatusQueryHandler)(web::SecurityStyle, net::CertStatus);
35 38
36 } // namespace web 39 } // namespace web
37 40
38 // Provides various cert verification API that can be used for blocking requests 41 // Provides various cert verification API that can be used for blocking requests
39 // with bad SSL cert, presenting SSL interstitials and determining SSL status 42 // with bad SSL cert, presenting SSL interstitials and determining SSL status
40 // for Navigation Items. Must be used on UI thread. 43 // for Navigation Items. Must be used on UI thread.
41 @interface CRWCertVerificationController : NSObject 44 @interface CRWCertVerificationController : NSObject
42 45
43 - (instancetype)init NS_UNAVAILABLE; 46 - (instancetype)init NS_UNAVAILABLE;
44 47
45 // Initializes CRWCertVerificationController with the given |browserState| which 48 // Initializes CRWCertVerificationController with the given |browserState| which
46 // cannot be null and must outlive CRWCertVerificationController. 49 // cannot be null and must outlive CRWCertVerificationController.
47 - (instancetype)initWithBrowserState:(web::BrowserState*)browserState 50 - (instancetype)initWithBrowserState:(web::BrowserState*)browserState
48 NS_DESIGNATED_INITIALIZER; 51 NS_DESIGNATED_INITIALIZER;
49 52
50 // TODO(eugenebut): add API for: 53 // TODO(eugenebut): add API for:
51 // - accepting bad SSL cert using CertPolicyCache 54 // - accepting bad SSL cert using CertPolicyCache
52 // - querying SSL cert status for Navigation Item
53 55
54 // Decides the policy for the given |cert| for the given |host| and calls 56 // Decides the policy for the given |cert| for the given |host| and calls
55 // |completionHandler| on completion. |completionHandler| cannot be null and 57 // |completionHandler| on completion. |host| should be in DNS form
56 // will be called synchronously or asynchronously on UI thread. 58 // (f.e. for "http://名がドメイン.com", it should be "xn--v8jxj3d1dzdz08w.com").
59 // |completionHandler| cannot be null and will be called synchronously or
60 // asynchronously on UI thread.
stuartmorgan 2015/09/22 20:30:27 the UI thread
Eugene But (OOO till 7-30) 2015/09/22 22:43:04 Done.
57 - (void)decidePolicyForCert:(const scoped_refptr<net::X509Certificate>&)cert 61 - (void)decidePolicyForCert:(const scoped_refptr<net::X509Certificate>&)cert
58 host:(NSString*)host 62 host:(NSString*)host
59 completionHandler:(web::PolicyDecisionHandler)handler; 63 completionHandler:(web::PolicyDecisionHandler)completionHandler;
64
65 // Asynchronously returns web::SecurityStyle and net::CertStatus for the given
66 // |certificateChain| (an NSArray of SecSertificateRef objects) and |host|.
67 // |certificateChain| cannot be null or empty. |host| should be in DNS form.
68 - (void)querySSLStatusForCertChain:(NSArray*)certChain
69 host:(NSString*)host
70 completionHandler:(web::StatusQueryHandler)completionHandler;
60 71
61 // Cancels all pending verification requests. Completion handlers will not be 72 // Cancels all pending verification requests. Completion handlers will not be
62 // called after |shutDown| call. Must always be called before object's 73 // called after |shutDown| call. Must always be called before object's
63 // deallocation. 74 // deallocation.
64 - (void)shutDown; 75 - (void)shutDown;
65 76
66 @end 77 @end
67 78
68 #endif // IOS_WEB_NET_CRW_CERT_VERIFICATION_CONTROLLER_H_ 79 #endif // IOS_WEB_NET_CRW_CERT_VERIFICATION_CONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | ios/web/net/crw_cert_verification_controller.mm » ('j') | ios/web/net/crw_cert_verification_controller.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698