summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2023-01-18 12:52:58 +0100
committerThomas Haller <thaller@redhat.com>2023-01-19 08:56:21 +0100
commit0d458dbf07514d76743917d037b0d09e493bc902 (patch)
treec08ddd170bfa5ad520211cea3d51a57385e98b78
parentc1b57a2c7294297739019685432004f5db678881 (diff)
platform: avoid printing raw pointer values in log
-rw-r--r--src/libnm-platform/nm-linux-platform.c46
-rw-r--r--src/libnm-platform/nm-platform.c48
-rw-r--r--src/libnm-platform/nmp-netns.c42
3 files changed, 73 insertions, 63 deletions
diff --git a/src/libnm-platform/nm-linux-platform.c b/src/libnm-platform/nm-linux-platform.c
index a4a6448e71..dd6dc54d01 100644
--- a/src/libnm-platform/nm-linux-platform.c
+++ b/src/libnm-platform/nm-linux-platform.c
@@ -590,25 +590,29 @@ NM_LINUX_PLATFORM_FROM_PRIVATE(NMLinuxPlatformPrivate *priv)
#define _NMLOG2(level, ...) _LOG(level, _NMLOG2_DOMAIN, NULL, __VA_ARGS__)
#define _NMLOG2_err(errsv, level, ...) _LOG_err(errsv, level, _NMLOG2_DOMAIN, NULL, __VA_ARGS__)
-#define _LOG_print(__level, __domain, __errsv, self, ...) \
- G_STMT_START \
- { \
- char __prefix[32]; \
- const char *__p_prefix = _NMLOG_PREFIX_NAME; \
- NMPlatform *const __self = (self); \
- \
- if (__self && nm_platform_get_log_with_ptr(__self)) { \
- g_snprintf(__prefix, sizeof(__prefix), "%s[%p]", _NMLOG_PREFIX_NAME, __self); \
- __p_prefix = __prefix; \
- } \
- _nm_log(__level, \
- __domain, \
- __errsv, \
- NULL, \
- NULL, \
- "%s: " _NM_UTILS_MACRO_FIRST(__VA_ARGS__), \
- __p_prefix _NM_UTILS_MACRO_REST(__VA_ARGS__)); \
- } \
+#define _LOG_print(__level, __domain, __errsv, self, ...) \
+ G_STMT_START \
+ { \
+ char __prefix[64]; \
+ const char *__p_prefix = _NMLOG_PREFIX_NAME; \
+ NMPlatform *const __self = (self); \
+ \
+ if (__self && nm_platform_get_log_with_ptr(__self)) { \
+ g_snprintf(__prefix, \
+ sizeof(__prefix), \
+ "%s[" NM_HASH_OBFUSCATE_PTR_FMT "]", \
+ _NMLOG_PREFIX_NAME, \
+ NM_HASH_OBFUSCATE_PTR(__self)); \
+ __p_prefix = __prefix; \
+ } \
+ _nm_log(__level, \
+ __domain, \
+ __errsv, \
+ NULL, \
+ NULL, \
+ "%s: " _NM_UTILS_MACRO_FIRST(__VA_ARGS__), \
+ __p_prefix _NM_UTILS_MACRO_REST(__VA_ARGS__)); \
+ } \
G_STMT_END
#define _LOG(level, domain, self, ...) \
@@ -10843,8 +10847,8 @@ constructed(GObject *_object)
: (!nmp_netns_get_current()
? "no netns support"
: nm_sprintf_bufa(100,
- "in netns[%p]%s",
- nmp_netns_get_current(),
+ "in netns[" NM_HASH_OBFUSCATE_PTR_FMT "]%s",
+ NM_HASH_OBFUSCATE_PTR(nmp_netns_get_current()),
nmp_netns_get_current() == nmp_netns_get_initial() ? "/main"
: "")),
nm_platform_get_use_udev(platform) ? "use" : "no",
diff --git a/src/libnm-platform/nm-platform.c b/src/libnm-platform/nm-platform.c
index 85bd785ac8..f5aaa6fcc9 100644
--- a/src/libnm-platform/nm-platform.c
+++ b/src/libnm-platform/nm-platform.c
@@ -115,28 +115,32 @@ nmp_link_address_get_as_bytes(const NMPLinkAddress *addr)
#define _NMLOG_DOMAIN LOGD_PLATFORM
#define _NMLOG_PREFIX_NAME "platform"
-#define NMLOG_COMMON(level, name, ...) \
- G_STMT_START \
- { \
- char __prefix[32]; \
- const char *__p_prefix = _NMLOG_PREFIX_NAME; \
- const NMPlatform *const __self = (self); \
- const char *__name = name; \
- \
- if (__self && NM_PLATFORM_GET_PRIVATE(__self)->log_with_ptr) { \
- g_snprintf(__prefix, sizeof(__prefix), "%s[%p]", _NMLOG_PREFIX_NAME, __self); \
- __p_prefix = __prefix; \
- } \
- _nm_log((level), \
- _NMLOG_DOMAIN, \
- 0, \
- __name, \
- NULL, \
- "%s: %s%s%s" _NM_UTILS_MACRO_FIRST(__VA_ARGS__), \
- __p_prefix, \
- NM_PRINT_FMT_QUOTED(__name, "(", __name, ") ", "") \
- _NM_UTILS_MACRO_REST(__VA_ARGS__)); \
- } \
+#define NMLOG_COMMON(level, name, ...) \
+ G_STMT_START \
+ { \
+ char __prefix[64]; \
+ const char *__p_prefix = _NMLOG_PREFIX_NAME; \
+ const NMPlatform *const __self = (self); \
+ const char *__name = name; \
+ \
+ if (__self && NM_PLATFORM_GET_PRIVATE(__self)->log_with_ptr) { \
+ g_snprintf(__prefix, \
+ sizeof(__prefix), \
+ "%s[" NM_HASH_OBFUSCATE_PTR_FMT "]", \
+ _NMLOG_PREFIX_NAME, \
+ NM_HASH_OBFUSCATE_PTR(__self)); \
+ __p_prefix = __prefix; \
+ } \
+ _nm_log((level), \
+ _NMLOG_DOMAIN, \
+ 0, \
+ __name, \
+ NULL, \
+ "%s: %s%s%s" _NM_UTILS_MACRO_FIRST(__VA_ARGS__), \
+ __p_prefix, \
+ NM_PRINT_FMT_QUOTED(__name, "(", __name, ") ", "") \
+ _NM_UTILS_MACRO_REST(__VA_ARGS__)); \
+ } \
G_STMT_END
#define _NMLOG(level, ...) \
diff --git a/src/libnm-platform/nmp-netns.c b/src/libnm-platform/nmp-netns.c
index 864e30e94f..c18f67ab1b 100644
--- a/src/libnm-platform/nmp-netns.c
+++ b/src/libnm-platform/nmp-netns.c
@@ -66,26 +66,28 @@ __ns_types_to_str(int ns_types, int ns_types_already_set, char *buf, gsize len)
#define _NMLOG_DOMAIN LOGD_PLATFORM
#define _NMLOG_PREFIX_NAME "netns"
-#define _NMLOG(level, netns, ...) \
- G_STMT_START \
- { \
- NMLogLevel _level = (level); \
- \
- if (nm_logging_enabled(_level, _NMLOG_DOMAIN)) { \
- NMPNetns *_netns = (netns); \
- char _sbuf[20]; \
- \
- _nm_log(_level, \
- _NMLOG_DOMAIN, \
- 0, \
- NULL, \
- NULL, \
- "%s%s: " _NM_UTILS_MACRO_FIRST(__VA_ARGS__), \
- _NMLOG_PREFIX_NAME, \
- (_netns ? nm_sprintf_buf(_sbuf, "[%p]", _netns) \
- : "") _NM_UTILS_MACRO_REST(__VA_ARGS__)); \
- } \
- } \
+#define _NMLOG(level, netns, ...) \
+ G_STMT_START \
+ { \
+ NMLogLevel _level = (level); \
+ \
+ if (nm_logging_enabled(_level, _NMLOG_DOMAIN)) { \
+ NMPNetns *_netns = (netns); \
+ char _sbuf[32]; \
+ \
+ _nm_log(_level, \
+ _NMLOG_DOMAIN, \
+ 0, \
+ NULL, \
+ NULL, \
+ "%s%s: " _NM_UTILS_MACRO_FIRST(__VA_ARGS__), \
+ _NMLOG_PREFIX_NAME, \
+ (_netns ? nm_sprintf_buf(_sbuf, \
+ "[" NM_HASH_OBFUSCATE_PTR_FMT "]", \
+ NM_HASH_OBFUSCATE_PTR(_netns)) \
+ : "") _NM_UTILS_MACRO_REST(__VA_ARGS__)); \
+ } \
+ } \
G_STMT_END
/*****************************************************************************/