Coverage Report

Created: 2025-11-05 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/sudo/lib/util/strtonum.c
Line
Count
Source
1
/*
2
 * SPDX-License-Identifier: ISC
3
 *
4
 * Copyright (c) 2013-2015, 2019-2020 Todd C. Miller <Todd.Miller@sudo.ws>
5
 *
6
 * Permission to use, copy, modify, and distribute this software for any
7
 * purpose with or without fee is hereby granted, provided that the above
8
 * copyright notice and this permission notice appear in all copies.
9
 *
10
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
 */
18
19
#include <config.h>
20
21
#include <ctype.h>
22
#include <errno.h>
23
24
#include <sudo_compat.h>
25
#include <sudo_gettext.h>
26
#include <sudo_util.h>
27
28
enum strtonum_err {
29
    STN_INITIAL,
30
    STN_VALID,
31
    STN_INVALID,
32
    STN_TOOSMALL,
33
    STN_TOOBIG
34
};
35
36
/*
37
 * Convert a string to a number in the range [minval, maxval]
38
 * Unlike strtonum(), this returns the first non-digit in endp (if not NULL).
39
 */
40
long long
41
sudo_strtonumx(const char *str, long long minval, long long maxval, char **endp,
42
    const char **errstrp)
43
1.81k
{
44
1.81k
    enum strtonum_err errval = STN_INITIAL;
45
1.81k
    long long lastval, result = 0;
46
1.81k
    const char *cp = str;
47
1.81k
    int remainder;
48
1.81k
    char ch, sign;
49
50
1.81k
    if (minval > maxval) {
51
0
  errval = STN_INVALID;
52
0
  goto done;
53
0
    }
54
55
    /* Trim leading space and check sign, if any. */
56
2.02k
    do {
57
2.02k
  ch = *cp++;
58
2.02k
    } while (isspace((unsigned char)ch));
59
1.81k
    switch (ch) {
60
409
    case '-':
61
409
  sign = '-';
62
409
  ch = *cp++;
63
409
  break;
64
218
    case '+':
65
218
  ch = *cp++;
66
218
  FALLTHROUGH;
67
1.40k
    default:
68
1.40k
  sign = '+';
69
1.40k
  break;
70
1.81k
    }
71
72
    /*
73
     * To prevent overflow we determine the highest (or lowest in
74
     * the case of negative numbers) value result can have *before*
75
     * if its multiplied (divided) by 10 as well as the remainder.
76
     * If result matches this value and the next digit is larger than
77
     * the remainder, we know the result is out of range.
78
     * The remainder is always positive since it is compared against
79
     * an unsigned digit.
80
     */
81
1.81k
    if (sign == '-') {
82
409
  lastval = minval / 10;
83
409
  remainder = -(int)(minval % 10);
84
409
  if (remainder < 0) {
85
409
      lastval += 1;
86
409
      remainder += 10;
87
409
  }
88
409
  for (;; ch = *cp++) {
89
409
      if (!isdigit((unsigned char)ch))
90
197
    break;
91
212
      ch -= '0';
92
212
      if (result < lastval || (result == lastval && ch > remainder)) {
93
    /* Skip remaining digits. */
94
496
    do {
95
496
        ch = *cp++;
96
496
    } while (isdigit((unsigned char)ch));
97
212
    errval = STN_TOOSMALL;
98
212
    break;
99
212
      } else {
100
0
    result *= 10;
101
0
    result -= ch;
102
0
    errval = STN_VALID;
103
0
      }
104
212
  }
105
409
  if (result > maxval)
106
0
      errval = STN_TOOBIG;
107
1.40k
    } else {
108
1.40k
  lastval = maxval / 10;
109
1.40k
  remainder = (int)(maxval % 10);
110
4.52k
  for (;; ch = *cp++) {
111
4.52k
      if (!isdigit((unsigned char)ch))
112
979
    break;
113
3.54k
      ch -= '0';
114
3.54k
      if (result > lastval || (result == lastval && ch > remainder)) {
115
    /* Skip remaining digits. */
116
708
    do {
117
708
        ch = *cp++;
118
708
    } while (isdigit((unsigned char)ch));
119
427
    errval = STN_TOOBIG;
120
427
    break;
121
3.11k
      } else {
122
3.11k
    result *= 10;
123
3.11k
    result += ch;
124
3.11k
    errval = STN_VALID;
125
3.11k
      }
126
3.54k
  }
127
1.40k
  if (result < minval)
128
277
      errval = STN_TOOSMALL;
129
1.40k
    }
130
131
1.81k
done:
132
1.81k
    switch (errval) {
133
197
    case STN_INITIAL:
134
899
    case STN_VALID:
135
899
  if (errstrp != NULL)
136
899
      *errstrp = NULL;
137
899
  break;
138
0
    case STN_INVALID:
139
0
  result = 0;
140
0
  errno = EINVAL;
141
0
  if (errstrp != NULL)
142
0
      *errstrp = N_("invalid value");
143
0
  break;
144
489
    case STN_TOOSMALL:
145
489
  result = 0;
146
489
  errno = ERANGE;
147
489
  if (errstrp != NULL)
148
489
      *errstrp = N_("value too small");
149
489
  break;
150
427
    case STN_TOOBIG:
151
427
  result = 0;
152
427
  errno = ERANGE;
153
427
  if (errstrp != NULL)
154
427
      *errstrp = N_("value too large");
155
427
  break;
156
1.81k
    }
157
1.81k
    if (endp != NULL) {
158
1.81k
  if (errval == STN_INITIAL || errval == STN_INVALID)
159
197
      *endp = (char *)str;
160
1.61k
  else
161
1.61k
      *endp = (char *)(cp - 1);
162
1.81k
    }
163
1.81k
    return result;
164
1.81k
}
165
166
/*
167
 * Convert a string to a number in the range [minval, maxval]
168
 */
169
long long
170
sudo_strtonum(const char *str, long long minval, long long maxval,
171
    const char **errstrp)
172
1.81k
{
173
1.81k
    const char *errstr;
174
1.81k
    char *ep;
175
1.81k
    long long ret;
176
177
1.81k
    ret = sudo_strtonumx(str, minval, maxval, &ep, &errstr);
178
    /* Check for empty string and terminating NUL. */
179
1.81k
    if (str == ep || *ep != '\0') {
180
441
  errno = EINVAL;
181
441
  errstr = N_("invalid value");
182
441
  ret = 0;
183
441
    }
184
1.81k
    if (errstrp != NULL)
185
0
  *errstrp = errstr;
186
1.81k
    return ret;
187
1.81k
}