forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit622ae46
committed
Fix assorted issues in backend's GSSAPI encryption support.
Unrecoverable errors detected by GSSAPI encryption can't just bereported with elog(ERROR) or elog(FATAL), because attempting tosend the error report to the client is likely to lead to infiniterecursion or loss of protocol sync. Instead make this code do whatthe SSL encryption code has long done, which is to just report anysuch failure to the server log (with elevel COMMERROR), then pretendwe've lost the connection by returning errno = ECONNRESET.Along the way, fix confusion about whether message translation is doneby pg_GSS_error() or its callers (the latter should do it), and makethe backend version of that function work more like the frontendversion.Avoid allocating the port->gss struct until it's needed; we surelydon't need to allocate it in the postmaster.Improve logging of "connection authorized" messages with GSS enabled.(As part of this, I back-patched the code changes fromdc11f31.)Make BackendStatusShmemSize() account for the GSS-related space thatwill be allocated by CreateSharedBackendStatus(). This omissioncould possibly cause out-of-shared-memory problems with very highmax_connections settings.Remove arbitrary, pointless restriction that only GSS authenticationcan be used on a GSS-encrypted connection.Improve documentation; notably, document the fact that libpq nowprefers GSS encryption over SSL encryption if both are possible.Per report from Mikael Gustavsson. Back-patch to v12 wherethis code was introduced.Discussion:https://postgr.es/m/e5b0b6ed05764324a2f3fe7acfc766d5@smhi.se1 parentff6ce9a commit622ae46
File tree
15 files changed
+297
-207
lines changed- doc/src/sgml
- src
- backend
- libpq
- postmaster
- utils/init
- include/libpq
15 files changed
+297
-207
lines changedLines changed: 62 additions & 58 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
198 | 198 |
| |
199 | 199 |
| |
200 | 200 |
| |
201 |
| - | |
202 |
| - | |
203 |
| - | |
204 |
| - | |
205 |
| - | |
206 |
| - | |
207 |
| - | |
208 |
| - | |
209 | 201 |
| |
210 | 202 |
| |
211 | 203 |
| |
| |||
1201 | 1193 |
| |
1202 | 1194 |
| |
1203 | 1195 |
| |
1204 |
| - | |
1205 | 1196 |
| |
1206 |
| - | |
1207 |
| - | |
| 1197 | + | |
| 1198 | + | |
1208 | 1199 |
| |
1209 | 1200 |
| |
1210 | 1201 |
| |
1211 |
| - | |
| 1202 | + | |
1212 | 1203 |
| |
1213 | 1204 |
| |
1214 | 1205 |
| |
| |||
1220 | 1211 |
| |
1221 | 1212 |
| |
1222 | 1213 |
| |
1223 |
| - | |
1224 |
| - | |
| 1214 | + | |
| 1215 | + | |
1225 | 1216 |
| |
1226 |
| - | |
1227 |
| - | |
1228 |
| - | |
1229 |
| - | |
1230 |
| - | |
1231 |
| - | |
1232 |
| - | |
1233 |
| - | |
1234 |
| - | |
1235 |
| - | |
1236 |
| - | |
1237 |
| - | |
1238 |
| - | |
1239 |
| - | |
1240 |
| - | |
1241 |
| - | |
1242 |
| - | |
1243 |
| - | |
1244 |
| - | |
1245 |
| - | |
1246 |
| - | |
| 1217 | + | |
| 1218 | + | |
| 1219 | + | |
| 1220 | + | |
| 1221 | + | |
| 1222 | + | |
| 1223 | + | |
| 1224 | + | |
| 1225 | + | |
| 1226 | + | |
| 1227 | + | |
| 1228 | + | |
| 1229 | + | |
| 1230 | + | |
| 1231 | + | |
| 1232 | + | |
| 1233 | + | |
| 1234 | + | |
| 1235 | + | |
| 1236 | + | |
| 1237 | + | |
| 1238 | + | |
| 1239 | + | |
| 1240 | + | |
| 1241 | + | |
| 1242 | + | |
| 1243 | + | |
| 1244 | + | |
| 1245 | + | |
1247 | 1246 |
| |
1248 | 1247 |
| |
1249 | 1248 |
| |
1250 | 1249 |
| |
1251 | 1250 |
| |
1252 | 1251 |
| |
1253 |
| - | |
| 1252 | + | |
| 1253 | + | |
1254 | 1254 |
| |
1255 | 1255 |
| |
1256 | 1256 |
| |
| |||
1264 | 1264 |
| |
1265 | 1265 |
| |
1266 | 1266 |
| |
1267 |
| - | |
1268 |
| - | |
1269 |
| - | |
1270 |
| - | |
| 1267 | + | |
1271 | 1268 |
| |
1272 | 1269 |
| |
1273 |
| - | |
1274 |
| - | |
| 1270 | + | |
| 1271 | + | |
| 1272 | + | |
1275 | 1273 |
| |
1276 | 1274 |
| |
1277 |
| - | |
| 1275 | + | |
| 1276 | + | |
| 1277 | + | |
| 1278 | + | |
1278 | 1279 |
| |
| 1280 | + | |
1279 | 1281 |
| |
1280 |
| - | |
1281 |
| - | |
1282 |
| - | |
| 1282 | + | |
| 1283 | + | |
| 1284 | + | |
| 1285 | + | |
1283 | 1286 |
| |
1284 |
| - | |
| 1287 | + | |
1285 | 1288 |
| |
1286 | 1289 |
| |
1287 | 1290 |
| |
1288 | 1291 |
| |
1289 | 1292 |
| |
1290 |
| - | |
1291 |
| - | |
1292 |
| - | |
1293 |
| - | |
1294 |
| - | |
1295 |
| - | |
1296 |
| - | |
1297 |
| - | |
1298 |
| - | |
1299 |
| - | |
| 1293 | + | |
| 1294 | + | |
1300 | 1295 |
| |
1301 | 1296 |
| |
1302 | 1297 |
| |
| |||
1319 | 1314 |
| |
1320 | 1315 |
| |
1321 | 1316 |
| |
1322 |
| - | |
| 1317 | + | |
1323 | 1318 |
| |
1324 | 1319 |
| |
1325 | 1320 |
| |
| |||
1346 | 1341 |
| |
1347 | 1342 |
| |
1348 | 1343 |
| |
| 1344 | + | |
| 1345 | + | |
| 1346 | + | |
| 1347 | + | |
| 1348 | + | |
| 1349 | + | |
| 1350 | + | |
| 1351 | + | |
| 1352 | + | |
1349 | 1353 |
| |
1350 | 1354 |
| |
1351 | 1355 |
| |
|
Lines changed: 19 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1581 | 1581 |
| |
1582 | 1582 |
| |
1583 | 1583 |
| |
| 1584 | + | |
| 1585 | + | |
| 1586 | + | |
| 1587 | + | |
| 1588 | + | |
| 1589 | + | |
| 1590 | + | |
| 1591 | + | |
| 1592 | + | |
| 1593 | + | |
1584 | 1594 |
| |
1585 | 1595 |
| |
1586 | 1596 |
| |
| |||
1784 | 1794 |
| |
1785 | 1795 |
| |
1786 | 1796 |
| |
| 1797 | + | |
| 1798 | + | |
| 1799 | + | |
| 1800 | + | |
| 1801 | + | |
| 1802 | + | |
| 1803 | + | |
| 1804 | + | |
| 1805 | + | |
1787 | 1806 |
| |
1788 | 1807 |
| |
1789 | 1808 |
| |
|
Lines changed: 27 additions & 15 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1454 | 1454 |
| |
1455 | 1455 |
| |
1456 | 1456 |
| |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
1457 | 1461 |
| |
1458 | 1462 |
| |
1459 | 1463 |
| |
| |||
1509 | 1513 |
| |
1510 | 1514 |
| |
1511 | 1515 |
| |
1512 |
| - | |
1513 |
| - | |
1514 |
| - | |
1515 |
| - | |
1516 |
| - | |
1517 |
| - | |
1518 |
| - | |
1519 |
| - | |
1520 |
| - | |
1521 |
| - | |
1522 |
| - | |
1523 |
| - | |
| 1516 | + | |
| 1517 | + | |
1524 | 1518 |
| |
1525 | 1519 |
| |
| 1520 | + | |
| 1521 | + | |
| 1522 | + | |
| 1523 | + | |
1526 | 1524 |
| |
1527 | 1525 |
| |
1528 | 1526 |
| |
| |||
1532 | 1530 |
| |
1533 | 1531 |
| |
1534 | 1532 |
| |
1535 |
| - | |
1536 |
| - | |
1537 |
| - | |
| 1533 | + | |
1538 | 1534 |
| |
1539 | 1535 |
| |
1540 | 1536 |
| |
1541 | 1537 |
| |
1542 | 1538 |
| |
1543 | 1539 |
| |
1544 | 1540 |
| |
| 1541 | + | |
| 1542 | + | |
| 1543 | + | |
| 1544 | + | |
| 1545 | + | |
| 1546 | + | |
| 1547 | + | |
| 1548 | + | |
| 1549 | + | |
| 1550 | + | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
1545 | 1557 |
| |
1546 | 1558 |
| |
1547 | 1559 |
| |
|
Lines changed: 11 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2563 | 2563 |
| |
2564 | 2564 |
| |
2565 | 2565 |
| |
2566 |
| - | |
| 2566 | + | |
2567 | 2567 |
| |
2568 | 2568 |
| |
2569 | 2569 |
| |
| |||
2582 | 2582 |
| |
2583 | 2583 |
| |
2584 | 2584 |
| |
| 2585 | + | |
| 2586 | + | |
| 2587 | + | |
| 2588 | + | |
| 2589 | + | |
| 2590 | + | |
| 2591 | + | |
| 2592 | + | |
| 2593 | + | |
| 2594 | + | |
2585 | 2595 |
| |
2586 | 2596 |
| |
2587 | 2597 |
| |
|
Lines changed: 20 additions & 15 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
382 | 382 |
| |
383 | 383 |
| |
384 | 384 |
| |
385 |
| - | |
386 |
| - | |
387 |
| - | |
388 |
| - | |
389 |
| - | |
390 |
| - | |
391 |
| - | |
392 |
| - | |
393 |
| - | |
394 |
| - | |
395 |
| - | |
396 | 385 |
| |
397 | 386 |
| |
398 | 387 |
| |
| |||
533 | 522 |
| |
534 | 523 |
| |
535 | 524 |
| |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
536 | 530 |
| |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
537 | 536 |
| |
538 | 537 |
| |
539 | 538 |
| |
| |||
548 | 547 |
| |
549 | 548 |
| |
550 | 549 |
| |
| 550 | + | |
| 551 | + | |
| 552 | + | |
| 553 | + | |
551 | 554 |
| |
552 | 555 |
| |
553 | 556 |
| |
| |||
1185 | 1188 |
| |
1186 | 1189 |
| |
1187 | 1190 |
| |
1188 |
| - | |
1189 |
| - | |
| 1191 | + | |
1190 | 1192 |
| |
| 1193 | + | |
1191 | 1194 |
| |
1192 | 1195 |
| |
1193 | 1196 |
| |
| |||
1224 | 1227 |
| |
1225 | 1228 |
| |
1226 | 1229 |
| |
1227 |
| - | |
1228 |
| - | |
| 1230 | + | |
| 1231 | + | |
1229 | 1232 |
| |
| 1233 | + | |
| 1234 | + | |
1230 | 1235 |
| |
1231 | 1236 |
| |
1232 | 1237 |
| |
|
0 commit comments
Comments
(0)