Coverage Report

Created: 2025-07-11 06:06

/src/ntpsec/fuzz/FuzzServer.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 "nts.h"
17
18
480
#define kMinInputLength 20
19
231
#define kMaxInputLength 1024
20
21
240
extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {//ntpsec/tests/ntpd/nts_server.c
22
23
240
  if (Size < kMinInputLength || Size > kMaxInputLength){
24
32
        return 0;
25
32
    }
26
27
208
  int aead;
28
208
  struct BufCtl_t buf;
29
30
208
  aead = NO_AEAD;
31
208
  buf.next = (uint8_t*)Data;
32
208
  buf.left = Size;  
33
34
208
  return nts_ke_process_receive(&buf, &aead);
35
240
}