!155 fix: modify fuzz test

Merge pull request !155 from wangchaole/master
This commit is contained in:
openharmony_ci
2022-07-12 12:12:06 +00:00
committed by Gitee
32 changed files with 1111 additions and 1 deletions
@@ -15,7 +15,13 @@ group("fuzztest") {
testonly = true
deps = [
"onsinklocaldmsdied_fuzzer:fuzztest",
"onsourcelocaldmsdied_fuzzer:fuzztest",
"sinkhandlerinitsink_fuzzer:fuzztest",
"sinkhandlersubscribelocalhardware_fuzzer:fuzztest",
"sinkhandlerunsubscribelocalhardware_fuzzer:fuzztest",
"sinkonloadsystemabilityfail_fuzzer:fuzztest",
"sinkonloadsystemabilitysuccess_fuzzer:fuzztest",
"sourcehandlerconfigdistributedhardware_fuzzer:fuzztest",
"sourcehandlerinitsource_fuzzer:fuzztest",
"sourcehandlerregisterdistributedhardware_fuzzer:fuzztest",
@@ -0,0 +1,78 @@
# Copyright (c) 2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_camera/distributedcamera.gni")
##############################fuzztest##########################################
ohos_fuzztest("OnSinkLocalDmsDiedFuzzTest") {
module_out_path = "distributed_camera/onsinklocaldmsdied"
fuzz_config_file =
"${innerkits_path}/native_cpp/test/fuzztest/onsinklocaldmsdied_fuzzer"
include_dirs = [
"//utils/native/base/include",
"//utils/system/safwk/native/include",
"${fwk_utils_path}/include/log",
"${fwk_utils_path}/include",
"${fwk_common_path}/log/include",
"${fwk_common_path}/utils/include",
]
include_dirs += [
"include",
"${common_path}/include",
"${common_path}/include/constants",
"${innerkits_path}/native_cpp/camera_sink/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "onsinklocaldmsdied_fuzzer.cpp" ]
deps = [
"${fwk_utils_path}:distributedhardwareutils",
"${innerkits_path}/native_cpp/camera_sink:distributed_camera_sink_sdk",
"//utils/native/base:utils",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"OnSinkLocalDmsDiedFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
external_deps = [
"eventhandler:libeventhandler",
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr_standard:samgr_proxy",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":OnSinkLocalDmsDiedFuzzTest" ]
}
###############################################################################
@@ -0,0 +1,14 @@
# Copyright (c) 2022 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.
FUZZ
@@ -0,0 +1,53 @@
/*
* Copyright (c) 2022 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 "onsinklocaldmsdied_fuzzer.h"
#include <cstddef>
#include <cstdint>
#include "dcamera_sink_handler.h"
#include "dcamera_sink_handler_ipc.h"
#include "distributed_camera_constants.h"
#include "if_system_ability_manager.h"
#include "iservice_registry.h"
namespace OHOS {
namespace DistributedHardware {
void OnSinkLocalDmsDiedFuzzTest(const uint8_t* data, size_t size)
{
if ((data == nullptr) || (size < (sizeof(int32_t)))) {
return;
}
int32_t saId = *(reinterpret_cast<const int32_t*>(data));
sptr<ISystemAbilityManager> samgr =
SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager();
sptr<IRemoteObject> remoteObject = samgr->GetSystemAbility(saId);
wptr<IRemoteObject> remote (remoteObject);
DCameraSinkHandlerIpc::GetInstance().OnSinkLocalDmsDied(remote);
}
}
}
/* Fuzzer entry point */
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
/* Run your code on data */
OHOS::DistributedHardware::OnSinkLocalDmsDiedFuzzTest(data, size);
return 0;
}
@@ -0,0 +1,21 @@
/*
* Copyright (c) 2022 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.
*/
#ifndef ONSINKLOADMSDIED_FUZZER_H
#define ONSINKLOADMSDIED_FUZZER_H
#define FUZZ_PROJECT_NAME "onsinklocaldmsdied_fuzzer"
#endif
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2022 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.
-->
<fuzz_config>
<fuzztest>
<!-- maximum length of a test input -->
<max_len>1000</max_len>
<!-- maximum total time in seconds to run the fuzzer -->
<max_total_time>300</max_total_time>
<!-- memory usage limit in Mb -->
<rss_limit_mb>4096</rss_limit_mb>
</fuzztest>
</fuzz_config>
@@ -0,0 +1,74 @@
# Copyright (c) 2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_camera/distributedcamera.gni")
##############################fuzztest##########################################
ohos_fuzztest("SinkHandlerInitSinkFuzzTest") {
module_out_path = "distributed_camera/sinkhandlerinitsink"
fuzz_config_file =
"${innerkits_path}/native_cpp/test/fuzztest/sinkhandlerinitsink_fuzzer"
include_dirs = [
"//utils/system/safwk/native/include",
"${innerkits_path}/native_cpp",
"${fwk_common_path}/utils/include",
]
include_dirs += [
"include",
"${common_path}/include",
"${common_path}/include/constants",
"${innerkits_path}/native_cpp/camera_sink/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "sinkhandlerinitsink_fuzzer.cpp" ]
deps = [
"${common_path}:distributed_camera_utils",
"${innerkits_path}/native_cpp/camera_sink:distributed_camera_sink_sdk",
"//utils/native/base:utils",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"SinkHandlerInitSinkFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
external_deps = [
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr_standard:samgr_proxy",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":SinkHandlerInitSinkFuzzTest" ]
}
###############################################################################
@@ -0,0 +1,14 @@
# Copyright (c) 2022 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.
FUZZ
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2022 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.
-->
<fuzz_config>
<fuzztest>
<!-- maximum length of a test input -->
<max_len>1000</max_len>
<!-- maximum total time in seconds to run the fuzzer -->
<max_total_time>300</max_total_time>
<!-- memory usage limit in Mb -->
<rss_limit_mb>4096</rss_limit_mb>
</fuzztest>
</fuzz_config>
@@ -0,0 +1,48 @@
/*
* Copyright (c) 2022 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 "sinkhandlerinitsink_fuzzer.h"
#include <cstddef>
#include <cstdint>
#include "dcamera_sink_handler.h"
#include "distributed_camera_constants.h"
#include "if_system_ability_manager.h"
#include "iservice_registry.h"
namespace OHOS {
namespace DistributedHardware {
void SinkHandlerInitSinkFuzzTest(const uint8_t* data, size_t size)
{
if ((data == nullptr) || (size < 0)) {
return;
}
std::string params(reinterpret_cast<const char*>(data), size);
DCameraSinkHandler::GetInstance().InitSink(params);
}
}
}
/* Fuzzer entry point */
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
/* Run your code on data */
OHOS::DistributedHardware::SinkHandlerInitSinkFuzzTest(data, size);
return 0;
}
@@ -0,0 +1,21 @@
/*
* Copyright (c) 2022 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.
*/
#ifndef SINKHANDLERINITSINK_FUZZER_H
#define SINKHANDLERINITSINK_FUZZER_H
#define FUZZ_PROJECT_NAME "sinkhandlerinitsink_fuzzer"
#endif
@@ -0,0 +1,73 @@
# Copyright (c) 2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_camera/distributedcamera.gni")
##############################fuzztest##########################################
ohos_fuzztest("SinkHandlerSubscribeLocalHardwareFuzzTest") {
module_out_path = "distributed_camera/sinkhandlersubscribelocalhardware"
fuzz_config_file = "${innerkits_path}/native_cpp/test/fuzztest/sinkhandlersubscribelocalhardware_fuzzer"
include_dirs = [
"//utils/system/safwk/native/include",
"${innerkits_path}/native_cpp",
"${fwk_common_path}/utils/include",
]
include_dirs += [
"include",
"${common_path}/include",
"${common_path}/include/constants",
"${innerkits_path}/native_cpp/camera_sink/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "sinkhandlersubscribelocalhardware_fuzzer.cpp" ]
deps = [
"${common_path}:distributed_camera_utils",
"${innerkits_path}/native_cpp/camera_sink:distributed_camera_sink_sdk",
"//utils/native/base:utils",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"SinkHandlerSubscribeLocalHardwareFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
external_deps = [
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr_standard:samgr_proxy",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":SinkHandlerSubscribeLocalHardwareFuzzTest" ]
}
###############################################################################
@@ -0,0 +1,14 @@
# Copyright (c) 2022 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.
FUZZ
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2022 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.
-->
<fuzz_config>
<fuzztest>
<!-- maximum length of a test input -->
<max_len>1000</max_len>
<!-- maximum total time in seconds to run the fuzzer -->
<max_total_time>300</max_total_time>
<!-- memory usage limit in Mb -->
<rss_limit_mb>4096</rss_limit_mb>
</fuzztest>
</fuzz_config>
@@ -0,0 +1,49 @@
/*
* Copyright (c) 2022 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 "sinkhandlersubscribelocalhardware_fuzzer.h"
#include <cstddef>
#include <cstdint>
#include "dcamera_sink_handler.h"
#include "distributed_camera_constants.h"
#include "if_system_ability_manager.h"
#include "iservice_registry.h"
namespace OHOS {
namespace DistributedHardware {
void SinkHandlerSubscribeLocalHardwareFuzzTest(const uint8_t* data, size_t size)
{
if ((data == nullptr) || (size < 0)) {
return;
}
std::string param(reinterpret_cast<const char*>(data), size);
std::string dhId(reinterpret_cast<const char*>(data), size);
DCameraSinkHandler::GetInstance().SubscribeLocalHardware(dhId, param);
}
}
}
/* Fuzzer entry point */
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
/* Run your code on data */
OHOS::DistributedHardware::SinkHandlerSubscribeLocalHardwareFuzzTest(data, size);
return 0;
}
@@ -0,0 +1,21 @@
/*
* Copyright (c) 2022 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.
*/
#ifndef SINKHANDLERSUBSCRIBELOCALHARDWARE_FUZZER_H
#define SINKHANDLERSUBSCRIBELOCALHARDWARE_FUZZER_H
#define FUZZ_PROJECT_NAME "sinkhandlersubscribelocalhardware_fuzzer"
#endif
@@ -0,0 +1,73 @@
# Copyright (c) 2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_camera/distributedcamera.gni")
##############################fuzztest##########################################
ohos_fuzztest("SinkHandlerUnsubscribeLocalHardwareFuzzTest") {
module_out_path = "distributed_camera/sinkhandlerunsubscribelocalhardware"
fuzz_config_file = "${innerkits_path}/native_cpp/test/fuzztest/sinkhandlerunsubscribelocalhardware_fuzzer"
include_dirs = [
"//utils/system/safwk/native/include",
"${innerkits_path}/native_cpp",
"${fwk_common_path}/utils/include",
]
include_dirs += [
"include",
"${common_path}/include",
"${common_path}/include/constants",
"${innerkits_path}/native_cpp/camera_sink/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "sinkhandlerunsubscribelocalhardware_fuzzer.cpp" ]
deps = [
"${common_path}:distributed_camera_utils",
"${innerkits_path}/native_cpp/camera_sink:distributed_camera_sink_sdk",
"//utils/native/base:utils",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"SinkHandlerUnsubscribeLocalHardwareFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
external_deps = [
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr_standard:samgr_proxy",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":SinkHandlerUnsubscribeLocalHardwareFuzzTest" ]
}
###############################################################################
@@ -0,0 +1,14 @@
# Copyright (c) 2022 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.
FUZZ
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2022 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.
-->
<fuzz_config>
<fuzztest>
<!-- maximum length of a test input -->
<max_len>1000</max_len>
<!-- maximum total time in seconds to run the fuzzer -->
<max_total_time>300</max_total_time>
<!-- memory usage limit in Mb -->
<rss_limit_mb>4096</rss_limit_mb>
</fuzztest>
</fuzz_config>
@@ -0,0 +1,48 @@
/*
* Copyright (c) 2022 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 "sinkhandlerunsubscribelocalhardware_fuzzer.h"
#include <cstddef>
#include <cstdint>
#include "dcamera_sink_handler.h"
#include "distributed_camera_constants.h"
#include "if_system_ability_manager.h"
#include "iservice_registry.h"
namespace OHOS {
namespace DistributedHardware {
void SinkHandlerUnsubscribeLocalHardwareFuzzTest(const uint8_t* data, size_t size)
{
if ((data == nullptr) || (size < 0)) {
return;
}
std::string dhId(reinterpret_cast<const char*>(data), size);
DCameraSinkHandler::GetInstance().UnsubscribeLocalHardware(dhId);
}
}
}
/* Fuzzer entry point */
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
/* Run your code on data */
OHOS::DistributedHardware::SinkHandlerUnsubscribeLocalHardwareFuzzTest(data, size);
return 0;
}
@@ -0,0 +1,21 @@
/*
* Copyright (c) 2022 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.
*/
#ifndef SINKHANDLERUNSUBSCRIBELOCALHARDWARE_FUZZER_H
#define SINKHANDLERUNSUBSCRIBELOCALHARDWARE_FUZZER_H
#define FUZZ_PROJECT_NAME "sinkhandlerunsubscribelocalhardware_fuzzer"
#endif
@@ -0,0 +1,72 @@
# Copyright (c) 2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_camera/distributedcamera.gni")
##############################fuzztest##########################################
ohos_fuzztest("SinkOnLoadSystemAbilityFailFuzzTest") {
module_out_path = "distributed_camera/sinkonloadsystemabilityfail"
fuzz_config_file = "${innerkits_path}/native_cpp/test/fuzztest/sinkonloadsystemabilityfail_fuzzer"
include_dirs = [
"//utils/system/safwk/native/include",
"${fwk_common_path}/utils/include",
]
include_dirs += [
"include",
"${common_path}/include",
"${common_path}/include/constants",
"${innerkits_path}/native_cpp/camera_sink/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "sinkonloadsystemabilityfail_fuzzer.cpp" ]
deps = [
"${fwk_utils_path}:distributedhardwareutils",
"${innerkits_path}/native_cpp/camera_sink:distributed_camera_sink_sdk",
"//utils/native/base:utils",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"SinkOnLoadSystemAbilityFailFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
external_deps = [
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr_standard:samgr_proxy",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":SinkOnLoadSystemAbilityFailFuzzTest" ]
}
###############################################################################
@@ -0,0 +1,14 @@
# Copyright (c) 2022 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.
FUZZ
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2022 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.
-->
<fuzz_config>
<fuzztest>
<!-- maximum length of a test input -->
<max_len>1000</max_len>
<!-- maximum total time in seconds to run the fuzzer -->
<max_total_time>300</max_total_time>
<!-- memory usage limit in Mb -->
<rss_limit_mb>4096</rss_limit_mb>
</fuzztest>
</fuzz_config>
@@ -0,0 +1,49 @@
/*
* Copyright (c) 2022 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 "sinkonloadsystemabilityfail_fuzzer.h"
#include <cstddef>
#include <cstdint>
#include "dcamera_sink_load_callback.h"
#include "dcamera_sink_handler.h"
#include "distributed_camera_constants.h"
#include "if_system_ability_manager.h"
#include "iservice_registry.h"
namespace OHOS {
namespace DistributedHardware {
void SinkOnLoadSystemAbilityFailFuzzTest(const uint8_t* data, size_t size)
{
if ((data == nullptr) || (size < (sizeof(int32_t)))) {
return;
}
int32_t systemAbilityId = *(reinterpret_cast<const int32_t *>(data));
std::string params(reinterpret_cast<const char*>(data), size);
std::shared_ptr<DCameraSinkLoadCallback> callback = std::make_shared<DCameraSinkLoadCallback>(params);
callback->OnLoadSystemAbilityFail(systemAbilityId);
}
}
}
/* Fuzzer entry point */
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
/* Run your code on data */
OHOS::DistributedHardware::SinkOnLoadSystemAbilityFailFuzzTest(data, size);
return 0;
}
@@ -0,0 +1,22 @@
/*
* Copyright (c) 2022 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.
*/
#ifndef SINKONLOADSYSTEMABLITYFAIL_FUZZER_H
#define SINKONLOADSYSTEMABLITYFAIL_FUZZER_H
#define FUZZ_PROJECT_NAME "sinkonloadsystemabilityfail_fuzzer"
#endif
@@ -0,0 +1,72 @@
# Copyright (c) 2022 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.
#####################hydra-fuzz###################
import("//build/config/features.gni")
import("//build/test.gni")
import(
"//foundation/distributedhardware/distributed_camera/distributedcamera.gni")
##############################fuzztest##########################################
ohos_fuzztest("SinkOnLoadSystemAbilitySuccessFuzzTest") {
module_out_path = "distributed_camera/sinkonloadsystemabilitysuccess"
fuzz_config_file = "${innerkits_path}/native_cpp/test/fuzztest/sinkonloadsystemabilitysuccess_fuzzer"
include_dirs = [
"//utils/system/safwk/native/include",
"${fwk_common_path}/utils/include",
]
include_dirs += [
"include",
"${common_path}/include",
"${common_path}/include/constants",
"${innerkits_path}/native_cpp/camera_sink/include",
]
cflags = [
"-g",
"-O0",
"-Wno-unused-variable",
"-fno-omit-frame-pointer",
]
sources = [ "sinkonloadsystemabilitysuccess_fuzzer.cpp" ]
deps = [
"${fwk_utils_path}:distributedhardwareutils",
"${innerkits_path}/native_cpp/camera_sink:distributed_camera_sink_sdk",
"//utils/native/base:utils",
]
defines = [
"HI_LOG_ENABLE",
"DH_LOG_TAG=\"SinkOnLoadSystemAbilitySuccessFuzzTest\"",
"LOG_DOMAIN=0xD004100",
]
external_deps = [
"hiviewdfx_hilog_native:libhilog",
"ipc:ipc_core",
"safwk:system_ability_fwk",
"samgr_standard:samgr_proxy",
]
}
###############################################################################
group("fuzztest") {
testonly = true
deps = [ ":SinkOnLoadSystemAbilitySuccessFuzzTest" ]
}
###############################################################################
@@ -0,0 +1,14 @@
# Copyright (c) 2022 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.
FUZZ
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2022 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.
-->
<fuzz_config>
<fuzztest>
<!-- maximum length of a test input -->
<max_len>1000</max_len>
<!-- maximum total time in seconds to run the fuzzer -->
<max_total_time>300</max_total_time>
<!-- memory usage limit in Mb -->
<rss_limit_mb>4096</rss_limit_mb>
</fuzztest>
</fuzz_config>
@@ -0,0 +1,53 @@
/*
* Copyright (c) 2022 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 "sinkonloadsystemabilitysuccess_fuzzer.h"
#include <cstddef>
#include <cstdint>
#include "dcamera_sink_load_callback.h"
#include "dcamera_sink_handler.h"
#include "distributed_camera_constants.h"
#include "if_system_ability_manager.h"
#include "iservice_registry.h"
namespace OHOS {
namespace DistributedHardware {
void SinkOnLoadSystemAbilitySuccessFuzzTest(const uint8_t* data, size_t size)
{
if ((data == nullptr) || (size < (sizeof(int32_t)))) {
return;
}
int32_t systemAbilityId = *(reinterpret_cast<const int32_t *>(data));
std::string params(reinterpret_cast<const char*>(data), size);
std::shared_ptr<DCameraSinkLoadCallback> callback = std::make_shared<DCameraSinkLoadCallback>(params);
sptr<ISystemAbilityManager> samgr =
SystemAbilityManagerClient::GetInstance().GetSystemAbilityManager();
sptr<IRemoteObject> remoteObject = samgr->GetSystemAbility(systemAbilityId);
callback->OnLoadSystemAbilitySuccess(systemAbilityId, remoteObject);
}
}
}
/* Fuzzer entry point */
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
/* Run your code on data */
OHOS::DistributedHardware::SinkOnLoadSystemAbilitySuccessFuzzTest(data, size);
return 0;
}
@@ -0,0 +1,22 @@
/*
* Copyright (c) 2022 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.
*/
#ifndef SINKONLOADSYSTEMABLITYSUCESS_FUZZER_H
#define SINKONLOADSYSTEMABLITYSUCESS_FUZZER_H
#define FUZZ_PROJECT_NAME "sinkonloadsystemabilitysuccess_fuzzer"
#endif
@@ -45,7 +45,7 @@ void SourceProxyDCameraNotifyFuzzTest(const uint8_t* data, size_t size)
sptr<IRemoteObject> remoteObject = samgr->GetSystemAbility(DISTRIBUTED_HARDWARE_CAMERA_SOURCE_SA_ID);
std::shared_ptr<DistributedCameraSourceProxy> dCSourceProxy =
std::make_shared<DistributedCameraSourceProxy>(remoteObject);
sptr<IDCameraSourceCallback> callback = new DCameraSourceCallback();
dCSourceProxy->DCameraNotify(devId, dhId, events);
}
}