clang 23.0.0git
Distro.cpp
Go to the documentation of this file.
1//===--- Distro.cpp - Linux distribution detection support ------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include "clang/Basic/LLVM.h"
11#include "llvm/ADT/StringRef.h"
12#include "llvm/ADT/StringSwitch.h"
13#include "llvm/Support/ErrorOr.h"
14#include "llvm/Support/MemoryBuffer.h"
15#include "llvm/Support/Threading.h"
16#include "llvm/TargetParser/Host.h"
17#include "llvm/TargetParser/Triple.h"
18
19using namespace clang::driver;
20using namespace clang;
21
22static Distro::DistroType DetectOsRelease(llvm::vfs::FileSystem &VFS) {
23 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
24 VFS.getBufferForFile("/etc/os-release");
25 if (!File)
26 File = VFS.getBufferForFile("/usr/lib/os-release");
27 if (!File)
29
31 File.get()->getBuffer().split(Lines, "\n");
33
34 // Obviously this can be improved a lot.
35 for (StringRef Line : Lines)
36 if (Version == Distro::UnknownDistro && Line.starts_with("ID="))
37 Version = llvm::StringSwitch<Distro::DistroType>(Line.substr(3))
38 .Case("alpine", Distro::AlpineLinux)
39 .Case("fedora", Distro::Fedora)
40 .Case("gentoo", Distro::Gentoo)
41 .Case("arch", Distro::ArchLinux)
42 // On SLES, /etc/os-release was introduced in SLES 11.
43 .Case("sles", Distro::OpenSUSE)
44 .Case("opensuse", Distro::OpenSUSE)
45 .Case("exherbo", Distro::Exherbo)
46 .Default(Distro::UnknownDistro);
47 return Version;
48}
49
50static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS) {
51 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
52 VFS.getBufferForFile("/etc/lsb-release");
53 if (!File)
55
57 File.get()->getBuffer().split(Lines, "\n");
59
60 for (StringRef Line : Lines)
61 if (Version == Distro::UnknownDistro &&
62 Line.starts_with("DISTRIB_CODENAME="))
63 Version = llvm::StringSwitch<Distro::DistroType>(Line.substr(17))
64 .Case("quantal", Distro::UbuntuQuantal)
65 .Case("raring", Distro::UbuntuRaring)
66 .Case("saucy", Distro::UbuntuSaucy)
67 .Case("trusty", Distro::UbuntuTrusty)
68 .Case("utopic", Distro::UbuntuUtopic)
69 .Case("vivid", Distro::UbuntuVivid)
70 .Case("wily", Distro::UbuntuWily)
71 .Case("xenial", Distro::UbuntuXenial)
72 .Case("yakkety", Distro::UbuntuYakkety)
73 .Case("zesty", Distro::UbuntuZesty)
74 .Case("artful", Distro::UbuntuArtful)
75 .Case("bionic", Distro::UbuntuBionic)
76 .Case("cosmic", Distro::UbuntuCosmic)
77 .Case("disco", Distro::UbuntuDisco)
78 .Case("eoan", Distro::UbuntuEoan)
79 .Case("focal", Distro::UbuntuFocal)
80 .Case("groovy", Distro::UbuntuGroovy)
81 .Case("hirsute", Distro::UbuntuHirsute)
82 .Case("impish", Distro::UbuntuImpish)
83 .Case("jammy", Distro::UbuntuJammy)
84 .Case("kinetic", Distro::UbuntuKinetic)
85 .Case("lunar", Distro::UbuntuLunar)
86 .Case("mantic", Distro::UbuntuMantic)
87 .Case("noble", Distro::UbuntuNoble)
88 .Case("oracular", Distro::UbuntuOracular)
89 .Case("plucky", Distro::UbuntuPlucky)
90 .Case("questing", Distro::UbuntuQuesting)
91 .Case("resolute", Distro::UbuntuResolute)
92 .Case("stonking", Distro::UbuntuStonking)
93 .Default(Distro::UnknownDistro);
94 return Version;
95}
96
97static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS) {
99
100 // Newer freedesktop.org's compilant systemd-based systems
101 // should provide /etc/os-release or /usr/lib/os-release.
102 Version = DetectOsRelease(VFS);
103 if (Version != Distro::UnknownDistro)
104 return Version;
105
106 // Older systems might provide /etc/lsb-release.
107 Version = DetectLsbRelease(VFS);
108 if (Version != Distro::UnknownDistro)
109 return Version;
110
111 // Otherwise try some distro-specific quirks for Red Hat...
112 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
113 VFS.getBufferForFile("/etc/redhat-release");
114
115 if (File) {
116 StringRef Data = File.get()->getBuffer();
117 if (Data.starts_with("Fedora release"))
118 return Distro::Fedora;
119 if (Data.starts_with("Red Hat Enterprise Linux") ||
120 Data.starts_with("CentOS") || Data.starts_with("AlmaLinux") ||
121 Data.starts_with("Rocky Linux") ||
122 Data.starts_with("Scientific Linux")) {
123 if (Data.contains("release 10"))
124 return Distro::RHEL10;
125 if (Data.contains("release 9"))
126 return Distro::RHEL9;
127 if (Data.contains("release 8"))
128 return Distro::RHEL8;
129 if (Data.contains("release 7"))
130 return Distro::RHEL7;
131 }
133 }
134
135 // ...for Debian
136 File = VFS.getBufferForFile("/etc/debian_version");
137 if (File) {
138 StringRef Data = File.get()->getBuffer();
139 // Contents: < major.minor > or < codename/sid >
140 int MajorVersion;
141 if (!Data.split('.').first.getAsInteger(10, MajorVersion)) {
142 switch (MajorVersion) {
143 case 8:
145 case 9:
147 case 10:
149 case 11:
151 case 12:
153 case 13:
155 case 14:
156 return Distro::DebianForky;
157 case 15:
158 return Distro::DebianDuke;
159 default:
161 }
162 }
163 return llvm::StringSwitch<Distro::DistroType>(Data.split("\n").first)
164 .Case("jessie/sid", Distro::DebianJessie)
165 .Case("stretch/sid", Distro::DebianStretch)
166 .Case("buster/sid", Distro::DebianBuster)
167 .Case("bullseye/sid", Distro::DebianBullseye)
168 .Case("bookworm/sid", Distro::DebianBookworm)
169 .Case("trixie/sid", Distro::DebianTrixie)
170 .Case("forky/sid", Distro::DebianForky)
171 .Case("duke/sid", Distro::DebianDuke)
172 .Default(Distro::UnknownDistro);
173 }
174
175 // ...for SUSE
176 File = VFS.getBufferForFile("/etc/SuSE-release");
177 if (File) {
178 StringRef Data = File.get()->getBuffer();
180 Data.split(Lines, "\n");
181 for (const StringRef &Line : Lines) {
182 if (!Line.trim().starts_with("VERSION"))
183 continue;
184 std::pair<StringRef, StringRef> SplitLine = Line.split('=');
185 // Old versions have split VERSION and PATCHLEVEL
186 // Newer versions use VERSION = x.y
187 std::pair<StringRef, StringRef> SplitVer =
188 SplitLine.second.trim().split('.');
189 int Version;
190
191 // OpenSUSE/SLES 10 and older are not supported and not compatible
192 // with our rules, so just treat them as Distro::UnknownDistro.
193 if (!SplitVer.first.getAsInteger(10, Version) && Version > 10)
194 return Distro::OpenSUSE;
196 }
198 }
199
200 // ...and others.
201 if (VFS.exists("/etc/gentoo-release"))
202 return Distro::Gentoo;
203
205}
206
207static Distro::DistroType GetDistro(llvm::vfs::FileSystem &VFS,
208 const llvm::Triple &TargetOrHost) {
209 // If we don't target Linux, no need to check the distro. This saves a few
210 // OS calls.
211 if (!TargetOrHost.isOSLinux())
213
214 // True if we're backed by a real file system.
215 const bool onRealFS = (llvm::vfs::getRealFileSystem() == &VFS);
216
217 // If the host is not running Linux, and we're backed by a real file
218 // system, no need to check the distro. This is the case where someone
219 // is cross-compiling from BSD or Windows to Linux, and it would be
220 // meaningless to try to figure out the "distro" of the non-Linux host.
221 llvm::Triple HostTriple(llvm::sys::getProcessTriple());
222 if (!HostTriple.isOSLinux() && onRealFS)
224
225 if (onRealFS) {
226 // If we're backed by a real file system, perform
227 // the detection only once and save the result.
228 static const Distro::DistroType LinuxDistro = DetectDistro(VFS);
229 return LinuxDistro;
230 }
231 // This is mostly for passing tests which uses llvm::vfs::InMemoryFileSystem,
232 // which is not "real".
233 return DetectDistro(VFS);
234}
235
236Distro::Distro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost)
237 : DistroVal(GetDistro(VFS, TargetOrHost)) {}
static Distro::DistroType DetectOsRelease(llvm::vfs::FileSystem &VFS)
Definition Distro.cpp:22
static Distro::DistroType DetectLsbRelease(llvm::vfs::FileSystem &VFS)
Definition Distro.cpp:50
static Distro::DistroType DetectDistro(llvm::vfs::FileSystem &VFS)
Definition Distro.cpp:97
static Distro::DistroType GetDistro(llvm::vfs::FileSystem &VFS, const llvm::Triple &TargetOrHost)
Definition Distro.cpp:207
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Distro()
Default constructor leaves the distribution unknown.
Definition Distro.h:90
The JSON file list parser is used to communicate input to InstallAPI.