Coverage Report

Created: 2025-07-12 06:33

/src/tmux/compat/strtonum.c
Line
Count
Source (jump to first uncovered line)
1
/*  $OpenBSD: strtonum.c,v 1.6 2004/08/03 19:38:01 millert Exp $  */
2
3
/*
4
 * Copyright (c) 2004 Ted Unangst and Todd Miller
5
 * All rights reserved.
6
 *
7
 * Permission to use, copy, modify, and distribute this software for any
8
 * purpose with or without fee is hereby granted, provided that the above
9
 * copyright notice and this permission notice appear in all copies.
10
 *
11
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18
 */
19
20
#include <errno.h>
21
#include <limits.h>
22
#include <stdlib.h>
23
24
#include "compat.h"
25
26
133
#define INVALID   1
27
138
#define TOOSMALL  2
28
420
#define TOOLARGE  3
29
30
long long
31
strtonum(const char *numstr, long long minval, long long maxval,
32
    const char **errstrp)
33
50.0k
{
34
50.0k
  long long ll = 0;
35
50.0k
  char *ep;
36
50.0k
  int error = 0;
37
50.0k
  struct errval {
38
50.0k
    const char *errstr;
39
50.0k
    int err;
40
50.0k
  } ev[4] = {
41
50.0k
    { NULL,   0 },
42
50.0k
    { "invalid",  EINVAL },
43
50.0k
    { "too small",  ERANGE },
44
50.0k
    { "too large",  ERANGE },
45
50.0k
  };
46
47
50.0k
  ev[0].err = errno;
48
50.0k
  errno = 0;
49
50.0k
  if (minval > maxval)
50
0
    error = INVALID;
51
50.0k
  else {
52
50.0k
    ll = strtoll(numstr, &ep, 10);
53
50.0k
    if (numstr == ep || *ep != '\0')
54
133
      error = INVALID;
55
49.9k
    else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
56
138
      error = TOOSMALL;
57
49.7k
    else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
58
420
      error = TOOLARGE;
59
50.0k
  }
60
50.0k
  if (errstrp != NULL)
61
50.0k
    *errstrp = ev[error].errstr;
62
50.0k
  errno = ev[error].err;
63
50.0k
  if (error)
64
691
    ll = 0;
65
66
50.0k
  return (ll);
67
50.0k
}