Re: SYSTEM_USER reserved word implementation

From: Jacob Champion <jchampion(at)timescale(dot)com>
To: "Drouvot, Bertrand" <bdrouvot(at)amazon(dot)com>, Michael Paquier <michael(at)paquier(dot)xyz>
Cc: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Joe Conway <mail(at)joeconway(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: SYSTEM_USER reserved word implementation
Date: 2022-09-07 15:48:43
Message-ID: dc0e1444-9520-2841-5d9e-df054a1aae05@timescale.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 9/7/22 07:46, Drouvot, Bertrand wrote:
> Except the Nit above, that looks all good to me.

A few additional comments:

> + assigned a database role. It is represented as
> + <literal>auth_method:identity</literal> or
> + <literal>NULL</literal> if the user has not been authenticated (for
> + example if <xref linkend="auth-trust"/> has been used).
> + </para></entry>

This is rendered as

... (for example if Section 21.4 has been used).

which IMO isn't too helpful. Maybe a <link> would read better than an
<xref>?

Also, this function's placement in the docs (with the System Catalog
Information Functions) seems wrong to me. I think it should go up above
in the Session Information Functions, with current_user et al.

> + /* Build system user as auth_method:authn_id */
> + char *system_user;
> + Size authname_len = strlen(auth_method);
> + Size authn_id_len = strlen(authn_id);
> +
> + system_user = palloc0(authname_len + authn_id_len + 2);
> + strcat(system_user, auth_method);
> + strcat(system_user, ":");
> + strcat(system_user, authn_id);

If we're palloc'ing anyway, can this be replaced with a single psprintf()?

> + /* Initialize SystemUser now that MyClientConnectionInfo is restored. */
> + InitializeSystemUser(MyClientConnectionInfo.authn_id,
> + hba_authname(MyClientConnectionInfo.auth_method));

It makes me a little nervous to call hba_authname(auth_method) without
checking to see that auth_method is actually valid (which is only true
if authn_id is not NULL).

We could pass the bare auth_method index, or update the documentation
for auth_method to state that it's guaranteed to be zero if authn_id is
NULL (and then enforce that).

> case SVFOP_CURRENT_USER:
> case SVFOP_USER:
> case SVFOP_SESSION_USER:
> + case SVFOP_SYSTEM_USER:
> case SVFOP_CURRENT_CATALOG:
> case SVFOP_CURRENT_SCHEMA:
> svf->type = NAMEOID;

Should this be moved to use TEXTOID instead?

Thanks,
--Jacob

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2022-09-07 16:45:31 Re: Bug: Reading from single byte character column type may cause out of bounds memory reads.
Previous Message Imseih (AWS), Sami 2022-09-07 15:48:36 Re: [PATCH] Query Jumbling for CALL and SET utility statements