/src/resiprocate/rutil/test/fuzzUtil.cxx
Line | Count | Source |
1 | | #include "rutil/DataStream.hxx" |
2 | | #include "rutil/DnsUtil.hxx" |
3 | | #include "rutil/Logger.hxx" |
4 | | |
5 | | static void fuzzDnsUtil(const resip::Data& buffer) |
6 | 164 | { |
7 | 164 | resip::DnsUtil::isIpV4Address(buffer); |
8 | 164 | resip::DnsUtil::isIpV6Address(buffer); |
9 | 164 | } |
10 | | |
11 | 4 | extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) { |
12 | 4 | resip::Log::initialize(resip::Log::Cout, resip::Log::None, *argv[0]); |
13 | 4 | return 0; |
14 | 4 | } |
15 | | |
16 | | // Entrypoint for Clang's libfuzzer |
17 | | extern "C" int LLVMFuzzerTestOneInput(const unsigned char *data, |
18 | 6.69k | unsigned long size) { |
19 | | |
20 | 6.69k | const resip::Data buffer(resip::Data::Share, reinterpret_cast<const char*>(data), size); |
21 | | |
22 | 6.69k | fuzzDnsUtil(buffer); |
23 | | |
24 | 6.69k | return 0; |
25 | 6.69k | } |
26 | | |
27 | | /* ==================================================================== |
28 | | * The Vovida Software License, Version 1.0 |
29 | | * |
30 | | * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
31 | | * |
32 | | * Redistribution and use in source and binary forms, with or without |
33 | | * modification, are permitted provided that the following conditions |
34 | | * are met: |
35 | | * |
36 | | * 1. Redistributions of source code must retain the above copyright |
37 | | * notice, this list of conditions and the following disclaimer. |
38 | | * |
39 | | * 2. Redistributions in binary form must reproduce the above copyright |
40 | | * notice, this list of conditions and the following disclaimer in |
41 | | * the documentation and/or other materials provided with the |
42 | | * distribution. |
43 | | * |
44 | | * 3. The names "VOCAL", "Vovida Open Communication Application Library", |
45 | | * and "Vovida Open Communication Application Library (VOCAL)" must |
46 | | * not be used to endorse or promote products derived from this |
47 | | * software without prior written permission. For written |
48 | | * permission, please contact vocal@vovida.org. |
49 | | * |
50 | | * 4. Products derived from this software may not be called "VOCAL", nor |
51 | | * may "VOCAL" appear in their name, without prior written |
52 | | * permission of Vovida Networks, Inc. |
53 | | * |
54 | | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
55 | | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
56 | | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
57 | | * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
58 | | * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
59 | | * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
60 | | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
61 | | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
62 | | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
63 | | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
64 | | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
65 | | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
66 | | * DAMAGE. |
67 | | * |
68 | | * ==================================================================== |
69 | | * |
70 | | * This software consists of voluntary contributions made by Vovida |
71 | | * Networks, Inc. and many individuals on behalf of Vovida Networks, |
72 | | * Inc. For more information on Vovida Networks, Inc., please see |
73 | | * <http://www.vovida.org/>. |
74 | | * |
75 | | */ |