forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit9406884
committed
Fix column-privilege leak in error-message paths
While building error messages to return to the user,BuildIndexValueDescription and ri_ReportViolation would happily includethe entire key or entire row in the result returned to the user, even ifthe user didn't have access to view all of the columns being included.Instead, include only those columns which the user is providing or whichthe user has select rights on. If the user does not have any rightsto view the table or any of the columns involved then no detail isprovided and a NULL value is returned from BuildIndexValueDescription.Note that, for key cases, the user must have access to all of thecolumns for the key to be shown; a partial key will not be returned.Back-patch all the way, as column-level privileges are now in allsupported versions.This has been assignedCVE-2014-8161, but since the issue and the patchhave already been publicized on pgsql-hackers, there's no point in tryingto hide this commit.1 parent8eb1e9d commit9406884
File tree
10 files changed
+215
-35
lines changed- src
- backend
- access
- index
- nbtree
- commands
- executor
- utils
- adt
- sort
- test/regress
- expected
- sql
10 files changed
+215
-35
lines changedLines changed: 58 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
| 28 | + | |
28 | 29 |
| |
29 | 30 |
| |
30 | 31 |
| |
| 32 | + | |
31 | 33 |
| |
32 | 34 |
| |
33 | 35 |
| |
| |||
150 | 152 |
| |
151 | 153 |
| |
152 | 154 |
| |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
153 | 160 |
| |
154 | 161 |
| |
155 | 162 |
| |
| |||
159 | 166 |
| |
160 | 167 |
| |
161 | 168 |
| |
| 169 | + | |
| 170 | + | |
162 | 171 |
| |
163 | 172 |
| |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
164 | 221 |
| |
165 | 222 |
| |
166 | 223 |
| |
167 |
| - | |
168 |
| - | |
| 224 | + | |
169 | 225 |
| |
170 | 226 |
| |
171 | 227 |
| |
|
Lines changed: 7 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
385 | 385 |
| |
386 | 386 |
| |
387 | 387 |
| |
| 388 | + | |
388 | 389 |
| |
389 | 390 |
| |
390 | 391 |
| |
| 392 | + | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
391 | 396 |
| |
392 | 397 |
| |
393 | 398 |
| |
394 | 399 |
| |
395 |
| - | |
396 |
| - | |
397 |
| - | |
| 400 | + | |
| 401 | + | |
398 | 402 |
| |
399 | 403 |
| |
400 | 404 |
| |
|
Lines changed: 5 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
148 | 148 |
| |
149 | 149 |
| |
150 | 150 |
| |
| 151 | + | |
151 | 152 |
| |
152 | 153 |
| |
153 | 154 |
| |
| |||
737 | 738 |
| |
738 | 739 |
| |
739 | 740 |
| |
| 741 | + | |
740 | 742 |
| |
741 | 743 |
| |
742 | 744 |
| |
| |||
750 | 752 |
| |
751 | 753 |
| |
752 | 754 |
| |
753 |
| - | |
754 | 755 |
| |
755 | 756 |
| |
756 | 757 |
| |
| |||
795 | 796 |
| |
796 | 797 |
| |
797 | 798 |
| |
| 799 | + | |
798 | 800 |
| |
799 | 801 |
| |
800 | 802 |
| |
801 | 803 |
| |
802 | 804 |
| |
803 | 805 |
| |
804 | 806 |
| |
| 807 | + | |
805 | 808 |
| |
806 | 809 |
| |
807 | 810 |
| |
| |||
1933 | 1936 |
| |
1934 | 1937 |
| |
1935 | 1938 |
| |
| 1939 | + | |
1936 | 1940 |
| |
1937 | 1941 |
| |
1938 | 1942 |
| |
|
Lines changed: 6 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
60 | 60 |
| |
61 | 61 |
| |
62 | 62 |
| |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
63 | 69 |
| |
64 | 70 |
| |
65 | 71 |
| |
|
Lines changed: 9 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
95 | 95 |
| |
96 | 96 |
| |
97 | 97 |
| |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
98 | 107 |
| |
99 | 108 |
| |
100 | 109 |
| |
|
Lines changed: 8 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1307 | 1307 |
| |
1308 | 1308 |
| |
1309 | 1309 |
| |
1310 |
| - | |
1311 |
| - | |
| 1310 | + | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + | |
1312 | 1314 |
| |
1313 | 1315 |
| |
1314 | 1316 |
| |
1315 | 1317 |
| |
1316 | 1318 |
| |
1317 |
| - | |
1318 |
| - | |
| 1319 | + | |
| 1320 | + | |
| 1321 | + | |
| 1322 | + | |
1319 | 1323 |
| |
1320 | 1324 |
| |
1321 | 1325 |
| |
|
Lines changed: 63 additions & 22 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3495 | 3495 |
| |
3496 | 3496 |
| |
3497 | 3497 |
| |
| 3498 | + | |
| 3499 | + | |
| 3500 | + | |
3498 | 3501 |
| |
3499 | 3502 |
| |
3500 | 3503 |
| |
| |||
3513 | 3516 |
| |
3514 | 3517 |
| |
3515 | 3518 |
| |
| 3519 | + | |
3516 | 3520 |
| |
3517 | 3521 |
| |
3518 | 3522 |
| |
3519 | 3523 |
| |
3520 | 3524 |
| |
3521 | 3525 |
| |
| 3526 | + | |
3522 | 3527 |
| |
3523 | 3528 |
| |
3524 | 3529 |
| |
| |||
3538 | 3543 |
| |
3539 | 3544 |
| |
3540 | 3545 |
| |
3541 |
| - | |
3542 |
| - | |
3543 |
| - | |
3544 |
| - | |
| 3546 | + | |
| 3547 | + | |
| 3548 | + | |
| 3549 | + | |
| 3550 | + | |
| 3551 | + | |
| 3552 | + | |
| 3553 | + | |
| 3554 | + | |
3545 | 3555 |
| |
3546 |
| - | |
3547 |
| - | |
3548 |
| - | |
3549 |
| - | |
3550 |
| - | |
3551 |
| - | |
3552 |
| - | |
3553 |
| - | |
| 3556 | + | |
| 3557 | + | |
| 3558 | + | |
| 3559 | + | |
| 3560 | + | |
| 3561 | + | |
| 3562 | + | |
| 3563 | + | |
| 3564 | + | |
| 3565 | + | |
| 3566 | + | |
| 3567 | + | |
| 3568 | + | |
| 3569 | + | |
3554 | 3570 |
| |
3555 |
| - | |
| 3571 | + | |
| 3572 | + | |
| 3573 | + | |
| 3574 | + | |
| 3575 | + | |
| 3576 | + | |
3556 | 3577 |
| |
3557 |
| - | |
3558 |
| - | |
| 3578 | + | |
| 3579 | + | |
| 3580 | + | |
| 3581 | + | |
| 3582 | + | |
| 3583 | + | |
| 3584 | + | |
| 3585 | + | |
| 3586 | + | |
| 3587 | + | |
| 3588 | + | |
| 3589 | + | |
| 3590 | + | |
| 3591 | + | |
| 3592 | + | |
| 3593 | + | |
3559 | 3594 |
| |
3560 |
| - | |
3561 |
| - | |
3562 | 3595 |
| |
3563 | 3596 |
| |
3564 | 3597 |
| |
3565 | 3598 |
| |
3566 | 3599 |
| |
3567 | 3600 |
| |
3568 |
| - | |
3569 |
| - | |
3570 |
| - | |
3571 |
| - | |
| 3601 | + | |
| 3602 | + | |
| 3603 | + | |
| 3604 | + | |
| 3605 | + | |
| 3606 | + | |
| 3607 | + | |
| 3608 | + | |
3572 | 3609 |
| |
3573 | 3610 |
| |
3574 | 3611 |
| |
3575 | 3612 |
| |
3576 | 3613 |
| |
3577 |
| - | |
| 3614 | + | |
| 3615 | + | |
| 3616 | + | |
3578 | 3617 |
| |
3579 | 3618 |
| |
| 3619 | + | |
| 3620 | + | |
3580 | 3621 |
| |
3581 | 3622 |
| |
3582 | 3623 |
| |
|
Lines changed: 6 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3124 | 3124 |
| |
3125 | 3125 |
| |
3126 | 3126 |
| |
| 3127 | + | |
3127 | 3128 |
| |
3128 | 3129 |
| |
| 3130 | + | |
| 3131 | + | |
| 3132 | + | |
3129 | 3133 |
| |
3130 | 3134 |
| |
3131 | 3135 |
| |
3132 | 3136 |
| |
3133 |
| - | |
3134 |
| - | |
3135 |
| - | |
| 3137 | + | |
| 3138 | + | |
3136 | 3139 |
| |
3137 | 3140 |
| |
3138 | 3141 |
| |
|
Lines changed: 28 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
362 | 362 |
| |
363 | 363 |
| |
364 | 364 |
| |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
| 390 | + | |
| 391 | + | |
| 392 | + | |
365 | 393 |
| |
366 | 394 |
| |
367 | 395 |
| |
|
0 commit comments
Comments
(0)