2000-11-28 16:41:47

by Jani Monoses

[permalink] [raw]
Subject: binfmt question


Hi,

Is every process supposed to have a valid binary format?
(binfmt field !=NULL in it's task_struct).I hope so.

Thanks.


2000-11-28 16:58:40

by Tigran Aivazian

[permalink] [raw]
Subject: Re: binfmt question

On Tue, 28 Nov 2000 [email protected] wrote:

>
> Hi,
>
> Is every process supposed to have a valid binary format?
> (binfmt field !=NULL in it's task_struct).I hope so.
>

No, incorrect. You can have a kernel thread with binfmt == NULL, see

# gdb -q vmlinux /proc/kcore
Core was generated by `auto BOOT_IMAGE=240-test11 ro root=302
BOOT_FILE=/boot/vmlinuz-2.4.0-test11'.
#0 0x0 in ?? ()
(gdb) p ((((2) >> 8) ^ (2)) & (1024 - 1))
$1 = 2
(gdb) p pidhash[2]->comm
$2 = "eventd\000\000\000\000\000\000\000\000\000"
(gdb) p pidhash[2]->binfmt
$3 = (struct linux_binfmt *) 0x0

Regards,
Tigran