1/*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include "usbclearhalt_fuzzer.h"
17#include "UsbSubscriberTest.h"
18#include "hdf_log.h"
19#include "securec.h"
20#include "usbcommonfunction_fuzzer.h"
21#include "v1_1/iusb_interface.h"
22
23using namespace OHOS::HDI::Usb::V1_1;
24
25namespace OHOS {
26namespace USB {
27bool UsbClearHaltFuzzTest(const uint8_t *data, size_t size)
28{
29    (void)size;
30    UsbDev dev;
31    sptr<OHOS::HDI::Usb::V1_1::IUsbInterface> usbInterface = OHOS::HDI::Usb::V1_1::IUsbInterface::Get();
32    int32_t ret = UsbFuzzTestHostModeInit(dev, usbInterface);
33    if (ret != HDF_SUCCESS) {
34        HDF_LOGE("%{public}s: UsbFuzzTestHostModeInit failed", __func__);
35        return false;
36    }
37
38    UsbPipe pipe;
39    if (memcpy_s((void *)&pipe, sizeof(pipe), data, sizeof(pipe)) != EOK) {
40        HDF_LOGE("%{public}s: memcpy_s failed", __func__);
41        return false;
42    }
43
44    ret = usbInterface->ClearHalt(dev, pipe);
45    if (ret == HDF_SUCCESS) {
46        HDF_LOGI("%{public}s: ClearHalt succeed", __func__);
47    }
48
49    ret = usbInterface->CloseDevice(dev);
50    if (ret != HDF_SUCCESS) {
51        HDF_LOGE("%{public}s: close device failed", __func__);
52        return false;
53    }
54    return true;
55}
56} // namespace USB
57} // namespace OHOS
58
59extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
60{
61    OHOS::USB::UsbClearHaltFuzzTest(data, size);
62    return 0;
63}