Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDKECMF-233 testing workflows. DO NOT MERGE. #1

Closed
wants to merge 7 commits into from

Conversation

jamcoole
Copy link

No description provided.

@jamcoole jamcoole requested review from a team as code owners January 21, 2025 10:53
@scthunderbolt scthunderbolt changed the title RDKECMF-233 testing workflows RDKECMF-233 testing workflows. DO NOT MERGE. Jan 21, 2025
@@ -11128,7 +11128,7 @@
{
std::string tmedia = media;
TileInfo tileInfo;
memset( &tileInfo,0,sizeof(tileInfo) );
memset( &tileInfo,0,10*sizeof(tileInfo) );

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverity Issue - Out-of-bounds access

Overrunning struct type TileInfo of 64 bytes by passing it to a function which accesses it at byte offset 639 using argument "640UL".

High Impact, CWE-119
OVERRUN

@@ -11128,7 +11128,7 @@
{
std::string tmedia = media;
TileInfo tileInfo;
memset( &tileInfo,0,sizeof(tileInfo) );
memset( &tileInfo,0,10*sizeof(tileInfo) );

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverity Issue - Wrong sizeof argument

Passing argument "&tileInfo" of type "TileInfo *" and argument "640UL" ("10UL * 64UL") to function "memset" is suspicious because "sizeof (TileInfo) /64/" is expected.

Medium Impact, CWE-131
SIZEOF_MISMATCH

@rdkcmf-jenkins
Copy link

Coverity Issue - Dereference after null check

Dereferencing null pointer "delta".

Medium Impact, CWE-476
FORWARD_NULL

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
fragmentcollector_mpd.cpp:8965

@rdkcmf-jenkins
Copy link

Coverity Issue - Data race condition

Accessing "this->mDiscontinuityTuneOperationInProgress" without holding lock "PrivateInstanceAAMP.mLock". Elsewhere, "PrivateInstanceAAMP.mDiscontinuityTuneOperationInProgress" is written to with "PrivateInstanceAAMP.mLock" held 4 out of 4 times (2 of these accesses strongly imply that it is necessary).

Medium Impact, CWE-366
MISSING_LOCK

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
priv_aamp.cpp:2050

@rdkcmf-jenkins
Copy link

Coverity Issue - Variable copied when it could be moved

"textTrack" is copied and then passed-by-reference as parameter to STL insertion function "std::vector<TextTrackInfo, std::allocator >::push_back(std::vector<TextTrackInfo, std::allocator >::value_type const &)", when it could be moved instead.

Low Impact, CWE-none
COPY_INSTEAD_OF_MOVE

How to fix

Use "std::move(""textTrack"")" instead of "textTrack".

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
fragmentcollector_mpd.cpp:6208

@rdkcmf-jenkins
Copy link

Coverity Issue - Data race condition

Accessing "this->mDownloadsEnabled" without holding lock "PrivateInstanceAAMP.mLock". Elsewhere, "PrivateInstanceAAMP.mDownloadsEnabled" is written to with "PrivateInstanceAAMP.mLock" held 2 out of 2 times (2 of these accesses strongly imply that it is necessary).

Medium Impact, CWE-366
MISSING_LOCK

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
priv_aamp.cpp:3987

@rdkcmf-jenkins
Copy link

Coverity Issue - Data race condition

Accessing "this->mCdaiObject->mCurAdIdx" without holding lock "PrivateCDAIObjectMPD.mDaiMtx". Elsewhere, "PrivateCDAIObjectMPD.mCurAdIdx" is written to with "PrivateCDAIObjectMPD.mDaiMtx" held 9 out of 9 times (1 of these accesses strongly imply that it is necessary).

Medium Impact, CWE-366
MISSING_LOCK

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
fragmentcollector_mpd.cpp:13943

@rdkcmf-jenkins
Copy link

Coverity Issue - Dereference after null check

Passing null pointer "mediaTrack" to "GetBufferedDuration", which dereferences it. (The dereference happens because this is a virtual function call.)

Medium Impact, CWE-476
FORWARD_NULL

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
priv_aamp.cpp:4047

@rdkcmf-jenkins
Copy link

Coverity Issue - Variable copied when it could be moved

"textTrack" is copied and then passed-by-reference as parameter to STL insertion function "std::vector<TextTrackInfo, std::allocator >::push_back(std::vector<TextTrackInfo, std::allocator >::value_type const &)", when it could be moved instead.

Low Impact, CWE-none
COPY_INSTEAD_OF_MOVE

How to fix

Use "std::move(""textTrack"")" instead of "textTrack".

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
fragmentcollector_mpd.cpp:6220

@rdkcmf-jenkins
Copy link

Coverity Issue - Dereference after null check

Dereferencing null pointer "http_error".

Medium Impact, CWE-476
FORWARD_NULL

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
priv_aamp.cpp:4695

@rdkcmf-jenkins
Copy link

Coverity Issue - Variable copied when it could be moved

"textTrack" is copied and then passed-by-reference as parameter to STL insertion function "std::vector<TextTrackInfo, std::allocator >::push_back(std::vector<TextTrackInfo, std::allocator >::value_type const &)", when it could be moved instead.

Low Impact, CWE-none
COPY_INSTEAD_OF_MOVE

How to fix

Use "std::move(""textTrack"")" instead of "textTrack".

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
fragmentcollector_mpd.cpp:6229

@rdkcmf-jenkins
Copy link

Coverity Issue - Data race condition

A wait is performed without a loop. If there is a spurious wakeup, the condition may not be satisfied.

Medium Impact, CWE-none
BAD_CHECK_OF_WAIT_COND

How to fix

Check the wait condition in a loop, with the lock held. The lock must not be released between the condition and the wait.

Issue location

This issue was discovered outside the diff for this Pull Request. You can find it at:
priv_aamp.cpp:7286

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants