内核空间中有 libc 吗?我的意思是,你必须根据某个 libc 来构建内核,对吗?那么内核空间中是否有一个 libc(可能是静态链接的)?
如果有,这与用户态的 glibc 有什么关系? 它们必须是相同的版本吗?
Is there a libc in kernel space? I mean you have to build kernel against some libc right? So Is there a libc (probably statically-linked) sitting within kernel space?
If yes, how is this related to userland glibc? Must they be the same version?
内核空间实际上没有 libc。libc 是用户空间库,不能在内核空间使用。
但 libc 中几乎所有对内核空间有意义的函数都被移植到了内核空间。你通常可以在 include/linux/ 中找到头文件。
据我所知,这两种实现并不共享代码库。
There is actually no libc in kernel space. Libc is user-space library, and you can't use it from kernel-space.
But almost all functions from libc that make sense in kernel space are ported. You can find headers in include/linux/ usually.
As far as I know these two implementations don't share codebase.
libc 中的一些可用函数是在内核代码中实现的,例如,有一个 printf 函数可以像普通函数一样工作(至少就其自身所需的内核代码而言)。
这就意味着,虽然代码看起来使用了 libc(从似乎可用的函数来看),但实际上并不需要将其与库链接(目前看来)。
Some of the functions that are available in libc are implemented inside the kernel code, for example there's a printf function that works as the normal (at least as far as the kernel code it self requires).
This means that while it looks like the code uses libc (by the functions that seem to be available) there actually no need to link it with a library (AFAIK).
参考:
linux - Is there a libc in kernel space? - Stack Overflow