forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit5f17304
committed
Avoid repeated name lookups during table and index DDL.
If the name lookups come to different conclusions due to concurrentactivity, we might perform some parts of the DDL on a different tablethan other parts. At least in the case of CREATE INDEX, this can beused to cause the permissions checks to be performed against adifferent table than the index creation, allowing for a privilegeescalation attack.This changes the calling convention for DefineIndex, CreateTrigger,transformIndexStmt, transformAlterTableStmt, CheckIndexCompatible(in 9.2 and newer), and AlterTable (in 9.1 and older). In addition,CheckRelationOwnership is removed in 9.2 and newer and the callingconvention is changed in older branches. A field has also been addedto the Constraint node (FkConstraint in 8.4). Third-party code callingthese functions or using the Constraint node will require updating.Report by Andres Freund. Patch by Robert Haas and Andres Freund,reviewed by Tom Lane.Security:CVE-2014-00621 parent540b4e5 commit5f17304
File tree
18 files changed
+233
-157
lines changed- src
- backend
- bootstrap
- catalog
- commands
- nodes
- parser
- tcop
- include
- catalog
- commands
- nodes
- parser
- tcop
18 files changed
+233
-157
lines changedLines changed: 15 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
| 30 | + | |
30 | 31 |
| |
31 | 32 |
| |
32 | 33 |
| |
| |||
282 | 283 |
| |
283 | 284 |
| |
284 | 285 |
| |
| 286 | + | |
285 | 287 |
| |
286 | 288 |
| |
287 | 289 |
| |
| |||
303 | 305 |
| |
304 | 306 |
| |
305 | 307 |
| |
306 |
| - | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
307 | 314 |
| |
308 | 315 |
| |
309 | 316 |
| |
| |||
317 | 324 |
| |
318 | 325 |
| |
319 | 326 |
| |
| 327 | + | |
320 | 328 |
| |
321 | 329 |
| |
322 | 330 |
| |
| |||
338 | 346 |
| |
339 | 347 |
| |
340 | 348 |
| |
341 |
| - | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
342 | 355 |
| |
343 | 356 |
| |
344 | 357 |
| |
|
Lines changed: 3 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1215 | 1215 |
| |
1216 | 1216 |
| |
1217 | 1217 |
| |
1218 |
| - | |
1219 | 1218 |
| |
1220 | 1219 |
| |
1221 |
| - | |
1222 |
| - | |
1223 |
| - | |
1224 |
| - | |
1225 | 1220 |
| |
1226 | 1221 |
| |
1227 | 1222 |
| |
1228 | 1223 |
| |
1229 |
| - | |
| 1224 | + | |
1230 | 1225 |
| |
1231 | 1226 |
| |
1232 | 1227 |
| |
| |||
1239 | 1234 |
| |
1240 | 1235 |
| |
1241 | 1236 |
| |
1242 |
| - | |
| 1237 | + | |
| 1238 | + | |
1243 | 1239 |
| |
1244 | 1240 |
| |
1245 | 1241 |
| |
|
Lines changed: 19 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
751 | 751 |
| |
752 | 752 |
| |
753 | 753 |
| |
| 754 | + | |
| 755 | + | |
| 756 | + | |
| 757 | + | |
| 758 | + | |
| 759 | + | |
| 760 | + | |
| 761 | + | |
| 762 | + | |
| 763 | + | |
| 764 | + | |
| 765 | + | |
| 766 | + | |
| 767 | + | |
| 768 | + | |
| 769 | + | |
| 770 | + | |
| 771 | + | |
| 772 | + | |
754 | 773 |
| |
755 | 774 |
| |
756 | 775 |
| |
|
Lines changed: 14 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
112 | 112 |
| |
113 | 113 |
| |
114 | 114 |
| |
115 |
| - | |
116 | 115 |
| |
117 | 116 |
| |
118 | 117 |
| |
| |||
140 | 139 |
| |
141 | 140 |
| |
142 | 141 |
| |
143 |
| - | |
| 142 | + | |
144 | 143 |
| |
145 | 144 |
| |
146 | 145 |
| |
| |||
280 | 279 |
| |
281 | 280 |
| |
282 | 281 |
| |
| 282 | + | |
| 283 | + | |
283 | 284 |
| |
284 | 285 |
| |
285 | 286 |
| |
| |||
293 | 294 |
| |
294 | 295 |
| |
295 | 296 |
| |
296 |
| - | |
| 297 | + | |
| 298 | + | |
297 | 299 |
| |
298 | 300 |
| |
299 | 301 |
| |
| |||
306 | 308 |
| |
307 | 309 |
| |
308 | 310 |
| |
309 |
| - | |
310 | 311 |
| |
311 | 312 |
| |
312 | 313 |
| |
| |||
325 | 326 |
| |
326 | 327 |
| |
327 | 328 |
| |
| 329 | + | |
328 | 330 |
| |
329 | 331 |
| |
330 | 332 |
| |
| |||
343 | 345 |
| |
344 | 346 |
| |
345 | 347 |
| |
346 |
| - | |
347 |
| - | |
348 | 348 |
| |
349 | 349 |
| |
350 | 350 |
| |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
351 | 357 |
| |
352 |
| - | |
353 |
| - | |
| 358 | + | |
| 359 | + | |
354 | 360 |
| |
355 | 361 |
| |
356 | 362 |
| |
|
0 commit comments
Comments
(0)