Re: a pool for parallel worker - Mailing list pgsql-hackers

From Andy Fan
Subject Re: a pool for parallel worker
Date
Msg-id 8734f01fwk.fsf@163.com
Whole thread Raw
In response to a pool for parallel worker  (Andy Fan <zhihuifan1213@163.com>)
Responses Re: a pool for parallel worker
Re: a pool for parallel worker
List pgsql-hackers
Hi, 
>> The boring thing for the pool is it is [dbid + userId] based, which
>> I mean if the dbid or userId is different with the connection in pool,
>> they can't be reused.  To reduce the effect of UserId, I think if we can
>> start the pool with a superuser and then switch the user information
>> with 'SET ROLE xxx'. and the pool can be created lazily.
>
> I don't think this is secure. Currently, if your postgresql process
> had started under superuser role, there is no way to undo that.
> Consider a worker in a pool running a user query, which uses UDF. In
> this UDF, one can simply RESET SESSION AUTHORIZATION and process with
> anything under superuser rights.

oh.. yes! "RESET SESSION AUTHORIZATION" does the very bad thing for
me. Per my testing, UDF is not essential, just a sql command can unset
the role. I am not sure why do we design like this.  Currently I want
some knowledge:

(a). Is there any well known "RESET SESSION AUTHORIZATION" usage. I
didn't realize this command before. and if it is not common used, I even
want to forbid this command in our internal version.

(b). Is there any other ways to allow different user with the same
database sharing the same connection? Current "SET ROLE x" is exciting
but "RESET SESSION AUTHORIZATION" is dispointing.

-- 
Best Regards
Andy Fan




pgsql-hackers by date:

Previous
From: Tender Wang
Date:
Subject: Re: Reduce "Var IS [NOT] NULL" quals during constant folding
Next
From: "David G. Johnston"
Date:
Subject: Doc: Add Table of Contents to psql Reference Page