Coverage Report

Created: 2024-02-25 06:14

/src/PROJ/curl/lib/curl_get_line.c
Line
Count
Source (jump to first uncovered line)
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
25
#include "curl_setup.h"
26
27
#if !defined(CURL_DISABLE_COOKIES) || !defined(CURL_DISABLE_ALTSVC) ||  \
28
  !defined(CURL_DISABLE_HSTS) || !defined(CURL_DISABLE_NETRC)
29
30
#include "curl_get_line.h"
31
#include "curl_memory.h"
32
/* The last #include file should be: */
33
#include "memdebug.h"
34
35
/*
36
 * Curl_get_line() makes sure to only return complete whole lines that end
37
 * newlines.
38
 */
39
int Curl_get_line(struct dynbuf *buf, FILE *input)
40
0
{
41
0
  CURLcode result;
42
0
  char buffer[128];
43
0
  Curl_dyn_reset(buf);
44
0
  while(1) {
45
0
    char *b = fgets(buffer, sizeof(buffer), input);
46
47
0
    if(b) {
48
0
      size_t rlen = strlen(b);
49
50
0
      if(!rlen)
51
0
        break;
52
53
0
      result = Curl_dyn_addn(buf, b, rlen);
54
0
      if(result)
55
        /* too long line or out of memory */
56
0
        return 0; /* error */
57
58
0
      else if(b[rlen-1] == '\n')
59
        /* end of the line */
60
0
        return 1; /* all good */
61
62
0
      else if(feof(input)) {
63
        /* append a newline */
64
0
        result = Curl_dyn_addn(buf, "\n", 1);
65
0
        if(result)
66
          /* too long line or out of memory */
67
0
          return 0; /* error */
68
0
        return 1; /* all good */
69
0
      }
70
0
    }
71
0
    else
72
0
      break;
73
0
  }
74
0
  return 0;
75
0
}
76
77
#endif /* if not disabled */