2 common routines for audit logging
4 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2018
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "librpc/ndr/libndr.h"
28 #include "lib/tsocket/tsocket.h"
29 #include "libcli/security/dom_sid.h"
30 #include "lib/messaging/messaging.h"
31 #include "auth/common_auth.h"
32 #include "audit_logging.h"
35 * @brief Get a human readable timestamp.
37 * Returns the current time formatted as
38 * "Tue, 14 Mar 2017 08:38:42.209028 NZDT"
40 * The returned string is allocated by talloc in the supplied context.
41 * It is the callers responsibility to free it.
43 * @param mem_ctx talloc memory context that owns the returned string.
45 * @return a human readable time stamp, or NULL in the event of an error.
48 char* audit_get_timestamp(TALLOC_CTX
*frame
)
50 char buffer
[40]; /* formatted time less usec and timezone */
51 char tz
[10]; /* formatted time zone */
52 struct tm
* tm_info
; /* current local time */
53 struct timeval tv
; /* current system time */
54 int ret
; /* response code */
55 char * ts
; /* formatted time stamp */
57 ret
= gettimeofday(&tv
, NULL
);
59 DBG_ERR("Unable to get time of day: (%d) %s\n",
65 tm_info
= localtime(&tv
.tv_sec
);
66 if (tm_info
== NULL
) {
67 DBG_ERR("Unable to determine local time\n");
71 strftime(buffer
, sizeof(buffer
)-1, "%a, %d %b %Y %H:%M:%S", tm_info
);
72 strftime(tz
, sizeof(tz
)-1, "%Z", tm_info
);
73 ts
= talloc_asprintf(frame
, "%s.%06ld %s", buffer
, tv
.tv_usec
, tz
);
75 DBG_ERR("Out of memory formatting time stamp\n");
81 * @brief write an audit message to the audit logs.
83 * Write a human readable text audit message to the samba logs.
85 * @param prefix Text to be printed at the start of the log line
86 * @param message The content of the log line.
87 * @param debub_class The debug class to log the message with.
88 * @param debug_level The debug level to log the message with.
90 void audit_log_human_text(const char* prefix
,
95 DEBUGC(debug_class
, debug_level
, ("%s %s\n", prefix
, message
));
100 * Constant for empty json object initialisation
102 const struct json_object json_empty_object
= {.valid
= false, .root
= NULL
};
104 * @brief write a json object to the samba audit logs.
106 * Write the json object to the audit logs as a formatted string
108 * @param message The content of the log line.
109 * @param debub_class The debug class to log the message with.
110 * @param debug_level The debug level to log the message with.
112 void audit_log_json(struct json_object
* message
,
116 TALLOC_CTX
*frame
= NULL
;
119 if (json_is_invalid(message
)) {
120 DBG_ERR("Invalid JSON object, unable to log\n");
124 frame
= talloc_stackframe();
125 s
= json_to_string(frame
, message
);
127 DBG_ERR("json_to_string returned NULL, "
128 "JSON audit message could not written\n");
133 * This is very strange, but we call this routine to get a log
134 * output without the header. JSON logs all have timestamps
135 * so this only makes parsing harder.
137 * We push out the raw JSON blob without a prefix, consumers
138 * can find such lines by the leading {
140 DEBUGADDC(debug_class
, debug_level
, ("%s\n", s
));
145 * @brief get a connection to the messaging event server.
147 * Get a connection to the messaging event server registered by server_name.
149 * @param msg_ctx a valid imessaging_context.
150 * @param server_name name of messaging event server to connect to.
151 * @param server_id The event server details to populate
155 static NTSTATUS
get_event_server(
156 struct imessaging_context
*msg_ctx
,
157 const char *server_name
,
158 struct server_id
*event_server
)
161 TALLOC_CTX
*frame
= talloc_stackframe();
162 unsigned num_servers
, i
;
163 struct server_id
*servers
;
165 status
= irpc_servers_byname(
172 if (!NT_STATUS_IS_OK(status
)) {
174 "Failed to find '%s' registered on the message bus to "
175 "send JSON audit events to: %s\n",
183 * Select the first server that is listening, because we get
184 * connection refused as NT_STATUS_OBJECT_NAME_NOT_FOUND
187 for (i
= 0; i
< num_servers
; i
++) {
188 status
= imessaging_send(
193 if (NT_STATUS_IS_OK(status
)) {
194 *event_server
= servers
[i
];
200 "Failed to find '%s' registered on the message bus to "
201 "send JSON audit events to: %s\n",
205 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
209 * @brief send an audit message to a messaging event server.
211 * Send the message to a registered and listening event server.
212 * Note: Any errors are logged, and the message is not sent. This is to ensure
213 * that a poorly behaved event server does not impact Samba.
215 * As it is possible to lose messages, especially during server
216 * shut down, currently this function is primarily intended for use
217 * in integration tests.
219 * @param msg_ctx an imessaging_context, can be NULL in which case no message
221 * @param server_name the naname of the event server to send the message to.
222 * @param messag_type A message type defined in librpc/idl/messaging.idl
223 * @param message The message to send.
226 void audit_message_send(
227 struct imessaging_context
*msg_ctx
,
228 const char *server_name
,
229 uint32_t message_type
,
230 struct json_object
*message
)
232 struct server_id event_server
= {
237 const char *message_string
= NULL
;
238 DATA_BLOB message_blob
= data_blob_null
;
239 TALLOC_CTX
*ctx
= NULL
;
241 if (json_is_invalid(message
)) {
242 DBG_ERR("Invalid JSON object, unable to send\n");
245 if (msg_ctx
== NULL
) {
246 DBG_DEBUG("No messaging context\n");
250 ctx
= talloc_new(NULL
);
252 DBG_ERR("Out of memory creating temporary context\n");
256 /* Need to refetch the address each time as the destination server may
257 * have disconnected and reconnected in the interim, in which case
258 * messages may get lost
260 status
= get_event_server(msg_ctx
, server_name
, &event_server
);
261 if (!NT_STATUS_IS_OK(status
)) {
266 message_string
= json_to_string(ctx
, message
);
267 message_blob
= data_blob_string_const(message_string
);
268 status
= imessaging_send(
275 * If the server crashed, try to find it again
277 if (NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
278 status
= get_event_server(msg_ctx
, server_name
, &event_server
);
279 if (!NT_STATUS_IS_OK(status
)) {
293 * @brief Create a new struct json_object, wrapping a JSON Object.
295 * Create a new json object, the json_object wraps the underlying json
296 * implementations JSON Object representation.
298 * Free with a call to json_free_object, note that the jansson inplementation
299 * allocates memory with malloc and not talloc.
301 * @return a struct json_object, valid will be set to false if the object
302 * could not be created.
305 struct json_object
json_new_object(void) {
307 struct json_object object
= json_empty_object
;
309 object
.root
= json_object();
310 if (object
.root
== NULL
) {
311 object
.valid
= false;
312 DBG_ERR("Unable to create JSON object\n");
320 * @brief Create a new struct json_object wrapping a JSON Array.
322 * Create a new json object, the json_object wraps the underlying json
323 * implementations JSON Array representation.
325 * Free with a call to json_free_object, note that the jansson inplementation
326 * allocates memory with malloc and not talloc.
328 * @return a struct json_object, error will be set to true if the array
329 * could not be created.
332 struct json_object
json_new_array(void) {
334 struct json_object array
= json_empty_object
;
336 array
.root
= json_array();
337 if (array
.root
== NULL
) {
339 DBG_ERR("Unable to create JSON array\n");
348 * @brief free and invalidate a previously created JSON object.
350 * Release any resources owned by a json_object, and then mark the structure
351 * as invalid. It is safe to call this multiple times on an object.
354 void json_free(struct json_object
*object
)
356 if (object
->root
!= NULL
) {
357 json_decref(object
->root
);
360 object
->valid
= false;
364 * @brief is the current JSON object invalid?
366 * Check the state of the object to determine if it is invalid.
368 * @return is the object valid?
371 bool json_is_invalid(const struct json_object
*object
)
373 return !object
->valid
;
377 * @brief Add an integer value to a JSON object.
379 * Add an integer value named 'name' to the json object.
381 * @param object the JSON object to be updated.
382 * @param name the name of the value.
383 * @param value the value.
385 * @return 0 the operation was successful
386 * -1 the operation failed
389 int json_add_int(struct json_object
*object
, const char *name
, const int value
)
392 json_t
*integer
= NULL
;
394 if (json_is_invalid(object
)) {
395 DBG_ERR("Unable to add int [%s] value [%d], "
396 "target object is invalid\n",
402 integer
= json_integer(value
);
403 if (integer
== NULL
) {
404 DBG_ERR("Unable to create integer value [%s] value [%d]\n",
410 ret
= json_object_set_new(object
->root
, name
, integer
);
412 json_decref(integer
);
413 DBG_ERR("Unable to add int [%s] value [%d]\n", name
, value
);
419 * @brief Add a boolean value to a JSON object.
421 * Add a boolean value named 'name' to the json object.
423 * @param object the JSON object to be updated.
424 * @param name the name.
425 * @param value the value.
427 * @return 0 the operation was successful
428 * -1 the operation failed
431 int json_add_bool(struct json_object
*object
,
437 if (json_is_invalid(object
)) {
438 DBG_ERR("Unable to add boolean [%s] value [%d], "
439 "target object is invalid\n",
445 ret
= json_object_set_new(object
->root
, name
, json_boolean(value
));
447 DBG_ERR("Unable to add boolean [%s] value [%d]\n", name
, value
);
453 * @brief Add a string value to a JSON object.
455 * Add a string value named 'name' to the json object.
457 * @param object the JSON object to be updated.
458 * @param name the name.
459 * @param value the value.
461 * @return 0 the operation was successful
462 * -1 the operation failed
465 int json_add_string(struct json_object
*object
,
471 if (json_is_invalid(object
)) {
472 DBG_ERR("Unable to add string [%s], target object is invalid\n",
477 json_t
*string
= json_string(value
);
478 if (string
== NULL
) {
479 DBG_ERR("Unable to add string [%s], "
480 "could not create string object\n",
484 ret
= json_object_set_new(object
->root
, name
, string
);
487 DBG_ERR("Unable to add string [%s]\n", name
);
491 ret
= json_object_set_new(object
->root
, name
, json_null());
493 DBG_ERR("Unable to add null string [%s]\n", name
);
501 * @brief Assert that the current JSON object is an array.
503 * Check that the current object is a JSON array, and if not
504 * invalidate the object. We also log an error message as this indicates
505 * bug in the calling code.
507 * @param object the JSON object to be validated.
509 void json_assert_is_array(struct json_object
*array
) {
511 if (json_is_invalid(array
)) {
515 if (json_is_array(array
->root
) == false) {
516 DBG_ERR("JSON object is not an array\n");
517 array
->valid
= false;
523 * @brief Add a JSON object to a JSON object.
525 * Add a JSON object named 'name' to the json object.
527 * @param object the JSON object to be updated.
528 * @param name the name.
529 * @param value the value.
531 * @return 0 the operation was successful
532 * -1 the operation failed
535 int json_add_object(struct json_object
*object
,
537 struct json_object
*value
)
542 if (value
!= NULL
&& json_is_invalid(value
)) {
543 DBG_ERR("Invalid JSON object [%s] supplied\n", name
);
546 if (json_is_invalid(object
)) {
547 DBG_ERR("Unable to add object [%s], target object is invalid\n",
552 jv
= value
== NULL
? json_null() : value
->root
;
554 if (json_is_array(object
->root
)) {
555 ret
= json_array_append_new(object
->root
, jv
);
556 } else if (json_is_object(object
->root
)) {
557 ret
= json_object_set_new(object
->root
, name
, jv
);
559 DBG_ERR("Invalid JSON object type\n");
563 DBG_ERR("Unable to add object [%s]\n", name
);
569 * @brief Add a string to a JSON object, truncating if necessary.
572 * Add a string value named 'name' to the json object, the string will be
573 * truncated if it is more than len characters long. If len is 0 the value
574 * is encoded as a JSON null.
577 * @param object the JSON object to be updated.
578 * @param name the name.
579 * @param value the value.
580 * @param len the maximum number of characters to be copied.
582 * @return 0 the operation was successful
583 * -1 the operation failed
586 int json_add_stringn(struct json_object
*object
,
593 if (json_is_invalid(object
)) {
594 DBG_ERR("Unable to add string [%s], target object is invalid\n",
599 if (value
!= NULL
&& len
> 0) {
600 json_t
*string
= NULL
;
603 strncpy(buffer
, value
, len
);
606 string
= json_string(buffer
);
607 if (string
== NULL
) {
608 DBG_ERR("Unable to add string [%s], "
609 "could not create string object\n",
613 ret
= json_object_set_new(object
->root
, name
, string
);
616 DBG_ERR("Unable to add string [%s]\n", name
);
620 ret
= json_object_set_new(object
->root
, name
, json_null());
622 DBG_ERR("Unable to add null string [%s]\n", name
);
630 * @brief Add a version object to a JSON object
632 * Add a version object to the JSON object
633 * "version":{"major":1, "minor":0}
635 * The version tag is intended to aid the processing of the JSON messages
636 * The major version number should change when an attribute is:
639 * - its meaning changes
640 * - its contents change format
641 * The minor version should change whenever a new attribute is added and for
642 * minor bug fixes to an attributes content.
645 * @param object the JSON object to be updated.
646 * @param major the major version number
647 * @param minor the minor version number
649 * @return 0 the operation was successful
650 * -1 the operation failed
652 int json_add_version(struct json_object
*object
, int major
, int minor
)
655 struct json_object version
;
657 if (json_is_invalid(object
)) {
658 DBG_ERR("Unable to add version, target object is invalid\n");
662 version
= json_new_object();
663 if (json_is_invalid(&version
)) {
664 DBG_ERR("Unable to add version, failed to create object\n");
667 ret
= json_add_int(&version
, "major", major
);
672 ret
= json_add_int(&version
, "minor", minor
);
677 ret
= json_add_object(object
, "version", &version
);
686 * @brief add an ISO 8601 timestamp to the object.
688 * Add the current date and time as a timestamp in ISO 8601 format
691 * "timestamp":"2017-03-06T17:18:04.455081+1300"
694 * @param object the JSON object to be updated.
696 * @return 0 the operation was successful
697 * -1 the operation failed
699 int json_add_timestamp(struct json_object
*object
)
701 char buffer
[40]; /* formatted time less usec and timezone */
702 char timestamp
[65]; /* the formatted ISO 8601 time stamp */
703 char tz
[10]; /* formatted time zone */
704 struct tm
* tm_info
; /* current local time */
705 struct timeval tv
; /* current system time */
706 int r
; /* response code from gettimeofday */
707 int ret
; /* return code from json operations */
709 if (json_is_invalid(object
)) {
710 DBG_ERR("Unable to add time stamp, target object is invalid\n");
714 r
= gettimeofday(&tv
, NULL
);
716 DBG_ERR("Unable to get time of day: (%d) %s\n",
722 tm_info
= localtime(&tv
.tv_sec
);
723 if (tm_info
== NULL
) {
724 DBG_ERR("Unable to determine local time\n");
728 strftime(buffer
, sizeof(buffer
)-1, "%Y-%m-%dT%T", tm_info
);
729 strftime(tz
, sizeof(tz
)-1, "%z", tm_info
);
737 ret
= json_add_string(object
, "timestamp", timestamp
);
739 DBG_ERR("Unable to add time stamp to JSON object\n");
745 *@brief Add a tsocket_address to a JSON object
747 * Add the string representation of a Samba tsocket_address to the object.
749 * "localAddress":"ipv6::::0"
752 * @param object the JSON object to be updated.
753 * @param name the name.
754 * @param address the tsocket_address.
756 * @return 0 the operation was successful
757 * -1 the operation failed
760 int json_add_address(struct json_object
*object
,
762 const struct tsocket_address
*address
)
766 if (json_is_invalid(object
)) {
767 DBG_ERR("Unable to add address [%s], "
768 "target object is invalid\n",
773 if (address
== NULL
) {
774 ret
= json_object_set_new(object
->root
, name
, json_null());
776 DBG_ERR("Unable to add null address [%s]\n", name
);
780 TALLOC_CTX
*ctx
= talloc_new(NULL
);
784 DBG_ERR("Out of memory adding address [%s]\n", name
);
788 s
= tsocket_address_string(address
, ctx
);
790 DBG_ERR("Out of memory adding address [%s]\n", name
);
794 ret
= json_add_string(object
, name
, s
);
797 "Unable to add address [%s] value [%s]\n", name
, s
);
807 * @brief Add a formatted string representation of a sid to a json object.
809 * Add the string representation of a Samba sid to the object.
814 * @param object the JSON object to be updated.
815 * @param name the name.
818 * @return 0 the operation was successful
819 * -1 the operation failed
822 int json_add_sid(struct json_object
*object
,
824 const struct dom_sid
*sid
)
828 if (json_is_invalid(object
)) {
829 DBG_ERR("Unable to add SID [%s], "
830 "target object is invalid\n",
836 ret
= json_object_set_new(object
->root
, name
, json_null());
838 DBG_ERR("Unable to add null SID [%s]\n", name
);
842 struct dom_sid_buf sid_buf
;
844 ret
= json_add_string(
845 object
, name
, dom_sid_str_buf(sid
, &sid_buf
));
847 DBG_ERR("Unable to add SID [%s] value [%s]\n",
857 * @brief Add a formatted string representation of a guid to a json object.
859 * Add the string representation of a Samba GUID to the object.
861 * "guid":"1fb9f2ee-2a4d-4bf8-af8b-cb9d4529a9ab"
864 * @param object the JSON object to be updated.
865 * @param name the name.
866 * @param guid the guid.
868 * @return 0 the operation was successful
869 * -1 the operation failed
873 int json_add_guid(struct json_object
*object
,
875 const struct GUID
*guid
)
880 if (json_is_invalid(object
)) {
881 DBG_ERR("Unable to add GUID [%s], "
882 "target object is invalid\n",
888 ret
= json_object_set_new(object
->root
, name
, json_null());
890 DBG_ERR("Unable to add null GUID [%s]\n", name
);
895 struct GUID_txt_buf guid_buff
;
897 guid_str
= GUID_buf_string(guid
, &guid_buff
);
898 ret
= json_add_string(object
, name
, guid_str
);
900 DBG_ERR("Unable to guid GUID [%s] value [%s]\n",
910 * @brief Convert a JSON object into a string
912 * Convert the jsom object into a string suitable for printing on a log line,
913 * i.e. with no embedded line breaks.
915 * If the object is invalid it logs an error and returns NULL.
917 * @param mem_ctx the talloc memory context owning the returned string
918 * @param object the json object.
920 * @return A string representation of the object or NULL if the object
923 char *json_to_string(TALLOC_CTX
*mem_ctx
, const struct json_object
*object
)
926 char *json_string
= NULL
;
928 if (json_is_invalid(object
)) {
929 DBG_ERR("Invalid JSON object, unable to convert to string\n");
933 if (object
->root
== NULL
) {
938 * json_dumps uses malloc, so need to call free(json) to release
941 json
= json_dumps(object
->root
, 0);
943 DBG_ERR("Unable to convert JSON object to string\n");
947 json_string
= talloc_strdup(mem_ctx
, json
);
948 if (json_string
== NULL
) {
950 DBG_ERR("Unable to copy JSON object string to talloc string\n");
959 * @brief get a json array named "name" from the json object.
961 * Get the array attribute named name, creating it if it does not exist.
963 * @param object the json object.
964 * @param name the name of the array attribute
966 * @return The array object, will be created if it did not exist.
968 struct json_object
json_get_array(struct json_object
*object
, const char *name
)
971 struct json_object array
= json_empty_object
;
975 if (json_is_invalid(object
)) {
976 DBG_ERR("Invalid JSON object, unable to get array [%s]\n",
982 array
= json_new_array();
983 if (json_is_invalid(&array
)) {
984 DBG_ERR("Unable to create new array for [%s]\n", name
);
988 a
= json_object_get(object
->root
, name
);
993 ret
= json_array_extend(array
.root
, a
);
995 DBG_ERR("Unable to get array [%s]\n", name
);
1004 * @brief get a json object named "name" from the json object.
1006 * Get the object attribute named name, creating it if it does not exist.
1008 * @param object the json object.
1009 * @param name the name of the object attribute
1011 * @return The object, will be created if it did not exist.
1013 struct json_object
json_get_object(struct json_object
*object
, const char *name
)
1016 struct json_object o
= json_new_object();
1020 if (json_is_invalid(object
)) {
1021 DBG_ERR("Invalid JSON object, unable to get object [%s]\n",
1027 v
= json_object_get(object
->root
, name
);
1031 ret
= json_object_update(o
.root
, v
);
1033 DBG_ERR("Unable to get object [%s]\n", name
);