Coverage Report

Created: 2026-04-28 06:30

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ntpsec/fuzz/FuzzExtens.c
Line
Count
Source
1
/* Copyright 2022 Google LLC
2
Licensed under the Apache License, Version 2.0 (the "License");
3
you may not use this file except in compliance with the License.
4
You may obtain a copy of the License at
5
      http://www.apache.org/licenses/LICENSE-2.0
6
Unless required by applicable law or agreed to in writing, software
7
distributed under the License is distributed on an "AS IS" BASIS,
8
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
See the License for the specific language governing permissions and
10
limitations under the License.
11
*/
12
13
#include <stdio.h>
14
#include <stdlib.h>
15
#include <string.h>
16
#include "ntpd.h"
17
#include "nts.h"
18
19
1.41k
#define kMinInputLength 20
20
681
#define kMaxInputLength 1024
21
22
706
extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {//ntpsec/tests/ntpd/nts_extens.c
23
  
24
706
  if (Size < kMinInputLength || Size > kMaxInputLength){
25
97
        return 0;
26
97
    }
27
28
609
  struct ntspacket_t ntspkt;
29
609
  memset(&ntspkt, 0, sizeof(ntspkt));
30
31
609
  return extens_server_recv(&ntspkt,(uint8_t*)Data, Size);
32
706
}