1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
|
/*
common routines for audit logging
Copyright (C) Andrew Bartlett <abartlet@samba.org> 2018
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Error handling:
*
*/
#include "includes.h"
#include "librpc/ndr/libndr.h"
#include "lib/tsocket/tsocket.h"
#include "libcli/security/dom_sid.h"
#include "libcli/security/security_token.h"
#include "lib/messaging/messaging.h"
#include "auth/common_auth.h"
#include "audit_logging.h"
#include "auth/authn_policy.h"
/*
* @brief Get a human readable timestamp.
*
* Returns the current time formatted as
* "Tue, 14 Mar 2017 08:38:42.209028 NZDT"
*
* The returned string is allocated by talloc in the supplied context.
* It is the callers responsibility to free it.
*
* @param mem_ctx talloc memory context that owns the returned string.
*
* @return a human readable time stamp, or NULL in the event of an error.
*
*/
char* audit_get_timestamp(TALLOC_CTX *frame)
{
char buffer[40]; /* formatted time less usec and timezone */
char tz[10]; /* formatted time zone */
struct tm* tm_info; /* current local time */
struct timeval tv; /* current system time */
int ret; /* response code */
char * ts; /* formatted time stamp */
ret = gettimeofday(&tv, NULL);
if (ret != 0) {
DBG_ERR("Unable to get time of day: (%d) %s\n",
errno,
strerror(errno));
return NULL;
}
tm_info = localtime(&tv.tv_sec);
if (tm_info == NULL) {
DBG_ERR("Unable to determine local time\n");
return NULL;
}
strftime(buffer, sizeof(buffer)-1, "%a, %d %b %Y %H:%M:%S", tm_info);
strftime(tz, sizeof(tz)-1, "%Z", tm_info);
ts = talloc_asprintf(frame, "%s.%06ld %s", buffer, (long)tv.tv_usec, tz);
if (ts == NULL) {
DBG_ERR("Out of memory formatting time stamp\n");
}
return ts;
}
/*
* @brief write an audit message to the audit logs.
*
* Write a human readable text audit message to the samba logs.
*
* @param prefix Text to be printed at the start of the log line
* @param message The content of the log line.
* @param debub_class The debug class to log the message with.
* @param debug_level The debug level to log the message with.
*/
void audit_log_human_text(const char* prefix,
const char* message,
int debug_class,
int debug_level)
{
DEBUGC(debug_class, debug_level, ("%s %s\n", prefix, message));
}
#ifdef HAVE_JANSSON
/*
* Constant for empty json object initialisation
*/
const struct json_object json_empty_object = {.valid = false, .root = NULL};
/*
* @brief write a json object to the samba audit logs.
*
* Write the json object to the audit logs as a formatted string
*
* @param message The content of the log line.
* @param debub_class The debug class to log the message with.
* @param debug_level The debug level to log the message with.
*/
void audit_log_json(struct json_object* message,
int debug_class,
int debug_level)
{
TALLOC_CTX *frame = NULL;
char *s = NULL;
if (json_is_invalid(message)) {
DBG_ERR("Invalid JSON object, unable to log\n");
return;
}
frame = talloc_stackframe();
s = json_to_string(frame, message);
if (s == NULL) {
DBG_ERR("json_to_string returned NULL, "
"JSON audit message could not written\n");
TALLOC_FREE(frame);
return;
}
/*
* This is very strange, but we call this routine to get a log
* output without the header. JSON logs all have timestamps
* so this only makes parsing harder.
*
* We push out the raw JSON blob without a prefix, consumers
* can find such lines by the leading {
*/
DEBUGADDC(debug_class, debug_level, ("%s\n", s));
TALLOC_FREE(frame);
}
/*
* @brief get a connection to the messaging event server.
*
* Get a connection to the messaging event server registered by server_name.
*
* @param msg_ctx a valid imessaging_context.
* @param server_name name of messaging event server to connect to.
* @param server_id The event server details to populate
*
* @return NTSTATUS
*/
static NTSTATUS get_event_server(
struct imessaging_context *msg_ctx,
const char *server_name,
struct server_id *event_server)
{
NTSTATUS status;
TALLOC_CTX *frame = talloc_stackframe();
unsigned num_servers, i;
struct server_id *servers;
status = irpc_servers_byname(
msg_ctx,
frame,
server_name,
&num_servers,
&servers);
if (!NT_STATUS_IS_OK(status)) {
DBG_DEBUG("Failed to find the target '%s' on the message bus "
"to send JSON audit events to: %s\n",
server_name,
nt_errstr(status));
TALLOC_FREE(frame);
return status;
}
/*
* Select the first server that is listening, because we get
* connection refused as NT_STATUS_OBJECT_NAME_NOT_FOUND
* without waiting
*/
for (i = 0; i < num_servers; i++) {
status = imessaging_send(
msg_ctx,
servers[i],
MSG_PING,
&data_blob_null);
if (NT_STATUS_IS_OK(status)) {
*event_server = servers[i];
TALLOC_FREE(frame);
return NT_STATUS_OK;
}
}
DBG_NOTICE(
"Failed to find '%s' registered on the message bus to "
"send JSON audit events to: %s\n",
server_name,
nt_errstr(status));
TALLOC_FREE(frame);
return NT_STATUS_OBJECT_NAME_NOT_FOUND;
}
/*
* @brief send an audit message to a messaging event server.
*
* Send the message to a registered and listening event server.
* Note: Any errors are logged, and the message is not sent. This is to ensure
* that a poorly behaved event server does not impact Samba.
*
* As it is possible to lose messages, especially during server
* shut down, currently this function is primarily intended for use
* in integration tests.
*
* @param msg_ctx an imessaging_context, can be NULL in which case no message
* will be sent.
* @param server_name the naname of the event server to send the message to.
* @param messag_type A message type defined in librpc/idl/messaging.idl
* @param message The message to send.
*
*/
void audit_message_send(
struct imessaging_context *msg_ctx,
const char *server_name,
uint32_t message_type,
struct json_object *message)
{
struct server_id event_server = {
.pid = 0,
};
NTSTATUS status;
const char *message_string = NULL;
DATA_BLOB message_blob = data_blob_null;
TALLOC_CTX *ctx = NULL;
if (json_is_invalid(message)) {
DBG_ERR("Invalid JSON object, unable to send\n");
return;
}
if (msg_ctx == NULL) {
DBG_DEBUG("No messaging context\n");
return;
}
ctx = talloc_new(NULL);
if (ctx == NULL) {
DBG_ERR("Out of memory creating temporary context\n");
return;
}
/* Need to refetch the address each time as the destination server may
* have disconnected and reconnected in the interim, in which case
* messages may get lost
*/
status = get_event_server(msg_ctx, server_name, &event_server);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(ctx);
return;
}
message_string = json_to_string(ctx, message);
message_blob = data_blob_string_const(message_string);
status = imessaging_send(
msg_ctx,
event_server,
message_type,
&message_blob);
/*
* If the server crashed, try to find it again
*/
if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
status = get_event_server(msg_ctx, server_name, &event_server);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(ctx);
return;
}
imessaging_send(
msg_ctx,
event_server,
message_type,
&message_blob);
}
TALLOC_FREE(ctx);
}
/*
* @brief Create a new struct json_object, wrapping a JSON Object.
*
* Create a new json object, the json_object wraps the underlying json
* implementations JSON Object representation.
*
* Free with a call to json_free_object, note that the jansson implementation
* allocates memory with malloc and not talloc.
*
* @return a struct json_object, valid will be set to false if the object
* could not be created.
*
*/
struct json_object json_new_object(void) {
struct json_object object = json_empty_object;
object.root = json_object();
if (object.root == NULL) {
object.valid = false;
DBG_ERR("Unable to create JSON object\n");
return object;
}
object.valid = true;
return object;
}
/*
* @brief Create a new struct json_object wrapping a JSON Array.
*
* Create a new json object, the json_object wraps the underlying json
* implementations JSON Array representation.
*
* Free with a call to json_free_object, note that the jansson implementation
* allocates memory with malloc and not talloc.
*
* @return a struct json_object, error will be set to true if the array
* could not be created.
*
*/
struct json_object json_new_array(void) {
struct json_object array = json_empty_object;
array.root = json_array();
if (array.root == NULL) {
array.valid = false;
DBG_ERR("Unable to create JSON array\n");
return array;
}
array.valid = true;
return array;
}
/*
* @brief free and invalidate a previously created JSON object.
*
* Release any resources owned by a json_object, and then mark the structure
* as invalid. It is safe to call this multiple times on an object.
*
*/
void json_free(struct json_object *object)
{
if (object->root != NULL) {
json_decref(object->root);
}
object->root = NULL;
object->valid = false;
}
/*
* @brief is the current JSON object invalid?
*
* Check the state of the object to determine if it is invalid.
*
* @return is the object valid?
*
*/
bool json_is_invalid(const struct json_object *object)
{
return !object->valid;
}
/*
* @brief Add an integer value to a JSON object.
*
* Add an integer value named 'name' to the json object.
*
* @param object the JSON object to be updated.
* @param name the name of the value.
* @param value the value.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_int(struct json_object *object, const char *name, const json_int_t value)
{
int ret = 0;
json_t *integer = NULL;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add int [%s] value [%jd], "
"target object is invalid\n",
name,
(intmax_t)value);
return JSON_ERROR;
}
integer = json_integer(value);
if (integer == NULL) {
DBG_ERR("Unable to create integer value [%s] value [%jd]\n",
name,
(intmax_t)value);
return JSON_ERROR;
}
ret = json_object_set_new(object->root, name, integer);
if (ret != 0) {
json_decref(integer);
DBG_ERR("Unable to add int [%s] value [%jd]\n",
name,
(intmax_t)value);
}
return ret;
}
/*
* @brief Add a boolean value to a JSON object.
*
* Add a boolean value named 'name' to the json object.
*
* @param object the JSON object to be updated.
* @param name the name.
* @param value the value.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_bool(struct json_object *object,
const char *name,
const bool value)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add boolean [%s] value [%d], "
"target object is invalid\n",
name,
value);
return JSON_ERROR;
}
ret = json_object_set_new(object->root, name, json_boolean(value));
if (ret != 0) {
DBG_ERR("Unable to add boolean [%s] value [%d]\n", name, value);
}
return ret;
}
/*
* @brief Add an optional boolean value to a JSON object.
*
* Add an optional boolean value named 'name' to the json object.
*
* @param object the JSON object to be updated.
* @param name the name.
* @param value the value.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_optional_bool(struct json_object *object,
const char *name,
const bool *value)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add boolean [%s] value [%d], "
"target object is invalid\n",
name,
*value);
return JSON_ERROR;
}
if (value != NULL) {
ret = json_object_set_new(object->root, name, json_boolean(*value));
if (ret != 0) {
DBG_ERR("Unable to add boolean [%s] value [%d]\n", name, *value);
return ret;
}
} else {
ret = json_object_set_new(object->root, name, json_null());
if (ret != 0) {
DBG_ERR("Unable to add null boolean [%s]\n", name);
return ret;
}
}
return ret;
}
/*
* @brief Add a string value to a JSON object.
*
* Add a string value named 'name' to the json object.
*
* @param object the JSON object to be updated.
* @param name the name.
* @param value the value.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_string(struct json_object *object,
const char *name,
const char *value)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add string [%s], target object is invalid\n",
name);
return JSON_ERROR;
}
if (value) {
json_t *string = json_string(value);
if (string == NULL) {
DBG_ERR("Unable to add string [%s], "
"could not create string object\n",
name);
return JSON_ERROR;
}
ret = json_object_set_new(object->root, name, string);
if (ret != 0) {
json_decref(string);
DBG_ERR("Unable to add string [%s]\n", name);
return ret;
}
} else {
ret = json_object_set_new(object->root, name, json_null());
if (ret != 0) {
DBG_ERR("Unable to add null string [%s]\n", name);
return ret;
}
}
return ret;
}
/*
* @brief Assert that the current JSON object is an array.
*
* Check that the current object is a JSON array, and if not
* invalidate the object. We also log an error message as this indicates
* bug in the calling code.
*
* @param object the JSON object to be validated.
*/
void json_assert_is_array(struct json_object *array) {
if (json_is_invalid(array)) {
return;
}
if (json_is_array(array->root) == false) {
DBG_ERR("JSON object is not an array\n");
array->valid = false;
return;
}
}
/*
* @brief Add a JSON object to a JSON object.
*
* Add a JSON object named 'name' to the json object.
*
* @param object the JSON object to be updated.
* @param name the name.
* @param value the value.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_object(struct json_object *object,
const char *name,
struct json_object *value)
{
int ret = 0;
json_t *jv = NULL;
if (value != NULL && json_is_invalid(value)) {
DBG_ERR("Invalid JSON object [%s] supplied\n", name);
return JSON_ERROR;
}
if (json_is_invalid(object)) {
DBG_ERR("Unable to add object [%s], target object is invalid\n",
name);
return JSON_ERROR;
}
jv = value == NULL ? json_null() : value->root;
if (json_is_array(object->root)) {
ret = json_array_append_new(object->root, jv);
} else if (json_is_object(object->root)) {
ret = json_object_set_new(object->root, name, jv);
} else {
DBG_ERR("Invalid JSON object type\n");
ret = JSON_ERROR;
}
if (ret != 0) {
DBG_ERR("Unable to add object [%s]\n", name);
}
return ret;
}
/*
* @brief Add a string to a JSON object, truncating if necessary.
*
*
* Add a string value named 'name' to the json object, the string will be
* truncated if it is more than len characters long. If len is 0 the value
* is encoded as a JSON null.
*
*
* @param object the JSON object to be updated.
* @param name the name.
* @param value the value.
* @param len the maximum number of characters to be copied.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_stringn(struct json_object *object,
const char *name,
const char *value,
const size_t len)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add string [%s], target object is invalid\n",
name);
return JSON_ERROR;
}
if (value != NULL && len > 0) {
json_t *string = json_stringn(value, len);
if (string == NULL) {
DBG_ERR("Unable to add string [%s], "
"could not create string object\n",
name);
return JSON_ERROR;
}
ret = json_object_set_new(object->root, name, string);
if (ret != 0) {
json_decref(string);
DBG_ERR("Unable to add string [%s]\n", name);
return ret;
}
} else {
ret = json_object_set_new(object->root, name, json_null());
if (ret != 0) {
DBG_ERR("Unable to add null string [%s]\n", name);
return ret;
}
}
return ret;
}
/*
* @brief Add a version object to a JSON object
*
* Add a version object to the JSON object
* "version":{"major":1, "minor":0}
*
* The version tag is intended to aid the processing of the JSON messages
* The major version number should change when an attribute is:
* - renamed
* - removed
* - its meaning changes
* - its contents change format
* The minor version should change whenever a new attribute is added and for
* minor bug fixes to an attributes content.
*
*
* @param object the JSON object to be updated.
* @param major the major version number
* @param minor the minor version number
*
* @return 0 the operation was successful
* -1 the operation failed
*/
int json_add_version(struct json_object *object, int major, int minor)
{
int ret = 0;
struct json_object version;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add version, target object is invalid\n");
return JSON_ERROR;
}
version = json_new_object();
if (json_is_invalid(&version)) {
DBG_ERR("Unable to add version, failed to create object\n");
return JSON_ERROR;
}
ret = json_add_int(&version, "major", major);
if (ret != 0) {
json_free(&version);
return ret;
}
ret = json_add_int(&version, "minor", minor);
if (ret != 0) {
json_free(&version);
return ret;
}
ret = json_add_object(object, "version", &version);
if (ret != 0) {
json_free(&version);
return ret;
}
return ret;
}
/*
* @brief add an ISO 8601 timestamp to the object.
*
* Add a date and time as a timestamp in ISO 8601 format to a JSON object
*
* "time":"2017-03-06T17:18:04.455081+1300"
*
*
* @param object the JSON object to be updated.
* @param name the name.
* @param time the value to set.
*
* @return 0 the operation was successful
* -1 the operation failed
*/
int json_add_time(struct json_object *object, const char *name, const struct timeval tv)
{
char buffer[40]; /* formatted time less usec and timezone */
char timestamp[65]; /* the formatted ISO 8601 time stamp */
char tz[10]; /* formatted time zone */
struct tm* tm_info; /* current local time */
int ret; /* return code from json operations */
if (json_is_invalid(object)) {
DBG_ERR("Unable to add time, target object is invalid\n");
return JSON_ERROR;
}
tm_info = localtime(&tv.tv_sec);
if (tm_info == NULL) {
DBG_ERR("Unable to determine local time\n");
return JSON_ERROR;
}
strftime(buffer, sizeof(buffer)-1, "%Y-%m-%dT%T", tm_info);
strftime(tz, sizeof(tz)-1, "%z", tm_info);
snprintf(
timestamp,
sizeof(timestamp),
"%s.%06ld%s",
buffer,
tv.tv_usec,
tz);
ret = json_add_string(object, name, timestamp);
if (ret != 0) {
DBG_ERR("Unable to add time to JSON object\n");
}
return ret;
}
/*
* @brief add an ISO 8601 timestamp to the object.
*
* Add the current date and time as a timestamp in ISO 8601 format
* to a JSON object
*
* "timestamp":"2017-03-06T17:18:04.455081+1300"
*
*
* @param object the JSON object to be updated.
*
* @return 0 the operation was successful
* -1 the operation failed
*/
int json_add_timestamp(struct json_object *object)
{
struct timeval tv; /* current system time */
int r; /* response code from gettimeofday */
if (json_is_invalid(object)) {
DBG_ERR("Unable to add time stamp, target object is invalid\n");
return JSON_ERROR;
}
r = gettimeofday(&tv, NULL);
if (r) {
DBG_ERR("Unable to get time of day: (%d) %s\n",
errno,
strerror(errno));
return JSON_ERROR;
}
return json_add_time(object, "timestamp", tv);
}
/*
*@brief Add a tsocket_address to a JSON object
*
* Add the string representation of a Samba tsocket_address to the object.
*
* "localAddress":"ipv6::::0"
*
*
* @param object the JSON object to be updated.
* @param name the name.
* @param address the tsocket_address.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_address(struct json_object *object,
const char *name,
const struct tsocket_address *address)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add address [%s], "
"target object is invalid\n",
name);
return JSON_ERROR;
}
if (address == NULL) {
ret = json_object_set_new(object->root, name, json_null());
if (ret != 0) {
DBG_ERR("Unable to add null address [%s]\n", name);
return JSON_ERROR;
}
} else {
TALLOC_CTX *ctx = talloc_new(NULL);
char *s = NULL;
if (ctx == NULL) {
DBG_ERR("Out of memory adding address [%s]\n", name);
return JSON_ERROR;
}
s = tsocket_address_string(address, ctx);
if (s == NULL) {
DBG_ERR("Out of memory adding address [%s]\n", name);
TALLOC_FREE(ctx);
return JSON_ERROR;
}
ret = json_add_string(object, name, s);
if (ret != 0) {
DBG_ERR(
"Unable to add address [%s] value [%s]\n", name, s);
TALLOC_FREE(ctx);
return JSON_ERROR;
}
TALLOC_FREE(ctx);
}
return ret;
}
/*
* @brief Add a formatted string representation of a sid to a json object.
*
* Add the string representation of a Samba sid to the object.
*
* "sid":"S-1-5-18"
*
*
* @param object the JSON object to be updated.
* @param name the name.
* @param sid the sid
*
* @return 0 the operation was successful
* -1 the operation failed
*
*/
int json_add_sid(struct json_object *object,
const char *name,
const struct dom_sid *sid)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add SID [%s], "
"target object is invalid\n",
name);
return JSON_ERROR;
}
if (sid == NULL) {
ret = json_object_set_new(object->root, name, json_null());
if (ret != 0) {
DBG_ERR("Unable to add null SID [%s]\n", name);
return ret;
}
} else {
struct dom_sid_buf sid_buf;
ret = json_add_string(
object, name, dom_sid_str_buf(sid, &sid_buf));
if (ret != 0) {
DBG_ERR("Unable to add SID [%s] value [%s]\n",
name,
sid_buf.buf);
return ret;
}
}
return ret;
}
/*
* @brief Add a formatted string representation of a guid to a json object.
*
* Add the string representation of a Samba GUID to the object.
*
* "guid":"1fb9f2ee-2a4d-4bf8-af8b-cb9d4529a9ab"
*
*
* @param object the JSON object to be updated.
* @param name the name.
* @param guid the guid.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*
*/
int json_add_guid(struct json_object *object,
const char *name,
const struct GUID *guid)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to add GUID [%s], "
"target object is invalid\n",
name);
return JSON_ERROR;
}
if (guid == NULL) {
ret = json_object_set_new(object->root, name, json_null());
if (ret != 0) {
DBG_ERR("Unable to add null GUID [%s]\n", name);
return ret;
}
} else {
char *guid_str;
struct GUID_txt_buf guid_buff;
guid_str = GUID_buf_string(guid, &guid_buff);
ret = json_add_string(object, name, guid_str);
if (ret != 0) {
DBG_ERR("Unable to add GUID [%s] value [%s]\n",
name,
guid_str);
return ret;
}
}
return ret;
}
/*
* @brief Add a hex-formatted string representation of a 32-bit integer to a
* json object.
*
* Add a hex-formatted string representation of a 32-bit flags integer to the
* object.
*
* "accountFlags":"0x12345678"
*
*
* @param object the JSON object to be updated.
* @param name the name.
* @param flags the flags.
*
* @return 0 the operation was successful
* -1 the operation failed
*
*
*/
int json_add_flags32(struct json_object *object,
const char *name,
const uint32_t flags)
{
int ret = 0;
char buf[sizeof("0x12345678")];
if (json_is_invalid(object)) {
DBG_ERR("Unable to add flags [%s], "
"target object is invalid\n",
name);
return JSON_ERROR;
}
ret = snprintf(buf, sizeof (buf), "0x%08X", flags);
if (ret != sizeof (buf) - 1) {
DBG_ERR("Unable to format flags [%s] value [0x%08X]\n",
name,
flags);
return JSON_ERROR;
}
ret = json_add_string(object, name, buf);
if (ret != 0) {
DBG_ERR("Unable to add flags [%s] value [%s]\n",
name,
buf);
}
return ret;
}
/*
* @brief Replaces the object for a given key with a given json object.
*
* If key already exists, the value will be replaced. Otherwise the given
* value will be added under the given key.
*
* @param object the JSON object to be updated.
* @param key the key which will be updated.
* @param new_obj the new value object to be inserted.
*
* @return 0 the operation was successful
* -1 the operation failed (e.j. if one of the parameters is invalid)
*/
int json_update_object(struct json_object *object,
const char *key,
struct json_object *new_obj)
{
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Unable to update key [%s], "
"target object is invalid\n",
key);
return JSON_ERROR;
}
if (json_is_invalid(new_obj)) {
DBG_ERR("Unable to update key [%s], "
"new object is invalid\n",
key);
return JSON_ERROR;
}
if (key == NULL) {
DBG_ERR("Unable to add null String as key\n");
return JSON_ERROR;
}
ret = json_object_set(object->root, key, new_obj->root);
if (ret != 0) {
DBG_ERR("Unable to update object\n");
return ret;
}
return ret;
}
/*
* @brief Convert a JSON object into a string
*
* Convert the json object into a string suitable for printing on a log line,
* i.e. with no embedded line breaks.
*
* If the object is invalid it logs an error and returns NULL.
*
* @param mem_ctx the talloc memory context owning the returned string
* @param object the json object.
*
* @return A string representation of the object or NULL if the object
* is invalid.
*/
char *json_to_string(TALLOC_CTX *mem_ctx, const struct json_object *object)
{
char *json = NULL;
char *json_string = NULL;
if (json_is_invalid(object)) {
DBG_ERR("Invalid JSON object, unable to convert to string\n");
return NULL;
}
if (object->root == NULL) {
return NULL;
}
/*
* json_dumps uses malloc, so need to call free(json) to release
* the memory
*/
json = json_dumps(object->root, 0);
if (json == NULL) {
DBG_ERR("Unable to convert JSON object to string\n");
return NULL;
}
json_string = talloc_strdup(mem_ctx, json);
if (json_string == NULL) {
free(json);
DBG_ERR("Unable to copy JSON object string to talloc string\n");
return NULL;
}
free(json);
return json_string;
}
/*
* @brief get a json array named "name" from the json object.
*
* Get the array attribute named name, creating it if it does not exist.
*
* @param object the json object.
* @param name the name of the array attribute
*
* @return The array object, will be created if it did not exist.
*/
struct json_object json_get_array(struct json_object *object, const char *name)
{
struct json_object array = json_empty_object;
json_t *a = NULL;
int ret = 0;
if (json_is_invalid(object)) {
DBG_ERR("Invalid JSON object, unable to get array [%s]\n",
name);
json_free(&array);
return array;
}
array = json_new_array();
if (json_is_invalid(&array)) {
DBG_ERR("Unable to create new array for [%s]\n", name);
return array;
}
a = json_object_get(object->root, name);
if (a == NULL) {
return array;
}
ret = json_array_extend(array.root, a);
if (ret != 0) {
DBG_ERR("Unable to get array [%s]\n", name);
json_free(&array);
return array;
}
return array;
}
/*
* @brief get a json object named "name" from the json object.
*
* Get the object attribute named name, creating it if it does not exist.
*
* @param object the json object.
* @param name the name of the object attribute
*
* @return The object, will be created if it did not exist.
*/
struct json_object json_get_object(struct json_object *object, const char *name)
{
struct json_object o = json_new_object();
json_t *v = NULL;
int ret = 0;
if (json_is_invalid(&o)) {
DBG_ERR("Unable to get object [%s]\n", name);
json_free(&o);
return o;
}
if (json_is_invalid(object)) {
DBG_ERR("Invalid JSON object, unable to get object [%s]\n",
name);
json_free(&o);
return o;
}
v = json_object_get(object->root, name);
if (v == NULL) {
return o;
}
ret = json_object_update(o.root, v);
if (ret != 0) {
DBG_ERR("Unable to get object [%s]\n", name);
json_free(&o);
return o;
}
return o;
}
/*
* @brief Return the JSON null object.
*
* @return the JSON null object.
*/
_WARN_UNUSED_RESULT_ struct json_object json_null_object(void)
{
struct json_object object = json_empty_object;
object.root = json_null();
if (object.root != NULL) {
object.valid = true;
}
return object;
}
/*
* @brief Create a JSON object from a structure containing audit information.
*
* @param audit_info the audit information from which to create a JSON object.
*
* @return the JSON object (which may be valid or not)
*
*
*/
struct json_object json_from_audit_info(const struct authn_audit_info *audit_info)
{
struct json_object object = json_new_object();
enum auth_event_id_type auth_event_id;
const struct auth_user_info_dc *client_info = NULL;
const char *policy_name = NULL;
const char *silo_name = NULL;
const bool *policy_enforced = NULL;
NTSTATUS policy_status;
struct authn_int64_optional tgt_lifetime_mins;
const char *location = NULL;
const char *audit_event = NULL;
const char *audit_reason = NULL;
int rc = 0;
if (json_is_invalid(&object)) {
goto failure;
}
auth_event_id = authn_audit_info_event_id(audit_info);
rc = json_add_int(&object, "eventId", auth_event_id);
if (rc != 0) {
goto failure;
}
policy_name = authn_audit_info_policy_name(audit_info);
rc = json_add_string(&object, "policyName", policy_name);
if (rc != 0) {
goto failure;
}
silo_name = authn_audit_info_silo_name(audit_info);
rc = json_add_string(&object, "siloName", silo_name);
if (rc != 0) {
goto failure;
}
policy_enforced = authn_audit_info_policy_enforced(audit_info);
rc = json_add_optional_bool(&object, "policyEnforced", policy_enforced);
if (rc != 0) {
goto failure;
}
policy_status = authn_audit_info_policy_status(audit_info);
rc = json_add_string(&object, "status", nt_errstr(policy_status));
if (rc != 0) {
goto failure;
}
tgt_lifetime_mins = authn_audit_info_policy_tgt_lifetime_mins(audit_info);
if (tgt_lifetime_mins.is_present) {
rc = json_add_int(&object, "tgtLifetime", tgt_lifetime_mins.val);
if (rc != 0) {
goto failure;
}
}
location = authn_audit_info_location(audit_info);
rc = json_add_string(&object, "location", location);
if (rc != 0) {
goto failure;
}
audit_event = authn_audit_info_event(audit_info);
rc = json_add_string(&object, "auditEvent", audit_event);
if (rc != 0) {
goto failure;
}
audit_reason = authn_audit_info_reason(audit_info);
rc = json_add_string(&object, "reason", audit_reason);
if (rc != 0) {
goto failure;
}
client_info = authn_audit_info_client_info(audit_info);
if (client_info != NULL) {
const struct auth_user_info *client_user_info = NULL;
client_user_info = client_info->info;
if (client_user_info != NULL) {
rc = json_add_string(&object, "checkedDomain", client_user_info->domain_name);
if (rc != 0) {
goto failure;
}
rc = json_add_string(&object, "checkedAccount", client_user_info->account_name);
if (rc != 0) {
goto failure;
}
rc = json_add_string(&object, "checkedLogonServer", client_user_info->logon_server);
if (rc != 0) {
goto failure;
}
rc = json_add_flags32(&object, "checkedAccountFlags", client_user_info->acct_flags);
if (rc != 0) {
goto failure;
}
}
if (client_info->num_sids) {
const struct dom_sid *policy_checked_sid = NULL;
policy_checked_sid = &client_info->sids[PRIMARY_USER_SID_INDEX].sid;
rc = json_add_sid(&object, "checkedSid", policy_checked_sid);
if (rc != 0) {
goto failure;
}
}
}
return object;
failure:
json_free(&object);
return object;
}
#endif
|