Jump to content

klibc

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Bender235 (talk | contribs) at 14:55, 25 July 2016 (→‎top: clean up; http->https (see this RfC) using AWB). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

klibc
Developer(s)H. Peter Anvin
Stable release
2.0.4 / July 9, 2014; 10 years ago (2014-07-09)[1]
Repository
Written inC[2]
Operating systemLinux
TypeRuntime library
LicenseGNU General Public License or BSD licence
Websiteftp.kernel.org/pub/linux/libs/klibc/

In computing, klibc is a minimalistic subset of the standard C library developed by H. Peter Anvin. It was developed mainly to be used during the Linux startup process, and it is part of the early user space, i.e. components used during kernel startup, but which do not run in kernel mode.[3] These components do not have access to the standard library (usually glibc) used by normal userspace programs.

The development of klibc library was part of the 2002 effort to move some Linux initialization code out of the kernel.[4][5][6] According to its documentation, the klibc library is optimized for correctness and small size.[3] Because of its design, klibc is also technically suitable for embedded software in general, and even some full-featured programmes such as the MirBSD Korn Shell. klibc is licensed under the full GPL license, which (unlike LGPL) imposes itself on any code linked with it. (This only applies to klibc as a whole due to embedding some Linux kernel derived files; most of the library source code is actually[7] available under a BSD licence from UCB or the Historical Permission Notice and Disclaimer.) This may limit its applicability to commercial embedded software.[8]

During the Linux startup process, klibc is loaded from within a temporary RAM file system, initramfs. It is incorporated by default into initial RAM file systems that are created by the mkinitramfs script in Debian[9] and Ubuntu. Furthermore, it has a set of small Unix utilities that are useful in early user space: cpio, dash, fstype, mkdir, mknod, mount, nfsmount, run-init, etc. all using the klibc library.[10] An alternate strategy is to include everything in one executable, like BusyBox, which determines the program via arguments or a symlink.

See also

Other C standard libraries

References

  1. ^ klibc version 2.0.4 releases
  2. ^ http://www.ohloh.net/p/klibc
  3. ^ a b http://free-electrons.com/kerneldoc/latest/early-userspace/README
  4. ^ Jonathan Corbet, (November 2002) Initramfs arrives, LWN.net
  5. ^ "initramfs merge, part 1 of N". 2002-02-11.
  6. ^ "Re: initramfs merge, part 1 of N". 2002-02-11.
  7. ^ usr/klibc/LICENSE as of klibc-1.5.18
  8. ^ Hagen, William W. (2006). The Definitive Guide to GCC, Second Edition. Berkeley, CA: APress. pp. 286–289. ISBN 1-59059-585-8.
  9. ^ Debian Wheezy Klibc.
  10. ^ "libs/klibc/klibc.git / tree".

External links