1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 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 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 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 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 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 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>Authentication Methods</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 9.1.15 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="Client Authentication"
HREF="client-authentication.html"><LINK
REL="PREVIOUS"
TITLE="User Name Maps"
HREF="auth-username-maps.html"><LINK
REL="NEXT"
TITLE="Authentication Problems"
HREF="client-authentication-problems.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2015-02-02T21:03:01"></HEAD
><BODY
CLASS="SECT1"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.1.15 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="User Name Maps"
HREF="auth-username-maps.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="client-authentication.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
>Chapter 19. Client Authentication</TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="Authentication Problems"
HREF="client-authentication-problems.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="AUTH-METHODS"
>19.3. Authentication Methods</A
></H1
><P
> The following subsections describe the authentication methods in more detail.
</P
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-TRUST"
>19.3.1. Trust Authentication</A
></H2
><P
> When <TT
CLASS="LITERAL"
>trust</TT
> authentication is specified,
<SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> assumes that anyone who can
connect to the server is authorized to access the database with
whatever database user name they specify (even superuser names).
Of course, restrictions made in the <TT
CLASS="LITERAL"
>database</TT
> and
<TT
CLASS="LITERAL"
>user</TT
> columns still apply.
This method should only be used when there is adequate
operating-system-level protection on connections to the server.
</P
><P
> <TT
CLASS="LITERAL"
>trust</TT
> authentication is appropriate and very
convenient for local connections on a single-user workstation. It
is usually <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>not</I
></SPAN
> appropriate by itself on a multiuser
machine. However, you might be able to use <TT
CLASS="LITERAL"
>trust</TT
> even
on a multiuser machine, if you restrict access to the server's
Unix-domain socket file using file-system permissions. To do this, set the
<TT
CLASS="VARNAME"
>unix_socket_permissions</TT
> (and possibly
<TT
CLASS="VARNAME"
>unix_socket_group</TT
>) configuration parameters as
described in <A
HREF="runtime-config-connection.html"
>Section 18.3</A
>. Or you
could set the <TT
CLASS="VARNAME"
>unix_socket_directory</TT
>
configuration parameter to place the socket file in a suitably
restricted directory.
</P
><P
> Setting file-system permissions only helps for Unix-socket connections.
Local TCP/IP connections are not restricted by file-system permissions.
Therefore, if you want to use file-system permissions for local security,
remove the <TT
CLASS="LITERAL"
>host ... 127.0.0.1 ...</TT
> line from
<TT
CLASS="FILENAME"
>pg_hba.conf</TT
>, or change it to a
non-<TT
CLASS="LITERAL"
>trust</TT
> authentication method.
</P
><P
> <TT
CLASS="LITERAL"
>trust</TT
> authentication is only suitable for TCP/IP connections
if you trust every user on every machine that is allowed to connect
to the server by the <TT
CLASS="FILENAME"
>pg_hba.conf</TT
> lines that specify
<TT
CLASS="LITERAL"
>trust</TT
>. It is seldom reasonable to use <TT
CLASS="LITERAL"
>trust</TT
>
for any TCP/IP connections other than those from <SPAN
CLASS="SYSTEMITEM"
>localhost</SPAN
> (127.0.0.1).
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-PASSWORD"
>19.3.2. Password Authentication</A
></H2
><P
> The password-based authentication methods are <TT
CLASS="LITERAL"
>md5</TT
>
and <TT
CLASS="LITERAL"
>password</TT
>. These methods operate
similarly except for the way that the password is sent across the
connection, namely MD5-hashed and clear-text respectively.
</P
><P
> If you are at all concerned about password
<SPAN
CLASS="QUOTE"
>"sniffing"</SPAN
> attacks then <TT
CLASS="LITERAL"
>md5</TT
> is preferred.
Plain <TT
CLASS="LITERAL"
>password</TT
> should always be avoided if possible.
However, <TT
CLASS="LITERAL"
>md5</TT
> cannot be used with the <A
HREF="runtime-config-connection.html#GUC-DB-USER-NAMESPACE"
>db_user_namespace</A
> feature. If the connection is
protected by SSL encryption then <TT
CLASS="LITERAL"
>password</TT
> can be used
safely (though SSL certificate authentication might be a better
choice if one is depending on using SSL).
</P
><P
> <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> database passwords are
separate from operating system user passwords. The password for
each database user is stored in the <TT
CLASS="LITERAL"
>pg_authid</TT
> system
catalog. Passwords can be managed with the SQL commands
<A
HREF="sql-createuser.html"
>CREATE USER</A
> and
<A
HREF="sql-alterrole.html"
>ALTER ROLE</A
>,
e.g., <KBD
CLASS="USERINPUT"
>CREATE USER foo WITH PASSWORD 'secret'</KBD
>.
If no password has been set up for a user, the stored password
is null and password authentication will always fail for that user.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="GSSAPI-AUTH"
>19.3.3. GSSAPI Authentication</A
></H2
><P
> <SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
> is an industry-standard protocol
for secure authentication defined in RFC 2743.
<SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> supports
<SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
> with <SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
>
authentication according to RFC 1964. <SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
>
provides automatic authentication (single sign-on) for systems
that support it. The authentication itself is secure, but the
data sent over the database connection will be sent unencrypted unless
<ACRONYM
CLASS="ACRONYM"
>SSL</ACRONYM
> is used.
</P
><P
> When <SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
> uses
<SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
>, it uses a standard principal
in the format
<TT
CLASS="LITERAL"
><TT
CLASS="REPLACEABLE"
><I
>servicename</I
></TT
>/<TT
CLASS="REPLACEABLE"
><I
>hostname</I
></TT
>@<TT
CLASS="REPLACEABLE"
><I
>realm</I
></TT
></TT
>. For information about the parts of the principal, and
how to set up the required keys, see <A
HREF="auth-methods.html#KERBEROS-AUTH"
>Section 19.3.5</A
>.
</P
><P
> GSSAPI support has to be enabled when <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> is built;
see <A
HREF="installation.html"
>Chapter 15</A
> for more information.
</P
><P
> The following configuration options are supported for <SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
>:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>include_realm</TT
></DT
><DD
><P
> If set to 1, the realm name from the authenticated user
principal is included in the system user name that's passed through
user name mapping (<A
HREF="auth-username-maps.html"
>Section 19.2</A
>). This is
useful for handling users from multiple realms.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>map</TT
></DT
><DD
><P
> Allows for mapping between system and database user names. See
<A
HREF="auth-username-maps.html"
>Section 19.2</A
> for details. For a Kerberos
principal <TT
CLASS="LITERAL"
>username/hostbased@EXAMPLE.COM</TT
>, the
user name used for mapping is <TT
CLASS="LITERAL"
>username/hostbased</TT
>
if <TT
CLASS="LITERAL"
>include_realm</TT
> is disabled, and
<TT
CLASS="LITERAL"
>username/hostbased@EXAMPLE.COM</TT
> if
<TT
CLASS="LITERAL"
>include_realm</TT
> is enabled.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>krb_realm</TT
></DT
><DD
><P
> Sets the realm to match user principal names against. If this parameter
is set, only users of that realm will be accepted. If it is not set,
users of any realm can connect, subject to whatever user name mapping
is done.
</P
></DD
></DL
></DIV
><P>
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="SSPI-AUTH"
>19.3.4. SSPI Authentication</A
></H2
><P
> <SPAN
CLASS="PRODUCTNAME"
>SSPI</SPAN
> is a <SPAN
CLASS="PRODUCTNAME"
>Windows</SPAN
>
technology for secure authentication with single sign-on.
<SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> will use SSPI in
<TT
CLASS="LITERAL"
>negotiate</TT
> mode, which will use
<SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
> when possible and automatically
fall back to <SPAN
CLASS="PRODUCTNAME"
>NTLM</SPAN
> in other cases.
<SPAN
CLASS="PRODUCTNAME"
>SSPI</SPAN
> authentication only works when both
server and client are running <SPAN
CLASS="PRODUCTNAME"
>Windows</SPAN
>,
or, on non-Windows platforms, when <SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
>
is available.
</P
><P
> When using <SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
> authentication,
<SPAN
CLASS="PRODUCTNAME"
>SSPI</SPAN
> works the same way
<SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
> does; see <A
HREF="auth-methods.html#GSSAPI-AUTH"
>Section 19.3.3</A
>
for details.
</P
><P
> The following configuration options are supported for <SPAN
CLASS="PRODUCTNAME"
>SSPI</SPAN
>:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>include_realm</TT
></DT
><DD
><P
> If set to 1, the realm name from the authenticated user
principal is included in the system user name that's passed through
user name mapping (<A
HREF="auth-username-maps.html"
>Section 19.2</A
>). This is
useful for handling users from multiple realms.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>map</TT
></DT
><DD
><P
> Allows for mapping between system and database user names. See
<A
HREF="auth-username-maps.html"
>Section 19.2</A
> for details.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>krb_realm</TT
></DT
><DD
><P
> Sets the realm to match user principal names against. If this parameter
is set, only users of that realm will be accepted. If it is not set,
users of any realm can connect, subject to whatever user name mapping
is done.
</P
></DD
></DL
></DIV
><P>
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="KERBEROS-AUTH"
>19.3.5. Kerberos Authentication</A
></H2
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
> Native Kerberos authentication has been deprecated and should be used
only for backward compatibility. New and upgraded installations are
encouraged to use the industry-standard <SPAN
CLASS="PRODUCTNAME"
>GSSAPI</SPAN
>
authentication method (see <A
HREF="auth-methods.html#GSSAPI-AUTH"
>Section 19.3.3</A
>) instead.
</P
></BLOCKQUOTE
></DIV
><P
> <SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
> is an industry-standard secure
authentication system suitable for distributed computing over a public
network. A description of the <SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
> system
is beyond the scope of this document; in full generality it can be
quite complex (yet powerful). The
<A
HREF="http://www.cmf.nrl.navy.mil/CCS/people/kenh/kerberos-faq.html"
TARGET="_top"
> Kerberos <ACRONYM
CLASS="ACRONYM"
>FAQ</ACRONYM
></A
> or
<A
HREF="http://web.mit.edu/kerberos/www/"
TARGET="_top"
>MIT Kerberos page</A
>
can be good starting points for exploration.
Several sources for <SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
> distributions exist.
<SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
> provides secure authentication but
does not encrypt queries or data passed over the network; for that
use <ACRONYM
CLASS="ACRONYM"
>SSL</ACRONYM
>.
</P
><P
> <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> supports Kerberos version 5. Kerberos
support has to be enabled when <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> is built;
see <A
HREF="installation.html"
>Chapter 15</A
> for more information.
</P
><P
> <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> operates like a normal Kerberos service.
The name of the service principal is
<TT
CLASS="LITERAL"
><TT
CLASS="REPLACEABLE"
><I
>servicename</I
></TT
>/<TT
CLASS="REPLACEABLE"
><I
>hostname</I
></TT
>@<TT
CLASS="REPLACEABLE"
><I
>realm</I
></TT
></TT
>.
</P
><P
> <TT
CLASS="REPLACEABLE"
><I
>servicename</I
></TT
> can be set on the server side using the
<A
HREF="runtime-config-connection.html#GUC-KRB-SRVNAME"
>krb_srvname</A
> configuration parameter, and on the
client side using the <TT
CLASS="LITERAL"
>krbsrvname</TT
> connection parameter. (See
also <A
HREF="libpq-connect.html"
>Section 31.1</A
>.) The installation default can be
changed from the default <TT
CLASS="LITERAL"
>postgres</TT
> at build time using
<TT
CLASS="LITERAL"
>./configure --with-krb-srvnam=</TT
><TT
CLASS="REPLACEABLE"
><I
>whatever</I
></TT
>.
In most environments,
this parameter never needs to be changed. However, it is necessary
when supporting multiple <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> installations
on the same host.
Some Kerberos implementations might also require a different service name,
such as Microsoft Active Directory which requires the service name
to be in upper case (<TT
CLASS="LITERAL"
>POSTGRES</TT
>).
</P
><P
> <TT
CLASS="REPLACEABLE"
><I
>hostname</I
></TT
> is the fully qualified host name of the
server machine. The service principal's realm is the preferred realm
of the server machine.
</P
><P
> Client principals must have their <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> database user
name as their first component, for example
<TT
CLASS="LITERAL"
>pgusername@realm</TT
>. Alternatively, you can use a user name
mapping to map from the first component of the principal name to the
database user name. By default, the realm of the client is
not checked by <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>. If you have cross-realm
authentication enabled and need to verify the realm, use the
<TT
CLASS="LITERAL"
>krb_realm</TT
> parameter, or enable <TT
CLASS="LITERAL"
>include_realm</TT
>
and use user name mapping to check the realm.
</P
><P
> Make sure that your server keytab file is readable (and preferably
only readable) by the <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> server
account. (See also <A
HREF="postgres-user.html"
>Section 17.1</A
>.) The location
of the key file is specified by the <A
HREF="runtime-config-connection.html#GUC-KRB-SERVER-KEYFILE"
>krb_server_keyfile</A
> configuration
parameter. The default is
<TT
CLASS="FILENAME"
>/usr/local/pgsql/etc/krb5.keytab</TT
> (or whatever
directory was specified as <TT
CLASS="VARNAME"
>sysconfdir</TT
> at build time).
</P
><P
> The keytab file is generated by the Kerberos software; see the
Kerberos documentation for details. The following example is
for MIT-compatible Kerberos 5 implementations:
</P><PRE
CLASS="SCREEN"
><SAMP
CLASS="PROMPT"
>kadmin% </SAMP
><KBD
CLASS="USERINPUT"
>ank -randkey postgres/server.my.domain.org</KBD
>
<SAMP
CLASS="PROMPT"
>kadmin% </SAMP
><KBD
CLASS="USERINPUT"
>ktadd -k krb5.keytab postgres/server.my.domain.org</KBD
></PRE
><P>
</P
><P
> When connecting to the database make sure you have a ticket for a
principal matching the requested database user name. For example, for
database user name <TT
CLASS="LITERAL"
>fred</TT
>, principal
<TT
CLASS="LITERAL"
>fred@EXAMPLE.COM</TT
> would be able to connect. To also allow
principal <TT
CLASS="LITERAL"
>fred/users.example.com@EXAMPLE.COM</TT
>, use a user name
map, as described in <A
HREF="auth-username-maps.html"
>Section 19.2</A
>.
</P
><P
> If you use <A
HREF="http://modauthkerb.sf.net"
TARGET="_top"
> <SPAN
CLASS="APPLICATION"
>mod_auth_kerb</SPAN
></A
>
and <SPAN
CLASS="APPLICATION"
>mod_perl</SPAN
> on your
<SPAN
CLASS="PRODUCTNAME"
>Apache</SPAN
> web server, you can use
<TT
CLASS="LITERAL"
>AuthType KerberosV5SaveCredentials</TT
> with a
<SPAN
CLASS="APPLICATION"
>mod_perl</SPAN
> script. This gives secure
database access over the web, with no additional passwords required.
</P
><P
> The following configuration options are supported for
<SPAN
CLASS="PRODUCTNAME"
>Kerberos</SPAN
>:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>map</TT
></DT
><DD
><P
> Allows for mapping between system and database user names. See
<A
HREF="auth-username-maps.html"
>Section 19.2</A
> for details.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>include_realm</TT
></DT
><DD
><P
> If set to 1, the realm name from the authenticated user
principal is included in the system user name that's passed through
user name mapping (<A
HREF="auth-username-maps.html"
>Section 19.2</A
>). This is
useful for handling users from multiple realms.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>krb_realm</TT
></DT
><DD
><P
> Sets the realm to match user principal names against. If this parameter
is set, only users of that realm will be accepted. If it is not set,
users of any realm can connect, subject to whatever user name mapping
is done.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>krb_server_hostname</TT
></DT
><DD
><P
> Sets the host name part of the service principal.
This, combined with <TT
CLASS="VARNAME"
>krb_srvname</TT
>, is used to generate
the complete service principal, that is
<TT
CLASS="VARNAME"
>krb_srvname</TT
><TT
CLASS="LITERAL"
>/</TT
><TT
CLASS="VARNAME"
>krb_server_hostname</TT
><TT
CLASS="LITERAL"
>@</TT
>REALM.
If not set, the default is the server host name.
</P
></DD
></DL
></DIV
><P>
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-IDENT"
>19.3.6. Ident Authentication</A
></H2
><P
> The ident authentication method works by obtaining the client's
operating system user name from an ident server and using it as
the allowed database user name (with an optional user name mapping).
This is only supported on TCP/IP connections.
</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
> When ident is specified for a local (non-TCP/IP) connection,
peer authentication (see <A
HREF="auth-methods.html#AUTH-PEER"
>Section 19.3.7</A
>) will be
used instead.
</P
></BLOCKQUOTE
></DIV
><P
> The following configuration options are supported for <SPAN
CLASS="PRODUCTNAME"
>ident</SPAN
>:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>map</TT
></DT
><DD
><P
> Allows for mapping between system and database user names. See
<A
HREF="auth-username-maps.html"
>Section 19.2</A
> for details.
</P
></DD
></DL
></DIV
><P>
</P
><P
> The <SPAN
CLASS="QUOTE"
>"Identification Protocol"</SPAN
> is described in
RFC 1413. Virtually every Unix-like
operating system ships with an ident server that listens on TCP
port 113 by default. The basic functionality of an ident server
is to answer questions like <SPAN
CLASS="QUOTE"
>"What user initiated the
connection that goes out of your port <TT
CLASS="REPLACEABLE"
><I
>X</I
></TT
>
and connects to my port <TT
CLASS="REPLACEABLE"
><I
>Y</I
></TT
>?"</SPAN
>.
Since <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> knows both <TT
CLASS="REPLACEABLE"
><I
>X</I
></TT
> and
<TT
CLASS="REPLACEABLE"
><I
>Y</I
></TT
> when a physical connection is established, it
can interrogate the ident server on the host of the connecting
client and can theoretically determine the operating system user
for any given connection.
</P
><P
> The drawback of this procedure is that it depends on the integrity
of the client: if the client machine is untrusted or compromised,
an attacker could run just about any program on port 113 and
return any user name he chooses. This authentication method is
therefore only appropriate for closed networks where each client
machine is under tight control and where the database and system
administrators operate in close contact. In other words, you must
trust the machine running the ident server.
Heed the warning:
<A
NAME="AEN30856"
></A
><TABLE
BORDER="0"
WIDTH="100%"
CELLSPACING="0"
CELLPADDING="0"
CLASS="BLOCKQUOTE"
><TR
><TD
WIDTH="10%"
VALIGN="TOP"
> </TD
><TD
VALIGN="TOP"
><P
> The Identification Protocol is not intended as an authorization
or access control protocol.
</P
></TD
><TD
WIDTH="10%"
VALIGN="TOP"
> </TD
></TR
><TR
><TD
COLSPAN="2"
ALIGN="RIGHT"
VALIGN="TOP"
>--<SPAN
CLASS="ATTRIBUTION"
>RFC 1413</SPAN
></TD
><TD
WIDTH="10%"
> </TD
></TR
></TABLE
>
</P
><P
> Some ident servers have a nonstandard option that causes the returned
user name to be encrypted, using a key that only the originating
machine's administrator knows. This option <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>must not</I
></SPAN
> be
used when using the ident server with <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>,
since <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> does not have any way to decrypt the
returned string to determine the actual user name.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-PEER"
>19.3.7. Peer Authentication</A
></H2
><P
> The peer authentication method works by obtaining the client's
operating system user name from the kernel and using it as the
allowed database user name (with optional user name mapping). This
method is only supported on local connections.
</P
><P
> The following configuration options are supported for <SPAN
CLASS="PRODUCTNAME"
>peer</SPAN
>:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>map</TT
></DT
><DD
><P
> Allows for mapping between system and database user names. See
<A
HREF="auth-username-maps.html"
>Section 19.2</A
> for details.
</P
></DD
></DL
></DIV
><P>
</P
><P
> Peer authentication is only available on operating systems providing
the <CODE
CLASS="FUNCTION"
>getpeereid()</CODE
> function, the <TT
CLASS="SYMBOL"
>SO_PEERCRED</TT
>
socket parameter, or similar mechanisms. Currently that includes
<SPAN
CLASS="SYSTEMITEM"
>Linux</SPAN
>,
most flavors of <SPAN
CLASS="SYSTEMITEM"
>BSD</SPAN
> including
<SPAN
CLASS="SYSTEMITEM"
>Mac OS X</SPAN
>,
and <SPAN
CLASS="SYSTEMITEM"
>Solaris</SPAN
>.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-LDAP"
>19.3.8. LDAP Authentication</A
></H2
><P
> This authentication method operates similarly to
<TT
CLASS="LITERAL"
>password</TT
> except that it uses LDAP
as the password verification method. LDAP is used only to validate
the user name/password pairs. Therefore the user must already
exist in the database before LDAP can be used for
authentication.
</P
><P
> LDAP authentication can operate in two modes. In the first mode,
the server will bind to the distinguished name constructed as
<TT
CLASS="REPLACEABLE"
><I
>prefix</I
></TT
> <TT
CLASS="REPLACEABLE"
><I
>username</I
></TT
> <TT
CLASS="REPLACEABLE"
><I
>suffix</I
></TT
>.
Typically, the <TT
CLASS="REPLACEABLE"
><I
>prefix</I
></TT
> parameter is used to specify
<TT
CLASS="LITERAL"
>cn=</TT
>, or <TT
CLASS="REPLACEABLE"
><I
>DOMAIN</I
></TT
><TT
CLASS="LITERAL"
>\</TT
> in an Active
Directory environment. <TT
CLASS="REPLACEABLE"
><I
>suffix</I
></TT
> is used to specify the
remaining part of the DN in a non-Active Directory environment.
</P
><P
> In the second mode, the server first binds to the LDAP directory with
a fixed user name and password, specified with <TT
CLASS="REPLACEABLE"
><I
>ldapbinddn</I
></TT
>
and <TT
CLASS="REPLACEABLE"
><I
>ldapbindpasswd</I
></TT
>, and performs a search for the user trying
to log in to the database. If no user and password is configured, an
anonymous bind will be attempted to the directory. The search will be
performed over the subtree at <TT
CLASS="REPLACEABLE"
><I
>ldapbasedn</I
></TT
>, and will try to
do an exact match of the attribute specified in
<TT
CLASS="REPLACEABLE"
><I
>ldapsearchattribute</I
></TT
>. If no attribute is specified, the
<TT
CLASS="LITERAL"
>uid</TT
> attribute will be used. Once the user has been found in
this search, the server disconnects and re-binds to the directory as
this user, using the password specified by the client, to verify that the
login is correct. This method allows for significantly more flexibility
in where the user objects are located in the directory, but will cause
two separate connections to the LDAP server to be made.
</P
><P
> The following configuration options are supported for LDAP:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>ldapserver</TT
></DT
><DD
><P
> Names or IP addresses of LDAP servers to connect to. Multiple
servers may be specified, separated by spaces.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapport</TT
></DT
><DD
><P
> Port number on LDAP server to connect to. If no port is specified,
the LDAP library's default port setting will be used.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldaptls</TT
></DT
><DD
><P
> Set to 1 to make the connection between PostgreSQL and the
LDAP server use TLS encryption. Note that this only encrypts
the traffic to the LDAP server — the connection to the client
will still be unencrypted unless SSL is used.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapprefix</TT
></DT
><DD
><P
> String to prepend to the user name when forming the DN to bind as,
when doing simple bind authentication.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapsuffix</TT
></DT
><DD
><P
> String to append to the user name when forming the DN to bind as,
when doing simple bind authentication.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapbasedn</TT
></DT
><DD
><P
> Root DN to begin the search for the user in, when doing search+bind
authentication.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapbinddn</TT
></DT
><DD
><P
> DN of user to bind to the directory with to perform the search when
doing search+bind authentication.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapbindpasswd</TT
></DT
><DD
><P
> Password for user to bind to the directory with to perform the search
when doing search+bind authentication.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>ldapsearchattribute</TT
></DT
><DD
><P
> Attribute to match against the user name in the search when doing
search+bind authentication.
</P
></DD
></DL
></DIV
><P>
</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
> Since LDAP often uses commas and spaces to separate the different
parts of a DN, it is often necessary to use double-quoted parameter
values when configuring LDAP options, for example:
</P><PRE
CLASS="PROGRAMLISTING"
>ldapserver=ldap.example.net ldapprefix="cn=" ldapsuffix=", dc=example, dc=net"</PRE
><P>
</P
></BLOCKQUOTE
></DIV
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-RADIUS"
>19.3.9. RADIUS Authentication</A
></H2
><P
> This authentication method operates similarly to
<TT
CLASS="LITERAL"
>password</TT
> except that it uses RADIUS
as the password verification method. RADIUS is used only to validate
the user name/password pairs. Therefore the user must already
exist in the database before RADIUS can be used for
authentication.
</P
><P
> When using RADIUS authentication, an Access Request message will be sent
to the configured RADIUS server. This request will be of type
<TT
CLASS="LITERAL"
>Authenticate Only</TT
>, and include parameters for
<TT
CLASS="LITERAL"
>user name</TT
>, <TT
CLASS="LITERAL"
>password</TT
> (encrypted) and
<TT
CLASS="LITERAL"
>NAS Identifier</TT
>. The request will be encrypted using
a secret shared with the server. The RADIUS server will respond to
this server with either <TT
CLASS="LITERAL"
>Access Accept</TT
> or
<TT
CLASS="LITERAL"
>Access Reject</TT
>. There is no support for RADIUS accounting.
</P
><P
> The following configuration options are supported for RADIUS:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>radiusserver</TT
></DT
><DD
><P
> The name or IP address of the RADIUS server to connect to.
This parameter is required.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>radiussecret</TT
></DT
><DD
><P
> The shared secret used when talking securely to the RADIUS
server. This must have exactly the same value on the PostgreSQL
and RADIUS servers. It is recommended that this be a string of
at least 16 characters. This parameter is required.
</P><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
> The encryption vector used will only be cryptographically
strong if <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> is built with support for
<SPAN
CLASS="PRODUCTNAME"
>OpenSSL</SPAN
>. In other cases, the transmission to the
RADIUS server should only be considered obfuscated, not secured, and
external security measures should be applied if necessary.
</P
></BLOCKQUOTE
></DIV
><P>
</P
></DD
><DT
><TT
CLASS="LITERAL"
>radiusport</TT
></DT
><DD
><P
> The port number on the RADIUS server to connect to. If no port
is specified, the default port <TT
CLASS="LITERAL"
>1812</TT
> will be used.
</P
></DD
><DT
><TT
CLASS="LITERAL"
>radiusidentifier</TT
></DT
><DD
><P
> The string used as <TT
CLASS="LITERAL"
>NAS Identifier</TT
> in the RADIUS
requests. This parameter can be used as a second parameter
identifying for example which database user the user is attempting
to authenticate as, which can be used for policy matching on
the RADIUS server. If no identifier is specified, the default
<TT
CLASS="LITERAL"
>postgresql</TT
> will be used.
</P
></DD
></DL
></DIV
><P>
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-CERT"
>19.3.10. Certificate Authentication</A
></H2
><P
> This authentication method uses SSL client certificates to perform
authentication. It is therefore only available for SSL connections.
When using this authentication method, the server will require that
the client provide a valid certificate. No password prompt will be sent
to the client. The <TT
CLASS="LITERAL"
>cn</TT
> (Common Name) attribute of the
certificate
will be compared to the requested database user name, and if they match
the login will be allowed. User name mapping can be used to allow
<TT
CLASS="LITERAL"
>cn</TT
> to be different from the database user name.
</P
><P
> The following configuration options are supported for SSL certificate
authentication:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>map</TT
></DT
><DD
><P
> Allows for mapping between system and database user names. See
<A
HREF="auth-username-maps.html"
>Section 19.2</A
> for details.
</P
></DD
></DL
></DIV
><P>
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AUTH-PAM"
>19.3.11. PAM Authentication</A
></H2
><P
> This authentication method operates similarly to
<TT
CLASS="LITERAL"
>password</TT
> except that it uses PAM (Pluggable
Authentication Modules) as the authentication mechanism. The
default PAM service name is <TT
CLASS="LITERAL"
>postgresql</TT
>.
PAM is used only to validate user name/password pairs.
Therefore the user must already exist in the database before PAM
can be used for authentication. For more information about
PAM, please read the <A
HREF="http://www.kernel.org/pub/linux/libs/pam/"
TARGET="_top"
> <SPAN
CLASS="PRODUCTNAME"
>Linux-PAM</SPAN
> Page</A
>
and the <A
HREF="http://www.sun.com/software/solaris/pam/"
TARGET="_top"
> <SPAN
CLASS="SYSTEMITEM"
>Solaris</SPAN
> PAM Page</A
>.
</P
><P
> The following configuration options are supported for PAM:
<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>pamservice</TT
></DT
><DD
><P
> PAM service name.
</P
></DD
></DL
></DIV
><P>
</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
> If PAM is set up to read <TT
CLASS="FILENAME"
>/etc/shadow</TT
>, authentication
will fail because the PostgreSQL server is started by a non-root
user. However, this is not an issue when PAM is configured to use
LDAP or other authentication methods.
</P
></BLOCKQUOTE
></DIV
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="auth-username-maps.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="client-authentication-problems.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>User Name Maps</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="client-authentication.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Authentication Problems</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
|