1 /*
2 * Copyright (c) 2025 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 <cstddef>
17 #include <cstdint>
18 #include <parcel.h>
19 #include <securec.h>
20 #include <iremote_stub.h>
21
22 #include "marshalling_helper.h"
23 #include "message_option.h"
24 #include "message_parcel.h"
25 #include "session/host/include/zidl/session_ipc_interface_code.h"
26 #include "session/host/include/zidl/session_stub.h"
27 #include "session/host/include/session.h"
28 #include "sessionstublayout_fuzzer.h"
29
30 using namespace OHOS::Rosen;
31
32 namespace OHOS {
33 namespace {
34 constexpr size_t DATA_MIN_SIZE = 2;
35 }
36
SessionStubLayoutTest(sptr<Session> sessionStub,MessageParcel & parcel)37 void SessionStubLayoutTest(sptr<Session> sessionStub, MessageParcel& parcel)
38 {
39 MessageParcel reply;
40 MessageOption option;
41 parcel.RewindRead(0);
42 sessionStub->OnRemoteRequest(
43 static_cast<uint32_t>(Rosen::SessionInterfaceCode::TRANS_ID_SET_SYSTEM_DRAG_ENABLE),
44 parcel, reply, option);
45 parcel.RewindRead(0);
46 sessionStub->OnRemoteRequest(
47 static_cast<uint32_t>(Rosen::SessionInterfaceCode::TRANS_ID_UPDATE_CLIENT_RECT),
48 parcel, reply, option);
49 parcel.RewindRead(0);
50 sessionStub->OnRemoteRequest(
51 static_cast<uint32_t>(Rosen::SessionInterfaceCode::TRANS_ID_GET_GLOBAL_SCALED_RECT),
52 parcel, reply, option);
53 parcel.RewindRead(0);
54 sessionStub->OnRemoteRequest(
55 static_cast<uint32_t>(Rosen::SessionInterfaceCode::TRANS_ID_SET_FOLLOW_PARENT_LAYOUT_ENABLED),
56 parcel, reply, option);
57 }
58
DoSomethingInterestingWithMyAPI(const uint8_t * data,size_t size)59 bool DoSomethingInterestingWithMyAPI(const uint8_t* data, size_t size)
60 {
61 if (data == nullptr || size < DATA_MIN_SIZE) {
62 return false;
63 }
64
65 MessageParcel parcel;
66
67 parcel.WriteInterfaceToken(SessionStub::GetDescriptor());
68 parcel.WriteBuffer(data, size);
69
70 SessionInfo info;
71 info.abilityName_ = "stubLayoutFuzzTest";
72 info.bundleName_ = "stubLayoutFuzzTest";
73 sptr<Session> sessionStub = new (std::nothrow) Session(info);
74 if (sessionStub == nullptr) {
75 return false;
76 }
77
78 SessionStubLayoutTest(sessionStub, parcel);
79
80 return true;
81 }
82 } // namespace.OHOS
83
84 /* Fuzzer entry point */
LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)85 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
86 {
87 /* Run your code on data */
88 OHOS::DoSomethingInterestingWithMyAPI(data, size);
89 return 0;
90 }