electron/atom/browser/ui/certificate_trust_mac.mm

113 lines
3.3 KiB
Text
Raw Normal View History

2017-03-30 21:25:44 +00:00
// Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2017-04-03 19:05:24 +00:00
#include "atom/browser/ui/certificate_trust.h"
2017-03-30 21:25:44 +00:00
#import <Cocoa/Cocoa.h>
#import <SecurityInterface/SFCertificateTrustPanel.h>
#include "atom/browser/native_window.h"
#include "base/strings/sys_string_conversions.h"
2017-04-01 01:51:29 +00:00
#include "net/cert/cert_database.h"
2017-03-30 21:25:44 +00:00
@interface TrustDelegate : NSObject {
@private
2017-04-03 19:05:24 +00:00
certificate_trust::ShowTrustCallback callback_;
SFCertificateTrustPanel* panel_;
scoped_refptr<net::X509Certificate> cert_;
SecTrustRef trust_;
CFArrayRef cert_chain_;
SecPolicyRef sec_policy_;
}
2017-04-03 19:05:24 +00:00
- (id)initWithCallback:(const certificate_trust::ShowTrustCallback&)callback
panel:(SFCertificateTrustPanel*)panel
cert:(const scoped_refptr<net::X509Certificate>&)cert
trust:(SecTrustRef)trust
certChain:(CFArrayRef)certChain
secPolicy:(SecPolicyRef)secPolicy;
2017-04-03 17:21:44 +00:00
2017-04-04 01:22:14 +00:00
- (void)panelDidEnd:(NSWindow*)sheet
2017-04-03 17:21:44 +00:00
returnCode:(int)returnCode
contextInfo:(void*)contextInfo;
2017-04-03 17:21:44 +00:00
@end
@implementation TrustDelegate
- (void)dealloc {
[panel_ release];
CFRelease(trust_);
CFRelease(cert_chain_);
CFRelease(sec_policy_);
[super dealloc];
}
2017-04-03 19:05:24 +00:00
- (id)initWithCallback:(const certificate_trust::ShowTrustCallback&)callback
panel:(SFCertificateTrustPanel*)panel
cert:(const scoped_refptr<net::X509Certificate>&)cert
trust:(SecTrustRef)trust
certChain:(CFArrayRef)certChain
secPolicy:(SecPolicyRef)secPolicy {
if ((self = [super init])) {
callback_ = callback;
panel_ = panel;
cert_ = cert;
trust_ = trust;
cert_chain_ = certChain;
sec_policy_ = secPolicy;
}
return self;
}
2017-04-03 17:21:44 +00:00
2017-04-04 01:22:14 +00:00
- (void)panelDidEnd:(NSWindow*)sheet
2017-04-03 17:21:44 +00:00
returnCode:(int)returnCode
contextInfo:(void*)contextInfo {
auto cert_db = net::CertDatabase::GetInstance();
// This forces Chromium to reload the certificate since it might be trusted
// now.
2017-04-13 11:34:47 +00:00
cert_db->NotifyObserversCertDBChanged();
callback_.Run();
[self autorelease];
2017-04-03 17:21:44 +00:00
}
@end
2017-04-03 19:05:24 +00:00
namespace certificate_trust {
2017-03-30 21:25:44 +00:00
2017-04-03 19:05:24 +00:00
void ShowCertificateTrust(atom::NativeWindow* parent_window,
const scoped_refptr<net::X509Certificate>& cert,
2017-04-03 19:28:44 +00:00
const std::string& message,
2017-04-03 19:05:24 +00:00
const ShowTrustCallback& callback) {
2017-03-30 21:25:44 +00:00
auto sec_policy = SecPolicyCreateBasicX509();
2017-04-03 17:21:44 +00:00
auto cert_chain = cert->CreateOSCertChainForCert();
2017-03-30 21:25:44 +00:00
SecTrustRef trust = nullptr;
2017-04-03 17:21:44 +00:00
SecTrustCreateWithCertificates(cert_chain, sec_policy, &trust);
2017-03-30 21:25:44 +00:00
2017-04-03 17:21:44 +00:00
NSWindow* window = parent_window ?
parent_window->GetNativeWindow() :
nil;
2017-04-03 17:21:44 +00:00
auto msg = base::SysUTF8ToNSString(message);
2017-04-04 01:22:14 +00:00
auto panel = [[SFCertificateTrustPanel alloc] init];
auto delegate = [[TrustDelegate alloc] initWithCallback:callback
panel:panel
cert:cert
trust:trust
certChain:cert_chain
secPolicy:sec_policy];
[panel beginSheetForWindow:window
modalDelegate:delegate
didEndSelector:@selector(panelDidEnd:returnCode:contextInfo:)
contextInfo:nil
trust:trust
message:msg];
2017-03-30 21:25:44 +00:00
}
2017-04-03 19:05:24 +00:00
} // namespace certificate_trust