Re: GSSAPI Authentication Problem

From: John Slattery <johntslattery(at)gmail(dot)com>
To: Stephen Frost <sfrost(at)snowman(dot)net>
Cc: pgsql-odbc(at)postgresql(dot)org
Subject: Re: GSSAPI Authentication Problem
Date: 2012-08-06 16:24:54
Message-ID: CA+hybRV1NRHneQHVWHkNqBusjaiS8BtGK99CEVtLF1rwgnSMuw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

On Mon, Aug 6, 2012 at 10:49 AM, John Slattery <johntslattery(at)gmail(dot)com> wrote:
> On Fri, Aug 3, 2012 at 4:41 PM, Stephen Frost <sfrost(at)snowman(dot)net> wrote:
>> John,
>>
>> * John Slattery (johntslattery(at)gmail(dot)com) wrote:
>>> Following is the information you suggested reporting. The test is with
>>> 'User Name' = 'john'. I used a system DSN generated with the ODBC data
>>> source administrator. Before I set 'User Name' = 'john', I
>>> successfully tested the DSN with user csmprovver whose AD and PG names
>>> are identical with 'User Name' = ''.
>>
>> After you have tried to connect, you might try running 'klist' on the
>> Windows system and reviewing the tickets to see if you acquired a ticket
>> for the postgres service.
>>
>> In general, this does look very similar to our setup (which works just
>> fine). I will say that we always use "include_realm=1" and then have
>> the mapping include the realm, eg:
>>
>> pg_hba.conf:
>>
>> host all all 0.0.0.0/0 gss include_realm=1 map=krbmap
>>
>> pg_ident.conf:
>>
>> krbmap /^[mM]12345(at)REALM\(dot)ORG$ sfrost
>>
>> In the end, however, it sounds like that's some kind of GSSAPI issue
>> that's causing trouble (hence the gssapi auth complaint in the server
>> log). Is there any additional information around that error about what
>> the GSSAPI error is? Have you tried increasing the verbosity of the
>> server messages to see if more information is provided?
>>
>> Thanks,
>>
>> Stephen
>
> Stephen,
>
> I noticed a configuration option in postgresql.conf to increase the
> message level to the client. I set client_min_messages = debug5 and
> generated the attached mylog files.
>
> mylog_1812.log is for an unsuccessful attempt to authenticate with
> 'User Name' = 'john'. This line from the log seems to suggest that
> psqlODBC is not using the correct SPN:
>
> [3876-0.060]!!! inlen=0 svcprinc=postgres/postgresql.columbia-stmarys.org
>
> It should be 'POSTGRESQL/postgresql.columbia-stmarys.org. An
> examination of tickets on the client with klist shows that a ticket is
> not present for POSTGRESQL.
>
> The attempt fails with:
>
> [3876-0.060](-2146893053)The specified target is unknown or
> unreachable in DoKerberosEtcProcessAuthentication:PerformKerberosEtcClientHandshake
> ERRNO=1
>
> mylog_936.log is for an unsuccessful attempt to authenticate with
> 'User Name' = 'jslatter'. Predictably, it fails with:
>
> [2608-0.120]CONN ERROR: func=LIBPQ_connect, desc='', errnum=101,
> errmsg='FATAL: role "jslatter" does not exist
>
> but doesn't complain about a target being unreachable. An examination
> of tickets on the client shows that one for
> POSTGRESQL/postgresql.columbia-stmarys.org is now present.
>
> Though you've already indicated it's not possible, the only thing that
> occurs to me is that in the special case where 'User Name' is
> specified, psqlODBC may not be respecting the PGKRBSRVNAME environment
> variable.
>
> John

Sorry. I have a correction to make. The following

mylog_936.log is for an unsuccessful attempt to authenticate with
'User Name' = 'jslatter'. Predictably, it fails with:

should have been

mylog_936.log is for an unsuccessful attempt to authenticate with
'User Name' = ''. Predictably, it fails with:

since the test was to specifying nothing for 'User Name'.

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Hiroshi Inoue 2012-08-07 10:51:43 Re: GSSAPI Authentication Problem
Previous Message John Slattery 2012-08-06 16:02:52 Re: GSSAPI Authentication Problem