Fix kernel memory leak in pNotifShare #655
Open
+15
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
380 if (pNotifierClient != NULL)
381 {
382 ¦ RsResourceRef *pNotifierRef;
383 ¦ INotifier *pNotifier;
384 ¦ if (clientGetResourceRef(pNotifierClient, hNotifierResource, &pNotifierRef) != NV_OK)
385 ¦ ¦ return NV_ERR_INVALID_OBJECT;
386
387 ¦ pNotifier = dynamicCast(pNotifierRef->pResource, INotifier);
388 ¦ if (pNotifier == NULL)
389 ¦ ¦ return NV_ERR_INVALID_OBJECT;
390
391 ¦ rmStatus = inotifyGetOrAllocNotifShare(pNotifier, hNotifierClient, hNotifierResource, &pNotifierShare);
392 ¦ if (rmStatus != NV_OK)
393 ¦ ¦ return rmStatus;
394
395 ¦ *pppEventNotification = inotifyGetNotificationListPtr(pNotifierShare->pNotifier);
396 }
397
398 serverRefShare(&g_resServ, staticCast(pNotifierShare, RsShared)); <-------
399 pEvent->pNotifierShare = pNotifierShare;
line 391 inotifyGetOrAllocNotifShare() initializes pNotifierShare and sets pNotifierShare->refCount to 1.
line 398 serverRefShare() accidentally increments pNotifierShare0->refCount by 1, and it's 2 now.
So pNotifier->refCount would never reach zero and leak forever. This issue can be fixed by my commit.