#ifndef __GLOBALS_H__ #define __GLOBALS_H__ #include #include #include #include #include "request.h" #include "PTLock.h" // in main.c extern char * progname; extern int g_verbose_level; extern char * g_kernel_file; extern char * g_patch_dir; extern char * g_symbol_dir; extern Boolean gOverwrite_symbols; extern mach_port_t g_io_master_port; extern KXKextManagerRef gKextManager; extern CFRunLoopRef gMainRunLoop; extern CFRunLoopSourceRef gKernelRequestRunLoopSource; extern CFRunLoopSourceRef gRescanRunLoopSource; extern CFRunLoopSourceRef gClientRequestRunLoopSource; #ifndef NO_CFUserNotification extern CFRunLoopSourceRef gNonsecureKextRunLoopSource; #endif /* NO_CFUserNotification */ extern PTLockRef gKernelRequestQueueLock; extern PTLockRef gRunLoopSourceLock; extern queue_head_t g_request_queue; // in request.c #ifndef NO_CFUserNotification extern CFMutableArrayRef gPendedNonsecureKexts; // loaded by kextd extern CFMutableArrayRef gPendedKextloadOperations; // loaded by kextload extern CFMutableArrayRef gScheduledNonsecureKexts; // awaiting user response extern CFUserNotificationRef gSecurityNotification; extern CFUserNotificationRef gFailureNotification; extern KXKextRef gSecurityAlertKext; extern Boolean gResendSecurityAlertKextPersonalities; #endif /* NO_CFUserNotification */ extern uid_t logged_in_uid; // in mig_server.c extern uid_t gClientUID; #endif __GLOBALS_H__