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 | /* * Copyright (c) 2011, 2012 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@ */ #include <TargetConditionals.h> #include <dispatch/dispatch.h> #include <uuid/uuid.h> #include <sys/types.h> #include <sys/sysctl.h> #include <mach-o/loader.h> #include <mach-o/fat.h> #include <mach-o/arch.h> #include <mach-o/getsect.h> #include <pthread.h> #include <sys/types.h> #include <execinfo.h> #include <stdio.h> #include <dlfcn.h> #include <_simple.h> #include <errno.h> #include <pthread.h> #include <string.h> #include "os/assumes.h" #include "gen/assumes.h" #include <os/debug_private.h> #define OSX_ASSUMES_LOG_REDIRECT_SECT_NAME "__osx_log_func" #define os_atomic_cmpxchg(p, o, n) __sync_bool_compare_and_swap((p), (o), (n)) static bool _os_should_abort_on_assumes = false; static const char * _os_basename(const char *p) { return ((strrchr(p, '/') ? : p - 1) + 1); } static void _os_get_build(char *build, size_t sz) { /* Get the build every time. We used to cache it, but if PID 1 experiences * an assumes() failure before the build has been set, that would mean that * all future failures would get bad build info. So we fetch it every time. * Since assumes() failures are on the slow path anyway, not a huge deal. */ int mib[] = { CTL_KERN, KERN_OSVERSION }; size_t oldsz = sz; int r = sysctl(mib, 2, build, &sz, NULL, 0); if (r == 0 && sz == 1) { (void)strlcpy(build, "99Z999", oldsz); } #if TARGET_IPHONE_SIMULATOR char *simVersion = getenv("SIMULATOR_RUNTIME_BUILD_VERSION"); if (simVersion) { strlcat(build, " ", oldsz); strlcat(build, simVersion, oldsz); } #endif } static void _os_get_image_uuid(void *hdr, uuid_t uuid) { #if __LP64__ struct mach_header_64 *hdr32or64 = (struct mach_header_64 *)hdr; #else struct mach_header *hdr32or64 = (struct mach_header *)hdr; #endif /* __LP64__ */ size_t i = 0; size_t next = sizeof(*hdr32or64); struct load_command *cur = NULL; for (i = 0; i < hdr32or64->ncmds; i++) { cur = (struct load_command *)((uintptr_t)hdr32or64 + next); if (cur->cmd == LC_UUID) { struct uuid_command *cmd = (struct uuid_command *)cur; uuid_copy(uuid, cmd->uuid); break; } next += cur->cmdsize; } if (i == hdr32or64->ncmds) { uuid_clear(uuid); } } static void _os_abort_on_assumes_once(void) { /* Embedded boot-args can get pretty long. Let's just hope this is big * enough. */ char bootargs[2048]; size_t len = sizeof(bootargs) - 1; if (sysctlbyname("kern.bootargs", bootargs, &len, NULL, 0) == 0) { if (strnstr(bootargs, "-os_assumes_fatal", len)) { _os_should_abort_on_assumes = true; } } } static bool _os_abort_on_assumes(void) { static pthread_once_t once = PTHREAD_ONCE_INIT; bool result = false; if (getpid() != 1) { if (getenv("OS_ASSUMES_FATAL")) { result = true; } else { pthread_once(&once, _os_abort_on_assumes_once); result = _os_should_abort_on_assumes; } } else { if (getenv("OS_ASSUMES_FATAL_PID1")) { result = true; } } return result; } #if __LP64__ typedef struct mach_header_64 os_mach_header; #else typedef struct mach_header os_mach_header; #endif static os_redirect_t _os_find_log_redirect_func(os_mach_header *hdr) { os_redirect_t result = NULL; char name[128]; unsigned long size = 0; uint8_t *data = getsectiondata(hdr, OS_ASSUMES_REDIRECT_SEG, OS_ASSUMES_REDIRECT_SECT, &size); if (!data) { data = getsectiondata(hdr, "__TEXT", OSX_ASSUMES_LOG_REDIRECT_SECT_NAME, &size); if (data && size < sizeof(name) - 2) { (void)strlcpy(name, (const char *)data, size + 1); result = dlsym(RTLD_DEFAULT, name); } } else if (size == sizeof(struct _os_redirect_assumes_s)) { struct _os_redirect_assumes_s *redirect = (struct _os_redirect_assumes_s *)data; result = redirect->redirect; } return result; } static bool _os_log_redirect(void *hdr, const char *msg) { bool result = false; os_redirect_t redirect_func = _os_find_log_redirect_func(hdr); if (redirect_func) { result = redirect_func(msg); } return result; } __attribute__((always_inline)) static void _os_construct_message(uint64_t code, _SIMPLE_STRING asl_message, Dl_info *info, char *buff, size_t sz) { const char *image_name = NULL; uintptr_t offset = 0; uuid_string_t uuid_str; void *ret = __builtin_return_address(0); if (dladdr(ret, info)) { uuid_t uuid; _os_get_image_uuid(info->dli_fbase, uuid); uuid_unparse(uuid, uuid_str); image_name = _os_basename(info->dli_fname); offset = ret - info->dli_fbase; } char sig[64]; (void)snprintf(sig, sizeof(sig), "%s:%lu", uuid_str, offset); char result[24]; (void)snprintf(result, sizeof(result), "0x%llx", code); char build[32]; size_t bsz = sizeof(build); _os_get_build(build, bsz); (void)snprintf(buff, sz, "assertion failed: %s: %s + %lu [%s]: %s", build, image_name, offset, uuid_str, result); _simple_asl_msg_set(asl_message, "com.apple.message.domain", "com.apple.assumes.failure"); _simple_asl_msg_set(asl_message, "com.apple.message.signature", sig); _simple_asl_msg_set(asl_message, "com.apple.message.signature2", result); _simple_asl_msg_set(asl_message, "com.apple.message.signature3", image_name); _simple_asl_msg_set(asl_message, "com.apple.message.summarize", "YES"); } #pragma mark Internal Implementations os_crash_callback_t _os_crash_callback = NULL; __attribute__((always_inline)) static inline void _os_crash_impl(const char *message) { os_set_crash_message(message); if (!_os_crash_callback) { _os_crash_callback = dlsym(RTLD_MAIN_ONLY, "os_crash_function"); } if (_os_crash_callback) { _os_crash_callback(message); } } __attribute__((always_inline)) static inline void _os_assumes_log_impl(uint64_t code) { char message[256] = ""; _SIMPLE_STRING asl_message = _simple_asl_msg_new(); if (asl_message) { Dl_info info; _os_construct_message(code, asl_message, &info, message, sizeof(message)); if (!_os_log_redirect(info.dli_fbase, message)) { _os_debug_log_error_str(message); _simple_asl_msg_set(asl_message, "Level", "Error"); _simple_asl_msg_set(asl_message, "Message", ""); _simple_asl_send(asl_message); } _simple_sfree(asl_message); } if (_os_abort_on_assumes()) { os_crash(message); } } __attribute__((always_inline)) static inline char * _os_assert_log_impl(uint64_t code) { char *result = NULL; _SIMPLE_STRING asl_message = _simple_asl_msg_new(); if (asl_message) { Dl_info info; char message[256]; _os_construct_message(code, asl_message, &info, message, sizeof(message)); if (!_os_log_redirect(info.dli_fbase, message)) { _os_debug_log_error_str(message); _simple_asl_msg_set(asl_message, "Level", "Error"); _simple_asl_msg_set(asl_message, "Message", ""); _simple_asl_send(asl_message); } _simple_sfree(asl_message); result = strdup(message); } #if LIBC_NO_LIBCRASHREPORTERCLIENT /* There is no crash report information facility on embedded, which is * really regrettable. Fortunately, all we need to capture is the value * which tripped up the assertion. We can just stuff that into the thread's * name. */ char name[64]; (void)pthread_getname_np(pthread_self(), name, sizeof(name)); char newname[64]; if (strlen(name) == 0) { (void)snprintf(newname, sizeof(newname), "[Fatal bug: 0x%llx]", code); } else { (void)snprintf(newname, sizeof(newname), "%s [Fatal bug: 0x%llx]", name, code); } (void)pthread_setname_np(newname); #endif return result; } __attribute__((always_inline)) static inline void _os_assumes_log_ctx_impl(os_log_callout_t callout, void *ctx, uint64_t code) { char message[256] = ""; _SIMPLE_STRING asl_message = _simple_asl_msg_new(); if (asl_message) { Dl_info info; _os_construct_message(code, asl_message, &info, message, sizeof(message)); (void)callout(asl_message, ctx, message); _simple_sfree(asl_message); } if (_os_abort_on_assumes()) { os_crash(message); } } __attribute__((always_inline)) static inline char * _os_assert_log_ctx_impl(os_log_callout_t callout, void *ctx, uint64_t code) { char *result = NULL; _SIMPLE_STRING asl_message = _simple_asl_msg_new(); if (asl_message) { Dl_info info; char message[256]; _os_construct_message(code, asl_message, &info, message, sizeof(message)); (void)callout(asl_message, ctx, message); _simple_sfree(asl_message); result = strdup(message); } return result; } #pragma mark Public Interfaces void _os_crash(const char *message) { _os_crash_impl(message); } void _os_assumes_log(uint64_t code) { _os_assumes_log_impl(code); } char * _os_assert_log(uint64_t code) { return _os_assert_log_impl(code); } void _os_assumes_log_ctx(os_log_callout_t callout, void *ctx, uint64_t code) { _os_assumes_log_ctx_impl(callout, ctx, code); } char * _os_assert_log_ctx(os_log_callout_t callout, void *ctx, uint64_t code) { return _os_assert_log_ctx_impl(callout, ctx, code); } void _os_avoid_tail_call(void) { // no-op } #pragma mark Legacy void _osx_assumes_log(uint64_t code) { _os_assumes_log(code); } char * _osx_assert_log(uint64_t code) { return _os_assert_log_impl(code); } void _osx_assumes_log_ctx(osx_log_callout_t callout, void *ctx, uint64_t code) { _os_assumes_log_ctx_impl(callout, ctx, code); } char * _osx_assert_log_ctx(osx_log_callout_t callout, void *ctx, uint64_t code) { return _os_assert_log_ctx_impl(callout, ctx, code); } void _osx_avoid_tail_call(void) { _os_avoid_tail_call(); } |