From 2b85b0160f90cdaebe6cd5463654d7717f83800d Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Tue, 16 Sep 2025 16:34:50 -0700 Subject: [PATCH] [fuzz] add CLI test (#11946) --- tests/fuzz/CMakeLists.txt | 2 + tests/fuzz/cli.cpp | 144 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 tests/fuzz/cli.cpp diff --git a/tests/fuzz/CMakeLists.txt b/tests/fuzz/CMakeLists.txt index f8cb57939..f3b6c4499 100644 --- a/tests/fuzz/CMakeLists.txt +++ b/tests/fuzz/CMakeLists.txt @@ -40,6 +40,7 @@ set(COMMON_COMPILE_OPTIONS ) set(COMMON_LIBS + openthread-cli-ftd openthread-ftd ot-nexus-platform ${OT_MBEDTLS} @@ -81,6 +82,7 @@ endmacro() #---------------------------------------------------------------------------------------------------------------------- +ot_nexus_test(cli) ot_nexus_test(icmp6) ot_nexus_test(ip6) ot_nexus_test(mdns) diff --git a/tests/fuzz/cli.cpp b/tests/fuzz/cli.cpp new file mode 100644 index 000000000..a403a1a18 --- /dev/null +++ b/tests/fuzz/cli.cpp @@ -0,0 +1,144 @@ +/* + * Copyright (c) 2025, The OpenThread Authors. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the copyright holder nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include + +#include + +#include "platform/nexus_core.hpp" +#include "platform/nexus_node.hpp" + +namespace ot { +namespace Nexus { + +class FuzzDataProvider +{ +public: + FuzzDataProvider(const uint8_t *aData, size_t aSize) + : mData(aData) + , mSize(aSize) + { + } + + void ConsumeData(void *aBuf, size_t aLength) + { + assert(aLength <= mSize); + memcpy(aBuf, mData, aLength); + mData += aLength; + mSize -= aLength; + } + + uint8_t *ConsumeRemainingBytes(void) + { + uint8_t *buf = static_cast(malloc(mSize + 1)); + memcpy(buf, mData, mSize); + buf[mSize] = '\0'; + mSize = 0; + return buf; + } + + size_t RemainingBytes(void) { return mSize; } + +private: + const uint8_t *mData; + size_t mSize; +}; + +static int CliOutput(void *aContext, const char *aFormat, va_list aArguments) +{ + OT_UNUSED_VARIABLE(aContext); + OT_UNUSED_VARIABLE(aFormat); + OT_UNUSED_VARIABLE(aArguments); + + return vsnprintf(nullptr, 0, aFormat, aArguments); +} + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) +{ + const uint16_t kMaxCommandSize = 65536; + + FuzzDataProvider fdp(data, size); + + unsigned int seed; + uint8_t *buffer; + + if (size < sizeof(seed)) + { + return 0; + } + + if (size > kMaxCommandSize) + { + return 0; + } + + fdp.ConsumeData(&seed, sizeof(seed)); + srand(seed); + + Core nexus; + + Node &node = nexus.CreateNode(); + + node.GetInstance().SetLogLevel(kLogLevelInfo); + + otCliInit(&node.GetInstance(), CliOutput, nullptr); + + node.GetInstance().Get().Init(/* aInfraIfIndex */ 1, /* aInfraIfIsRunning */ true); + node.GetInstance().Get().SetEnabled(true); + node.GetInstance().Get().SetAutoEnableMode(true); + node.GetInstance().Get().SetDhcp6PdEnabled(true); + node.GetInstance().Get().SetNat64PrefixManagerEnabled(true); + node.GetInstance().Get().SetEnabled(true); + + Log("---------------------------------------------------------------------------------------"); + Log("Form network"); + + node.Form(); + nexus.AdvanceTime(60 * 1000); + VerifyOrQuit(node.Get().IsLeader()); + VerifyOrQuit(node.Get().GetState() == Srp::Server::kStateRunning); + + Log("---------------------------------------------------------------------------------------"); + Log("Fuzz"); + + buffer = fdp.ConsumeRemainingBytes(); + + otCliInputLine(reinterpret_cast(buffer)); + + nexus.AdvanceTime(10 * 1000); + + free(buffer); + + return 0; +} + +} // namespace Nexus +} // namespace ot