VPD策略實現行級安全性
1. 建立VPD策略使用者VPD,測試使用者ALEX
SQL> create user vpd
2 identified by vpd
3 default tablespace users
4 temporary tablespace temp
5 /
User created.
SQL> create user alex
2 identified by alex
3 default tablespace users
4 temporary tablespace temp
5 /
User created.
[@more@]2. 給VPD,ALEX授權SQL> grant connect,resource to vpd,alex;
Grant succeeded.
SQL> grant execute on dbms_rls to vpd;
Grant succeeded.
SQL> grant select on scott.emp to alex,vpd;
Grant succeeded.
3. 在VPD使用者下,建立策略規則表
SQL> conn vpd/vpd
Connected.
SQL> create table vpd_ply as select ename,deptno from scott.emp;
Table created.
SQL> select * from vpd_ply;
ENAME DEPTNO
---------- ----------
SMITH 20
ALLEN 30
WARD 30
JONES 20
MARTIN 30
BLAKE 30
CLARK 10
SCOTT 20
KING 10
TURNER 30
ADAMS 20
ENAME DEPTNO
---------- ----------
JAMES 30
FORD 20
MILLER 10
14 rows selected.
SQL> insert into vpd_ply values('ALEX',30);
1 row created.
SQL> commit;
Commit complete.
3. 在VPD使用者下,建立策略規則功能函式
SQL> create or replace function fun_vpd_emp
2 (
3 p_schema in varchar2, --p_schema和p_table必須,否則出錯
4 p_table in varchar2 --PLS-00306: 呼叫 'fun_vpd_emp' 時引數個數或型別錯誤
5 )
6 return varchar2
7 as
8 l_retstr varchar2(2000);
9 begin
10 if (p_schema = user) then
11 l_retstr := null;
12 else
13 for user_rec in
14 (
15 select deptno
16 from vpd_ply
17 where ename = user
18 ) loop
19 l_retstr := l_retstr||','||user_rec.deptno;
20 end loop;
21 l_retstr := ltrim(l_retstr,',');
22 if (l_retstr is null) then
23 l_retstr := '0=1';
24 else
25 l_retstr := 'DEPTNO IN ('||l_retstr||')';
26 end if;
27 end if;
28 return l_retstr;
29 end;
30 /
Function created.
SQL> grant execute on fun_vpd_emp to public;
Grant succeeded.
SQL> conn alex/alex
Connected.
SQL> select vpd.fun_vpd_emp('SCOTT','EMP') from dual;
VPD.FUN_VPD_EMP('SCOTT','EMP')
----------------------------------------------------
DEPTNO IN (30)
4. 用VPD使用者新增VPD策略
SQL> conn vpd/vpd
Connected.
SQL> begin
2 dbms_rls.add_policy (
3 object_schema => 'SCOTT',
4 object_name => 'EMP',
5 policy_name => 'EMP_DEPTNO_PLY_1',
6 function_schema => 'VPD',
7 policy_function => 'FUN_VPD_EMP',
8 statement_types => 'SELECT'
9 );
10 end;
11 /
PL/SQL procedure successfully completed.
SQL> begin
2 dbms_rls.add_policy (
3 object_schema => 'SCOTT',
4 object_name => 'EMP',
5 policy_name => 'EMP_DEPTNO_PLY_2',
6 function_schema => 'VPD',
7 policy_function => 'FUN_VPD_EMP',
8 statement_types => 'INSERT, UPDATE, DELETE',
9 update_check => TRUE
10 );
11 end;
12 /
PL/SQL procedure successfully completed.
5. 測試
SQL> conn scott/tiger
Connected.
SQL> select count(*) from emp;
COUNT(*)
----------
14
SQL> conn alex/alex
Connected.
SQL> select count(*) from scott.emp;
COUNT(*)
----------
6
SQL> delete from scott.emp where deptno<>30;
0 rows deleted.
SQL> update scott.emp set sal=sal+100;
6 rows updated.
SQL> commit;
Commit complete.
SQL> insert into scott.emp(empno,ename,deptno) values(9999,'VPD',10);
insert into scott.emp(empno,ename,deptno) values(9999,'VPD',10)
*
ERROR at line 1:
ORA-28115: policy with check option violation
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7319461/viewspace-967090/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 利用VPD細粒度訪問策略實現行級安全性
- 利用VPD細粒度訪問策略實現行級安全性 Step By Step
- 如何使用策略組來實現行級別的VPD
- 利用Oracle VPD實現行級安全保護(二)Oracle
- 利用Oracle VPD實現行級安全保護(一)Oracle
- 使用DBMS_RLS包實現列級VPD控制
- 利用Label Security實現行級安全性 Step By Step
- 利用ORACLE VPD實現使用者安全控制Oracle
- vpd實驗:驗證動態、靜態、上下context相關三種型別的策略的執行機制Context型別
- 在雲中實現左移安全性
- ORACLE VPD方案Oracle
- vpd contextContext
- ORACLE VPD AND FGAOracle
- 12c OCP題庫解析060-2 對配置了VPD策略的表進行線上重定義
- oracle VPD介紹Oracle
- 使用Out of Place升級策略進行Oracle Patch操作Oracle
- 使用Oracle VPD(Virtual Private Database)實現資料庫層面資料許可權OracleDatabase資料庫
- Oracle 12.2 聯機重定義使用VPD策略的表並修改表的列名Oracle
- 執行緒安全性執行緒
- 更優雅地實現策略模式模式
- 用SpringBoot實現策略模式Spring Boot模式
- Spring中實現策略模式示例Spring模式
- OA辦公系統的安全性如何才能實現
- 二、執行緒安全性執行緒
- redis 雙寫實現策略 && hash取模Redis
- 使用spring外掛實現策略模式Spring模式
- 推薦ABTest的實現策略總結
- Oracle 12.2 聯機重定義使用VPD策略的表並不修改表的任何列Oracle
- nginx實現平滑升級Nginx
- Java 抽象類與方法:實現安全性與程式碼重用Java抽象
- 使用IPSec策略和規則提升網路安全性(二)
- jquery實現四級級聯下拉選單jQuery
- JAVA 實現《超級瑪麗升級版》遊戲Java遊戲
- php中用ajax實現二級省市級聯PHP
- Go 實現常用設計模式(二)策略模式Go設計模式
- Go 實現常用設計模式(三)策略模式Go設計模式
- 利用LRU策略實現Axios請求快取iOS快取
- Java設計模式實現之二--策略模式Java設計模式