]>
git.saurik.com Git - apple/xnu.git/blob - libsyscall/wrappers/kdebug_trace.c
2 * Copyright (c) 2014 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
26 #include <machine/cpu_capabilities.h>
27 #include <sys/kdebug.h>
28 #include <sys/errno.h>
30 extern int __kdebug_trace64(uint32_t code
, uint64_t arg1
, uint64_t arg2
,
31 uint64_t arg3
, uint64_t arg4
);
32 extern uint64_t __kdebug_trace_string(uint32_t debugid
, uint64_t str_id
,
35 /* Returns non-zero if tracing is enabled. */
39 volatile uint32_t *kdebug_enable_address
=
40 (volatile uint32_t *)(uintptr_t)(_COMM_PAGE_KDEBUG_ENABLE
);
42 if (*kdebug_enable_address
== 0) {
50 kdebug_validate_debugid(uint32_t debugid
)
52 uint8_t debugid_class
;
55 * This filtering is also done in the kernel, but we also do it here so
56 * that errors are returned in all cases, not just when the system call
57 * is actually performed.
59 debugid_class
= KDBG_EXTRACT_CLASS(debugid
);
60 switch (debugid_class
) {
69 kdebug_trace(uint32_t debugid
, uint64_t arg1
, uint64_t arg2
, uint64_t arg3
,
74 if (!kdebug_enabled()) {
78 if ((err
= kdebug_validate_debugid(debugid
)) != 0) {
83 return __kdebug_trace64(debugid
, arg1
, arg2
, arg3
, arg4
);
87 kdebug_trace_string(uint32_t debugid
, uint64_t str_id
, const char *str
)
91 if (!kdebug_enabled()) {
95 if ((int64_t)str_id
== -1) {
100 if (str_id
== 0 && str
== NULL
) {
105 if ((err
= kdebug_validate_debugid(debugid
)) != 0) {
110 return __kdebug_trace_string(debugid
, str_id
, str
);