RESOLVED FIXED 191646
[Curl] Add Server Trust Evaluation Support.
https://bugs.webkit.org/show_bug.cgi?id=191646
Summary [Curl] Add Server Trust Evaluation Support.
Basuke Suzuki
Reported 2018-11-14 12:34:55 PST
Add Server Trust Evaluation Support. Need to implement UI on MiniBrowser to ask user to trust the server.
Attachments
Patch (30.18 KB, patch)
2019-03-26 22:36 PDT, Takashi Komori
no flags
Patch (27.84 KB, patch)
2019-03-28 00:42 PDT, Takashi Komori
no flags
Patch (27.94 KB, patch)
2019-03-29 00:37 PDT, Takashi Komori
no flags
Takashi Komori
Comment 1 2019-03-26 22:36:47 PDT
Ross Kirsling
Comment 2 2019-03-27 00:22:49 PDT
Comment on attachment 366052 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=366052&action=review Just a couple of nitpicks from me. > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:327 > + m_acceptedServerTrustCert.insert(std::make_pair(host, pem)); If you use emplace() then you don't need make_pair. :) > Tools/MiniBrowser/win/WebKitBrowserWindow.h:77 > + std::map<std::wstring, std::wstring> m_acceptedServerTrustCert; I think this can be unordered_map instead, right?
Fujii Hironori
Comment 3 2019-03-27 01:01:19 PDT
Comment on attachment 366052 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=366052&action=review > Source/WebCore/platform/network/curl/AuthenticationChallengeCurl.cpp:80 > + return ProtectionSpace(url.host().toString(), static_cast<int>(port ? *port : 0), serverType, String(), authenticationScheme, certificateInfo); "(port ? *port : 0)" can be "port.valueOr(0)". protectionSpaceFromHandle has the same code. > Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp:423 > +void NetworkDataTaskCurl::restartWithCredential(const AuthenticationChallenge& challenge, const Credential& credential) It seems that you don't need change the first argument. > Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp:433 > + if (!challenge.protectionSpace().certificateInfo().certificateChain().isEmpty()) Is this never be empty in case of ServerTrustEvaluation? if (challenge.protectionSpace().authenticationScheme() == ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested) I feel this is somewhat better. > Tools/MiniBrowser/win/Common.cpp:288 > +std::wstring replaceWString(std::wstring src, const std::wstring& oldValue, const std::wstring& newValue) You can name this 'replaceString'. If you will need a std::string version, you can overload replaceString(std::string, const std::string&, const std::string&). > Tools/MiniBrowser/win/Common.cpp:294 > + while ((pos = src.find(oldValue, pos)) != std::string::npos) { Nit: std::string::npos should be std::wstring::npos or src.npos. > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:323 > + if (it != m_acceptedServerTrustCert.end() && it->second == pem) You check only the first matching. m_acceptedServerTrustCert can be std::set<std::pair<std::wstring,std::wstring>>. > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:334 > +std::wstring WebKitBrowserWindow::createPEMString(WKProtectionSpaceRef protectionSpace) This shouldn't be a WebKitBrowserWindow's method. > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:345 > + pems += std::wstring(reinterpret_cast<const char*>(data), reinterpret_cast<const char*>(data + size)); std::wstring(reinterpret_cast<const char*>(data), size) > Tools/MiniBrowser/win/WebKitBrowserWindow.h:77 > + std::map<std::wstring, std::wstring> m_acceptedServerTrustCert; should be plural if this is just a single cert. m_acceptedServerTrustCerts
Fujii Hironori
Comment 4 2019-03-27 01:49:43 PDT
Comment on attachment 366052 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=366052&action=review >> Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:323 >> + if (it != m_acceptedServerTrustCert.end() && it->second == pem) > > You check only the first matching. m_acceptedServerTrustCert can be std::set<std::pair<std::wstring,std::wstring>>. Err. I misunderstood. You store only the latest cert for hosts. It makes sense. Ignore my comment.
Takashi Komori
Comment 5 2019-03-28 00:42:00 PDT
Takashi Komori
Comment 6 2019-03-28 00:43:14 PDT
(In reply to Ross Kirsling from comment #2) Thanks for your comment! > > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:327 > > + m_acceptedServerTrustCert.insert(std::make_pair(host, pem)); > > If you use emplace() then you don't need make_pair. :) Fixed. > > Tools/MiniBrowser/win/WebKitBrowserWindow.h:77 > > + std::map<std::wstring, std::wstring> m_acceptedServerTrustCert; > > I think this can be unordered_map instead, right? Fixed.
Takashi Komori
Comment 7 2019-03-28 00:48:27 PDT
Thank you for your review! (In reply to Fujii Hironori from comment #3) > Comment on attachment 366052 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=366052&action=review > > > Source/WebCore/platform/network/curl/AuthenticationChallengeCurl.cpp:80 > > + return ProtectionSpace(url.host().toString(), static_cast<int>(port ? *port : 0), serverType, String(), authenticationScheme, certificateInfo); > > "(port ? *port : 0)" can be "port.valueOr(0)". protectionSpaceFromHandle has > the same code. Fixed. > > Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp:423 > > +void NetworkDataTaskCurl::restartWithCredential(const AuthenticationChallenge& challenge, const Credential& credential) > > It seems that you don't need change the first argument. Reverted to former argument list. > > Source/WebKit/NetworkProcess/curl/NetworkDataTaskCurl.cpp:433 > > + if (!challenge.protectionSpace().certificateInfo().certificateChain().isEmpty()) > > Is this never be empty in case of ServerTrustEvaluation? > if (challenge.protectionSpace().authenticationScheme() == > ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested) > I feel this is somewhat better. Fixed. > > Tools/MiniBrowser/win/Common.cpp:288 > > +std::wstring replaceWString(std::wstring src, const std::wstring& oldValue, const std::wstring& newValue) > > You can name this 'replaceString'. If you will need a std::string version, > you can overload replaceString(std::string, const std::string&, const > std::string&). Changed. > > Tools/MiniBrowser/win/Common.cpp:294 > > + while ((pos = src.find(oldValue, pos)) != std::string::npos) { > > Nit: std::string::npos should be std::wstring::npos or src.npos. Fixed. > > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:334 > > +std::wstring WebKitBrowserWindow::createPEMString(WKProtectionSpaceRef protectionSpace) > > This shouldn't be a WebKitBrowserWindow's method. Moved to Common.cpp > > Tools/MiniBrowser/win/WebKitBrowserWindow.cpp:345 > > + pems += std::wstring(reinterpret_cast<const char*>(data), reinterpret_cast<const char*>(data + size)); > > std::wstring(reinterpret_cast<const char*>(data), size) Fixed. > > Tools/MiniBrowser/win/WebKitBrowserWindow.h:77 > > + std::map<std::wstring, std::wstring> m_acceptedServerTrustCert; > > should be plural if this is just a single cert. > m_acceptedServerTrustCerts Fixed.
Fujii Hironori
Comment 8 2019-03-28 01:15:03 PDT
Comment on attachment 366157 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=366157&action=review > Tools/MiniBrowser/win/Common.h:31 > +#include <WebKit/WebKit2_C.h> AppleWin port doesn't enable WK2. You shouldn't put WK2-related code in Common.h.
Takashi Komori
Comment 9 2019-03-29 00:37:27 PDT
Takashi Komori
Comment 10 2019-03-29 00:38:30 PDT
(In reply to Fujii Hironori from comment #8) > Comment on attachment 366157 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=366157&action=review > > > Tools/MiniBrowser/win/Common.h:31 > > +#include <WebKit/WebKit2_C.h> > > AppleWin port doesn't enable WK2. You shouldn't put WK2-related code in > Common.h. Fixed.
Alex Christensen
Comment 11 2019-03-29 11:35:09 PDT
Comment on attachment 366258 [details] Patch LGTM
WebKit Commit Bot
Comment 12 2019-03-29 12:03:22 PDT
Comment on attachment 366258 [details] Patch Clearing flags on attachment: 366258 Committed r243654: <https://trac.webkit.org/changeset/243654>
WebKit Commit Bot
Comment 13 2019-03-29 12:03:24 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 14 2019-03-29 12:04:22 PDT
Note You need to log in before you can comment on or make changes to this bug.