Re: security permissions for functions

Поиск
Список
Период
Сортировка
От Rikard Pavelic
Тема Re: security permissions for functions
Дата
Msg-id 45F08C5F.9050707@zg.htnet.hr
обсуждение исходный текст
Ответ на Re: security permissions for functions  (Bill Moran <wmoran@potentialtech.com>)
Ответы Re: security permissions for functions  (Raymond O'Donnell <rod@iol.ie>)
Re: security permissions for functions  ("David Legault" <legault.david@gmail.com>)
Список pgsql-general
Bill Moran wrote:
>> Hmm, so the answer to my question
>> "How can I assign execute permission to a role for a single function
>> inside schema."
>> is I can't?
>>
>
> How did you interpret "do it like this" to mean "you can't do it"?
>
> REVOKE ALL ON <function name> FROM PUBLIC;
>
>
>> So this basically means that I can't fine tune the permissions through
>> functions, but I
>> can through views and tables?
>> This looks like a bug in design to me ;(
>>
>
> Relax.  You (somehow) misunderstood Tom.
>
>


Urgh, I didn't meant it like that ;(
Sorry.

Anyway, maybe I didn't make myself clear enough.
Let's try again ;)

Let's say I have two functions in schema example
example.function1()
example.function2()
and two users
user1 and user2

Is there a way to grant user1 permission to execute function
example.function1(), but not example.function2()
And for user2 to be able to execute
example.function2() and not example.function1()?

To grant user1 permission to execute example.function1()
I need to do GRANT USAGE ON SCHEMA example to user1
But this permissions grants him also ability to execute example.function2()

GRANT EXECUTE ON FUNCTION example.function1() TO user1
or
REVOKE EXECUTE ON FUNCTION example.function1() FROM user1
don't have any affect.

Role PUBLIC don't have access to this schema so that is not an issue.

Regards,
Rikard

В списке pgsql-general по дате отправления:

Предыдущее
От: Shane Ambler
Дата:
Сообщение: Re: security permissions for functions
Следующее
От: Rikard Pavelic
Дата:
Сообщение: Re: security permissions for functions