Skip to content

Commit f9a74e7

Browse files
Merge branch 'release_2.5-1.4' into bugfix/soc_ncp_deepsleep_issue
2 parents b544a77 + ce89c61 commit f9a74e7

File tree

8 files changed

+60
-12
lines changed

8 files changed

+60
-12
lines changed

.github/CODEOWNERS

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Default codeowners for the repository
2-
* @SiliconLabsSoftware/matter-watt-reviewers
3-
2+
* @SiliconLabsSoftware/matter-codeowners
43
#codeowners for the CODEOWNERS file
54
/.github/CODEOWNERS @SiliconLabsSoftware/matter-admin

examples/platform/silabs/sensors/AirQuality/AirQualitySensor.cpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,8 @@
2222
#include <platform/CHIPDeviceLayer.h>
2323

2424
#ifdef USE_SPARKFUN_AIR_QUALITY_SENSOR
25-
#ifdef __cplusplus
26-
extern "C" {
27-
#endif
28-
#include <sparkfun_sgp40.h>
29-
}
3025
#include "sl_i2cspm_instances.h"
26+
#include <sparkfun_sgp40.h>
3127
#endif // USE_SPARKFUN_AIR_QUALITY_SENSOR
3228

3329
namespace {

src/app/clusters/user-label-server/user-label-server.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ CHIP_ERROR UserLabelAttrAccess::WriteLabelList(const ConcreteDataAttributePath &
143143

144144
return provider->SetUserLabelList(endpoint, labelList);
145145
}
146+
146147
if (aPath.mListOp == ConcreteDataAttributePath::ListOperation::AppendItem)
147148
{
148149
Structs::LabelStruct::DecodableType entry;

src/app/tests/suites/TestUserLabelClusterConstraints.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,35 @@ tests:
5555
]
5656
response:
5757
error: CONSTRAINT_ERROR
58+
59+
- label: "Attempt to write a large label list"
60+
command: "writeAttribute"
61+
attribute: "LabelList"
62+
arguments:
63+
value: [
64+
# Example repeated user labels to blow up the maximum allowed
65+
{ Label: "roomName", Value: "master bedroom 1" },
66+
{ Label: "orientation", Value: "east" },
67+
{ Label: "floor", Value: "2" },
68+
{ Label: "roomType", Value: "bedroom" },
69+
{ Label: "someKey5", Value: "someVal5" },
70+
{ Label: "someKey6", Value: "someVal6" },
71+
{ Label: "someKey7", Value: "someVal7" },
72+
{ Label: "someKey8", Value: "someVal8" },
73+
{ Label: "someKey9", Value: "someVal9" },
74+
{ Label: "someKey10", Value: "someVal10" },
75+
{ Label: "someKey11", Value: "someVal11" },
76+
{ Label: "someKey12", Value: "someVal12" },
77+
{ Label: "someKey13", Value: "someVal13" },
78+
{ Label: "someKey14", Value: "someVal14" },
79+
{ Label: "someKey15", Value: "someVal15" },
80+
{ Label: "someKey16", Value: "someVal16" },
81+
{ Label: "someKey17", Value: "someVal17" },
82+
{ Label: "someKey18", Value: "someVal18" },
83+
{ Label: "someKey19", Value: "someVal19" },
84+
{ Label: "someKey20", Value: "someVal20" },
85+
]
86+
response:
87+
# When the cluster runs out of capacity to store these entries,
88+
# we expect a FAILURE get returned.
89+
error: FAILURE

src/controller/python/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ chip_python_wheel_action("chip-repl") {
394394
} else if (current_os == "linux") {
395395
py_package_reqs += [
396396
"dbus-python==1.2.18",
397-
"pygobject",
397+
"pygobject==3.50.0",
398398
]
399399
}
400400

src/platform/DeviceInfoProvider.cpp

+8-3
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,16 @@ CHIP_ERROR DeviceInfoProvider::AppendUserLabel(EndpointId endpoint, const UserLa
8282
{
8383
size_t length;
8484

85-
// Increase the size of UserLabelList by 1
85+
// Fetch current list length
8686
ReturnErrorOnFailure(GetUserLabelLength(endpoint, length));
87-
ReturnErrorOnFailure(SetUserLabelLength(endpoint, length + 1));
8887

89-
// Append the user label at the end of UserLabelList
88+
if (length >= kMaxUserLabelListLength)
89+
{
90+
return CHIP_ERROR_NO_MEMORY;
91+
}
92+
93+
// Add the new entry to the list
94+
ReturnErrorOnFailure(SetUserLabelLength(endpoint, length + 1));
9095
ReturnErrorOnFailure(SetUserLabelAt(endpoint, length, label));
9196

9297
return CHIP_NO_ERROR;

src/transport/raw/TCP.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,15 @@ CHIP_ERROR TCPBase::ProcessReceivedBuffer(Inet::TCPEndPoint * endPoint, const Pe
343343
// We have not yet received the complete message.
344344
return CHIP_NO_ERROR;
345345
}
346+
346347
state->mReceived.Consume(kPacketSizeBytes);
348+
349+
if (messageSize == 0)
350+
{
351+
// No payload but considered a valid message. Return success to keep the connection alive.
352+
return CHIP_NO_ERROR;
353+
}
354+
347355
ReturnErrorOnFailure(ProcessSingleMessage(peerAddress, state, messageSize));
348356
}
349357

src/transport/raw/tests/TestTCP.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ constexpr NodeId kSourceNodeId = 123654;
6464
constexpr NodeId kDestinationNodeId = 111222333;
6565
constexpr uint32_t kMessageCounter = 18;
6666

67-
const char PAYLOAD[] = "Hello!";
67+
const char PAYLOAD[] = "Hello!";
68+
const char messageSize_TEST[] = "\x00\x00\x00\x00";
6869

6970
class MockTransportMgrDelegate : public chip::TransportMgrDelegate
7071
{
@@ -633,6 +634,12 @@ TEST_F(TestTCP, CheckProcessReceivedBuffer)
633634
TestData testData[2];
634635
gMockTransportMgrDelegate.SetCallback(TestDataCallbackCheck, testData);
635636

637+
// Test a single packet buffer with zero message size.
638+
System::PacketBufferHandle buf = System::PacketBufferHandle::NewWithData(messageSize_TEST, 4);
639+
ASSERT_NE(&buf, nullptr);
640+
err = TestAccess::ProcessReceivedBuffer(tcp, lEndPoint, lPeerAddress, std::move(buf));
641+
EXPECT_EQ(err, CHIP_NO_ERROR);
642+
636643
// Test a single packet buffer.
637644
gMockTransportMgrDelegate.mReceiveHandlerCallCount = 0;
638645
EXPECT_TRUE(testData[0].Init((const uint32_t[]){ 111, 0 }));

0 commit comments

Comments
 (0)