dsdb:audit_log: avoid printing "... remote host [Unknown] SID [(NULL SID)] ..."
authorStefan Metzmacher <metze@samba.org>
Fri, 26 Apr 2019 14:31:46 +0000 (14:31 +0000)
committerStefan Metzmacher <metze@samba.org>
Tue, 28 May 2019 07:16:25 +0000 (07:16 +0000)
We better print "... remote host [Unknown] SID [S-1-5-18] ..."
in 'dsdb_audit' message, this matches what we print for
'dsdb_json_audit'.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13916

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source4/dsdb/samdb/ldb_modules/audit_log.c

index 931147efc728343ba377623bdf0204f4d86d4e68..ef674950100883f2aa26ec027bd098d4dd2bb300 100644 (file)
@@ -928,6 +928,7 @@ static char *operation_human_readable(
 {
        struct ldb_context *ldb = NULL;
        const char *remote_host = NULL;
+       const struct tsocket_address *remote = NULL;
        const struct dom_sid *sid = NULL;
        struct dom_sid_buf user_sid;
        const char *timestamp = NULL;
@@ -942,7 +943,8 @@ static char *operation_human_readable(
        ldb = ldb_module_get_ctx(module);
 
        remote_host = dsdb_audit_get_remote_host(ldb, ctx);
-       if (remote_host != NULL && dsdb_audit_is_system_session(module)) {
+       remote = dsdb_audit_get_remote_address(ldb);
+       if (remote != NULL && dsdb_audit_is_system_session(module)) {
                sid = dsdb_audit_get_actual_sid(ldb);
        } else {
                sid = dsdb_audit_get_user_sid(module);