Skip to content

Commit d0a1cb8

Browse files
committed
VMBusDevice: Cleanup attach/detach methods
1 parent ad30047 commit d0a1cb8

File tree

1 file changed

+24
-15
lines changed

1 file changed

+24
-15
lines changed

MacHyperVSupport/VMBusDevice/HyperVVMBusDevice.cpp

+24-15
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ OSDefineMetaClassAndStructors(HyperVVMBusDevice, super);
1111

1212
bool HyperVVMBusDevice::attach(IOService *provider) {
1313
bool result = false;
14-
14+
1515
char channelLocation[10];
1616
OSString *typeIdString;
1717
OSNumber *channelNumber;
1818
OSData *instanceBytes;
19-
19+
2020
UInt8 builtInBytes = 0;
2121
OSData *builtInData;
22-
22+
2323
//
2424
// Get VMBus provider.
2525
//
@@ -46,14 +46,14 @@ bool HyperVVMBusDevice::attach(IOService *provider) {
4646
HVSYSLOG("Failed to initialize work loop");
4747
break;
4848
}
49-
49+
5050
_commandGate = IOCommandGate::commandGate(this);
5151
if (_commandGate == nullptr) {
5252
HVSYSLOG("Failed to initialize command gate");
5353
break;
5454
}
5555
_workLoop->addEventSource(_commandGate);
56-
56+
5757
//
5858
// Get channel number and GUID properties.
5959
//
@@ -64,7 +64,7 @@ bool HyperVVMBusDevice::attach(IOService *provider) {
6464
HVSYSLOG("Failed to get channel properties");
6565
break;
6666
}
67-
67+
6868
//
6969
// Copy channel number and GUIDs.
7070
// uuid_string_t size includes null terminator.
@@ -73,13 +73,13 @@ bool HyperVVMBusDevice::attach(IOService *provider) {
7373
_channelId = channelNumber->unsigned32BitValue();
7474
HVDBGLOG("Attaching nub type %s for channel %u", _typeId, _channelId);
7575
memcpy(_instanceId, instanceBytes->getBytesNoCopy(), instanceBytes->getLength());
76-
76+
7777
//
7878
// Set location to ensure unique names in I/O Registry.
7979
//
8080
snprintf(channelLocation, sizeof (channelLocation), "%x", (unsigned int) _channelId);
8181
setLocation(channelLocation);
82-
82+
8383
//
8484
// The built-in property is required for some devices, like networking.
8585
//
@@ -91,12 +91,15 @@ bool HyperVVMBusDevice::attach(IOService *provider) {
9191
setProperty("built-in", builtInData);
9292
builtInData->release();
9393

94-
_vmbusRequestsLock = IOLockAlloc();
95-
_vmbusTransLock = IOLockAlloc();
96-
94+
_vmbusRequestsLock = IOLockAlloc();
95+
_vmbusTransLock = IOLockAlloc();
9796
_threadZeroRequest.lock = IOLockAlloc();
97+
if ((_vmbusRequestsLock == nullptr) || (_vmbusTransLock == nullptr) || (_threadZeroRequest.lock == nullptr)) {
98+
HVSYSLOG("Failed to initialize locks");
99+
break;
100+
}
98101
prepareSleepThread();
99-
102+
100103
result = true;
101104
} while (false);
102105

@@ -117,9 +120,15 @@ void HyperVVMBusDevice::detach(IOService *provider) {
117120
OSSafeReleaseNULL(_vmbusProvider);
118121
}
119122

120-
IOLockFree(_vmbusRequestsLock);
121-
IOLockFree(_vmbusTransLock);
122-
IOLockFree(_threadZeroRequest.lock);
123+
if (_vmbusRequestsLock != nullptr) {
124+
IOLockFree(_vmbusRequestsLock);
125+
}
126+
if (_vmbusTransLock != nullptr) {
127+
IOLockFree(_vmbusTransLock);
128+
}
129+
if (_threadZeroRequest.lock != nullptr) {
130+
IOLockFree(_threadZeroRequest.lock);
131+
}
123132

124133
if (_commandGate != nullptr) {
125134
_workLoop->removeEventSource(_commandGate);

0 commit comments

Comments
 (0)