Coverage Report

Created: 2026-05-04 06:53

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/frr/lib/ntop.c
Line
Count
Source
1
// SPDX-License-Identifier: ISC
2
/*
3
 * optimized ntop, about 10x faster than libc versions [as of 2019]
4
 *
5
 * Copyright (c) 2019  David Lamparter, for NetDEF, Inc.
6
 */
7
8
#ifdef HAVE_CONFIG_H
9
#include "config.h"
10
#endif
11
12
#include <stdio.h>
13
#include <stdint.h>
14
#include <stdbool.h>
15
#include <string.h>
16
#include <sys/socket.h>
17
#include <netinet/in.h>
18
#include <arpa/inet.h>
19
20
#include "compiler.h"
21
22
1.90M
#define pos (*posx)
23
24
static inline void putbyte(uint8_t bytex, char **posx)
25
  __attribute__((always_inline)) OPTIMIZE;
26
27
static inline void putbyte(uint8_t bytex, char **posx)
28
819k
{
29
819k
  bool zero = false;
30
819k
  int byte = bytex, tmp, a, b;
31
32
819k
  tmp = byte - 200;
33
819k
  if (tmp >= 0) {
34
192k
    *pos++ = '2';
35
192k
    zero = true;
36
192k
    byte = tmp;
37
626k
  } else {
38
626k
    tmp = byte - 100;
39
626k
    if (tmp >= 0) {
40
171k
      *pos++ = '1';
41
171k
      zero = true;
42
171k
      byte = tmp;
43
171k
    }
44
626k
  }
45
46
  /* make sure the compiler knows the value range of "byte" */
47
819k
  assume(byte < 100 && byte >= 0);
48
49
819k
  b = byte % 10;
50
819k
  a = byte / 10;
51
819k
  if (a || zero) {
52
712k
    *pos++ = '0' + a;
53
712k
    *pos++ = '0' + b;
54
712k
  } else
55
106k
    *pos++ = '0' + b;
56
819k
}
57
58
static inline void puthex(uint16_t word, char **posx)
59
  __attribute__((always_inline)) OPTIMIZE;
60
61
static inline void puthex(uint16_t word, char **posx)
62
1.89k
{
63
1.89k
  const char *digits = "0123456789abcdef";
64
1.89k
  if (word >= 0x1000)
65
1.11k
    *pos++ = digits[(word >> 12) & 0xf];
66
1.89k
  if (word >= 0x100)
67
1.32k
    *pos++ = digits[(word >> 8) & 0xf];
68
1.89k
  if (word >= 0x10)
69
1.62k
    *pos++ = digits[(word >> 4) & 0xf];
70
1.89k
  *pos++ = digits[word & 0xf];
71
1.89k
}
72
73
#undef pos
74
75
const char *frr_inet_ntop(int af, const void * restrict src,
76
        char * restrict dst, socklen_t size)
77
  __attribute__((flatten)) OPTIMIZE;
78
79
const char *frr_inet_ntop(int af, const void * restrict src,
80
        char * restrict dst, socklen_t size)
81
205k
{
82
205k
  const uint8_t *b = src;
83
  /* 8 * "abcd:" for IPv6
84
   * note: the IPv4-embedded IPv6 syntax is only used for ::A.B.C.D,
85
   * which isn't longer than 40 chars either.  even with ::ffff:A.B.C.D
86
   * it's shorter.
87
   */
88
205k
  char buf[8 * 5], *o = buf;
89
205k
  size_t best = 0, bestlen = 0, curlen = 0, i;
90
91
205k
  switch (af) {
92
204k
  case AF_INET:
93
204k
inet4:
94
204k
    putbyte(b[0], &o);
95
204k
    *o++ = '.';
96
204k
    putbyte(b[1], &o);
97
204k
    *o++ = '.';
98
204k
    putbyte(b[2], &o);
99
204k
    *o++ = '.';
100
204k
    putbyte(b[3], &o);
101
204k
    *o++ = '\0';
102
204k
    break;
103
267
  case AF_INET6:
104
2.40k
    for (i = 0; i < 8; i++) {
105
2.13k
      if (b[i * 2] || b[i * 2 + 1]) {
106
1.69k
        if (curlen && curlen > bestlen) {
107
199
          best = i - curlen;
108
199
          bestlen = curlen;
109
199
        }
110
1.69k
        curlen = 0;
111
1.69k
        continue;
112
1.69k
      }
113
441
      curlen++;
114
441
    }
115
267
    if (curlen && curlen > bestlen) {
116
30
      best = i - curlen;
117
30
      bestlen = curlen;
118
30
    }
119
    /* do we want ::ffff:A.B.C.D? */
120
267
    if (best == 0 && bestlen == 6) {
121
1
      *o++ = ':';
122
1
      *o++ = ':';
123
1
      b += 12;
124
1
      goto inet4;
125
1
    }
126
266
    if (bestlen == 1)
127
119
      bestlen = 0;
128
129
2.39k
    for (i = 0; i < 8; i++) {
130
2.12k
      if (bestlen && i == best) {
131
90
        if (i == 0)
132
7
          *o++ = ':';
133
90
        *o++ = ':';
134
90
        continue;
135
90
      }
136
2.03k
      if (i > best && i < best + bestlen) {
137
147
        continue;
138
147
      }
139
1.89k
      puthex((b[i * 2] << 8) | b[i * 2 + 1], &o);
140
141
1.89k
      if (i < 7)
142
1.63k
        *o++ = ':';
143
1.89k
    }
144
266
    *o++ = '\0';
145
266
    break;
146
0
  default:
147
0
    return NULL;
148
205k
  }
149
150
205k
  i = o - buf;
151
205k
  if (i > size)
152
0
    return NULL;
153
  /* compiler might inline memcpy if it knows the length is short,
154
   * although neither gcc nor clang actually do this currently [2019]
155
   */
156
205k
  assume(i <= 8 * 5);
157
205k
  memcpy(dst, buf, i);
158
205k
  return dst;
159
205k
}
160
161
#if !defined(INET_NTOP_NO_OVERRIDE) && !defined(__APPLE__)
162
/* we want to override libc inet_ntop, but make sure it shows up in backtraces
163
 * as frr_inet_ntop (to avoid confusion while debugging)
164
 */
165
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size)
166
  __attribute__((alias ("frr_inet_ntop")));
167
#endif