Re: DBD::Pg and "invalid frontend message type 10"

Lists: pgsql-interfaces
From: Scott Cain <cain(at)cshl(dot)edu>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: DBD::Pg and "invalid frontend message type 10"
Date: 2005-08-24 13:10:34
Message-ID: 1124889034.2940.132.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-interfaces

Hello,

I am a developer of a PostgreSQL powered application that, naturally,
works fine in my hands, using verison 7.4.* (most recently, 7.4.8). I
have a user, however, that is getting this error message:

DBD::Pg::db do failed: FATAL: invalid frontend message type 10

Can someone shed some light on where to start looking for the source of
this problem? I'm guessing the message is coming from postgres, since I
can't find a string like that in DBD::Pg.

Thanks,
Scott

--
------------------------------------------------------------------------
Scott Cain, Ph. D. cain(at)cshl(dot)edu
GMOD Coordinator (http://www.gmod.org/) 216-392-3087
Cold Spring Harbor Laboratory


From: Michael Fuhr <mike(at)fuhr(dot)org>
To: Scott Cain <cain(at)cshl(dot)edu>
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: DBD::Pg and "invalid frontend message type 10"
Date: 2005-08-24 13:34:53
Message-ID: 20050824133453.GA50029@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-interfaces

On Wed, Aug 24, 2005 at 09:10:34AM -0400, Scott Cain wrote:
> I am a developer of a PostgreSQL powered application that, naturally,
> works fine in my hands, using verison 7.4.* (most recently, 7.4.8). I
> have a user, however, that is getting this error message:
>
> DBD::Pg::db do failed: FATAL: invalid frontend message type 10
>
> Can someone shed some light on where to start looking for the source of
> this problem? I'm guessing the message is coming from postgres, since I
> can't find a string like that in DBD::Pg.

The message comes from the PostgreSQL backend; it's received a
message it doesn't understand. What's different about your system
and the user's? At what point in the connection does the user get
the error? Can you run a sniffer on the connection to see what's
happening?

--
Michael Fuhr


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Michael Fuhr <mike(at)fuhr(dot)org>
Cc: Scott Cain <cain(at)cshl(dot)edu>, pgsql-interfaces(at)postgresql(dot)org
Subject: Re: DBD::Pg and "invalid frontend message type 10"
Date: 2005-08-24 15:10:06
Message-ID: 26062.1124896206@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-interfaces

Michael Fuhr <mike(at)fuhr(dot)org> writes:
> On Wed, Aug 24, 2005 at 09:10:34AM -0400, Scott Cain wrote:
>> I am a developer of a PostgreSQL powered application that, naturally,
>> works fine in my hands, using verison 7.4.* (most recently, 7.4.8). I
>> have a user, however, that is getting this error message:
>>
>> DBD::Pg::db do failed: FATAL: invalid frontend message type 10
>>
>> Can someone shed some light on where to start looking for the source of
>> this problem? I'm guessing the message is coming from postgres, since I
>> can't find a string like that in DBD::Pg.

> The message comes from the PostgreSQL backend; it's received a
> message it doesn't understand.

Since 10 is the ascii code for line-feed, I wonder if this could
indicate an unwanted newline format conversion someplace. In particular
I'm imagining something like this:

* frontend thinks it's sending 'Q' message type, message length,
and a query string that ends with \n:
Q 0 0 0 42 SELECT ... \n
* some evil code changes this to
Q 0 0 0 42 SELECT ... \r \n
* backend receives and executes
Q 0 0 0 42 SELECT ... \r
which is perfectly OK
* next time backend tries to read a message, it gets the \n
which leads to the reported complaint

I've glossed over some details but in general it seems like something
like this could be happening, if you are using the V3 protocol which
relies on message length words.

regards, tom lane


From: Scott Cain <cain(at)cshl(dot)edu>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Michael Fuhr <mike(at)fuhr(dot)org>, pgsql-interfaces(at)postgresql(dot)org
Subject: Re: DBD::Pg and "invalid frontend message type 10"
Date: 2005-08-24 15:30:30
Message-ID: 1124897430.2940.143.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-interfaces

On Wed, 2005-08-24 at 11:10 -0400, Tom Lane wrote:
> Since 10 is the ascii code for line-feed, I wonder if this could
> indicate an unwanted newline format conversion someplace. In particular
> I'm imagining something like this:
>
> * frontend thinks it's sending 'Q' message type, message length,
> and a query string that ends with \n:
> Q 0 0 0 42 SELECT ... \n
> * some evil code changes this to
> Q 0 0 0 42 SELECT ... \r \n
> * backend receives and executes
> Q 0 0 0 42 SELECT ... \r
> which is perfectly OK
> * next time backend tries to read a message, it gets the \n
> which leads to the reported complaint
>
> I've glossed over some details but in general it seems like something
> like this could be happening, if you are using the V3 protocol which
> relies on message length words.
>

Wow, Tom, I have no idea what that means! I haven't heard back from my
user whom I asked to turn on query logging so that we can see what the
server is seeing, but I suspect that the offending code may be in this
sub that is doing a COPY FROM STDIN:

sub copy_from_stdin {
my $dbh = shift;
my $table = shift;
my $fields = shift;
my $file = shift;
my $sequence = shift;
my $nextval = shift;

warn "Loading data into $table table ...\n";
my $query = "COPY $table $fields FROM STDIN;";
#warn "\t".$query;
my $sth = $dbh->prepare($query);
$sth->execute();

open FILE, $file;
while (<FILE>) {
$dbh->func($_, 'putline');
}
$dbh->func('endcopy'); # no docs on this func--got from google
close FILE;

$sth->finish;
#update the sequence so that later inserts will work
$dbh->do("SELECT setval('public.$sequence', $nextval) FROM $table");
}

Does that help at all?

Thanks,
Scott

--
------------------------------------------------------------------------
Scott Cain, Ph. D. cain(at)cshl(dot)edu
GMOD Coordinator (http://www.gmod.org/) 216-392-3087
Cold Spring Harbor Laboratory


From: "Greg Sabino Mullane" <greg(at)turnstep(dot)com>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: DBD::Pg and "invalid frontend message type 10"
Date: 2005-08-25 17:06:27
Message-ID: f4422406517dd3ef95faf1fa36a35d89@biglumber.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-interfaces


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

> $dbh->func($_, 'putline');
> $dbh->func('endcopy'); # no docs on this func--got from google

Not sure what's going on exactly, but it is no doubt related
to the COPYing. Something that might help is to use the more
recent DBD::Pg COPY interfaces:

$dbh->pg_getline();
$dbh->pg_putline();
$dbh->pg_endcopy();

- --
Greg Sabino Mullane greg(at)turnstep(dot)com
PGP Key: 0x14964AC8 200508251305
https://www.biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8
-----BEGIN PGP SIGNATURE-----

iEYEARECAAYFAkMN+lIACgkQvJuQZxSWSsgjqQCg8Voy1tajPfIt1lhIgDo+H/hI
ukcAoI7cD/uV5bx7olhvq2yZmBamTU+f
=Yiq+
-----END PGP SIGNATURE-----