could not create IPv6 socket (AI_ADDRCONFIG)

From: Kyotaro HORIGUCHI <horiguchi(dot)kyotaro(at)lab(dot)ntt(dot)co(dot)jp>
To: pgsql-hackers(at)postgresql(dot)org
Subject: could not create IPv6 socket (AI_ADDRCONFIG)
Date: 2014-02-04 04:38:37
Message-ID: 20140204.133837.210606869.horiguchi.kyotaro@lab.ntt.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello, I have often seen inquiries about an log message from
PostgreSQL server.

> LOG: could not create IPv6 socket: Address family not supported by protocol

This is emitted on ipv6-disabled environment which was available
for me by the following steps on CentOS 6.5,

- Add 'NETWORKING_IPV6=no' into /etc/sysconfig/network

- Create /etc/modprobe.d/disable-ipv6.conf with the following
content.

> options net-pf-10 off
> install ipv6 /bin/true

- Comment out the entry for ::1 in /etc/hosts

- Reboot.

- [Confirm that "ip a" and "ifconfig -a" don't show ipv6 addrs]

The cause is that the server collects available listen addresses
by getaddrinfo with hint.ai_flags not having AI_ADDRCONFIG set.

pqcomm.c:299 in function StreamServerPort
> hint.ai_family = family;
!> hint.ai_flags = AI_PASSIVE;
> hint.ai_socktype = SOCK_STREAM;

The man page of getaddrinfo says that AI_ADDRCONFIG would help
and I saw it actually did.

Well, I excavated some discussions about this option from ancient
pgsql-hackers, a decade ago.

http://www.postgresql.org/message-id/20030703204355.GA12774@ping.be
> This looks a little broken behaviour to me. My guess is that
> it returns an AF_INET6 socket but doesn't support it in the
> kernel. In that case with the AI_ADDRCONFIG option it
> shouldn't have returned that address. The question is wether
> your getaddrinfo() supports that option, and wether it's
> working or not.

I suppose AI_ADDRCONFIG is a quite obscure option at the time,
but the time seems to have come when we can use this option.

man getaddrinfo
>NOTES
> getaddrinfo() supports the address%scope-id notation for
> specifying the IPv6 scope-ID.
>
> AI_ADDRCONFIG, AI_ALL, and AI_V4MAPPED are available
> since glibc 2.3.3. AI_NUMERICSERV is available since
> glibc 2.3.4.

RHEL/CentOS 4.9 and after seems satisfies the condition. I don't
know about other platforms but it is enough to define it as 0 if
not defined. In addition, it would not be a problem even if the
option doesn't work as expected because the error handling code
added at the time the above conversation took place would act as
the last resort. There would be no way it can work destructively.

Attached patch does this.

Any suggestions ?

regards,

--
Kyotaro Horiguchi
NTT Open Source Software Center

Attachment Content-Type Size
getaddrinfo_ai_addrconfig_v1.patch text/x-patch 1.4 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Noah Misch 2014-02-04 05:08:09 Re: Viability of text HISTORY/INSTALL/regression README files (was Re: [COMMITTERS] pgsql: Document a few more regression test hazards.)
Previous Message Noah Misch 2014-02-04 04:28:45 Re: Triggers on foreign tables