Обсуждение: Re: [COMMITTERS] pgsql: Clarify description of CIDR-address column

Поиск
Список
Период
Сортировка

Re: [COMMITTERS] pgsql: Clarify description of CIDR-address column

От
Tom Lane
Дата:
"Andrew Dunstan" <andrew@dunslane.net> writes:
> Tom Lane wrote:
>> Clarify description of CIDR-address column of pg_hba.conf, to discourage
>> people from trying notations like '10.6/16', which is accepted but does
>> not mean what you probably think.  Per example from Paul Forgey.

> Isn't the real problem here that 10.6 doesn't mean what you probably think?

If you're proposing that we change the behavior of inet_aton(), I don't
think that's much of a solution, since then people who do remember the
old notation ... or recognize the analogy to IPv6 abbreviations, which
are not a lot different ... would get burnt.  We can't do it anyway on
most modern platforms, unless we want to replace all of getaddrinfo()
which seems pretty unappealing.
        regards, tom lane


Re: [COMMITTERS] pgsql: Clarify description of CIDR-address

От
"Florian G. Pflug"
Дата:
Tom Lane wrote:
> "Andrew Dunstan" <andrew@dunslane.net> writes:
>> Tom Lane wrote:
>>> Clarify description of CIDR-address column of pg_hba.conf, to discourage
>>> people from trying notations like '10.6/16', which is accepted but does
>>> not mean what you probably think.  Per example from Paul Forgey.
> 
>> Isn't the real problem here that 10.6 doesn't mean what you probably think?
I'm curious now - what _does_ 10.6/16 mean? I can't imagine any sensible
meaning apart from 10.6.0.0/16...

Please enlighten me.

greetings, Florian Pflug


Re: [COMMITTERS] pgsql: Clarify description of CIDR-address column

От
Tom Lane
Дата:
"Florian G. Pflug" <fgp@phlo.org> writes:
>> "Andrew Dunstan" <andrew@dunslane.net> writes:
>>> Isn't the real problem here that 10.6 doesn't mean what you probably think?

> I'm curious now - what _does_ 10.6/16 mean? I can't imagine any sensible
> meaning apart from 10.6.0.0/16...

10.6 means the same as 10.0.0.6 --- see src/port/inet_aton.c.
This has been discussed before:
http://archives.postgresql.org/pgsql-hackers/2004-01/msg00132.php

My feeling is the same as it was then, ie, we are not in the business of
second-guessing standard library routines.
        regards, tom lane


Re: [COMMITTERS] pgsql: Clarify description of

От
"Andrew Dunstan"
Дата:
Tom Lane wrote:
> "Andrew Dunstan" <andrew@dunslane.net> writes:
>> Tom Lane wrote:
>>> Clarify description of CIDR-address column of pg_hba.conf, to
>>> discourage
>>> people from trying notations like '10.6/16', which is accepted but does
>>> not mean what you probably think.  Per example from Paul Forgey.
>
>> Isn't the real problem here that 10.6 doesn't mean what you probably
>> think?
>
> If you're proposing that we change the behavior of inet_aton(), I don't
> think that's much of a solution, since then people who do remember the
> old notation ... or recognize the analogy to IPv6 abbreviations, which
> are not a lot different ... would get burnt.  We can't do it anyway on
> most modern platforms, unless we want to replace all of getaddrinfo()
> which seems pretty unappealing.
>

No, I'm only suggesting that the confusion has much to do with the use of
abbreviated addresses and not much to do with use of CIDR masks. If we are
worried about the confusion we should spell out the problem explicitly.

cheers

andrew