* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "JdwpReadStream_fuzzer.h"
#include <uv.h>
#include <uv_status.h>
namespace Hdc {
class HdcJdwpFuzzer {
public:
static std::unique_ptr<HdcJdwp> Instance(uv_loop_t *loop, LoopStatus *loopStatus)
{
std::unique_ptr<HdcJdwp> jdwp = std::make_unique<HdcJdwp>(loop, loopStatus);
return jdwp;
}
};
bool FuzzJdwpReadStream(const uint8_t *data, size_t size)
{
uv_loop_t loop;
uv_loop_init(&loop);
LoopStatus ls(&loop, "not support");
auto jdwp = HdcJdwpFuzzer::Instance(&loop, &ls);
if (jdwp == nullptr) {
WRITE_LOG(LOG_FATAL, "FuzzJdwpReadStream jdwp is null");
return false;
}
HdcJdwp::HCtxJdwp ctx = (HdcJdwp::HCtxJdwp)jdwp->MallocContext();
if (ctx == nullptr) {
WRITE_LOG(LOG_FATAL, "FuzzJdwpReadStream ctx is null");
return false;
}
ctx->finish = true;
uv_pipe_t pipe;
pipe.data = ctx;
uv_stream_t *stream = (uv_stream_t *)&pipe;
uv_buf_t rbf = uv_buf_init(reinterpret_cast<char *>(const_cast<uint8_t *>(data)), size);
jdwp->ReadStream(stream, (ssize_t)size, &rbf);
delete ctx;
uv_stop(&loop);
uv_loop_close(&loop);
return true;
}
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
Hdc::FuzzJdwpReadStream(data, size);
return 0;
}