- Notifications
You must be signed in to change notification settings - Fork4.9k
Commita2ab9c0
committed
Respect permissions within logical replication.
Prevent logical replication workers from performing insert, update,delete, truncate, or copy commands on tables unless the subscriptionowner has permission to do so.Prevent subscription owners from circumventing row-level security byforbidding replication into tables with row-level security policieswhich the subscription owner is subject to, without regard to whetherthe policy would ordinarily allow the INSERT, UPDATE, DELETE orTRUNCATE which is being replicated. This seems sufficient for now, assuperusers, roles with bypassrls, and target table owners should stillbe able to replicate despite RLS policies. We can revisit thequestion of applying row-level security policies on a per-row basis ifthis restriction proves too severe in practice.Author: Mark DilgerReviewed-by: Jeff Davis, Andrew Dunstan, Ronan DunklauDiscussion:https://postgr.es/m/9DFC88D3-1300-4DE8-ACBC-4CEF84399A53%40enterprisedb.com1 parentd0d6226 commita2ab9c0
File tree
6 files changed
+499
-8
lines changed- doc/src/sgml
- src
- backend
- commands
- replication/logical
- test
- perl/PostgreSQL/Test
- subscription/t
6 files changed
+499
-8
lines changedLines changed: 28 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
330 | 330 |
| |
331 | 331 |
| |
332 | 332 |
| |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
333 | 346 |
| |
334 | 347 |
| |
335 | 348 |
| |
336 | 349 |
| |
337 | 350 |
| |
338 | 351 |
| |
339 | 352 |
| |
340 |
| - | |
| 353 | + | |
341 | 354 |
| |
342 | 355 |
| |
343 | 356 |
| |
| |||
530 | 543 |
| |
531 | 544 |
| |
532 | 545 |
| |
533 |
| - | |
534 |
| - | |
535 |
| - | |
| 546 | + | |
| 547 | + | |
| 548 | + | |
536 | 549 |
| |
537 | 550 |
| |
538 | 551 |
| |
| |||
576 | 589 |
| |
577 | 590 |
| |
578 | 591 |
| |
579 |
| - | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
580 | 598 |
| |
581 | 599 |
| |
582 | 600 |
| |
583 |
| - | |
584 |
| - | |
585 |
| - | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
586 | 606 |
| |
587 | 607 |
| |
588 | 608 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1481 | 1481 |
| |
1482 | 1482 |
| |
1483 | 1483 |
| |
| 1484 | + | |
| 1485 | + | |
1484 | 1486 |
| |
1485 | 1487 |
| |
1486 | 1488 |
| |
|
Lines changed: 28 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
111 | 111 |
| |
112 | 112 |
| |
113 | 113 |
| |
| 114 | + | |
114 | 115 |
| |
115 | 116 |
| |
116 | 117 |
| |
| 118 | + | |
117 | 119 |
| |
118 | 120 |
| |
119 | 121 |
| |
| |||
924 | 926 |
| |
925 | 927 |
| |
926 | 928 |
| |
| 929 | + | |
927 | 930 |
| |
928 | 931 |
| |
929 | 932 |
| |
| |||
1042 | 1045 |
| |
1043 | 1046 |
| |
1044 | 1047 |
| |
| 1048 | + | |
| 1049 | + | |
| 1050 | + | |
| 1051 | + | |
| 1052 | + | |
| 1053 | + | |
| 1054 | + | |
| 1055 | + | |
| 1056 | + | |
| 1057 | + | |
| 1058 | + | |
| 1059 | + | |
| 1060 | + | |
| 1061 | + | |
| 1062 | + | |
| 1063 | + | |
| 1064 | + | |
| 1065 | + | |
| 1066 | + | |
| 1067 | + | |
| 1068 | + | |
| 1069 | + | |
| 1070 | + | |
| 1071 | + | |
| 1072 | + | |
1045 | 1073 |
| |
1046 | 1074 |
| |
1047 | 1075 |
| |
|
Lines changed: 42 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
179 | 179 |
| |
180 | 180 |
| |
181 | 181 |
| |
| 182 | + | |
182 | 183 |
| |
183 | 184 |
| |
184 | 185 |
| |
| |||
189 | 190 |
| |
190 | 191 |
| |
191 | 192 |
| |
| 193 | + | |
192 | 194 |
| |
193 | 195 |
| |
194 | 196 |
| |
| |||
1530 | 1532 |
| |
1531 | 1533 |
| |
1532 | 1534 |
| |
| 1535 | + | |
| 1536 | + | |
| 1537 | + | |
| 1538 | + | |
| 1539 | + | |
| 1540 | + | |
| 1541 | + | |
| 1542 | + | |
| 1543 | + | |
| 1544 | + | |
| 1545 | + | |
| 1546 | + | |
| 1547 | + | |
| 1548 | + | |
| 1549 | + | |
| 1550 | + | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + | |
| 1559 | + | |
| 1560 | + | |
| 1561 | + | |
| 1562 | + | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
1533 | 1567 |
| |
1534 | 1568 |
| |
1535 | 1569 |
| |
| |||
1613 | 1647 |
| |
1614 | 1648 |
| |
1615 | 1649 |
| |
| 1650 | + | |
1616 | 1651 |
| |
1617 | 1652 |
| |
1618 | 1653 |
| |
| |||
1796 | 1831 |
| |
1797 | 1832 |
| |
1798 | 1833 |
| |
| 1834 | + | |
1799 | 1835 |
| |
1800 | 1836 |
| |
1801 | 1837 |
| |
| |||
1917 | 1953 |
| |
1918 | 1954 |
| |
1919 | 1955 |
| |
| 1956 | + | |
1920 | 1957 |
| |
1921 | 1958 |
| |
1922 | 1959 |
| |
| |||
2110 | 2147 |
| |
2111 | 2148 |
| |
2112 | 2149 |
| |
| 2150 | + | |
| 2151 | + | |
2113 | 2152 |
| |
2114 | 2153 |
| |
2115 | 2154 |
| |
| |||
2236 | 2275 |
| |
2237 | 2276 |
| |
2238 | 2277 |
| |
| 2278 | + | |
2239 | 2279 |
| |
2240 | 2280 |
| |
2241 | 2281 |
| |
| |||
2273 | 2313 |
| |
2274 | 2314 |
| |
2275 | 2315 |
| |
| 2316 | + | |
2276 | 2317 |
| |
2277 | 2318 |
| |
2278 | 2319 |
| |
| |||
2915 | 2956 |
| |
2916 | 2957 |
| |
2917 | 2958 |
| |
| 2959 | + | |
2918 | 2960 |
| |
2919 | 2961 |
| |
2920 | 2962 |
| |
|
Lines changed: 36 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2599 | 2599 |
| |
2600 | 2600 |
| |
2601 | 2601 |
| |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + | |
| 2607 | + | |
| 2608 | + | |
| 2609 | + | |
| 2610 | + | |
| 2611 | + | |
| 2612 | + | |
| 2613 | + | |
| 2614 | + | |
| 2615 | + | |
| 2616 | + | |
| 2617 | + | |
| 2618 | + | |
| 2619 | + | |
| 2620 | + | |
| 2621 | + | |
| 2622 | + | |
| 2623 | + | |
| 2624 | + | |
| 2625 | + | |
| 2626 | + | |
| 2627 | + | |
| 2628 | + | |
| 2629 | + | |
| 2630 | + | |
| 2631 | + | |
| 2632 | + | |
| 2633 | + | |
| 2634 | + | |
| 2635 | + | |
| 2636 | + | |
| 2637 | + | |
2602 | 2638 |
| |
2603 | 2639 |
| |
2604 | 2640 |
| |
|
0 commit comments
Comments
(0)