First, “ancestor” isn't the same thing as “parent”. The ancestor can be the parent's parent's … parent's parent, and the kernel only keeps track of one level.
However, when a process dies, its children are adopted by init, so you will see a lot of processes whose parent is 1 on a typical system.
Modern Linux systems additionally have a few processes that execute kernel code, but are managed as user processes, as far as scheduling is concerned. (They don't obey the usual memory management rules since they're running kernel code.) These processes are all spawned by kthreadd
(it's the init of kernel threads). You can recognize them by the fact that /proc/2/exe
(normally a symbolic link to the process executable) can't be read. Also, ps
lists them with a name between square brackets (which is possible for normal user processes, but unusual). Most processes whose parent process ID is 2 are kernel processes, but there are also a few kernel helper processes with PPID 2 (see below).
Processes 1 (init
) and 2 (kthreadd
) are created directly by the kernel at boot time, so they don't have a parent. The value 0 is used in their ppid field to indicate that. Think of 0 as meaning “the kernel itself” here.
Linux also has some facilities for the kernel to start user processes whose location is indicated via a sysctl parameter in certain circumstances. For example, the kernel can trigger module loading events (e.g. when new hardware is discovered, or when some network protocols are first used) by calling the program in the kernel.modprobe
sysctl value. When a program dumps core, the kernel calls the program indicated by kernel.core_pattern
if any. Those processes are user processes, but their parent is registered as kthreadd
.
init
is the "ancestor" of alluser threads
, while[kthreadd ]
is the "parent" of allkernel threads
, right? Thx! – Nan Xiao May 16 '16 at 07:24kernel.core_pattern
when a program dumps core. On a typical system you won't see them because those processes tend to do their job quickly and then exit. – Gilles 'SO- stop being evil' May 16 '16 at 11:41init
to avoid having to collect its exit code -- if a process with ppid 0 dies, the kernel panics. – Simon Richter Dec 15 '21 at 22:06