Re: [PATCH] Largeobject access controls

Поиск
Список
Период
Сортировка
От KaiGai Kohei
Тема Re: [PATCH] Largeobject access controls
Дата
Msg-id 4ABB10F8.801@ak.jp.nec.com
обсуждение исходный текст
Ответ на Re: [PATCH] Largeobject access controls  (Jaime Casanova <jcasanov@systemguards.com.ec>)
Список pgsql-hackers
Jaime Casanova wrote:
> 2009/9/24 KaiGai Kohei <kaigai@ak.jp.nec.com>:
>> Example)
>>  postgres=# SET SESSION AUTHORIZATION ymj;
>>  SET
>>  postgres=> SELECT loread(lo_open(16453, x'40000'::int), 20);
>>  ERROR:  permission denied for largeobject 16453
>>
>>  postgres=# SET largeobject_compat_acl = on;           <---- enables compatible mode
>>  SET                                                         (Only superuser can set it)
>>  postgres=# SET SESSION AUTHORIZATION ymj;
>>  SET
>>  postgres=> SELECT loread(lo_open(16453, x'40000'::int), 20);
>>  NOTICE:  permission denied for largeobject 16453      <---- dose not prevent it
> 
> i'm not really sure the warnings are worth the trouble but if you want
> to do it then the NOTICE version should use another message... i'm not
> comfortable with a "permission denied" that is simply ignored...

It is not a significant issue whether the compatible mode allows users
to bypass ACL checks with or without any notifications.

Which is the preferable one?

1. It always generates notifications whenever access violations.
2. It generates notifications at the first violation only.
3. It never generates notifications.

Thanks,
-- 
OSS Platform Development Division, NEC
KaiGai Kohei <kaigai@ak.jp.nec.com>


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

Предыдущее
От: KaiGai Kohei
Дата:
Сообщение: Re: [PATCH] Largeobject access controls
Следующее
От: Fujii Masao
Дата:
Сообщение: Re: Streaming Replication patch for CommitFest 2009-09