Coverage Report

Created: 2025-11-24 06:34

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/brpc/test/fuzzing/fuzz_butil.cpp
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
#include "butil/base64.h"
19
#include "butil/crc32c.h"
20
#include "butil/hash.h"
21
#include "butil/sha1.h"
22
23
392
#define kMinInputLength 5
24
192
#define kMaxInputLength 1024
25
26
extern "C" int
27
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
28
196
{
29
196
    if (size < kMinInputLength || size > kMaxInputLength){
30
28
        return 1;
31
28
    }
32
33
168
    std::string input(reinterpret_cast<const char*>(data), size);
34
35
168
    {
36
168
        std::string encoded;
37
168
        std::string decoded;
38
168
        butil::Base64Encode(input, &encoded);
39
168
        butil::Base64Decode(input, &decoded);
40
168
    }
41
168
    {
42
168
        butil::crc32c::Value(reinterpret_cast<const char*>(data), size);
43
168
    }
44
168
    {
45
168
        butil::Hash(input);
46
168
    }
47
168
    {
48
168
        butil::SHA1HashString(input);
49
168
    }
50
51
168
    return 0;
52
196
}