-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move some parts of malloc-trace code
* flush only orphan malloc and free * malloc_trace realloc name fix, tls memory-leak fix * function passed to gnutls must never throw
- Loading branch information
1 parent
44b43ba
commit bf4da23
Showing
15 changed files
with
237 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
** Copyright 2020-2021 Centreon | ||
** | ||
** Licensed 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. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
/** | ||
* Copyright 2020-2021 Centreon | ||
* | ||
* Licensed 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. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
#include "com/centreon/broker/tcp/tcp_connection.hh" | ||
|
||
#include "com/centreon/broker/exceptions/connection_closed.hh" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,26 @@ | ||
/* | ||
** Copyright 2009-2013, 2021 Centreon | ||
** | ||
** Licensed 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. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
/** | ||
* Copyright 2009-2013, 2021 Centreon | ||
* | ||
* Licensed 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. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#include "com/centreon/broker/tls/acceptor.hh" | ||
|
||
#include <gnutls/gnutls.h> | ||
|
||
#include "com/centreon/broker/log_v2.hh" | ||
#include "com/centreon/broker/tls/internal.hh" | ||
#include "com/centreon/broker/tls/params.hh" | ||
#include "com/centreon/broker/tls/stream.hh" | ||
#include "com/centreon/exceptions/msg_fmt.hh" | ||
|
||
|
@@ -87,7 +85,7 @@ std::shared_ptr<io::stream> acceptor::open() { | |
*/ | ||
std::shared_ptr<io::stream> acceptor::open( | ||
const std::shared_ptr<io::stream>& lower) { | ||
std::shared_ptr<io::stream> u; | ||
std::shared_ptr<stream> u; | ||
if (lower) { | ||
int ret; | ||
|
||
|
@@ -98,61 +96,10 @@ std::shared_ptr<io::stream> acceptor::open( | |
p.set_tls_hostname(_tls_hostname); | ||
p.load(); | ||
|
||
gnutls_session_t* session(new gnutls_session_t); | ||
try { | ||
// Initialize the TLS session | ||
log_v2::tls()->debug("TLS: initializing session"); | ||
// GNUTLS_NONBLOCK was introduced in gnutls 2.99.3. | ||
#ifdef GNUTLS_NONBLOCK | ||
ret = gnutls_init(session, GNUTLS_SERVER | GNUTLS_NONBLOCK); | ||
#else | ||
ret = gnutls_init(session, GNUTLS_SERVER); | ||
#endif // GNUTLS_NONBLOCK | ||
if (ret != GNUTLS_E_SUCCESS) { | ||
log_v2::tls()->error("TLS: cannot initialize session: {}", | ||
gnutls_strerror(ret)); | ||
throw msg_fmt("TLS: cannot initialize session: {}", | ||
gnutls_strerror(ret)); | ||
} | ||
|
||
// Apply TLS parameters. | ||
p.apply(*session); | ||
|
||
// Create stream object. | ||
u.reset(new stream(session)); | ||
} catch (...) { | ||
gnutls_deinit(*session); | ||
delete session; | ||
throw; | ||
} | ||
// Create stream object. | ||
u = std::make_shared<stream>(GNUTLS_SERVER | GNUTLS_NONBLOCK); | ||
u->set_substream(lower); | ||
|
||
// Bind the TLS session with the stream from the lower layer. | ||
#if GNUTLS_VERSION_NUMBER < 0x020C00 | ||
gnutls_transport_set_lowat(*session, 0); | ||
#endif // GNU TLS < 2.12.0 | ||
gnutls_transport_set_pull_function(*session, pull_helper); | ||
gnutls_transport_set_push_function(*session, push_helper); | ||
gnutls_transport_set_ptr(*session, u.get()); | ||
|
||
// Perform the TLS handshake. | ||
log_v2::tls()->debug("TLS: performing handshake"); | ||
do { | ||
ret = gnutls_handshake(*session); | ||
} while (GNUTLS_E_AGAIN == ret || GNUTLS_E_INTERRUPTED == ret); | ||
if (ret != GNUTLS_E_SUCCESS) { | ||
log_v2::tls()->error("TLS: handshake failed: {}", gnutls_strerror(ret)); | ||
throw msg_fmt("TLS: handshake failed: {} ", gnutls_strerror(ret)); | ||
} | ||
log_v2::tls()->debug("TLS: successful handshake"); | ||
gnutls_protocol_t prot = gnutls_protocol_get_version(*session); | ||
gnutls_cipher_algorithm_t ciph = gnutls_cipher_get(*session); | ||
log_v2::tls()->debug("TLS: protocol and cipher {} {} used", | ||
gnutls_protocol_get_name(prot), | ||
gnutls_cipher_get_name(ciph)); | ||
|
||
// Check certificate. | ||
p.validate_cert(*session); | ||
u->init(p); | ||
} | ||
|
||
return u; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
/* | ||
** Copyright 2009-2013 Centreon | ||
** | ||
** Licensed 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. | ||
** | ||
** For more information : [email protected] | ||
*/ | ||
/** | ||
* Copyright 2009-2013 Centreon | ||
* | ||
* Licensed 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. | ||
* | ||
* For more information : [email protected] | ||
*/ | ||
|
||
#include "com/centreon/broker/tls/connector.hh" | ||
|
||
#include "com/centreon/broker/log_v2.hh" | ||
#include "com/centreon/broker/tls/internal.hh" | ||
#include "com/centreon/broker/tls/params.hh" | ||
#include "com/centreon/broker/tls/stream.hh" | ||
#include "com/centreon/exceptions/msg_fmt.hh" | ||
|
||
|
@@ -72,7 +70,7 @@ std::shared_ptr<io::stream> connector::open() { | |
* @return Encrypted stream. | ||
*/ | ||
std::shared_ptr<io::stream> connector::open(std::shared_ptr<io::stream> lower) { | ||
std::shared_ptr<io::stream> u; | ||
std::shared_ptr<stream> u; | ||
if (lower) { | ||
int ret; | ||
// Load parameters. | ||
|
@@ -82,61 +80,10 @@ std::shared_ptr<io::stream> connector::open(std::shared_ptr<io::stream> lower) { | |
p.set_tls_hostname(_tls_hostname); | ||
p.load(); | ||
|
||
gnutls_session_t* session(new gnutls_session_t); | ||
try { | ||
// Initialize the TLS session | ||
log_v2::tls()->debug("TLS: initializing session"); | ||
#ifdef GNUTLS_NONBLOCK | ||
ret = gnutls_init(session, GNUTLS_CLIENT | GNUTLS_NONBLOCK); | ||
#else | ||
ret = gnutls_init(session, GNUTLS_CLIENT); | ||
#endif // GNUTLS_NONBLOCK | ||
if (ret != GNUTLS_E_SUCCESS) { | ||
log_v2::tls()->error("TLS: cannot initialize session: {}", | ||
gnutls_strerror(ret)); | ||
throw msg_fmt("TLS: cannot initialize session: {} ", | ||
gnutls_strerror(ret)); | ||
} | ||
|
||
// Apply TLS parameters to the current session. | ||
p.apply(*session); | ||
|
||
// Create stream object. | ||
u.reset(new stream(session)); | ||
} catch (...) { | ||
gnutls_deinit(*session); | ||
delete session; | ||
throw; | ||
} | ||
// Create stream object. | ||
u = std::make_shared<stream>(GNUTLS_CLIENT); | ||
u->set_substream(lower); | ||
|
||
// Bind the TLS session with the stream from the lower layer. | ||
#if GNUTLS_VERSION_NUMBER < 0x020C00 | ||
gnutls_transport_set_lowat(*session, 0); | ||
#endif // GNU TLS < 2.12.0 | ||
gnutls_transport_set_pull_function(*session, pull_helper); | ||
gnutls_transport_set_push_function(*session, push_helper); | ||
gnutls_transport_set_ptr(*session, u.get()); | ||
|
||
// Perform the TLS handshake. | ||
log_v2::tls()->debug("TLS: performing handshake"); | ||
do { | ||
ret = gnutls_handshake(*session); | ||
} while (GNUTLS_E_AGAIN == ret || GNUTLS_E_INTERRUPTED == ret); | ||
if (ret != GNUTLS_E_SUCCESS) { | ||
log_v2::tls()->error("TLS: handshake failed: {}", gnutls_strerror(ret)); | ||
throw msg_fmt("TLS: handshake failed: {}", gnutls_strerror(ret)); | ||
} | ||
|
||
log_v2::tls()->debug("TLS: successful handshake"); | ||
gnutls_protocol_t prot = gnutls_protocol_get_version(*session); | ||
gnutls_cipher_algorithm_t ciph = gnutls_cipher_get(*session); | ||
log_v2::tls()->debug("TLS: protocol and cipher {} {} used", | ||
gnutls_protocol_get_name(prot), | ||
gnutls_cipher_get_name(ciph)); | ||
|
||
// Check certificate if necessary. | ||
p.validate_cert(*session); | ||
u->init(p); | ||
} | ||
|
||
return u; | ||
|
Oops, something went wrong.