]>
git.saurik.com Git - apple/xnu.git/blob - bsd/pgo/profile_runtime.c
2 * Copyright (c) 2014 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <sys/sysproto.h>
30 #include <sys/malloc.h>
31 #include <sys/systm.h>
33 #include <sys/kauth.h>
34 #include <security/mac_framework.h>
35 #include <libkern/OSKextLib.h>
39 * This tells compiler_rt not to include userspace-specific stuff writing
40 * profile data to a file.
42 int __llvm_profile_runtime
= 0;
47 /* These __llvm functions are defined in InstrProfiling.h in compiler_rt. That
48 * is a internal header, so we need to re-prototype them here. */
50 uint64_t __llvm_profile_get_size_for_buffer(void);
51 int __llvm_profile_write_buffer(char *Buffer
);
52 uint64_t __llvm_profile_get_size_for_buffer_internal(const char *DataBegin
,
54 const char *CountersBegin
,
55 const char *CountersEnd
,
56 const char *NamesBegin
,
57 const char *NamesEnd
);
58 int __llvm_profile_write_buffer_internal(char *Buffer
,
59 const char *DataBegin
,
61 const char *CountersBegin
,
62 const char *CountersEnd
,
63 const char *NamesBegin
,
64 const char *NamesEnd
);
66 extern char __pgo_hib_DataStart
__asm("section$start$__HIB$__llvm_prf_data");
67 extern char __pgo_hib_DataEnd
__asm("section$end$__HIB$__llvm_prf_data");
68 extern char __pgo_hib_NamesStart
__asm("section$start$__HIB$__llvm_prf_names");
69 extern char __pgo_hib_NamesEnd
__asm("section$end$__HIB$__llvm_prf_names");
70 extern char __pgo_hib_CountersStart
__asm("section$start$__HIB$__llvm_prf_cnts");
71 extern char __pgo_hib_CountersEnd
__asm("section$end$__HIB$__llvm_prf_cnts");
74 static uint64_t get_size_for_buffer(int flags
)
76 if (flags
& PGO_HIB
) {
77 return __llvm_profile_get_size_for_buffer_internal(
78 &__pgo_hib_DataStart
, &__pgo_hib_DataEnd
,
79 &__pgo_hib_CountersStart
, &__pgo_hib_CountersEnd
,
80 &__pgo_hib_NamesStart
, &__pgo_hib_NamesEnd
);
82 return __llvm_profile_get_size_for_buffer();
87 static int write_buffer(int flags
, char *buffer
)
89 if (flags
& PGO_HIB
) {
90 return __llvm_profile_write_buffer_internal(
92 &__pgo_hib_DataStart
, &__pgo_hib_DataEnd
,
93 &__pgo_hib_CountersStart
, &__pgo_hib_CountersEnd
,
94 &__pgo_hib_NamesStart
, &__pgo_hib_NamesEnd
);
96 return __llvm_profile_write_buffer(buffer
);
107 * EPERM unless you are root
108 * EINVAL for invalid args.
109 * ENOSYS for not implemented
110 * ERANGE for integer overflow
111 * ENOENT if kext not found
112 * ENOTSUP kext does not support PGO
113 * EIO llvm returned an error. shouldn't ever happen.
116 int grab_pgo_data(struct proc
*p
,
117 struct grab_pgo_data_args
*uap
,
125 if (!kauth_cred_issuser(kauth_cred_get())) {
131 err
= mac_system_check_info(kauth_cred_get(), "kern.profiling_data");
137 if ( uap
->flags
& ~PGO_ALL_FLAGS
||
139 (uap
->size
> 0 && uap
->buffer
== 0))
149 err
= copyin(uap
->uuid
, &uuid
, sizeof(uuid
));
154 if (uap
->buffer
== 0 && uap
->size
== 0) {
157 if (uap
->flags
& PGO_WAIT_FOR_UNLOAD
) {
162 err
= OSKextGrabPgoData(uuid
, &size64
, NULL
, 0, 0, !!(uap
->flags
& PGO_METADATA
));
167 ssize_t size
= size64
;
168 if ( ((uint64_t) size
) != size64
||
179 } else if (!uap
->buffer
|| uap
->size
<= 0) {
186 MALLOC(buffer
, char *, uap
->size
, M_TEMP
, M_WAITOK
);
194 err
= OSKextGrabPgoData(uuid
, &size64
, buffer
, uap
->size
,
195 !!(uap
->flags
& PGO_WAIT_FOR_UNLOAD
),
196 !!(uap
->flags
& PGO_METADATA
));
201 ssize_t size
= size64
;
202 if ( ((uint64_t) size
) != size64
||
209 err
= copyout(buffer
, uap
->buffer
, size
);
222 uint64_t size64
= get_size_for_buffer(uap
->flags
);
223 ssize_t size
= size64
;
225 if (uap
->flags
& (PGO_WAIT_FOR_UNLOAD
| PGO_METADATA
)) {
230 if ( ((uint64_t) size
) != size64
||
238 if (uap
->buffer
== 0 && uap
->size
== 0) {
242 } else if (uap
->size
< size
) {
246 MALLOC(buffer
, char *, size
, M_TEMP
, M_WAITOK
);
252 err
= write_buffer(uap
->flags
, buffer
);
259 err
= copyout(buffer
, uap
->buffer
, size
);
278 FREE(buffer
, M_TEMP
);