/src/brpc/test/fuzzing/fuzz_common.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #ifndef BRPC_TEST_FUZZING_FUZZ_COMMON_H |
19 | | #define BRPC_TEST_FUZZING_FUZZ_COMMON_H |
20 | | |
21 | | #include "brpc/socket.h" |
22 | | #include "butil/endpoint.h" |
23 | | |
24 | | // Create a valid Socket for use in fuzz harnesses that need a non-NULL Socket*. |
25 | | // Returns a raw Socket* that remains valid for the lifetime of the process |
26 | | // (held by the static SocketUniquePtr). |
27 | 379 | inline brpc::Socket* get_fuzz_socket() { |
28 | 379 | static brpc::SocketId sid = 0; |
29 | 379 | static brpc::SocketUniquePtr sock_ptr; |
30 | 379 | static bool initialized = false; |
31 | | |
32 | 379 | if (!initialized) { |
33 | 1 | brpc::SocketOptions options; |
34 | 1 | options.remote_side = butil::EndPoint(butil::IP_ANY, 7777); |
35 | 1 | if (brpc::Socket::Create(options, &sid) == 0 && |
36 | 1 | brpc::Socket::Address(sid, &sock_ptr) == 0) { |
37 | 1 | initialized = true; |
38 | 1 | } |
39 | 1 | } |
40 | | |
41 | 379 | return sock_ptr.get(); |
42 | 379 | } |
43 | | |
44 | | #endif // BRPC_TEST_FUZZING_FUZZ_COMMON_H |