PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Cambia ruolo dopo la connessione al database

--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 è ora nel neil gruppo, quindi webgui può chiamare set role neil . Tuttavia, webgui non ha ereditato neil i permessi.

Successivamente, accedi come webgui:

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

set role neil;

webgui non necessita di superuser permesso per questo.

Vuoi set role all'inizio di una sessione del database e ripristinarla al termine della sessione. In un'app Web, ciò corrisponde rispettivamente a ottenere una connessione dal pool di connessioni del database e rilasciarla. Ecco un esempio che utilizza il pool di connessioni di Tomcat e 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);
    }
}