Coverage Report

Created: 2026-09-14 06:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/abseil-cpp/absl/debugging/internal/vdso_support.cc
Line
Count
Source
1
// Copyright 2017 The Abseil Authors.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      https://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
// Allow dynamic symbol lookup in the kernel VDSO page.
16
//
17
// VDSOSupport -- a class representing kernel VDSO (if present).
18
19
#include "absl/debugging/internal/vdso_support.h"
20
21
#include <atomic>
22
23
#include "absl/base/attributes.h"
24
#include "absl/base/config.h"
25
#include "absl/debugging/internal/elf_mem_image.h"
26
27
#ifdef ABSL_HAVE_VDSO_SUPPORT     // defined in vdso_support.h
28
29
#include <errno.h>
30
#include <fcntl.h>
31
#if __has_include(<syscall.h>)
32
#include <syscall.h>
33
#elif __has_include(<sys/syscall.h>)
34
#include <sys/syscall.h>
35
#endif
36
#include <unistd.h>
37
38
#if !defined(__UCLIBC__) && defined(__GLIBC__) && \
39
    (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 16))
40
#define ABSL_HAVE_GETAUXVAL
41
#endif
42
43
#ifdef ABSL_HAVE_GETAUXVAL
44
#include <sys/auxv.h>
45
#endif
46
47
#include "absl/base/dynamic_annotations.h"
48
#include "absl/base/internal/raw_logging.h"
49
#include "absl/base/port.h"
50
51
#ifndef AT_SYSINFO_EHDR
52
#define AT_SYSINFO_EHDR 33  // for crosstoolv10
53
#endif
54
55
#if defined(__NetBSD__)
56
using Elf32_auxv_t = Aux32Info;
57
using Elf64_auxv_t = Aux64Info;
58
#endif
59
#if defined(__FreeBSD__)
60
#if defined(__ELF_WORD_SIZE) && __ELF_WORD_SIZE == 64
61
using Elf64_auxv_t = Elf64_Auxinfo;
62
#endif
63
using Elf32_auxv_t = Elf32_Auxinfo;
64
#endif
65
66
namespace absl {
67
ABSL_NAMESPACE_BEGIN
68
namespace debugging_internal {
69
70
ABSL_CONST_INIT
71
std::atomic<const void *> VDSOSupport::vdso_base_(
72
    debugging_internal::ElfMemImage::kInvalidBase);
73
74
ABSL_CONST_INIT std::atomic<VDSOSupport::GetCpuFn> VDSOSupport::getcpu_fn_(
75
    &InitAndGetCPU);
76
77
VDSOSupport::VDSOSupport()
78
    // If vdso_base_ is still set to kInvalidBase, we got here
79
    // before VDSOSupport::Init has been called. Call it now.
80
0
    : image_(vdso_base_.load(std::memory_order_relaxed) ==
81
0
                     debugging_internal::ElfMemImage::kInvalidBase
82
0
                 ? Init()
83
0
                 : vdso_base_.load(std::memory_order_relaxed)) {}
84
85
// NOTE: we can't use GoogleOnceInit() below, because we can be
86
// called by tcmalloc, and none of the *once* stuff may be functional yet.
87
//
88
// In addition, we hope that the VDSOSupportHelper constructor
89
// causes this code to run before there are any threads, and before
90
// InitGoogle() has executed any chroot or setuid calls.
91
//
92
// Finally, even if there is a race here, it is harmless, because
93
// the operation should be idempotent.
94
0
const void *VDSOSupport::Init() {
95
0
  const auto kInvalidBase = debugging_internal::ElfMemImage::kInvalidBase;
96
0
#ifdef ABSL_HAVE_GETAUXVAL
97
0
  if (vdso_base_.load(std::memory_order_relaxed) == kInvalidBase) {
98
0
    errno = 0;
99
0
    const void *const sysinfo_ehdr =
100
0
        reinterpret_cast<const void *>(getauxval(AT_SYSINFO_EHDR));
101
0
    if (errno == 0) {
102
0
      vdso_base_.store(sysinfo_ehdr, std::memory_order_relaxed);
103
0
    }
104
0
  }
105
0
#endif  // ABSL_HAVE_GETAUXVAL
106
0
  if (vdso_base_.load(std::memory_order_relaxed) == kInvalidBase) {
107
0
    int fd = open("/proc/self/auxv", O_RDONLY);
108
0
    if (fd == -1) {
109
      // Kernel too old to have a VDSO.
110
0
      vdso_base_.store(nullptr, std::memory_order_relaxed);
111
0
      getcpu_fn_.store(&GetCPUViaSyscall, std::memory_order_relaxed);
112
0
      return nullptr;
113
0
    }
114
0
    ElfW(auxv_t) aux;
115
0
    while (read(fd, &aux, sizeof(aux)) == sizeof(aux)) {
116
0
      if (aux.a_type == AT_SYSINFO_EHDR) {
117
#if defined(__NetBSD__)
118
        vdso_base_.store(reinterpret_cast<void *>(aux.a_v),
119
                         std::memory_order_relaxed);
120
#else
121
0
        vdso_base_.store(reinterpret_cast<void *>(aux.a_un.a_val),
122
0
                         std::memory_order_relaxed);
123
0
#endif
124
0
        break;
125
0
      }
126
0
    }
127
0
    close(fd);
128
0
    if (vdso_base_.load(std::memory_order_relaxed) == kInvalidBase) {
129
      // Didn't find AT_SYSINFO_EHDR in auxv[].
130
0
      vdso_base_.store(nullptr, std::memory_order_relaxed);
131
0
    }
132
0
  }
133
0
  GetCpuFn fn = &GetCPUViaSyscall;  // default if VDSO not present.
134
0
  if (vdso_base_.load(std::memory_order_relaxed)) {
135
0
    VDSOSupport vdso;
136
0
    SymbolInfo info;
137
0
    if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
138
0
      fn = reinterpret_cast<GetCpuFn>(const_cast<void *>(info.address));
139
0
    }
140
0
  }
141
  // Subtle: this code runs outside of any locks; prevent compiler
142
  // from assigning to getcpu_fn_ more than once.
143
0
  getcpu_fn_.store(fn, std::memory_order_relaxed);
144
0
  return vdso_base_.load(std::memory_order_relaxed);
145
0
}
146
147
0
const void *VDSOSupport::SetBase(const void *base) {
148
0
  ABSL_RAW_CHECK(base != debugging_internal::ElfMemImage::kInvalidBase,
149
0
                 "internal error");
150
0
  const void *old_base = vdso_base_.load(std::memory_order_relaxed);
151
0
  vdso_base_.store(base, std::memory_order_relaxed);
152
0
  image_.Init(base);
153
  // Also reset getcpu_fn_, so GetCPU could be tested with simulated VDSO.
154
0
  getcpu_fn_.store(&InitAndGetCPU, std::memory_order_relaxed);
155
0
  return old_base;
156
0
}
157
158
bool VDSOSupport::LookupSymbol(const char *name,
159
                               const char *version,
160
                               int type,
161
0
                               SymbolInfo *info) const {
162
0
  return image_.LookupSymbol(name, version, type, info);
163
0
}
164
165
bool VDSOSupport::LookupSymbolByAddress(const void *address,
166
0
                                        SymbolInfo *info_out) const {
167
0
  return image_.LookupSymbolByAddress(address, info_out);
168
0
}
169
170
// NOLINT on 'long' because this routine mimics kernel api.
171
long VDSOSupport::GetCPUViaSyscall(unsigned *cpu,  // NOLINT(runtime/int)
172
0
                                   void *, void *) {
173
0
#ifdef SYS_getcpu
174
0
  return syscall(SYS_getcpu, cpu, nullptr, nullptr);
175
#else
176
  // x86_64 never implemented sys_getcpu(), except as a VDSO call.
177
  static_cast<void>(cpu);  // Avoid an unused argument compiler warning.
178
  errno = ENOSYS;
179
  return -1;
180
#endif
181
0
}
182
183
// Use fast __vdso_getcpu if available.
184
long VDSOSupport::InitAndGetCPU(unsigned *cpu,  // NOLINT(runtime/int)
185
0
                                void *x, void *y) {
186
0
  Init();
187
0
  GetCpuFn fn = getcpu_fn_.load(std::memory_order_relaxed);
188
0
  ABSL_RAW_CHECK(fn != &InitAndGetCPU, "Init() did not set getcpu_fn_");
189
0
  return (*fn)(cpu, x, y);
190
0
}
191
192
// This function must be very fast, and may be called from very
193
// low level (e.g. tcmalloc). Hence I avoid things like
194
// GoogleOnceInit() and ::operator new.
195
// The destination in VDSO is unknown to CFI and VDSO does not set MSAN
196
// shadow for the return value.
197
ABSL_ATTRIBUTE_NO_SANITIZE_CFI
198
ABSL_ATTRIBUTE_NO_SANITIZE_MEMORY
199
0
int GetCPU() {
200
0
  unsigned cpu;
201
0
  long ret_code =  // NOLINT(runtime/int)
202
0
      (*VDSOSupport::getcpu_fn_)(&cpu, nullptr, nullptr);
203
0
  return ret_code == 0 ? static_cast<int>(cpu) : static_cast<int>(ret_code);
204
0
}
205
206
}  // namespace debugging_internal
207
ABSL_NAMESPACE_END
208
}  // namespace absl
209
210
#endif  // ABSL_HAVE_VDSO_SUPPORT