Skip to content

Commit 1f078a8

Browse files
tv-casting-app: fix TargetVideoPlayerInfo mem corruption (#257)
1 parent 9483084 commit 1f078a8

File tree

3 files changed

+37
-4
lines changed

3 files changed

+37
-4
lines changed

examples/tv-casting-app/android/App/app/src/main/jni/com/chip/casting/TvCastingApp.java

+14-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,20 @@ public void discoverVideoPlayerCommissioners(
140140
}
141141

142142
List<VideoPlayer> preCommissionedVideoPlayers = readCachedVideoPlayers();
143-
143+
if (preCommissionedVideoPlayers != null) {
144+
for (VideoPlayer videoPlayer : preCommissionedVideoPlayers) {
145+
Log.d(
146+
TAG,
147+
"preCommissionedVideoPlayer hostName: "
148+
+ videoPlayer.getHostName()
149+
+ " MACAddress: "
150+
+ videoPlayer.getMACAddress()
151+
+ " numIPs: "
152+
+ videoPlayer.getNumIPs()
153+
+ " IP Addresses: "
154+
+ videoPlayer.getIpAddresses());
155+
}
156+
}
144157
WifiManager wifiManager =
145158
(WifiManager) applicationContext.getSystemService(Context.WIFI_SERVICE);
146159
multicastLock = wifiManager.createMulticastLock("multicastLock");

examples/tv-casting-app/tv-casting-common/include/CastingServer.h

+1
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ class CastingServer : public AppDelegate
446446

447447
static void VerifyOrEstablishConnectionTask(chip::System::Layer * aSystemLayer, void * context);
448448
CHIP_ERROR ReadMACAddress(TargetEndpointInfo * endpoint);
449+
int GetCachedVideoPlayerIndex(TargetVideoPlayerInfo * targetVideoPlayerInfo);
449450

450451
/**
451452
* @brief Retrieve the IP Address to use for the UDC request.

examples/tv-casting-app/tv-casting-common/src/CastingServer.cpp

+22-3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,9 @@ CHIP_ERROR CastingServer::VerifyOrEstablishConnection(TargetVideoPlayerInfo & ta
481481
{
482482
return CHIP_ERROR_INVALID_ARGUMENT;
483483
}
484+
int cacheIndex = GetCachedVideoPlayerIndex(&targetVideoPlayerInfo);
485+
VerifyOrReturnError(cacheIndex >= 0, CHIP_ERROR_INVALID_ARGUMENT);
486+
484487
mOnConnectionSuccessClientCallback = onConnectionSuccess;
485488
mOnConnectionFailureClientCallback = onConnectionFailure;
486489
mOnNewOrUpdatedEndpoint = onNewOrUpdatedEndpoint;
@@ -493,12 +496,13 @@ CHIP_ERROR CastingServer::VerifyOrEstablishConnection(TargetVideoPlayerInfo & ta
493496
prevDeviceProxy->Disconnect();
494497
}
495498

496-
CastingServer::GetInstance()->mActiveTargetVideoPlayerInfo = targetVideoPlayerInfo;
499+
CastingServer::GetInstance()->mActiveTargetVideoPlayerInfo = mCachedTargetVideoPlayerInfo[cacheIndex];
497500
uint32_t delay = 0;
498-
if (targetVideoPlayerInfo.IsAsleep())
501+
if (CastingServer::GetInstance()->mActiveTargetVideoPlayerInfo.IsAsleep())
499502
{
500503
ChipLogProgress(AppServer, "CastingServer::VerifyOrEstablishConnection(): Sending WoL to sleeping VideoPlayer and waiting");
501-
ReturnErrorOnFailure(CastingServer::GetInstance()->SendWakeOnLan(targetVideoPlayerInfo));
504+
ReturnErrorOnFailure(
505+
CastingServer::GetInstance()->SendWakeOnLan(CastingServer::GetInstance()->mActiveTargetVideoPlayerInfo));
502506

503507
#ifdef CHIP_DEVICE_CONFIG_STR_WAKE_UP_DELAY_SEC
504508
delay = CHIP_DEVICE_CONFIG_STR_WAKE_UP_DELAY_SEC * 1000;
@@ -511,6 +515,21 @@ CHIP_ERROR CastingServer::VerifyOrEstablishConnection(TargetVideoPlayerInfo & ta
511515
nullptr);
512516
}
513517

518+
int CastingServer::GetCachedVideoPlayerIndex(TargetVideoPlayerInfo * targetVideoPlayerInfo)
519+
{
520+
if (targetVideoPlayerInfo != nullptr)
521+
{
522+
for (size_t i = 0; i < kMaxCachedVideoPlayers && mCachedTargetVideoPlayerInfo[i].IsInitialized(); i++)
523+
{
524+
if (mCachedTargetVideoPlayerInfo[i] == *targetVideoPlayerInfo)
525+
{
526+
return static_cast<int>(i);
527+
}
528+
}
529+
}
530+
return -1;
531+
}
532+
514533
void CastingServer::VerifyOrEstablishConnectionTask(chip::System::Layer * aSystemLayer, void * context)
515534
{
516535
ChipLogProgress(AppServer, "CastingServer::VerifyOrEstablishConnectionTask called");

0 commit comments

Comments
 (0)