The GNU C Library, commonly known as glibc, is the
GNU Project
The GNU Project ( ) is a free software, mass collaboration project announced by Richard Stallman on September 27, 1983. Its goal is to give computer users freedom and control in their use of their computers and Computer hardware, computing dev ...
implementation of the
C standard library
The C standard library, sometimes referred to as libc, is the standard library for the C (programming language), C programming language, as specified in the ISO C standard.International Organization for Standardization, ISO/International Electrote ...
. It provides a wrapper around the system calls of the
Linux kernel
The Linux kernel is a Free and open-source software, free and open source Unix-like kernel (operating system), kernel that is used in many computer systems worldwide. The kernel was created by Linus Torvalds in 1991 and was soon adopted as the k ...
and other kernels for application use. Despite its name, it now also directly supports
C++ (and, indirectly, other
programming language
A programming language is a system of notation for writing computer programs.
Programming languages are described in terms of their Syntax (programming languages), syntax (form) and semantics (computer science), semantics (meaning), usually def ...
s). It was started in the 1980s by the
Free Software Foundation (FSF) for the
GNU operating system.
glibc is
free software
Free software, libre software, libreware sometimes known as freedom-respecting software is computer software distributed open-source license, under terms that allow users to run the software for any purpose as well as to study, change, distribut ...
released under the
GNU Lesser General Public License.
The GNU C Library project provides the core libraries for the GNU system, as well as many systems that use
Linux
Linux ( ) is a family of open source Unix-like operating systems based on the Linux kernel, an kernel (operating system), operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically package manager, pac ...
as the
kernel. These libraries provide critical
APIs including
ISO
The International Organization for Standardization (ISO ; ; ) is an independent, non-governmental, international standard development organization composed of representatives from the national standards organizations of member countries.
Me ...
C11,
POSIX.1-2008,
BSD, OS-specific APIs and more. These APIs include such foundational facilities as
open,
read,
write,
malloc,
printf,
getaddrinfo,
dlopen,
pthread_create,
crypt
A crypt (from Greek κρύπτη (kryptē) ''wikt:crypta#Latin, crypta'' "Burial vault (tomb), vault") is a stone chamber beneath the floor of a church or other building. It typically contains coffins, Sarcophagus, sarcophagi, or Relic, religiou ...
,
login,
exit and more.
History

The glibc project was initially written mostly by Roland McGrath, working for the
Free Software Foundation (FSF) in the summer of 1987 as a teenager.
In February 1988, FSF described glibc as having nearly completed the functionality required by
ANSI C. By 1992, it had the ANSI C-1989 and POSIX.1-1990 functions implemented and work was under way on POSIX.2. In September 1995 Ulrich Drepper made his first contribution to the glibc and by 1997 most commits were made by him. Drepper held the maintainership position for many years and until 2012 accumulated 63% of all commits to the project.
In May 2009 glibc was migrated to a
Git repository.
In 2010, a licensing issue was resolved which was caused by the
Sun RPC implementation in glibc that was not GPL
compatible. It was fixed by re-licensing the Sun RPC components under the
BSD license.
In 2014, glibc suffered from an ABI breakage bug on s390.
In July 2017, 30 years after he started glibc, Roland McGrath announced his departure, "declaring myself maintainer emeritus and withdrawing from direct involvement in the project. These past several months, if not the last few years, have proven that you don't need me anymore".
In 2018, maintainer Raymond Nicholson removed a joke about
abortion from the glibc source code. It was restored later by Alexandre Oliva after
Richard Stallman demanded to have it returned.
In 2021, the
copyright
A copyright is a type of intellectual property that gives its owner the exclusive legal right to copy, distribute, adapt, display, and perform a creative work, usually for a limited time. The creative work may be in a literary, artistic, ...
assignment requirement to the
Free Software Foundation was removed from the project.
Fork and variant
In 1994, the developers of the
Linux kernel
The Linux kernel is a Free and open-source software, free and open source Unix-like kernel (operating system), kernel that is used in many computer systems worldwide. The kernel was created by Linus Torvalds in 1991 and was soon adopted as the k ...
forked glibc. Their fork, "Linux libc", was maintained separately until around 1998. Because the copyright attribution was insufficient, changes could not be merged back to the GNU Libc. When the FSF released glibc 2.0 in January 1997, the kernel developers discontinued Linux libc due to glibc 2.0's superior compliance with POSIX standards. glibc 2.0 also had better
internationalisation and more in-depth translation,
IPv6
Internet Protocol version 6 (IPv6) is the most recent version of the Internet Protocol (IP), the communication protocol, communications protocol that provides an identification and location system for computers on networks and routes traffic ...
capability, 64-bit data access, facilities for multithreaded applications, future version compatibility, and the code was more portable. The last-used version of Linux libc used the internal name (
soname) . Following on from this, glibc 2.x on Linux uses the soname
In 2009,
Debian
Debian () is a free and open-source software, free and open source Linux distribution, developed by the Debian Project, which was established by Ian Murdock in August 1993. Debian is one of the oldest operating systems based on the Linux kerne ...
and a number of
derivatives switched from glibc to the variant eglibc. Eglibc was supported by a
consortium
A consortium () is an association of two or more individuals, companies, organizations, or governments (or any combination of these entities) with the objective of participating in a common activity or pooling their resources for achieving a ...
consisting of
Freescale,
MIPS,
MontaVista and
Wind River. It contained changes that made it more suitable for
embedded usage and had added support for architectures that were not supported by glibc, such as the
PowerPC e500. The code of eglibc was merged back into glibc at version 2.20. Since 2014, eglibc is discontinued. The
Yocto Project and Debian also moved back to glibc since the release of
Debian Jessie.
Steering committee
Starting in 2001 the library's development had been overseen by a committee, with Ulrich Drepper kept as the lead contributor and maintainer. The
steering committee installation was surrounded by a public controversy, as it was openly described by Ulrich Drepper as a failed
hostile takeover
In business, a takeover is the purchase of one company (law), company (the ''target'') by another (the ''acquirer'' or ''bidder''). In the UK, the term refers to the acquisition of a public company whose shares are publicly listed, in contrast t ...
maneuver by
Richard Stallman.
In March 2012, the steering committee voted to disband itself and remove Drepper in favor of a community-driven development process, with Ryan Arnold, Maxim Kuvyrkov, Joseph Myers, Carlos O'Donell, and Alexandre Oliva holding the responsibility of GNU maintainership (but no extra decision-making power).
Functionality
glibc provides the functionality required by the
Single UNIX Specification,
POSIX (1c, 1d, and 1j) and some of the functionality required by
ISO
The International Organization for Standardization (ISO ; ; ) is an independent, non-governmental, international standard development organization composed of representatives from the national standards organizations of member countries.
Me ...
C11,
ISO
The International Organization for Standardization (ISO ; ; ) is an independent, non-governmental, international standard development organization composed of representatives from the national standards organizations of member countries.
Me ...
C99,
Berkeley Unix (BSD) interfaces, the
System V Interface Definition (SVID) and the
X/Open Portability Guide (XPG), Issue 4.2, with all extensions common to XSI (
X/Open System Interface) compliant systems along with all X/Open UNIX extensions.
In addition, glibc also provides extensions that have been deemed useful or necessary while developing
GNU.
Supported hardware and kernels
glibc is used in systems that run many different
kernels and different
hardware architectures. Its most common use is in systems using the
Linux kernel
The Linux kernel is a Free and open-source software, free and open source Unix-like kernel (operating system), kernel that is used in many computer systems worldwide. The kernel was created by Linus Torvalds in 1991 and was soon adopted as the k ...
on
x86 hardware, however, officially supported hardware includes:
ARM,
ARC,
C-SKY,
DEC Alpha,
IA-64,
Motorola m68k,
MicroBlaze,
MIPS,
Nios II,
PA-RISC,
PowerPC,
RISC-V
RISC-V (pronounced "risk-five") is an open standard instruction set architecture (ISA) based on established reduced instruction set computer (RISC) principles. The project commenced in 2010 at the University of California, Berkeley. It transfer ...
,
s390,
SPARC, and
x86 (old versions support
TILE). It officially supports the
Hurd and
Linux
Linux ( ) is a family of open source Unix-like operating systems based on the Linux kernel, an kernel (operating system), operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically package manager, pac ...
kernels. Additionally, there are heavily patched versions that run on the kernels of
FreeBSD and
NetBSD (from which
Debian GNU/kFreeBSD and
Debian GNU/NetBSD systems are built, respectively), as well as a forked-version of
OpenSolaris. It is also used (in an edited form) and named in
BeOS and
Haiku.
Use in small devices
glibc has been criticized as being "
bloated" and slower than other libraries in the past, e.g. by
Linus Torvalds and
embedded Linux programmers. For this reason, several
alternative C standard libraries have been created which emphasize a smaller footprint. However, many small-device projects use GNU libc over the smaller alternatives because of its application support, standards compliance, and completeness. Examples include
Openmoko and
Familiar Linux for iPaq handhelds (when using the
GPE display software).
Secure string functions
glibc does not implement bounds-checking interfaces defined in
C11 and did not implement strlcpy and strlcat
until 2023 on the grounds that "in practice these functions can cause trouble, as their intended use encourages silent data truncation, adds complexity and inefficiency, and does not prevent all buffer overruns in the destinations."
The FAQ pointed out that the bounds-checking interfaces were optional in the ISO standard and that snprintf was available as an alternative.
Compatibility layers
There are
compatibility layers ("
shims") to allow programs written for other ecosystems to run on glibc interface offering systems. These include
libhybris, a compatibility layer for
Android's Bionic, and
Wine, which can be seen as a compatibility layer from
Windows APIs to glibc and other native APIs available on Unix-like systems.
See also
*
Gnulib
*
Linux kernel API
Notes
References
External links
*
{{CProLang, state=expanded
C standard library
Cross-platform free software
Free computer libraries
Free software programmed in C
C Library
Interfaces of the Linux kernel
Linux APIs