1 /* Copyright 2021 Google LLC
2
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 <stdio.h>
17 #include <stdlib.h>
18 #include <stdint.h>
19 #include <string.h>
20
21 #include "burl.h"
22 #include "buffer.h"
23
run_burl_normalize(buffer * psrc,buffer * ptmp,int flags,int line,const char * in,size_t in_len)24 void run_burl_normalize (buffer *psrc, buffer *ptmp,
25 int flags, int line, const char *in,
26 size_t in_len) {
27 int qs;
28 buffer_copy_string_len(psrc, in, in_len);
29 qs = burl_normalize(psrc, ptmp, flags);
30 }
31
LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)32 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
33 if (size <= 4) {
34 return 0;
35 }
36 int flags = ((int*)data)[0];
37 data += 4;
38 size -= 4;
39 char *new_str = (char *)malloc(size+1);
40 if (new_str == NULL){
41 return 0;
42 }
43 memcpy(new_str, data, size);
44 new_str[size] = '\0';
45
46 /* main fuzzer entrypoint for library */
47 buffer *psrc = buffer_init();
48 buffer *ptmp = buffer_init();
49 run_burl_normalize(psrc, ptmp, flags, __LINE__, new_str, size);
50 buffer_urldecode_path(psrc);
51
52 buffer_free(psrc);
53 buffer_free(ptmp);
54 free(new_str);
55 return 0;
56 }
57