2 * Copyright (c) 1998-2011 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@
28 #include <IOKit/IOBSD.h>
29 #include <IOKit/IOLib.h>
30 #include <IOKit/IOService.h>
31 #include <IOKit/IOCatalogue.h>
32 #include <IOKit/IODeviceTreeSupport.h>
33 #include <IOKit/IOKitKeys.h>
34 #include <IOKit/IOPlatformExpert.h>
35 #include <IOKit/IOUserClient.h>
39 #include <pexpert/pexpert.h>
40 #include <kern/clock.h>
41 #include <uuid/uuid.h>
42 #include <sys/vnode_internal.h>
43 #include <sys/mount.h>
45 // how long to wait for matching root device, secs
47 #define ROOTDEVICETIMEOUT 120
49 #define ROOTDEVICETIMEOUT 60
52 int panic_on_exception_triage
= 0;
54 extern dev_t
mdevadd(int devid
, uint64_t base
, unsigned int size
, int phys
);
55 extern dev_t
mdevlookup(int devid
);
56 extern void mdevremoveall(void);
57 extern int mdevgetrange(int devid
, uint64_t *base
, uint64_t *size
);
58 extern void di_root_ramfile(IORegistryEntry
* entry
);
62 #define IOPOLLED_COREFILE 1
64 #define kIOCoreDumpSize 0ULL
65 #define kIOCoreDumpFreeSize 0ULL
67 #define IOPOLLED_COREFILE 0
73 NewKernelCoreMedia(void * target
, void * refCon
,
74 IOService
* newService
,
75 IONotifier
* notifier
);
76 #endif /* IOPOLLED_COREFILE */
78 #if CONFIG_KDP_INTERACTIVE_DEBUGGING
80 * Touched by IOFindBSDRoot() if a RAMDisk is used for the root device.
82 extern uint64_t kdp_core_ramdisk_addr
;
83 extern uint64_t kdp_core_ramdisk_size
;
89 IOService::publishResource("IOBSD");
91 return( kIOReturnSuccess
);
95 IOServicePublishResource( const char * property
, boolean_t value
)
98 IOService::publishResource( property
, kOSBooleanTrue
);
100 IOService::getResourceService()->removeProperty( property
);
104 IOServiceWaitForMatchingResource( const char * property
, uint64_t timeout
)
106 OSDictionary
* dict
= 0;
107 IOService
* match
= 0;
108 boolean_t found
= false;
112 dict
= IOService::resourceMatching( property
);
115 match
= IOService::waitForMatchingService( dict
, timeout
);
130 IOCatalogueMatchingDriversPresent( const char * property
)
132 OSDictionary
* dict
= 0;
133 OSOrderedSet
* set
= 0;
134 SInt32 generationCount
= 0;
135 boolean_t found
= false;
139 dict
= OSDictionary::withCapacity(1);
142 dict
->setObject( property
, kOSBooleanTrue
);
143 set
= gIOCatalogue
->findDrivers( dict
, &generationCount
);
144 if ( set
&& (set
->getCount() > 0))
157 OSDictionary
* IOBSDNameMatching( const char * name
)
160 const OSSymbol
* str
= 0;
164 dict
= IOService::serviceMatching( gIOServiceKey
);
167 str
= OSSymbol::withCString( name
);
170 dict
->setObject( kIOBSDNameKey
, (OSObject
*) str
);
185 OSDictionary
* IOUUIDMatching( void )
187 return IOService::resourceMatching( "boot-uuid-media" );
190 OSDictionary
* IONetworkNamePrefixMatching( const char * prefix
)
192 OSDictionary
* matching
;
193 OSDictionary
* propDict
= 0;
194 const OSSymbol
* str
= 0;
195 char networkType
[128];
198 matching
= IOService::serviceMatching( "IONetworkInterface" );
202 propDict
= OSDictionary::withCapacity(1);
206 str
= OSSymbol::withCString( prefix
);
210 propDict
->setObject( "IOInterfaceNamePrefix", (OSObject
*) str
);
214 // see if we're contrained to netroot off of specific network type
215 if(PE_parse_boot_argn( "network-type", networkType
, 128 ))
217 str
= OSSymbol::withCString( networkType
);
220 propDict
->setObject( "IONetworkRootType", str
);
226 if ( matching
->setObject( gIOPropertyMatchKey
,
227 (OSObject
*) propDict
) != true )
237 if ( matching
) matching
->release();
238 if ( propDict
) propDict
->release();
239 if ( str
) str
->release();
244 static bool IORegisterNetworkInterface( IOService
* netif
)
246 // A network interface is typically named and registered
247 // with BSD after receiving a request from a user space
248 // "namer". However, for cases when the system needs to
249 // root from the network, this registration task must be
250 // done inside the kernel and completed before the root
251 // device is handed to BSD.
256 OSDictionary
* dict
= 0;
259 enum { kMaxPathLen
= 512 };
262 stack
= IOService::waitForService(
263 IOService::serviceMatching("IONetworkStack") );
264 if ( stack
== 0 ) break;
266 dict
= OSDictionary::withCapacity(3);
267 if ( dict
== 0 ) break;
269 zero
= OSNumber::withNumber((UInt64
) 0, 32);
270 if ( zero
== 0 ) break;
272 pathBuf
= (char *) IOMalloc( kMaxPathLen
);
273 if ( pathBuf
== 0 ) break;
276 if ( netif
->getPath( pathBuf
, &len
, gIOServicePlane
)
279 path
= OSString::withCStringNoCopy( pathBuf
);
280 if ( path
== 0 ) break;
282 dict
->setObject( "IOInterfaceUnit", zero
);
283 dict
->setObject( kIOPathMatchKey
, path
);
285 stack
->setProperties( dict
);
289 if ( zero
) zero
->release();
290 if ( path
) path
->release();
291 if ( dict
) dict
->release();
292 if ( pathBuf
) IOFree(pathBuf
, kMaxPathLen
);
294 return ( netif
->getProperty( kIOBSDNameKey
) != 0 );
297 OSDictionary
* IOOFPathMatching( const char * path
, char * buf
, int maxLen
)
299 OSDictionary
* matching
= NULL
;
306 len
= strlen( kIODeviceTreePlane
":" );
311 strlcpy( buf
, kIODeviceTreePlane
":", len
+ 1 );
314 len
= strlen( path
);
318 strlcpy( comp
, path
, len
+ 1 );
320 matching
= OSDictionary::withCapacity( 1 );
324 str
= OSString::withCString( buf
);
327 matching
->setObject( kIOPathMatchKey
, str
);
340 static int didRam
= 0;
341 enum { kMaxPathBuf
= 512, kMaxBootVar
= 128 };
343 kern_return_t
IOFindBSDRoot( char * rootName
, unsigned int rootNameSize
,
344 dev_t
* root
, u_int32_t
* oflags
)
348 IORegistryEntry
* regEntry
;
349 OSDictionary
* matching
= 0;
356 const char * mediaProperty
= 0;
359 const char * look
= 0;
361 bool debugInfoPrintedOnce
= false;
362 const char * uuidStr
= NULL
;
364 static int mountAttempts
= 0;
368 // stall here for anyone matching on the IOBSD resource to finish (filesystems)
369 matching
= IOService::serviceMatching(gIOResourcesKey
);
371 matching
->setObject(gIOResourceMatchedKey
, gIOBSDKey
);
373 if ((service
= IOService::waitForMatchingService(matching
, 30ULL * kSecondScale
))) {
383 IOLog("mount(%d) failed\n", mountAttempts
);
387 str
= (char *) IOMalloc( kMaxPathBuf
+ kMaxBootVar
);
389 return( kIOReturnNoMemory
);
390 rdBootVar
= str
+ kMaxPathBuf
;
392 if (!PE_parse_boot_argn("rd", rdBootVar
, kMaxBootVar
)
393 && !PE_parse_boot_argn("rootdev", rdBootVar
, kMaxBootVar
))
397 if( (regEntry
= IORegistryEntry::fromPath( "/chosen", gIODTPlane
))) {
398 di_root_ramfile(regEntry
);
399 data
= OSDynamicCast(OSData
, regEntry
->getProperty( "root-matching" ));
401 matching
= OSDynamicCast(OSDictionary
, OSUnserializeXML((char *)data
->getBytesNoCopy()));
407 data
= (OSData
*) regEntry
->getProperty( "boot-uuid" );
409 uuidStr
= (const char*)data
->getBytesNoCopy();
410 OSString
*uuidString
= OSString::withCString( uuidStr
);
412 // match the boot-args boot-uuid processing below
414 IOLog("rooting via boot-uuid from /chosen: %s\n", uuidStr
);
415 IOService::publishResource( "boot-uuid", uuidString
);
416 uuidString
->release();
417 matching
= IOUUIDMatching();
418 mediaProperty
= "boot-uuid-media";
430 // See if we have a RAMDisk property in /chosen/memory-map. If so, make it into a device.
431 // It will become /dev/mdx, where x is 0-f.
434 if(!didRam
) { /* Have we already build this ram disk? */
435 didRam
= 1; /* Remember we did this */
436 if((regEntry
= IORegistryEntry::fromPath( "/chosen/memory-map", gIODTPlane
))) { /* Find the map node */
437 data
= (OSData
*)regEntry
->getProperty("RAMDisk"); /* Find the ram disk, if there */
438 if(data
) { /* We found one */
439 uintptr_t *ramdParms
;
440 ramdParms
= (uintptr_t *)data
->getBytesNoCopy(); /* Point to the ram disk base and size */
441 (void)mdevadd(-1, ml_static_ptovirt(ramdParms
[0]) >> 12, ramdParms
[1] >> 12, 0); /* Initialize it and pass back the device number */
443 regEntry
->release(); /* Toss the entry */
448 // Now check if we are trying to root on a memory device
451 if((rdBootVar
[0] == 'm') && (rdBootVar
[1] == 'd') && (rdBootVar
[3] == 0)) {
452 dchar
= xchar
= rdBootVar
[2]; /* Get the actual device */
453 if((xchar
>= '0') && (xchar
<= '9')) xchar
= xchar
- '0'; /* If digit, convert */
455 xchar
= xchar
& ~' '; /* Fold to upper case */
456 if((xchar
>= 'A') && (xchar
<= 'F')) { /* Is this a valid digit? */
457 xchar
= (xchar
& 0xF) + 9; /* Convert the hex digit */
458 dchar
= dchar
| ' '; /* Fold to lower case */
460 else xchar
= -1; /* Show bogus */
462 if(xchar
>= 0) { /* Do we have a valid memory device name? */
463 *root
= mdevlookup(xchar
); /* Find the device number */
464 if(*root
>= 0) { /* Did we find one? */
465 rootName
[0] = 'm'; /* Build root name */
466 rootName
[1] = 'd'; /* Build root name */
467 rootName
[2] = dchar
; /* Build root name */
468 rootName
[3] = 0; /* Build root name */
469 IOLog("BSD root: %s, major %d, minor %d\n", rootName
, major(*root
), minor(*root
));
470 *oflags
= 0; /* Show that this is not network */
472 #if CONFIG_KDP_INTERACTIVE_DEBUGGING
473 /* retrieve final ramdisk range and initialize KDP variables */
474 if (mdevgetrange(xchar
, &kdp_core_ramdisk_addr
, &kdp_core_ramdisk_size
) != 0) {
475 IOLog("Unable to retrieve range for root memory device %d\n", xchar
);
476 kdp_core_ramdisk_addr
= 0;
477 kdp_core_ramdisk_size
= 0;
481 goto iofrootx
; /* Join common exit... */
483 panic("IOFindBSDRoot: specified root memory device, %s, has not been configured\n", rdBootVar
); /* Not there */
487 if( (!matching
) && rdBootVar
[0] ) {
493 if ( strncmp( look
, "en", strlen( "en" )) == 0 ) {
494 matching
= IONetworkNamePrefixMatching( "en" );
495 } else if ( strncmp( look
, "uuid", strlen( "uuid" )) == 0 ) {
497 OSString
*uuidString
;
499 uuid
= (char *)IOMalloc( kMaxBootVar
);
502 if (!PE_parse_boot_argn( "boot-uuid", uuid
, kMaxBootVar
)) {
503 panic( "rd=uuid but no boot-uuid=<value> specified" );
505 uuidString
= OSString::withCString( uuid
);
507 IOService::publishResource( "boot-uuid", uuidString
);
508 uuidString
->release();
509 IOLog( "\nWaiting for boot volume with UUID %s\n", uuid
);
510 matching
= IOUUIDMatching();
511 mediaProperty
= "boot-uuid-media";
513 IOFree( uuid
, kMaxBootVar
);
516 matching
= IOBSDNameMatching( look
);
522 // Match any HFS media
524 matching
= IOService::serviceMatching( "IOMedia" );
525 astring
= OSString::withCStringNoCopy("Apple_HFS");
527 matching
->setObject("Content", astring
);
532 if( gIOKitDebug
& kIOWaitQuietBeforeRoot
) {
533 IOLog( "Waiting for matching to complete\n" );
534 IOService::getPlatform()->waitQuiet();
537 if( true && matching
) {
538 OSSerialize
* s
= OSSerialize::withCapacity( 5 );
540 if( matching
->serialize( s
)) {
541 IOLog( "Waiting on %s\n", s
->text() );
547 t
.tv_sec
= ROOTDEVICETIMEOUT
;
550 service
= IOService::waitForService( matching
, &t
);
551 if( (!service
) || (mountAttempts
== 10)) {
552 PE_display_icon( 0, "noroot");
553 IOLog( "Still waiting for root device\n" );
555 if( !debugInfoPrintedOnce
) {
556 debugInfoPrintedOnce
= true;
557 if( gIOKitDebug
& kIOLogDTree
) {
558 IOLog("\nDT plane:\n");
559 IOPrintPlane( gIODTPlane
);
561 if( gIOKitDebug
& kIOLogServiceTree
) {
562 IOLog("\nService plane:\n");
563 IOPrintPlane( gIOServicePlane
);
565 if( gIOKitDebug
& kIOLogMemory
)
572 if ( service
&& mediaProperty
) {
573 service
= (IOService
*)service
->getProperty(mediaProperty
);
579 // If the IOService we matched to is a subclass of IONetworkInterface,
580 // then make sure it has been registered with BSD and has a BSD name
584 && service
->metaCast( "IONetworkInterface" )
585 && !IORegisterNetworkInterface( service
) )
593 service
->getPath( str
, &len
, gIOServicePlane
);
594 IOLog( "Got boot device = %s\n", str
);
596 iostr
= (OSString
*) service
->getProperty( kIOBSDNameKey
);
598 strlcpy( rootName
, iostr
->getCStringNoCopy(), rootNameSize
);
599 off
= (OSNumber
*) service
->getProperty( kIOBSDMajorKey
);
601 mjr
= off
->unsigned32BitValue();
602 off
= (OSNumber
*) service
->getProperty( kIOBSDMinorKey
);
604 mnr
= off
->unsigned32BitValue();
606 if( service
->metaCast( "IONetworkInterface" ))
611 IOLog( "Wait for root failed\n" );
612 strlcpy( rootName
, "en0", rootNameSize
);
616 IOLog( "BSD root: %s", rootName
);
618 IOLog(", major %d, minor %d\n", mjr
, mnr
);
622 *root
= makedev( mjr
, mnr
);
625 IOFree( str
, kMaxPathBuf
+ kMaxBootVar
);
628 if( (gIOKitDebug
& (kIOLogDTree
| kIOLogServiceTree
| kIOLogMemory
)) && !debugInfoPrintedOnce
) {
630 IOService::getPlatform()->waitQuiet();
631 if( gIOKitDebug
& kIOLogDTree
) {
632 IOLog("\nDT plane:\n");
633 IOPrintPlane( gIODTPlane
);
635 if( gIOKitDebug
& kIOLogServiceTree
) {
636 IOLog("\nService plane:\n");
637 IOPrintPlane( gIOServicePlane
);
639 if( gIOKitDebug
& kIOLogMemory
)
643 return( kIOReturnSuccess
);
646 bool IORamDiskBSDRoot(void)
648 char rdBootVar
[kMaxBootVar
];
649 if (PE_parse_boot_argn("rd", rdBootVar
, kMaxBootVar
)
650 || PE_parse_boot_argn("rootdev", rdBootVar
, kMaxBootVar
)) {
651 if((rdBootVar
[0] == 'm') && (rdBootVar
[1] == 'd') && (rdBootVar
[3] == 0)) {
658 void IOSecureBSDRoot(const char * rootName
)
663 IOBSDRegistryEntryForDeviceTree(char * path
)
665 return (IORegistryEntry::fromPath(path
, gIODTPlane
));
669 IOBSDRegistryEntryRelease(void * entry
)
671 IORegistryEntry
* regEntry
= (IORegistryEntry
*)entry
;
679 IOBSDRegistryEntryGetData(void * entry
, char * property_name
,
683 IORegistryEntry
* regEntry
= (IORegistryEntry
*)entry
;
685 data
= (OSData
*) regEntry
->getProperty(property_name
);
687 *packet_length
= data
->getLength();
688 return (data
->getBytesNoCopy());
693 kern_return_t
IOBSDGetPlatformUUID( uuid_t uuid
, mach_timespec_t timeout
)
695 IOService
* resources
;
698 resources
= IOService::waitForService( IOService::resourceMatching( kIOPlatformUUIDKey
), ( timeout
.tv_sec
|| timeout
.tv_nsec
) ? &timeout
: 0 );
699 if ( resources
== 0 ) return KERN_OPERATION_TIMED_OUT
;
701 string
= ( OSString
* ) IOService::getPlatform( )->getProvider( )->getProperty( kIOPlatformUUIDKey
);
702 if ( string
== 0 ) return KERN_NOT_SUPPORTED
;
704 uuid_parse( string
->getCStringNoCopy( ), uuid
);
711 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
713 #include <sys/conf.h>
714 #include <sys/vnode.h>
715 #include <sys/vnode_internal.h>
716 #include <sys/fcntl.h>
717 #include <IOKit/IOPolledInterface.h>
718 #include <IOKit/IOBufferMemoryDescriptor.h>
720 IOPolledFileIOVars
* gIOPolledCoreFileVars
;
722 #if IOPOLLED_COREFILE
725 IOOpenPolledCoreFile(const char * filename
)
730 if (gIOPolledCoreFileVars
) return (kIOReturnBusy
);
731 if (!IOPolledInterface::gMetaClass
.getInstanceCount()) return (kIOReturnUnsupported
);
734 PE_parse_boot_argn("debug", &debug
, sizeof (debug
));
735 if (DB_DISABLE_LOCAL_CORE
& debug
) return (kIOReturnUnsupported
);
737 err
= IOPolledFileOpen(filename
, kIOCoreDumpSize
, kIOCoreDumpFreeSize
,
739 &gIOPolledCoreFileVars
, NULL
, NULL
, 0);
740 if (kIOReturnSuccess
!= err
) return (err
);
742 err
= IOPolledFilePollersSetup(gIOPolledCoreFileVars
, kIOPolledPreflightCoreDumpState
);
743 if (kIOReturnSuccess
!= err
)
745 IOPolledFileClose(&gIOPolledCoreFileVars
, NULL
, NULL
, 0, 0, 0);
752 IOClosePolledCoreFile(void)
754 IOPolledFilePollersClose(gIOPolledCoreFileVars
, kIOPolledPostflightCoreDumpState
);
755 IOPolledFileClose(&gIOPolledCoreFileVars
, NULL
, NULL
, 0, 0, 0);
758 static thread_call_t gIOOpenPolledCoreFileTC
;
759 static IONotifier
* gIOPolledCoreFileNotifier
;
760 static IONotifier
* gIOPolledCoreFileInterestNotifier
;
763 KernelCoreMediaInterest(void * target
, void * refCon
,
764 UInt32 messageType
, IOService
* provider
,
765 void * messageArgument
, vm_size_t argSize
)
767 if (kIOMessageServiceIsTerminated
== messageType
)
769 gIOPolledCoreFileInterestNotifier
->remove();
770 gIOPolledCoreFileInterestNotifier
= 0;
771 IOClosePolledCoreFile();
774 return (kIOReturnSuccess
);
778 OpenKernelCoreMedia(thread_call_param_t p0
, thread_call_param_t p1
)
780 IOService
* newService
;
784 newService
= (IOService
*) p1
;
787 if (gIOPolledCoreFileVars
) break;
788 string
= OSDynamicCast(OSString
, newService
->getProperty(kIOBSDNameKey
));
790 snprintf(filename
, sizeof(filename
), "/dev/%s", string
->getCStringNoCopy());
791 if (kIOReturnSuccess
!= IOOpenPolledCoreFile(filename
)) break;
792 gIOPolledCoreFileInterestNotifier
= newService
->registerInterest(
793 gIOGeneralInterest
, &KernelCoreMediaInterest
, NULL
, 0);
797 newService
->release();
801 NewKernelCoreMedia(void * target
, void * refCon
,
802 IOService
* newService
,
803 IONotifier
* notifier
)
805 static volatile UInt32 onlyOneCorePartition
= 0;
808 if (!OSCompareAndSwap(0, 1, &onlyOneCorePartition
)) break;
809 if (gIOPolledCoreFileVars
) break;
810 if (!gIOOpenPolledCoreFileTC
) break;
811 newService
= newService
->getProvider();
812 if (!newService
) break;
813 newService
->retain();
814 thread_call_enter1(gIOOpenPolledCoreFileTC
, newService
);
821 #endif /* IOPOLLED_COREFILE */
824 IOBSDMountChange(struct mount
* mp
, uint32_t op
)
826 #if IOPOLLED_COREFILE
828 OSDictionary
* bsdMatching
;
829 OSDictionary
* mediaMatching
;
832 if (!gIOPolledCoreFileNotifier
) do
834 if (!gIOOpenPolledCoreFileTC
) gIOOpenPolledCoreFileTC
= thread_call_allocate(&OpenKernelCoreMedia
, NULL
);
835 bsdMatching
= IOService::serviceMatching("IOMediaBSDClient");
836 if (!bsdMatching
) break;
837 mediaMatching
= IOService::serviceMatching("IOMedia");
838 string
= OSString::withCStringNoCopy("5361644D-6163-11AA-AA11-00306543ECAC");
839 if (!string
|| !mediaMatching
) break;
840 mediaMatching
->setObject("Content", string
);
842 bsdMatching
->setObject(gIOParentMatchKey
, mediaMatching
);
843 mediaMatching
->release();
845 gIOPolledCoreFileNotifier
= IOService::addMatchingNotification(
846 gIOFirstMatchNotification
, bsdMatching
,
847 &NewKernelCoreMedia
, NULL
, NULL
, -1000);
851 #endif /* IOPOLLED_COREFILE */
854 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
857 IOTaskHasEntitlement(task_t task
, const char * entitlement
)
860 obj
= IOUserClient::copyClientEntitlement(task
, entitlement
);
861 if (!obj
) return (false);
863 return (obj
!= kOSBooleanFalse
);