Loading...
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 | /* * Copyright (c) 2015 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef __os_log_h #define __os_log_h #include <os/object.h> #include <stdint.h> #include <stdbool.h> #ifndef __has_attribute #define __has_attribute(x) 0 #endif #ifndef __has_builtin #define __has_builtin(x) 0 #endif #if __has_attribute(not_tail_called) #define OS_LOG_NOTAILCALL __attribute__((not_tail_called)) #define OS_LOG_NOTAILCALL_MARKER #else #define OS_LOG_NOTAILCALL #define OS_LOG_NOTAILCALL_MARKER __asm__("") #endif __BEGIN_DECLS extern void *__dso_handle; #ifdef XNU_KERNEL_PRIVATE extern bool startup_serial_logging_active; extern uint64_t startup_serial_num_procs; #endif /* XNU_KERNEL_PRIVATE */ OS_ALWAYS_INLINE static inline void _os_log_verify_format_str(__unused const char *msg, ...) __attribute__((format(os_log, 1, 2))); OS_ALWAYS_INLINE static inline void _os_log_verify_format_str(__unused const char *msg, ...) { /* placeholder */ } #if OS_OBJECT_USE_OBJC OS_OBJECT_DECL(os_log); #else typedef struct os_log_s *os_log_t; #endif /* OS_OBJECT_USE_OBJC */ /*! * @const OS_LOG_DISABLED * * @discussion * Use this to disable a specific log message. */ #define OS_LOG_DISABLED NULL /*! * @const OS_LOG_DEFAULT * * @discussion * Use this to log a message in accordance with current system settings. */ #define OS_LOG_DEFAULT OS_OBJECT_GLOBAL_OBJECT(os_log_t, _os_log_default) __OSX_AVAILABLE_STARTING(__MAC_10_12,__IPHONE_10_0) OS_EXPORT struct os_log_s _os_log_default; /*! * @enum os_log_type_t * * @discussion * Supported log message types. * * @constant OS_LOG_TYPE_DEFAULT * Equivalent type for "os_log()" messages, i.e., default messages that are always * captured to memory or disk. * * @constant OS_LOG_TYPE_INFO * Equivalent type for "os_log_info()" messages, i.e., Additional informational messages. * * @constant OS_LOG_TYPE_DEBUG * Equivalent type for "os_log_debug()" messages, i.e., Debug messages. * * @constant OS_LOG_TYPE_ERROR * Equivalent type for "os_log_error()" messages, i.e., local process error messages. * * @constant OS_LOG_TYPE_FAULT * Equivalent type for "os_log_fault()" messages, i.e., a system error that involves * potentially more than one process, usually used by daemons and services. */ OS_ENUM(os_log_type, uint8_t, OS_LOG_TYPE_DEFAULT = 0x00, OS_LOG_TYPE_INFO = 0x01, OS_LOG_TYPE_DEBUG = 0x02, OS_LOG_TYPE_ERROR = 0x10, OS_LOG_TYPE_FAULT = 0x11); /*! * @function os_log_create * * @abstract * Creates a log object to be used with other log related functions. * * @discussion * Creates a log object to be used with other log related functions. The * log object serves two purposes: (1) tag related messages by subsystem * and category name for easy filtering, and (2) control logging system * behavior for messages. * * A log object may customize logging system behavior for its messages by * adding a configuration file in /Library/LogPreferences. Most options * accept 3 values: "Default", "Yes" or "No" as strings, where "Default" * signifies follow system behavior for the level of messages. * * For log: * * os_log_create("com.company.mysubsystem", "connections"); * * System-provided preferences are located in /System/Library/LogPreferences/<subsystem>.plist * * <dict> * * <!-- Default options applied to message types in each category, which can be overriden. --> * <key>DEFAULT-OPTIONS</key> * <dict> * <key>Enabled</key> <!-- Enabled state follows system defaults --> * <string>Default</string> * <key>Persist</key> <!-- Do not persist to disk, use memory-only buffer if enabled --> * <string>No</string> * <key>TTL</key> <!-- Follow system default behavior if persistence is enabled --> * <string>Default</string> <!-- Can specify in days with "d" or hours "h" (e.g., "4h" = 4 hours) --> * </dict> * * <!-- category named “connections” --> * <key>connections</key> * <dict> * * <!-- Options that control "os_log()" behavior. The "Enabled" option is ignored. --> * <key>Default</key> * <dict> * <key>Persist</key> <!-- Always persist to disk --> * <string>Yes</string> * <key>TTL</key> <!-- Store default messages for maximum 4 days --> * <integer>4d</integer> * </dict> * * <!-- Subdictionary of options that control "os_log_info()" behavior --> * <key>Info</key> * <dict> * <key>Persist</key> <!-- If enabled persist to disk --> * <string>Yes</string> * <key>TTL</key> <!-- Store Info messages for 2 days --> * <string>2d</string> * </dict> * * <!-- Subdictionary of options that control "os_log_debug()" behavior --> * <key>Debug</key> * <dict> * <key>Enabled</key> <!-- Not enabled, must be enabled specifically --> * <string>No</string> * </dict> * </dict> * </dict> * * All other preferences and system-overrides are stored in /Library/LogPreferences/. * * @param subsystem * The identifier of the given subsystem should be in reverse DNS form * (i.e., com.company.mysubsystem). This string must be a constant string, * not dynamically generated. * * @param category * The category within the given subsystem that specifies the settings for * the log object. This string must be a constant string, not dynamically * generated. * * @result * Returns an os_log_t value to be passed to other os_log API calls. This * should be called once at log initialization and rely on system to detect * changes to settings. This object should be released when no longer used * via os_release or -[release] method. * * A value will always be returned to allow for dynamic enablement. */ __OSX_AVAILABLE_STARTING(__MAC_10_12,__IPHONE_10_0) OS_EXPORT OS_NOTHROW OS_WARN_RESULT OS_OBJECT_RETURNS_RETAINED os_log_t os_log_create(const char *subsystem, const char *category); /*! * @function os_log_info_enabled * * @abstract * Returns if development log messages are enabled for a particular log object. * * @discussion * Returns if development log messages are enabled for a particular log object. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @result * Returns ‘true’ if debug log messages are enabled. */ __WATCHOS_AVAILABLE(3.0) __OSX_AVAILABLE(10.12) __IOS_AVAILABLE(10.0) __TVOS_AVAILABLE(10.0) OS_EXPORT OS_NOTHROW OS_WARN_RESULT bool os_log_info_enabled(os_log_t log); /*! * @function os_log_debug_enabled * * @abstract * Returns if debug log messages are enabled for a particular log object. * * @discussion * Returns if debug log messages are enabled for a particular log object. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @result * Returns ‘true’ if debug log messages are enabled. */ __WATCHOS_AVAILABLE(3.0) __OSX_AVAILABLE(10.12) __IOS_AVAILABLE(10.0) __TVOS_AVAILABLE(10.0) OS_EXPORT OS_NOTHROW OS_WARN_RESULT bool os_log_debug_enabled(os_log_t log); /*! * @function os_log * * @abstract * Insert a log message into the Unified Logging and Tracing system. * * @discussion * Insert a log message into the Unified Logging and Tracing system in * accordance with the preferences specified by the provided log object. * These messages cannot be disabled and therefore always captured either * to memory or disk. * * When an os_activity_id_t is present, the log message will also be scoped by * that identifier. Activities provide granular filtering of log messages * across threads and processes. * * There is a physical cap of 256 bytes per entry for dynamic content, * i.e., %s and %@, that can be written to the persistence store. As such, * all content exceeding the limit will be truncated before written to disk. * Live streams will continue to show the full content. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log(log, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_internal(&__dso_handle, log, OS_LOG_TYPE_DEFAULT, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) /*! * @function os_log_info * * @abstract * Insert a development log message into the Unified Logging and Tracing system. * * @discussion * Insert a log message into the Unified Logging and Tracing system in * accordance with the preferences specified by the provided log object. * * When an os_activity_id_t is present, the log message will also be scoped by * that identifier. Activities provide granular filtering of log messages * across threads and processes. * * There is a physical cap of 256 bytes per entry for dynamic content, * i.e., %s and %@, that can be written to the persistence store. As such, * all content exceeding the limit will be truncated before written to disk. * Live streams will continue to show the full content. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log_info(log, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_internal(&__dso_handle, log, OS_LOG_TYPE_INFO, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) /*! * @function os_log_debug * * @abstract * Insert a debug log message into the Unified Logging and Tracing system. * * @discussion * Insert a debug log message into the Unified Logging and Tracing system in * accordance with the preferences specified by the provided log object. * * When an os_activity_id_t is present, the log message will also be scoped by * that identifier. Activities provide granular filtering of log messages * across threads and processes. * * There is a physical cap of 256 bytes per entry for dynamic content, * i.e., %s and %@, that can be written to the persistence store. As such, * all content exceeding the limit will be truncated before written to disk. * Live streams will continue to show the full content. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log_debug(log, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_internal(&__dso_handle, log, OS_LOG_TYPE_DEBUG, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) /*! * @function os_log_error * * @abstract * Insert an error log message into the Unified Logging and Tracing system. * * @discussion * Insert an error log message into the Unified Logging and Tracing system. * * When an os_activity_id_t is present, the log message will also be scoped by * that identifier. Activities provide granular filtering of log messages * across threads and processes. * * There is a physical cap of 256 bytes per entry for dynamic content, * i.e., %s and %@, that can be written to the persistence store. As such, * all content exceeding the limit will be truncated before written to disk. * Live streams will continue to show the full content. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log_error(log, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_internal(&__dso_handle, log, OS_LOG_TYPE_ERROR, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) /*! * @function os_log_fault * * @abstract * Insert a fault log message into the Unified Logging and Tracing system. * * @discussion * Log a fault message issue into the Unified Logging and Tracing system * signifying a multi-process (i.e., system error) related issue, either * due to interaction via IPC or some other. Faults will gather information * from the entire process chain and record it for later inspection. * * When an os_activity_id_t is present, the log message will also be scoped by * that identifier. Activities provide granular filtering of log messages * across threads and processes. * * There is a physical cap of 256 bytes per entry for dynamic content, * i.e., %s and %@, that can be written to the persistence store. As such, * all content exceeding the limit will be truncated before written to disk. * Live streams will continue to show the full content. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log_fault(log, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_internal(&__dso_handle, log, OS_LOG_TYPE_FAULT, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) /*! * @function os_log_with_type * * @abstract * Log a message using a specific type. * * @discussion * Will log a message with the provided os_log_type_t. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param type * Pass a valid type from os_log_type_t. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log_with_type(log, type, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_internal(&__dso_handle, log, type, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) /*! * @function os_log_sensitive_debug * * @abstract * Insert a debug log message containing sensitive content (i.e., personal * identifying information). * * @discussion * Insert a debug log message containing sensitive content (i.e., personal * identifying information) in accordance with the preferences specified by * the provided log object. * * All strings are considered potentially sensitive, though this call * specifically signifies the message as containing sensitive content. * The message will be stored separately from other messages. * * When an os_activity_id_t is present, the log message will also be scoped by * that identifier. Activities provide granular filtering of log messages * across threads and processes. * * There is a physical cap of 256 bytes per entry for dynamic content, * i.e., %s and %@, that can be written to the persistence store. As such, * all content exceeding the limit will be truncated before written to disk. * Live streams will continue to show the full content. * * @param log * Pass OS_LOG_DEFAULT or a log object previously created with os_log_create. * * @param format * A format string to generate a human-readable log message when the log * line is decoded. This string must be a constant string, not dynamically * generated. Supports all standard printf types and %@ (objects). */ #define os_log_sensitive_debug(log, format, ...) __extension__({ \ _Static_assert(__builtin_constant_p(format), "format string must be constant"); \ __attribute__((section("__TEXT,__os_log_sens"))) static const char _os_log_fmt[] = format; \ _os_log_verify_format_str(format, ##__VA_ARGS__); \ _os_log_sensitive(&__dso_handle, log, OS_LOG_TYPE_DEBUG, _os_log_fmt, ##__VA_ARGS__); \ __asm__(""); /* avoid tailcall */ \ }) #ifdef XNU_KERNEL_PRIVATE #define os_log_with_startup_serial(log, format, ...) __extension__({ \ if (startup_serial_logging_active) { printf(format, ##__VA_ARGS__); } \ else { os_log(log, format, ##__VA_ARGS__); } \ }) #endif /* XNU_KERNEL_PRIVATE */ /*! * @function _os_log_internal * * @abstract * Internal function used by macros. */ __WATCHOS_AVAILABLE(3.0) __OSX_AVAILABLE(10.12) __IOS_AVAILABLE(10.0) __TVOS_AVAILABLE(10.0) OS_EXPORT OS_NOTHROW void _os_log_internal(void *dso, os_log_t log, os_log_type_t type, const char *message, ...); __END_DECLS #endif /* __os_log_h */ |