41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
| /* Copyright 2021 Google LLC
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
|       http://www.apache.org/licenses/LICENSE-2.0
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| #include "../cachedb/test/test_cachedb.h"
 | |
| #include "../lib/test/test_csv.h"
 | |
| #include "../mem/test/test_malloc.h"
 | |
| #include "../str.h"
 | |
| 
 | |
| #include "../context.h"
 | |
| #include "../dprint.h"
 | |
| #include "../globals.h"
 | |
| #include "../lib/list.h"
 | |
| #include "../sr_module.h"
 | |
| #include "../sr_module_deps.h"
 | |
| 
 | |
| #include "parse_uri.h"
 | |
| 
 | |
| int LLVMFuzzerTestOneInput(const char *data, size_t size) {
 | |
|   ensure_global_context();
 | |
|   struct sip_uri u;
 | |
| 
 | |
|   char *new_str = (char *)malloc(size + 1);
 | |
|   if (new_str == NULL) {
 | |
|     return 0;
 | |
|   }
 | |
|   memcpy(new_str, data, size);
 | |
|   new_str[size] = '\0';
 | |
| 
 | |
|   parse_uri(STR_L(new_str), &u);
 | |
| 
 | |
|   free(new_str);
 | |
| }
 |