Debug strategy for musl Postgres? - Mailing list pgsql-bugs

From John Mudd
Subject Debug strategy for musl Postgres?
Date
Msg-id CAGDMk9FNs8GBW82nOn0L9V-m-LmuUQoQYStdT+Aj3K5TsL7rQg@mail.gmail.com
Whole thread Raw
Responses Re: Debug strategy for musl Postgres?  (Euler Taveira <euler@timbira.com.br>)
List pgsql-bugs
I built Postgres 9.3.4 from source on top of the musl C library,
http://www.musl-libc.org/
I also built zlib, bzip2, ncurses, openssl, readline and Python using musl
as a foundation for Postgres.

I'm using musl to increase the portability of the Postgres binary. I build
on Ubuntu 13.10 but will runs on older Linux boxes.

So far I get better results with the musl Postgres built on modern Ubuntu
and running on an old kernel than building Postgres directly on the old
Linux using standard C library. But the musl Postgres is still not working
fully. I'm not getting responses from the server.

Here's the tail end "strace pg_isready" output for musl Postgres built and
running on Ubuntu 13.10:

clock_gettime(CLOCK_REALTIME, {1397359337, 426941692}) = 0
poll([{fd=4, events=POLLOUT|POLLERR}], 1, 3000) = 1 ([{fd=4,
revents=POLLOUT}])
sendto(4, "\0\0\0=\0\3\0\0user\0mudd\0database\0mudd\0"..., 61,
MSG_NOSIGNAL, NULL, 0) = 61
clock_gettime(CLOCK_REALTIME, {1397359337, 427070343}) = 0
poll([{fd=4, events=POLLIN|POLLERR}], 1, 3000) = 1 ([{fd=4,
revents=POLLIN}])
recvfrom(4, "R\0\0\0\10\0\0\0\0E\0\0\0RSFATAL\0C3D000\0Mdat"..., 16384, 0,
NULL, NULL) = 92
close(4)                                = 0
ioctl(1, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo
...}) = 0
writev(1, [{"/tmp:5432 - accepting connection"..., 33}, {"\n", 1}], 2) = 34
exit_group(0)                           = ?


Here's the tail end "strace pg_isready" output for musl Postgres built on
Ubuntu 13.10 but running on old Linux:

clock_gettime(0, 0xbfffa5a8)            = -1 ENOSYS (Function not
implemented)
gettimeofday(NULL, {300, 0})            = 0
poll([{fd=3, events=POLLOUT|POLLERR, revents=POLLOUT}], 1, 3000) = 1
sendto(3, "\0\0\0?\0\3\0\0user\0jmudd\0database\0jmud"..., 63, 0x4000,
NULL, 0) = 63

clock_gettime(0, 0xbfffa5a8)            = -1 ENOSYS (Function not
implemented)
gettimeofday(NULL, {300, 0})            = 0
poll([{fd=3, events=POLLIN|POLLERR}], 1, 3000) = 0
close(3)                                = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
writev(1, [{"/tmp:5432 - no response", 23}, {"\n", 1}], 2) = 24
exit_group(2)                           = ?


For my next step I'll try building musl Postgres with the --enable-cassert
option. What else can I do to debug this?

John

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #9955: The time zone value for South Africa (SAST) is 01:00:00 not 09:30:00
Next
From: Euler Taveira
Date:
Subject: Re: Debug strategy for musl Postgres?