1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-10 02:02:49 +03:00
Files
apache/modules/ssl/ssl_engine_log.c
Joe Orton 62059cf7c6 * modules/ssl/ssl_engine_log.c (ssl_log_cxerror): New function,
factored out from ssl_callback_SSLVerify.

* modules/ssl/ssl_private: Add prototype.

* modules/ssl/ssl_engine_kernel.c (ssl_callback_SSLVerify): Use it.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@597651 13f79535-47bb-0310-9956-ffa450edef68
2007-11-23 12:13:59 +00:00

145 lines
4.9 KiB
C

/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* _ _
* _ __ ___ ___ __| | ___ ___| | mod_ssl
* | '_ ` _ \ / _ \ / _` | / __/ __| | Apache Interface to OpenSSL
* | | | | | | (_) | (_| | \__ \__ \ |
* |_| |_| |_|\___/ \__,_|___|___/___/_|
* |_____|
* ssl_engine_log.c
* Logging Facility
*/
/* ``The difference between a computer
industry job and open-source software
hacking is about 30 hours a week.''
-- Ralf S. Engelschall */
#include "ssl_private.h"
/* _________________________________________________________________
**
** Logfile Support
** _________________________________________________________________
*/
static const struct {
const char *cpPattern;
const char *cpAnnotation;
} ssl_log_annotate[] = {
{ "*envelope*bad*decrypt*", "wrong pass phrase!?" },
{ "*CLIENT_HELLO*unknown*protocol*", "speaking not SSL to HTTPS port!?" },
{ "*CLIENT_HELLO*http*request*", "speaking HTTP to HTTPS port!?" },
{ "*SSL3_READ_BYTES:sslv3*alert*bad*certificate*", "Subject CN in certificate not server name or identical to CA!?" },
{ "*self signed certificate in certificate chain*", "Client certificate signed by CA not known to server?" },
{ "*peer did not return a certificate*", "No CAs known to server for verification?" },
{ "*no shared cipher*", "Too restrictive SSLCipherSuite or using DSA server certificate?" },
{ "*no start line*", "Bad file contents or format - or even just a forgotten SSLCertificateKeyFile?" },
{ "*bad password read*", "You entered an incorrect pass phrase!?" },
{ "*bad mac decode*", "Browser still remembered details of a re-created server certificate?" },
{ NULL, NULL }
};
static const char *ssl_log_annotation(const char *error)
{
int i = 0;
while (ssl_log_annotate[i].cpPattern != NULL
&& ap_strcmp_match(error, ssl_log_annotate[i].cpPattern) != 0)
i++;
return ssl_log_annotate[i].cpAnnotation;
}
void ssl_die(void)
{
/*
* This is used for fatal errors and here
* it is common module practice to really
* exit from the complete program.
*/
exit(1);
}
/*
* Prints the SSL library error information.
*/
void ssl_log_ssl_error(const char *file, int line, int level, server_rec *s)
{
unsigned long e;
const char *data;
int flags;
while ((e = ERR_peek_error_line_data(NULL, NULL, &data, &flags))) {
const char *annotation;
char err[256];
if (!(flags & ERR_TXT_STRING)) {
data = NULL;
}
ERR_error_string_n(e, err, sizeof err);
annotation = ssl_log_annotation(err);
ap_log_error(file, line, level, 0, s,
"SSL Library Error: %s%s%s%s%s%s",
/* %s */
err,
/* %s%s%s */
data ? " (" : "", data ? data : "", data ? ")" : "",
/* %s%s */
annotation ? " -- " : "",
annotation ? annotation : "");
/* Pop the error off the stack: */
ERR_get_error();
}
}
void ssl_log_cxerror(const char *file, int line, int level,
apr_status_t rv, conn_rec *c, X509 *cert,
const char *format, ...)
{
va_list ap;
char buf[HUGE_STRING_LEN];
char *sname, *iname;
if (c->base_server->loglevel < level) {
/* Bail early since the rest of this function is expensive. */
return;
}
sname = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0);
iname = X509_NAME_oneline(X509_get_issuer_name(cert), NULL, 0);
va_start(ap, format);
apr_vsnprintf(buf, sizeof buf, format, ap);
va_end(ap);
ap_log_cerror(file, line, level, rv, c,
"%s [peer subject: %s, issuer: %s]",
buf,
sname ? sname : "-unknown-",
iname ? iname : "-unknown-");
if (sname) {
modssl_free(sname);
}
if (iname) {
modssl_free(iname);
}
}