0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-02 20:48:06 +00:00

Fix SIGSEGV on static installs due to dengine log ()

* isolate the log from the validation

* rewrite the log using a buffer

* more x-ray vision replacements
This commit is contained in:
Costa Tsaousis 2025-03-05 12:24:43 +00:00 committed by GitHub
parent 9b7622df0f
commit d228c6f326
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 91 additions and 58 deletions
packaging/makeself
src
database/engine
health/notifications

View file

@ -93,7 +93,7 @@ run "${NETDATA_MAKESELF_PATH}/makeself.sh" \
--help-header "${NETDATA_MAKESELF_PATH}/makeself-help-header.txt" \
"${NETDATA_INSTALL_PATH}" \
"${NETDATA_INSTALL_PATH}.gz.run" \
"netdata, the real-time performance and health monitoring system" \
"Netdata, X-Ray Vision for your infrastructure" \
./system/post-installer.sh
run rm "${NETDATA_MAKESELF_PATH}/makeself.lsm.tmp"

View file

@ -6,7 +6,7 @@ Description: netdata - X-Ray Vision for your infrastructure!
Per-second data collection, high-performance long-term storage, low-latency
visualization, machine-learning based anomaly detection, alerts and notifications,
advanced correlations and fast root cause analysis, native horizontal scalability.
Keywords: real-time performance and health monitoring
Keywords: X-Ray Vision for your infrastructure
Author: Netdata Inc.
Maintained-by: Netdata Inc.
Original-site: https://netdata.cloud/

View file

@ -695,7 +695,92 @@ ALWAYS_INLINE VALIDATED_PAGE_DESCRIPTOR validate_extent_page_descr(const struct
"loaded", 0);
}
ALWAYS_INLINE VALIDATED_PAGE_DESCRIPTOR validate_page(
static void validate_page_log(nd_uuid_t *uuid,
time_t start_time_s,
time_t end_time_s,
uint32_t update_every_s,
size_t page_length,
size_t entries,
time_t now_s,
const char *msg,
RRDENG_COLLECT_PAGE_FLAGS flags,
VALIDATED_PAGE_DESCRIPTOR vd) {
#ifndef NETDATA_INTERNAL_CHECKS
nd_log_limit_static_global_var(erl, 1, 0);
#endif
char uuid_str[UUID_STR_LEN + 1];
uuid_unparse(*uuid, uuid_str);
CLEAN_BUFFER *wb = NULL; // will be automatically freed on function exit
if(flags) {
wb = buffer_create(0, NULL);
collect_page_flags_to_buffer(wb, flags);
}
if(!vd.is_valid) {
#ifdef NETDATA_INTERNAL_CHECKS
internal_error(true,
#else
nd_log_limit(&erl, NDLS_DAEMON, NDLP_ERR,
#endif
"DBENGINE: metric '%s' %s invalid page of type %u "
"from %ld to %ld (now %ld), update every %u, page length %zu, entries %zu (flags: %s)",
uuid_str, msg, (unsigned)vd.type,
(long)vd.start_time_s, (long)vd.end_time_s, (long)now_s, (unsigned)vd.update_every_s, (size_t)vd.page_length, (size_t)vd.entries, wb?buffer_tostring(wb):""
);
}
else {
CLEAN_BUFFER *log = buffer_create(0, NULL);
buffer_strcat(log, "DBENGINE: metric '");
buffer_strcat(log, uuid_str);
buffer_strcat(log, "' ");
buffer_strcat(log, msg ? msg : "");
buffer_strcat(log, " page of type ");
buffer_print_uint64(log, vd.type);
buffer_strcat(log, " from ");
buffer_print_int64(log, vd.start_time_s);
buffer_strcat(log, " to ");
buffer_print_int64(log, vd.end_time_s);
buffer_strcat(log, " (now ");
buffer_print_int64(log, now_s);
buffer_strcat(log, "), update every ");
buffer_print_uint64(log, vd.update_every_s);
buffer_strcat(log, ", page length ");
buffer_print_uint64(log, vd.page_length);
buffer_strcat(log, ", entries ");
buffer_print_uint64(log, vd.entries);
buffer_strcat(log, " (flags: ");
buffer_strcat(log, wb ? buffer_tostring(wb) : "");
buffer_strcat(log, ")");
buffer_strcat(log, "found inconsistent - the right is ");
buffer_print_int64(log, vd.start_time_s);
buffer_strcat(log, " to ");
buffer_print_int64(log, vd.end_time_s);
buffer_strcat(log, ", update every ");
buffer_print_uint64(log, vd.update_every_s);
buffer_strcat(log, ", page length ");
buffer_print_uint64(log, vd.page_length);
buffer_strcat(log, ", entries ");
buffer_print_uint64(log, vd.entries);
buffer_strcat(log, (vd.start_time_s == start_time_s) ? "" : "start time updated, ");
buffer_strcat(log, (vd.end_time_s == end_time_s) ? "" : "end time updated, ");
buffer_strcat(log, (vd.update_every_s == update_every_s) ? "" : "update every updated, ");
buffer_strcat(log, (vd.page_length == page_length) ? "" : "page length updated, ");
buffer_strcat(log, (vd.entries == entries) ? "" : "entries updated, ");
buffer_strcat(log, (now_s && vd.end_time_s <= now_s) ? "" : "future end time, ");
#ifdef NETDATA_INTERNAL_CHECKS
internal_error(true, "%s", buffer_tostring(log));
#else
nd_log_limit(&erl, NDLS_DAEMON, NDLP_ERR, "%s", buffer_tostring(log));
#endif
}
}
ALWAYS_INLINE
VALIDATED_PAGE_DESCRIPTOR validate_page(
nd_uuid_t *uuid,
time_t start_time_s,
time_t end_time_s,
@ -804,60 +889,8 @@ ALWAYS_INLINE VALIDATED_PAGE_DESCRIPTOR validate_page(
}
}
if(unlikely(!vd.is_valid || updated)) {
#ifndef NETDATA_INTERNAL_CHECKS
nd_log_limit_static_global_var(erl, 1, 0);
#endif
char uuid_str[UUID_STR_LEN + 1];
uuid_unparse(*uuid, uuid_str);
BUFFER *wb = NULL;
if(flags) {
wb = buffer_create(0, NULL);
collect_page_flags_to_buffer(wb, flags);
}
if(!vd.is_valid) {
#ifdef NETDATA_INTERNAL_CHECKS
internal_error(true,
#else
nd_log_limit(&erl, NDLS_DAEMON, NDLP_ERR,
#endif
"DBENGINE: metric '%s' %s invalid page of type %u "
"from %ld to %ld (now %ld), update every %u, page length %zu, entries %zu (flags: %s)",
uuid_str, msg, vd.type,
vd.start_time_s, vd.end_time_s, now_s, vd.update_every_s, vd.page_length, vd.entries, wb?buffer_tostring(wb):""
);
}
else {
const char *err_valid = "";
const char *err_start = (vd.start_time_s == start_time_s) ? "" : "start time updated, ";
const char *err_end = (vd.end_time_s == end_time_s) ? "" : "end time updated, ";
const char *err_update = (vd.update_every_s == update_every_s) ? "" : "update every updated, ";
const char *err_length = (vd.page_length == page_length) ? "" : "page length updated, ";
const char *err_entries = (vd.entries == entries) ? "" : "entries updated, ";
const char *err_future = (now_s && vd.end_time_s <= now_s) ? "" : "future end time, ";
#ifdef NETDATA_INTERNAL_CHECKS
internal_error(true,
#else
nd_log_limit(&erl, NDLS_DAEMON, NDLP_ERR,
#endif
"DBENGINE: metric '%s' %s page of type %u "
"from %ld to %ld (now %ld), update every %u, page length %zu, entries %zu (flags: %s), "
"found inconsistent - the right is "
"from %ld to %ld, update every %u, page length %zu, entries %zu: "
"%s%s%s%s%s%s%s",
uuid_str, msg, vd.type,
start_time_s, end_time_s, now_s, update_every_s, page_length, entries, wb?buffer_tostring(wb):"",
vd.start_time_s, vd.end_time_s, vd.update_every_s, vd.page_length, vd.entries,
err_valid, err_start, err_end, err_update, err_length, err_entries, err_future
);
}
buffer_free(wb);
}
if(unlikely(!vd.is_valid || updated))
validate_page_log(uuid, start_time_s, end_time_s, update_every_s, page_length, entries, now_s, msg, flags, vd);
return vd;
}

View file

@ -3667,7 +3667,7 @@ Content-Transfer-Encoding: 8bit
<tbody>
<tr>
<td align="left" style="font-size:0px;padding:10px 25px;padding-top:0;padding-bottom:0;word-break:break-word;">
<div style="font-family:Open Sans, sans-serif;font-size:13px;line-height:1;text-align:center;color:#35414A;">© Netdata $(date +'%Y') - The real-time performance and health monitoring</div>
<div style="font-family:Open Sans, sans-serif;font-size:13px;line-height:1;text-align:center;color:#35414A;">© Netdata $(date +'%Y') - X-Ray Vision for your infrastructure</div>
</td>
</tr>
</tbody>