Commit fba54e1f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

gnutls: show different message if certificate is unknown or mismatching

parent c2acc214
...@@ -257,9 +257,11 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host, ...@@ -257,9 +257,11 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host,
const gnutls_datum_t *restrict datum) const gnutls_datum_t *restrict datum)
{ {
assert (host != NULL); assert (host != NULL);
/* Look up mismatching certificate in store */ /* Look up mismatching certificate in store */
int val = gnutls_verify_stored_pubkey (NULL, NULL, host, service, int val = gnutls_verify_stored_pubkey (NULL, NULL, host, service,
GNUTLS_CRT_X509, datum, 0); GNUTLS_CRT_X509, datum, 0);
const char *msg;
switch (val) switch (val)
{ {
case 0: case 0:
...@@ -267,9 +269,24 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host, ...@@ -267,9 +269,24 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host,
return 0; return 0;
case GNUTLS_E_NO_CERTIFICATE_FOUND: case GNUTLS_E_NO_CERTIFICATE_FOUND:
msg_Dbg (obj, "no known certificates for %s", host); msg_Dbg (obj, "no known certificates for %s", host);
msg = N_("You attempted to reach %s. "
"However the security certificate presented by the server "
"is unknown and could not be authenticated by any trusted "
"Certfication Authority. "
"This problem may be caused by a configuration error "
"or an attempt to breach your security or your privacy.\n\n"
"If in doubt, abort now.\n");
break; break;
case GNUTLS_E_CERTIFICATE_KEY_MISMATCH: case GNUTLS_E_CERTIFICATE_KEY_MISMATCH:
msg_Dbg (obj, "certificate keys mismatch for %s", host); msg_Dbg (obj, "certificate keys mismatch for %s", host);
msg = N_("You attempted to reach %s. "
"However the security certificate presented by the server "
"changed since the previous visit "
"and was not authentication by any trusted "
"Certfication Authority. "
"This problem may be caused by a configuration error "
"or an attempt to breach your security or your privacy.\n\n"
"If in doubt, abort now.\n");
break; break;
default: default:
msg_Err (obj, "certificate key match error for %s: %s", host, msg_Err (obj, "certificate key match error for %s: %s", host,
...@@ -277,12 +294,7 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host, ...@@ -277,12 +294,7 @@ static int gnutls_CertSearch (vlc_tls_t *obj, const char *host,
return -1; return -1;
} }
if (dialog_Question (obj, _("Insecure site"), if (dialog_Question (obj, _("Insecure site"), vlc_gettext (msg),
_("You attempted to reach %s, but security certificate presented by "
"the server could not be verified."
"This problem may be caused by a configuration error "
"on the server or by a serious breach of network security.\n\n"
"If in doubt, abort now.\n"),
_("Abort"), _("View certificate"), NULL, host) != 2) _("Abort"), _("View certificate"), NULL, host) != 2)
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment