Files
openthread/tests/fuzz/fuzz_radio-one-node.cpp
Abtin Keshavarzian cb4b28313b [logging] add support for per-instance log levels (#12740)
This commit introduces the ability to set and manage log levels on a
per-instance basis when dynamic logging is enabled, while maintaining
backward compatibility with existing logging behaviors.

The existing `otLoggingGetLevel()` and `otLoggingSetLevel()` APIs are
repurposed to manage the "global" log level. They continue to behave
exactly as before in both single-instance and multi-instance
configurations, ensuring that existing users of these APIs do not need
to change their implementations. To provide more granular control, new
APIs `otGetLogLevel()` and `otSetLogLevel()` are added to handle
per-instance log levels.

Specifically, this commit makes the following changes:
- Adds `mLogLevel` to `Instance` to track the instance-specific log
  level.
- Renames the global log level static variable to `sGlobalLogLevel` and
  introduces `GetGlobalLogLevel()` and `SetGlobalLogLevel()` to manage
  it in a multi-instance configuration.
- Updates `otGetLogLevel()` and `otSetLogLevel()` APIs to handle
  per-instance log level retrieval and configuration. If a specific
  level is not set for an instance, it falls back to the global
  log level.
- Adds `mIsLogLevelSet` to distinguish between an explicitly set
  instance log level and the global fallback in multi-instance builds.
- Introduces `otPlatLogHandleLogLevelChanged()` platform callback to
  notify the platform when an instance-specific log level is updated.
- Updates Nexus tests to use `SetGlobalLogLevel()` instead of the
  deprecated instance `SetLogLevel()` method.
2026-03-27 00:24:49 -05:00

161 lines
4.7 KiB
C++

/*
* 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 <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#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<uint8_t *>(malloc(mSize));
memcpy(buf, mData, mSize);
mSize = 0;
return buf;
}
uint8_t ConsumeIntegralInRange(uint8_t aMin, uint8_t aMax)
{
assert(aMin < aMax);
uint16_t range = aMax - aMin;
uint8_t result;
ConsumeData(&result, sizeof(result));
result = result % (range + 1);
return result + aMin;
}
size_t RemainingBytes(void) { return mSize; }
private:
const uint8_t *mData;
size_t mSize;
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
FuzzDataProvider fdp(data, size);
unsigned int seed;
otRadioFrame frame;
otError error;
if (size < sizeof(seed) + sizeof(error) + sizeof(frame))
{
return 0;
}
if (size > sizeof(seed) + sizeof(error) + sizeof(frame) + OT_RADIO_FRAME_MAX_SIZE)
{
return 0;
}
fdp.ConsumeData(&seed, sizeof(seed));
srand(seed);
Core nexus;
Node &node = nexus.CreateNode();
SuccessOrQuit(node.GetInstance().SetLogLevel(kLogLevelInfo));
node.GetInstance().Get<BorderRouter::InfraIf>().Init(/* aInfraIfIndex */ 1, /* aInfraIfIsRunning */ true);
SuccessOrQuit(node.GetInstance().Get<BorderRouter::RoutingManager>().SetEnabled(true));
node.GetInstance().Get<Srp::Server>().SetAutoEnableMode(true);
node.GetInstance().Get<BorderRouter::RoutingManager>().SetDhcp6PdEnabled(true);
node.GetInstance().Get<BorderRouter::RoutingManager>().SetNat64PrefixManagerEnabled(true);
node.GetInstance().Get<Nat64::Translator>().SetEnabled(true);
Log("---------------------------------------------------------------------------------------");
Log("Form network");
node.Form();
nexus.AdvanceTime(60 * 1000);
VerifyOrQuit(node.Get<Mle::Mle>().IsLeader());
VerifyOrQuit(node.Get<Srp::Server>().GetState() == Srp::Server::kStateRunning);
Log("---------------------------------------------------------------------------------------");
Log("Fuzz");
error = static_cast<otError>(fdp.ConsumeIntegralInRange(OT_ERROR_NONE, OT_NUM_ERRORS - 1));
fdp.ConsumeData(&frame, sizeof(frame));
frame.mLength = fdp.RemainingBytes();
if (frame.mLength == 0)
{
frame.mPsdu = NULL;
}
else
{
frame.mPsdu = fdp.ConsumeRemainingBytes();
}
otPlatRadioReceiveDone(&node.GetInstance(), &frame, error);
nexus.AdvanceTime(10 * 1000);
if (frame.mPsdu)
{
free(frame.mPsdu);
}
exit:
return 0;
}
} // namespace Nexus
} // namespace ot