ChatGPT解决这个技术问题 Extra ChatGPT

连接数据库后切换角色

在初始连接后与 postgres 交互时,是否可以更改用户使用的 postgresql 角色?

数据库将在 Web 应用程序中使用,我想在具有连接池的表和模式上使用数据库级规则。从阅读 postgresql 文档看来,如果我最初以具有超级用户角色的用户身份连接,我可以切换角色,但我更愿意最初以具有最小权限的用户身份连接并根据需要进行切换。切换时必须指定用户的密码会很好(事实上我更喜欢它)。

我错过了什么?

更新:我已经按照@Milen 的建议尝试了 SET ROLESET SESSION AUTHORIZATION,但是如果用户不是超级用户,这两个命令似乎都不起作用:

$ psql -U test
psql (8.4.4)
Type "help" for help.

test=> \du test
          List of roles
 Role name | Attributes |   Member of    
-----------+------------+----------------
 test      |            | {connect_only}

test=> \du test2
          List of roles
 Role name | Attributes |   Member of    
-----------+------------+----------------
 test2     |            | {connect_only}

test=> set role test2;
ERROR:  permission denied to set role "test2"
test=> \q

N
Neil McGuigan
--create a user that you want to use the database as:

create role neil;

--create the user for the web server to connect as:

create role webgui noinherit login password 's3cr3t';

--let webgui set role to neil:

grant neil to webgui; --this looks backwards but is correct.

webgui 现在在 neil 组中,因此 webgui 可以调用 set role neil 。但是,webgui 没有继承 neil 的权限。

稍后,以 webgui 身份登录:

psql -d some_database -U webgui
(enter s3cr3t as password)

set role neil;

webgui 不需要 superuser 权限。

您希望在数据库会话开始时 set role 并在会话结束时重置它。在 Web 应用程序中,这分别对应于从数据库连接池中获取连接并释放它。这是一个使用 Tomcat 的连接池和 Spring Security 的示例:

public class SetRoleJdbcInterceptor extends JdbcInterceptor {

    @Override
    public void reset(ConnectionPool connectionPool, PooledConnection pooledConnection) {

        Authentication authentication = SecurityContextHolder.getContext().getAuthentication();

        if(authentication != null) {
            try {

                /* 
                  use OWASP's ESAPI to encode the username to avoid SQL Injection. Can't use parameters with SET ROLE. Need to write PG codec.

                  Or use a whitelist-map approach
                */
                String username = ESAPI.encoder().encodeForSQL(MY_CODEC, authentication.getName());

                Statement statement = pooledConnection.getConnection().createStatement();
                statement.execute("set role \"" + username + "\"");
                statement.close();
            } catch(SQLException exp){
                throw new RuntimeException(exp);
            }
        }
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

        if("close".equals(method.getName())){
            Statement statement = ((Connection)proxy).createStatement();
            statement.execute("reset role");
            statement.close();
        }

        return super.invoke(proxy, method, args);
    }
}

我发现这个答案真正有用的是“GRANT neil TO webgui;”意味着 webgui 成为 neil 的“成员”......并且能够执行我以前无法执行的“ALTER DEFAULT PRIVILEGES”之类的事情。
M
Milen A. Radev

查看 "SET ROLE""SET SESSION AUTHORIZATION"


我尝试了这两个命令都无济于事,如果连接用户不是超级用户,我会收到权限被拒绝错误。我已经用其他信息更新了问题
我相信您的用户必须是您已经想要设置的 ROLES 的成员,并且在他们的用户上拥有 NOINHERITS 属性,这样他们就不会默认启用。然后你应该升级和降级。但他们必须已经是 ROLE 的成员。
S
Serhii Romanov

如果有人仍然需要它(就像我一样)。

指定的角色名称必须是当前会话用户所属的角色。 https://www.postgresql.org/docs/10/sql-set-role.html

我们需要让当前会话用户成为角色的成员:

create role myrole;
set role myrole;
grant myrole to myuser;
set role myrole;

产生:

Role ROLE created.


Error starting at line : 4 in command -
set role myrole
Error report -
ERROR: permission denied to set role "myrole"

Grant succeeded.


Role SET succeeded.