The definitions in /usr/include/socketbits.h that say things like: SOCK_STREAM = 1, /* Sequenced, reliable, connection-based byte streams. */ #define SOCK_STREAM SOCK_STREAM completely upset perl's h2ph, which when you distribute the resulting garbage causes anything that does require "sys/socket.ph" to barf. This is both with: [root@venus include]# rpm -qf /usr/include/socketbits.h glibc-devel-2.0.5c-10 phobos-[~/.vnc] mcr 144 %rpm -qf /usr/include/socketbits.h glibc-devel-2.0.6-9 but, since this file was generated during RPM build, the version that I have is not relevant. Specifically, this causes vncserver to go into an infinite loop and consume all available memory. This is also a problem in perl-5.004m7-1.i386.rpm and perl-5.004m4-1. The fixed socketbits.h file would be attached if I didn't have to use this silly web interface.
Reply to this message with the fixed socketbits.h and neither of us has to use this silly web interface :-)
*** Bug 4633 has been marked as a duplicate of this bug. *** This problem has been noted in a couple of other bug reports but they were for RH5.2 or not specific to this problem. H2ph cannot handle the way that glibc embeds defines inside enumerations. This code snippet from <bits/socket.h> shows the cause of the problem: enum __socket_type { SOCK_STREAM = 1, /* Sequenced, reliable, connection-based byte streams. */ #define SOCK_STREAM SOCK_STREAM SOCK_DGRAM = 2, /* Connectionless, unreliable datagrams of fixed maximum length. */ Somehow, h2ph either misses the SOCK_STREAM = 1 or overrides it with #define SOCK_STREAM SOCK_STREAM. This causes the subsequent bits/socket.ph to have the follow function: eval 'sub SOCK_STREAM () { &SOCK_STREAM;}' unless defined(&SOCK_STREAM); Which is obviously wrong and causes an infinite loop to occur. With some programs (aub was the only one I explicitly tested), this causes perl eat memory and eventually lock up the machine. A brief glance at the srpm in rawhide shows that no patch has been applied to h2ph so it probably won't fix this problem.
*** Bug 7676 has been marked as a duplicate of this bug. ***
*** Bug 4183 has been marked as a duplicate of this bug. ***
*** Bug 8575 has been marked as a duplicate of this bug. ***
The current Raw Hide perl defines this in socket.ph: eval 'sub SOCK_STREAM () {1;}' unless defined(&SOCK_STREAM); This perl script: require "asm/socket.ph"; print SOCK_STREAM(); now prints "1".