ErrorDetail.cc
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9#include "squid.h"
10#include "errorpage.h"
11#include "fatal.h"
12#include "ssl/ErrorDetail.h"
14
15#include <map>
16
17static const char *OptionalSslErrors[] = {
18 "X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER",
19 "X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION",
20 "X509_V_ERR_KEYUSAGE_NO_CRL_SIGN",
21 "X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION",
22 "X509_V_ERR_INVALID_NON_CA",
23 "X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED",
24 "X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE",
25 "X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED",
26 "X509_V_ERR_INVALID_EXTENSION",
27 "X509_V_ERR_INVALID_POLICY_EXTENSION",
28 "X509_V_ERR_NO_EXPLICIT_POLICY",
29 "X509_V_ERR_DIFFERENT_CRL_SCOPE",
30 "X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE",
31 "X509_V_ERR_UNNESTED_RESOURCE",
32 "X509_V_ERR_PERMITTED_VIOLATION",
33 "X509_V_ERR_EXCLUDED_VIOLATION",
34 "X509_V_ERR_SUBTREE_MINMAX",
35 "X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE",
36 "X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX",
37 "X509_V_ERR_UNSUPPORTED_NAME_SYNTAX",
38 "X509_V_ERR_CRL_PATH_VALIDATION_ERROR",
39 "X509_V_ERR_PATH_LOOP",
40 "X509_V_ERR_SUITE_B_INVALID_VERSION",
41 "X509_V_ERR_SUITE_B_INVALID_ALGORITHM",
42 "X509_V_ERR_SUITE_B_INVALID_CURVE",
43 "X509_V_ERR_SUITE_B_INVALID_SIGNATURE_ALGORITHM",
44 "X509_V_ERR_SUITE_B_LOS_NOT_ALLOWED",
45 "X509_V_ERR_SUITE_B_CANNOT_SIGN_P_384_WITH_P_256",
46 "X509_V_ERR_HOSTNAME_MISMATCH",
47 "X509_V_ERR_EMAIL_MISMATCH",
48 "X509_V_ERR_IP_ADDRESS_MISMATCH",
49 "X509_V_ERR_DANE_NO_MATCH",
50 "X509_V_ERR_EE_KEY_TOO_SMALL",
51 "X509_V_ERR_CA_KEY_TOO_SMALL",
52 "X509_V_ERR_CA_MD_TOO_WEAK",
53 "X509_V_ERR_INVALID_CALL",
54 "X509_V_ERR_STORE_LOOKUP",
55 "X509_V_ERR_NO_VALID_SCTS",
56 "X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION",
57 "X509_V_ERR_OCSP_VERIFY_NEEDED",
58 "X509_V_ERR_OCSP_VERIFY_FAILED",
59 "X509_V_ERR_OCSP_CERT_UNKNOWN",
60 nullptr
61};
62
64 const char *name;
66};
67
68static const Security::ErrorCode hasExpired[] = {X509_V_ERR_CERT_HAS_EXPIRED, SSL_ERROR_NONE};
69static const Security::ErrorCode notYetValid[] = {X509_V_ERR_CERT_NOT_YET_VALID, SSL_ERROR_NONE};
71static const Security::ErrorCode certUntrusted[] = {X509_V_ERR_INVALID_CA,
72 X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN,
73 X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE,
74 X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT,
75 X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY,
76 X509_V_ERR_CERT_UNTRUSTED, SSL_ERROR_NONE
77 };
78static const Security::ErrorCode certSelfSigned[] = {X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT, SSL_ERROR_NONE};
79
80// The list of error name shortcuts for use with ssl_error acls.
81// The keys without the "ssl::" scope prefix allow shorter error
82// names within the SSL options scope. This is easier than
83// carefully stripping the scope prefix in Ssl::ParseErrorString().
85 {"ssl::certHasExpired", hasExpired},
86 {"certHasExpired", hasExpired},
87 {"ssl::certNotYetValid", notYetValid},
88 {"certNotYetValid", notYetValid},
89 {"ssl::certDomainMismatch", domainMismatch},
90 {"certDomainMismatch", domainMismatch},
91 {"ssl::certUntrusted", certUntrusted},
92 {"certUntrusted", certUntrusted},
93 {"ssl::certSelfSigned", certSelfSigned},
94 {"certSelfSigned", certSelfSigned},
95 {nullptr, nullptr}
96};
97
98// Use std::map to optimize search.
99typedef std::map<std::string, const Security::ErrorCode *> SslErrorShortcuts;
101
103{
105 for (int i = 0; TheSslErrorShortcutsArray[i].name; ++i)
107}
108
109bool
110Ssl::ParseErrorString(const char *name, Security::Errors &errors)
111{
112 assert(name);
113
114 const Security::ErrorCode ssl_error = GetErrorCode(name);
115 if (ssl_error != SSL_ERROR_NONE) {
116 errors.emplace(ssl_error);
117 return true;
118 }
119
120 if (xisdigit(*name)) {
121 const long int value = strtol(name, nullptr, 0);
122 if ((SQUID_TLS_ERR_OFFSET < value && value < SQUID_TLS_ERR_END) || // custom
123 (value >= 0)) { // an official error, including SSL_ERROR_NONE
124 errors.emplace(value);
125 return true;
126 }
127 fatalf("Too small or too big TLS error code '%s'", name);
128 }
129
130 if (TheSslErrorShortcuts.empty())
132
133 const SslErrorShortcuts::const_iterator it = TheSslErrorShortcuts.find(name);
134 if (it != TheSslErrorShortcuts.end()) {
135 // Should not be empty...
136 assert(it->second[0] != SSL_ERROR_NONE);
137 for (int i = 0; it->second[i] != SSL_ERROR_NONE; ++i) {
138 errors.emplace(it->second[i]);
139 }
140 return true;
141 }
142
143 fatalf("Unknown TLS error name '%s'", name);
144 return false; // not reached
145}
146
147bool
148Ssl::ErrorIsOptional(const char *name)
149{
150 for (int i = 0; OptionalSslErrors[i] != nullptr; ++i) {
151 if (strcmp(name, OptionalSslErrors[i]) == 0)
152 return true;
153 }
154 return false;
155}
156
157const char *
159{
160 return ErrorDetailsManager::GetInstance().getDefaultErrorDescr(value);
161}
162
#define assert(EX)
Definition: assert.h:17
void fatalf(const char *fmt,...)
Definition: fatal.cc:68
int ErrorCode
Squid-defined error code (<0), an error code returned by X.509 API, or zero.
Definition: forward.h:128
std::unordered_set< Security::ErrorCode > Errors
Definition: forward.h:159
bool ErrorIsOptional(const char *name)
Definition: ErrorDetail.cc:148
Security::ErrorCode GetErrorCode(const char *name)
The Security::ErrorCode code of the error described by "name".
Definition: ErrorDetail.h:28
bool ParseErrorString(const char *name, Security::Errors &)
Definition: ErrorDetail.cc:110
const char * GetErrorDescr(Security::ErrorCode value)
A short description of the TLS error "value".
Definition: ErrorDetail.cc:158
@ SQUID_X509_V_ERR_DOMAIN_MISMATCH
Definition: forward.h:230
@ SQUID_TLS_ERR_END
Definition: forward.h:233
@ SQUID_TLS_ERR_OFFSET
Definition: forward.h:222
SslErrorShortcuts TheSslErrorShortcuts
Definition: ErrorDetail.cc:100
static const Security::ErrorCode notYetValid[]
Definition: ErrorDetail.cc:69
static const Security::ErrorCode domainMismatch[]
Definition: ErrorDetail.cc:70
static const Security::ErrorCode hasExpired[]
Definition: ErrorDetail.cc:68
static const char * OptionalSslErrors[]
Definition: ErrorDetail.cc:17
std::map< std::string, const Security::ErrorCode * > SslErrorShortcuts
Definition: ErrorDetail.cc:99
static const Security::ErrorCode certSelfSigned[]
Definition: ErrorDetail.cc:78
static const Security::ErrorCode certUntrusted[]
Definition: ErrorDetail.cc:71
static void loadSslErrorShortcutsMap()
Definition: ErrorDetail.cc:102
static SslErrorAlias TheSslErrorShortcutsArray[]
Definition: ErrorDetail.cc:84
const Security::ErrorCode * errors
Definition: ErrorDetail.cc:65
const char * name
Definition: ErrorDetail.cc:64
#define xisdigit(x)
Definition: xis.h:18

 

Introduction

Documentation

Support

Miscellaneous

Web Site Translations

Mirrors