Coverage Report

Created: 2026-04-12 06:19

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
199k
{
44
199k
    enum strtonum_err errval = STN_INITIAL;
45
199k
    long long lastval, result = 0;
46
199k
    const char *cp = str;
47
199k
    int remainder;
48
199k
    char ch, sign;
49
50
199k
    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
200k
    do {
57
200k
  ch = *cp++;
58
200k
    } while (isspace((unsigned char)ch));
59
199k
    switch (ch) {
60
3.66k
    case '-':
61
3.66k
  sign = '-';
62
3.66k
  ch = *cp++;
63
3.66k
  break;
64
251
    case '+':
65
251
  ch = *cp++;
66
251
  FALLTHROUGH;
67
196k
    default:
68
196k
  sign = '+';
69
196k
  break;
70
199k
    }
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
199k
    if (sign == '-') {
82
3.66k
  lastval = minval / 10;
83
3.66k
  remainder = -(int)(minval % 10);
84
3.66k
  if (remainder < 0) {
85
15
      lastval += 1;
86
15
      remainder += 10;
87
15
  }
88
15.4k
  for (;; ch = *cp++) {
89
15.4k
      if (!isdigit((unsigned char)ch))
90
3.65k
    break;
91
11.7k
      ch -= '0';
92
11.7k
      if (result < lastval || (result == lastval && ch > remainder)) {
93
    /* Skip remaining digits. */
94
207
    do {
95
207
        ch = *cp++;
96
207
    } while (isdigit((unsigned char)ch));
97
13
    errval = STN_TOOSMALL;
98
13
    break;
99
11.7k
      } else {
100
11.7k
    result *= 10;
101
11.7k
    result -= ch;
102
11.7k
    errval = STN_VALID;
103
11.7k
      }
104
11.7k
  }
105
3.66k
  if (result > maxval)
106
0
      errval = STN_TOOBIG;
107
196k
    } else {
108
196k
  lastval = maxval / 10;
109
196k
  remainder = (int)(maxval % 10);
110
535k
  for (;; ch = *cp++) {
111
535k
      if (!isdigit((unsigned char)ch))
112
196k
    break;
113
339k
      ch -= '0';
114
339k
      if (result > lastval || (result == lastval && ch > remainder)) {
115
    /* Skip remaining digits. */
116
238
    do {
117
238
        ch = *cp++;
118
238
    } while (isdigit((unsigned char)ch));
119
39
    errval = STN_TOOBIG;
120
39
    break;
121
339k
      } else {
122
339k
    result *= 10;
123
339k
    result += ch;
124
339k
    errval = STN_VALID;
125
339k
      }
126
339k
  }
127
196k
  if (result < minval)
128
30
      errval = STN_TOOSMALL;
129
196k
    }
130
131
199k
done:
132
199k
    switch (errval) {
133
169
    case STN_INITIAL:
134
199k
    case STN_VALID:
135
199k
  if (errstrp != NULL)
136
199k
      *errstrp = NULL;
137
199k
  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
43
    case STN_TOOSMALL:
145
43
  result = 0;
146
43
  errno = ERANGE;
147
43
  if (errstrp != NULL)
148
43
      *errstrp = N_("value too small");
149
43
  break;
150
39
    case STN_TOOBIG:
151
39
  result = 0;
152
39
  errno = ERANGE;
153
39
  if (errstrp != NULL)
154
39
      *errstrp = N_("value too large");
155
39
  break;
156
199k
    }
157
199k
    if (endp != NULL) {
158
199k
  if (errval == STN_INITIAL || errval == STN_INVALID)
159
169
      *endp = (char *)str;
160
199k
  else
161
199k
      *endp = (char *)(cp - 1);
162
199k
    }
163
199k
    return result;
164
199k
}
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
53.4k
{
173
53.4k
    const char *errstr;
174
53.4k
    char *ep;
175
53.4k
    long long ret;
176
177
53.4k
    ret = sudo_strtonumx(str, minval, maxval, &ep, &errstr);
178
    /* Check for empty string and terminating NUL. */
179
53.4k
    if (str == ep || *ep != '\0') {
180
40
  errno = EINVAL;
181
40
  errstr = N_("invalid value");
182
40
  ret = 0;
183
40
    }
184
53.4k
    if (errstrp != NULL)
185
53.4k
  *errstrp = errstr;
186
53.4k
    return ret;
187
53.4k
}