- // Make sure path begins with /dev/disk or /dev/rdisk
- if (is_disk_device(disk_path) == false) {
- goto out;
- }
-
- // Derive device name
- disk_name = disk_path;
- if(strncmp(disk_path, _PATH_DEV, strlen(_PATH_DEV)) == 0) {
- // Skip over leading "/dev/"
- disk_name += strlen(_PATH_DEV);
- }
- if (strncmp(disk_name, "r", strlen("r")) == 0) {
- // Raw device, skip over leading "r"
- disk_name += strlen("r");
- }
-
- // Get an iterator object
- error = IOServiceGetMatchingServices(kIOMasterPortDefault,
- IOBSDNameMatching(kIOMasterPortDefault, 0, disk_name), &iter);
- if (error) {
- os_log_error(OS_LOG_DEFAULT, "Warning, unable to obtain UUID info (iterator), device %s", disk_name);
- goto out;
- }
-
- // Get the matching device object
- obj = IOIteratorNext(iter);
- if (!obj) {
- os_log_error(OS_LOG_DEFAULT, "Warning, unable to obtain UUID info (dev obj), device %s", disk_name);
- goto out;
- }
-
- // Get a protocol characteristics dictionary
- protocolCharacteristics = (CFDictionaryRef) IORegistryEntrySearchCFProperty(obj,
- kIOServicePlane,
- CFSTR(kIOPropertyProtocolCharacteristicsKey),
- kCFAllocatorDefault,
- kIORegistryIterateRecursively|kIORegistryIterateParents);
-
- if ((protocolCharacteristics == NULL) || (CFDictionaryGetTypeID() != CFGetTypeID(protocolCharacteristics)))
- {
- os_log_error(OS_LOG_DEFAULT, "Warning, failed to obtain UUID info (protocol characteristics), device %s\n", disk_name);
- goto out;
- }
-
- // Check for kIOPropertyInternalKey
- locationRef = (CFStringRef) CFDictionaryGetValue(protocolCharacteristics, CFSTR(kIOPropertyPhysicalInterconnectLocationKey));
-
- if ((locationRef == NULL) || (CFStringGetTypeID() != CFGetTypeID(locationRef))) {
- os_log_error(OS_LOG_DEFAULT, "Warning, failed to obtain UUID info (location), device %s\n", disk_name);
- goto out;
- }
-
- if (CFEqual(locationRef, CFSTR(kIOPropertyInternalKey))) {
- deviceInternal = true;
- }
-
- // Check for kIOMediaRemovableKey
- removableRef = (CFBooleanRef)IORegistryEntrySearchCFProperty(obj,
- kIOServicePlane,
- CFSTR(kIOMediaRemovableKey),
- kCFAllocatorDefault,
- 0);
-
- if ((removableRef == NULL) || (CFBooleanGetTypeID() != CFGetTypeID(removableRef))) {
- os_log_error(OS_LOG_DEFAULT, "Warning, unable to obtain UUID info (MediaRemovable key), device %s", disk_name);
- goto out;
- }
-
- if (CFBooleanGetValue(removableRef)) {
- mediaRemovable = true;
- }
-
- // is_internal ==> DeviceInternal && !MediaRemovable
- if ((deviceInternal == true) && (mediaRemovable == false)) {
- *is_internal = true;