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
|
<pre>Internet Engineering Task Force (IETF) W. Adamson
Request for Comments: 7861 NetApp
Updates: <a href="./rfc5403">5403</a> N. Williams
Category: Standards Track Cryptonector
ISSN: 2070-1721 November 2016
<span class="h1">Remote Procedure Call (RPC) Security Version 3</span>
Abstract
This document specifies version 3 of the Remote Procedure Call (RPC)
security protocol (RPCSEC_GSS). This protocol provides support for
multi-principal authentication of client hosts and user principals to
a server (constructed by generic composition), security label
assertions for multi-level security and type enforcement, structured
privilege assertions, and channel bindings. This document updates
<a href="./rfc5403">RFC 5403</a>.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7861">http://www.rfc-editor.org/info/rfc7861</a>.
Copyright Notice
Copyright (c) 2016 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Adamson & Williams Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
Table of Contents
<a href="#section-1">1</a>. Introduction and Motivation .....................................<a href="#page-2">2</a>
<a href="#section-1.1">1.1</a>. Requirements Language ......................................<a href="#page-3">3</a>
<a href="#section-1.2">1.2</a>. Added Functionality ........................................<a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. XDR Code Extraction ........................................<a href="#page-5">5</a>
<a href="#section-2">2</a>. The RPCSEC_GSSv3 Protocol .......................................<a href="#page-6">6</a>
<a href="#section-2.1">2.1</a>. Compatibility with RPCSEC_GSSv2 ............................<a href="#page-6">6</a>
<a href="#section-2.2">2.2</a>. Version Negotiation ........................................<a href="#page-6">6</a>
<a href="#section-2.3">2.3</a>. New Reply Verifier .........................................<a href="#page-7">7</a>
<a href="#section-2.4">2.4</a>. XDR Code Preliminaries .....................................<a href="#page-8">8</a>
<a href="#section-2.5">2.5</a>. RPCSEC_GSS_BIND_CHANNEL Operation .........................<a href="#page-10">10</a>
<a href="#section-2.6">2.6</a>. New auth_stat Values ......................................<a href="#page-10">10</a>
<a href="#section-2.7">2.7</a>. New Control Procedures ....................................<a href="#page-10">10</a>
<a href="#section-2.7.1">2.7.1</a>. New Control Procedure - RPCSEC_GSS_CREATE ..........<a href="#page-12">12</a>
<a href="#section-2.7.2">2.7.2</a>. New Control Procedure - RPCSEC_GSS_LIST ............<a href="#page-20">20</a>
<a href="#section-2.8">2.8</a>. Extensibility .............................................<a href="#page-21">21</a>
<a href="#section-3">3</a>. Operational Recommendation for Deployment ......................<a href="#page-21">21</a>
<a href="#section-4">4</a>. Security Considerations ........................................<a href="#page-21">21</a>
<a href="#section-5">5</a>. IANA Considerations ............................................<a href="#page-22">22</a>
<a href="#section-5.1">5.1</a>. New RPC Authentication Status Numbers .....................<a href="#page-22">22</a>
<a href="#section-5.2">5.2</a>. Structured Privilege Name Definitions .....................<a href="#page-23">23</a>
<a href="#section-5.2.1">5.2.1</a>. Initial Registry ...................................<a href="#page-24">24</a>
<a href="#section-5.2.2">5.2.2</a>. Updating Registrations .............................<a href="#page-24">24</a>
<a href="#section-6">6</a>. References .....................................................<a href="#page-25">25</a>
<a href="#section-6.1">6.1</a>. Normative References ......................................<a href="#page-25">25</a>
<a href="#section-6.2">6.2</a>. Informative References ....................................<a href="#page-26">26</a>
Acknowledgments ...................................................<a href="#page-26">26</a>
Authors' Addresses ................................................<a href="#page-26">26</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction and Motivation</span>
The original Remote Procedure Call (RPC) security protocol
(RPCSEC_GSS) [<a href="./rfc2203" title=""RPCSEC_GSS Protocol Specification"">RFC2203</a>] provided for authentication of RPC clients and
servers to each other using the Generic Security Service Application
Programming Interface (GSS-API) [<a href="./rfc2743" title=""Generic Security Service Application Program Interface Version 2, Update 1"">RFC2743</a>]. The second version of
RPCSEC_GSS [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>] added support for channel bindings [<a href="./rfc5056" title=""On the Use of Channel Bindings to Secure Channels"">RFC5056</a>].
Existing GSS-API mechanisms are insufficient for communicating
certain authorization and authentication information to a server.
The GSS-API and its mechanisms certainly could be extended to address
this shortcoming. However, it is addressed here at the application
layer, i.e., in RPCSEC_GSS.
A major motivation for version 3 of RPCSEC_GSS (RPCSEC_GSSv3) is to
add support for multi-level (labeled) security and server-side copy
for NFSv4.
<span class="grey">Adamson & Williams Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
Multi-Level Security (MLS) is a traditional model where subjects
(processes) are given a security level (Unclassified, Secret,
Top Secret, etc.) and objects (files) are given security labels that
mandate the access of the subject to the object (see <a href="./rfc7862#section-9.1">Section 9.1 of
[RFC7862]</a>).
Labeled NFS (see <a href="./rfc7862#section-9">Section 9 of [RFC7862]</a>) uses an MLS policy with
Mandatory Access Control (MAC) systems as defined in [<a href="./rfc4949" title=""Internet Security Glossary, Version 2"">RFC4949</a>].
Labeled NFS stores MAC file object labels on the NFS server and
enables client Guest Mode MAC as described in <a href="./rfc7862#section-9.5.3">Section 9.5.3 of
[RFC7862]</a>. RPCSEC_GSSv3 label assertions assert client MAC process
subject labels to enable Full Mode MAC when combined with Labeled NFS
as described in <a href="./rfc7862#section-9.5.1">Section 9.5.1 of [RFC7862]</a>.
A traditional inter-server file copy entails the user gaining access
to a file on the source, reading it, and writing it to a file on the
destination. In secure NFSv4 inter-server server-side copy (see
<a href="./rfc7862#section-4">Section 4 of [RFC7862]</a>), the user first secures access to both source
and destination files and then uses NFSv4.2-defined RPCSEC_GSSv3
structured privileges to authorize the destination to copy the file
from the source on behalf of the user.
Multi-principal authentication can be used to address shared cache
poisoning attacks (see Section 9 of [<a href="#ref-AFS-RXGK">AFS-RXGK</a>]) on the client cache
by a user. As described in Section 7 of [<a href="#ref-AFS-RXGK">AFS-RXGK</a>], multi-user
machines with a single cache manager can fetch and cache data on a
user's behalf and re-display it for another user from the cache
without refetching the data from the server. The initial data
acquisition is authenticated by the first user's credentials, and if
only that user's credentials are used, it may be possible for a
malicious user or users to "poison" the cache for other users by
introducing bogus data into the cache.
Another use of the multi-principal assertion is the secure conveyance
of privilege information for processes running with more (or even
with less) privilege than the user normally would be accorded.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Requirements Language</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Adamson & Williams Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Added Functionality</span>
RPCSEC_GSS version 3 (RPCSEC_GSSv3) is the same as RPCSEC_GSSv2
[<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>], except that the following assertions of authority have
been added:
o Security labels for Full Mode security type enforcement, and other
labeled security models (see <a href="./rfc7862#section-9.5.1">Section 9.5.1 of [RFC7862]</a>).
o Application-specific structured privileges. These allow an RPC
application client to pass structured information to the
corresponding application code in a server to control the use of
the privilege and/or the conditions in which the privilege may be
exercised. For an example, see server-side copy as described in
[<a href="./rfc7862" title=""Network File System (NFS) Version 4 Minor Version 2 Protocol"">RFC7862</a>].
o Multi-principal authentication of the client host and user to the
server, done by binding two RPCSEC_GSS handles.
o Simplified channel binding.
Assertions of labels and privileges are evaluated by the server,
which may then map the asserted values to other values, all according
to server-side policy. See [<a href="./rfc7862" title=""Network File System (NFS) Version 4 Minor Version 2 Protocol"">RFC7862</a>].
An option for enumerating server-supported Label Format Specifiers
(LFSs) is provided. See <a href="./rfc7862#section-9.1">Section 9.1 of [RFC7862]</a>.
Note that there is no RPCSEC_GSS_CREATE payload that is REQUIRED to
implement. RPCSEC_GSSv3 implementations are feature driven. Besides
implementing the RPCSEC_GSS_CREATE operation and payloads for the
desired features, all RPCSEC_GSSv3 implementations MUST implement:
o The new RPCSEC_GSS version number (<a href="#section-2.2">Section 2.2</a>).
o The new reply verifier (<a href="#section-2.3">Section 2.3</a>).
o The new auth_stat values (<a href="#section-2.6">Section 2.6</a>).
<span class="grey">Adamson & Williams Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
RPCSEC_GSSv3 targets implementing a desired feature MUST also
implement the RPCSEC_GSS_LIST operation, and the RPCSEC_GSS_CREATE
operation replies for unsupported features as follows:
o For label assertions, the target indicates no support by returning
the new RPCSEC_GSS_LABEL_PROBLEM auth_stat value (see
<a href="#section-2.7.1.3">Section 2.7.1.3</a>).
o For structured privilege assertions, the target indicates no
support by returning the new RPCSEC_GSS_UNKNOWN_MESSAGE auth_stat
value (see <a href="#section-2.7.1.4">Section 2.7.1.4</a>).
o For multi-principal authentication (<a href="#section-2.7.1.1">Section 2.7.1.1</a>), the target
indicates no support by not including an rgss3_gss_mp_auth value
in the rgss3_create_res.
o For channel bindings (<a href="#section-2.7.1.2">Section 2.7.1.2</a>), the target indicates no
support by not including an rgss3_chan_binding value in the
rgss3_create_res.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. XDR Code Extraction</span>
This document contains the External Data Representation (XDR)
[<a href="./rfc4506" title=""XDR: External Data Representation Standard"">RFC4506</a>] definitions for the RPCSEC_GSSv3 protocol. The XDR
description is provided in this document in a way that makes it
simple for the reader to extract it into a form that is ready to
compile. The reader can feed this document in the following shell
script to produce the machine-readable XDR description of
RPCSEC_GSSv3:
<CODE BEGINS>
#!/bin/sh
grep "^ *///" | sed 's?^ */// ??' | sed 's?^ *///$??'
<CODE ENDS>
That is, if the above script is stored in a file called "extract.sh"
and this document is in a file called "spec.txt", then the reader
can do:
<CODE BEGINS>
sh extract.sh < spec.txt > rpcsec_gss_v3.x
<CODE ENDS>
<span class="grey">Adamson & Williams Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
The effect of the script is to remove leading white space from each
line, plus a sentinel sequence of "///".
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. The RPCSEC_GSSv3 Protocol</span>
RPCSEC_GSS version 3 (RPCSEC_GSSv3) is very similar to RPCSEC_GSS
version 2 (RPCSEC_GSSv2) [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>]. The difference is that the new
support for assertions and channel bindings is implemented via a
different mechanism.
The entire RPCSEC_GSSv3 protocol is not presented here. Only the
differences between RPCSEC_GSSv3 and RPCSEC_GSSv2 are shown.
RPCSEC_GSSv3 is implemented as follows:
o A client uses an existing RPCSEC_GSSv3 context handle established
in the usual manner (see <a href="./rfc2203#section-5.2">Section 5.2 of [RFC2203]</a>) to protect
RPCSEC_GSSv3 exchanges; this will be termed the "parent" handle.
o The server issues a "child" RPCSEC_GSSv3 handle in the
RPCSEC_GSS_CREATE response, which uses the underlying GSS-API
security context of the parent handle in all subsequent exchanges
that use the child handle.
o An RPCSEC_GSSv3 child handle MUST NOT be used as the parent handle
in an RPCSEC_GSS3_CREATE control message.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Compatibility with RPCSEC_GSSv2</span>
The functionality of RPCSEC_GSSv2 [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>] is fully supported by
RPCSEC_GSSv3, with the exception of the RPCSEC_GSS_BIND_CHANNEL
operation, which is not supported when RPCSEC_GSSv3 is in use (see
<a href="#section-2.5">Section 2.5</a>).
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Version Negotiation</span>
An initiator that supports version 3 of RPCSEC_GSS simply issues an
RPCSEC_GSS request with the rgc_version field set to
RPCSEC_GSS_VERS_3. If the target does not recognize
RPCSEC_GSS_VERS_3, the target will return an RPC error per
<a href="./rfc2203#section-5.1">Section 5.1 of [RFC2203]</a>.
The initiator MUST NOT attempt to use an RPCSEC_GSS handle returned
by version 3 of a target with version 1 or version 2 of the same
target. The initiator MUST NOT attempt to use an RPCSEC_GSS handle
returned by version 1 or version 2 of a target with version 3 of the
same target.
<span class="grey">Adamson & Williams Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. New Reply Verifier</span>
A new reply verifier is needed for RPCSEC_GSSv3 because of a
situation that arises from the use of the same GSS context by child
and parent handles. Because the RPCSEC_GSSv3 child handle uses the
same GSS context as the parent handle, a child and parent
RPCSEC_GSSv3 handle could have the same RPCSEC_GSS sequence numbers.
Since the reply verifier of previous versions of RPCSEC_GSS computes
a Message Integrity Code (MIC) on just the sequence number, this
provides opportunities for man-in-the-middle attacks.
This issue is addressed in RPCSEC_GSS version 3 by computing the
verifier using exactly the same input as the information used to
compute the request verifier, except that the mtype is changed from
CALL to REPLY. The new reply verifier computes a MIC over the
following RPC reply header data:
unsigned int xid;
msg_type mtype; /* set to REPLY */
unsigned int rpcvers;
unsigned int prog;
unsigned int vers;
unsigned int proc;
opaque_auth cred; /* binds the RPCSEC_GSS handle */
<span class="grey">Adamson & Williams Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. XDR Code Preliminaries</span>
The following code fragment replaces the corresponding preliminary
code shown in Figure 1 of [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>]. The values in the code fragment
in <a href="#section-2.6">Section 2.6</a> are additions to the auth_stat enumeration.
Subsequent code fragments are additions to the code for version 2
that support the new procedures defined in version 3.
<CODE BEGINS>
/// /*
/// * Copyright (c) 2016 IETF Trust and the persons
/// * identified as the authors. All rights reserved.
/// *
/// * The authors of the code are identified in <a href="./rfc2203">RFC 2203</a>,
/// * <a href="./rfc5403">RFC 5403</a>, and <a href="./rfc7861">RFC 7861</a>.
/// *
/// * Redistribution and use in source and binary forms,
/// * with or without modification, are permitted
/// * provided that the following conditions are met:
/// *
/// * o Redistributions of source code must retain the above
/// * copyright notice, this list of conditions and the
/// * following disclaimer.
/// *
/// * o Redistributions in binary form must reproduce the
/// * above copyright notice, this list of
/// * conditions and the following disclaimer in
/// * the documentation and/or other materials
/// * provided with the distribution.
/// *
/// * o Neither the name of Internet Society, IETF or IETF
/// * Trust, nor the names of specific contributors, may be
/// * used to endorse or promote products derived from this
/// * software without specific prior written permission.
/// *
/// * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
/// * AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
/// * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
/// * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
/// * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
/// * EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
/// * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
/// * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
/// * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
/// * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
/// * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
/// * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
<span class="grey">Adamson & Williams Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
/// * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
/// * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
/// * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/// */
///
/// /*
/// * This code was derived from <a href="./rfc2203">RFC 2203</a>, <a href="./rfc5403">RFC 5403</a>,
/// * and <a href="./rfc7861">RFC 7861</a>. Please reproduce this note if possible.
/// */
///
/// enum rpc_gss_service_t {
/// /* Note: The enumerated value for 0 is reserved. */
/// rpc_gss_svc_none = 1,
/// rpc_gss_svc_integrity = 2,
/// rpc_gss_svc_privacy = 3,
/// rpc_gss_svc_channel_prot = 4
/// };
///
/// enum rpc_gss_proc_t {
/// RPCSEC_GSS_DATA = 0,
/// RPCSEC_GSS_INIT = 1,
/// RPCSEC_GSS_CONTINUE_INIT = 2,
/// RPCSEC_GSS_DESTROY = 3,
/// RPCSEC_GSS_BIND_CHANNEL = 4, /* Not used */
/// RPCSEC_GSS_CREATE = 5, /* New */
/// RPCSEC_GSS_LIST = 6 /* New */
/// };
///
/// struct rpc_gss_cred_vers_1_t {
/// rpc_gss_proc_t gss_proc; /* Control procedure */
/// unsigned int seq_num; /* Sequence number */
/// rpc_gss_service_t service; /* Service used */
/// opaque handle<>; /* Context handle */
/// };
///
/// const RPCSEC_GSS_VERS_1 = 1;
/// const RPCSEC_GSS_VERS_2 = 2;
/// const RPCSEC_GSS_VERS_3 = 3; /* New */
///
/// union rpc_gss_cred_t switch (unsigned int rgc_version) {
/// case RPCSEC_GSS_VERS_1:
/// case RPCSEC_GSS_VERS_2:
/// case RPCSEC_GSS_VERS_3: /* New */
/// rpc_gss_cred_vers_1_t rgc_cred_v1;
/// };
///
<CODE ENDS>
<span class="grey">Adamson & Williams Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
As seen above, the RPCSEC_GSSv3 credential has the same format as the
RPCSEC_GSSv1 [<a href="./rfc2203" title=""RPCSEC_GSS Protocol Specification"">RFC2203</a>] and RPCSEC_GSSv2 [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>] credential.
Setting the rgc_version field to 3 indicates that the initiator and
target support the new RPCSEC_GSSv3 control procedures.
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. RPCSEC_GSS_BIND_CHANNEL Operation</span>
RPCSEC_GSSv3 provides a channel-binding assertion that replaces the
RPCSEC_GSSv2 RPCSEC_GSS_BIND_CHANNEL operation.
The RPCSEC_GSS_BIND_CHANNEL operation is not supported on RPCSEC_GSS
version 3 handles. If a server receives an RPCSEC_GSS_BIND_CHANNEL
operation on an RPCSEC_GSSv3 handle, it MUST return a reply status of
MSG_ACCEPTED with an accept_stat of PROC_UNAVAIL [<a href="./rfc5531" title=""RPC: Remote Procedure Call Protocol Specification Version 2"">RFC5531</a>].
<span class="h3"><a class="selflink" id="section-2.6" href="#section-2.6">2.6</a>. New auth_stat Values</span>
RPCSEC_GSSv3 requires the addition of several values to the auth_stat
enumerated type definition. The use of these new auth_stat values is
explained throughout this document.
enum auth_stat {
...
/*
* RPCSEC_GSSv3 errors
*/
RPCSEC_GSS_INNER_CREDPROBLEM = 15,
RPCSEC_GSS_LABEL_PROBLEM = 16,
RPCSEC_GSS_PRIVILEGE_PROBLEM = 17,
RPCSEC_GSS_UNKNOWN_MESSAGE = 18
};
<span class="h3"><a class="selflink" id="section-2.7" href="#section-2.7">2.7</a>. New Control Procedures</span>
There are two new RPCSEC_GSSv3 control procedures: RPCSEC_GSS_CREATE
and RPCSEC_GSS_LIST.
The RPCSEC_GSS_CREATE procedure binds any combination of assertions
-- multi-principal authentication, labels, structured privileges, or
channel bindings -- to a new RPCSEC_GSSv3 context returned in the
rgss3_create_res rcr_handle field.
The RPCSEC_GSS_LIST procedure queries the target for supported
assertions.
<span class="grey">Adamson & Williams Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
RPCSEC_GSS version 3 control messages are similar to the RPCSEC_GSS
version 1 and version 2 RPCSEC_GSS_DESTROY control message (see
<a href="./rfc2203#section-5.4">Section 5.4 of [RFC2203]</a>) in that the sequence number in the request
must be valid and the header checksum in the verifier must be valid.
As in RPCSEC_GSS version 1 and version 2, the RPCSEC_GSS version 3
control messages may contain call data following the verifier in the
body of the NULLPROC procedure. In other words, they look a lot like
an RPCSEC_GSS data message with the header procedure set to NULLPROC.
The client MUST use one of the following security services to protect
the RPCSEC_GSS_CREATE or RPCSEC_GSS_LIST control message:
o rpc_gss_svc_integrity
o rpc_gss_svc_privacy
Specifically, the client MUST NOT use rpc_gss_svc_none.
RPCSEC_GSS_LIST can also use rpc_gss_svc_channel_prot (see
RPCSEC_GSSv2 [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>]) if the request is sent using an RPCSEC_GSSv3
child handle with channel bindings enabled as described in
<a href="#section-2.7.1.2">Section 2.7.1.2</a>.
<span class="grey">Adamson & Williams Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h4"><a class="selflink" id="section-2.7.1" href="#section-2.7.1">2.7.1</a>. New Control Procedure - RPCSEC_GSS_CREATE</span>
<CODE BEGINS>
/// struct rgss3_create_args {
/// rgss3_gss_mp_auth *rca_mp_auth;
/// rgss3_chan_binding *rca_chan_bind_mic;
/// rgss3_assertion_u rca_assertions<>;
/// };
///
/// struct rgss3_create_res {
/// opaque rcr_handle<>;
/// rgss3_gss_mp_auth *rcr_mp_auth;
/// rgss3_chan_binding *rcr_chan_bind_mic;
/// rgss3_assertion_u rcr_assertions<>;
/// };
///
/// enum rgss3_assertion_type {
/// LABEL = 0,
/// PRIVS = 1
/// };
///
/// union rgss3_assertion_u
/// switch (rgss3_assertion_type atype) {
/// case LABEL:
/// rgss3_label rau_label;
/// case PRIVS:
/// rgss3_privs rau_privs;
/// default:
/// opaque rau_ext<>;
/// };
///
<CODE ENDS>
The call data for an RPCSEC_GSS_CREATE request consists of an
rgss3_create_args, which binds one or more items of several kinds to
the returned rcr_handle RPCSEC_GSSv3 context handle (the child
handle):
o Multi-principal authentication: another RPCSEC_GSS context handle
o A channel binding
o Authorization assertions: labels and/or privileges
<span class="grey">Adamson & Williams Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
The reply to this message consists of either an error or an
rgss3_create_res structure. As noted in Sections <a href="#section-2.7.1.3">2.7.1.3</a> and
2.7.1.4, successful rgss3_assertions are enumerated in rcr_assertions
and are REQUIRED to be enumerated in the same order as they appeared
in the rca_assertions argument.
Upon a successful RPCSEC_GSS_CREATE, both the client and the server
need to associate the resultant child rcr_handle context handle with
the parent context handle in their GSS context caches so as to be
able to reference the parent context given the child context handle.
RPCSEC_GSSv3 child handles MUST be destroyed upon the destruction of
the associated parent handle.
Server implementation and policy MAY result in labels, privileges,
and identities being mapped to concepts and values that are local to
the server. Server policies should take into account the identity of
the client and/or user as authenticated via the GSS-API.
<span class="h5"><a class="selflink" id="section-2.7.1.1" href="#section-2.7.1.1">2.7.1.1</a>. Multi-Principal Authentication</span>
<CODE BEGINS>
///
/// struct rgss3_gss_mp_auth {
/// opaque rgmp_handle<>; /* Inner handle */
/// opaque rgmp_rpcheader_mic<>;
/// };
///
<CODE ENDS>
RPCSEC_GSSv3 clients MAY assert a multi-principal authentication of
the RPC client host principal and a user principal. This feature is
needed, for example, when an RPC client host wishes to use authority
assertions that the server may only grant if a user and an RPC client
host are authenticated together to the server. Thus, a server may
refuse to grant requested authority to a user acting alone (e.g., via
an unprivileged user-space program) or to an RPC client host acting
alone (e.g., when an RPC client host is acting on behalf of a user)
but may grant requested authority to an RPC client host acting on
behalf of a user if the server identifies the user and trusts the RPC
client host.
<span class="grey">Adamson & Williams Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
It is assumed that an unprivileged user-space program would not have
access to RPC client host credentials needed to establish a GSS-API
security context authenticating the RPC client host to the server;
therefore, an unprivileged user-space program could not create an
RPCSEC_GSSv3 RPCSEC_GSS_CREATE message that successfully binds an RPC
client host and a user security context.
In addition to the parent handle (<a href="#section-2">Section 2</a>), the multi-principal
authentication call data has an RPCSEC_GSS version 3 handle
referenced via the rgmp_handle field termed the "inner" handle.
Clients using RPCSEC_GSSv3 multi-principal authentication MUST use an
RPCSEC_GSSv3 context handle that corresponds to a GSS-API security
context that authenticates the RPC client host for the parent handle.
The inner context handle of the multi-principal authentication
assertion MUST use an RPCSEC_GSSv3 context handle that corresponds to
a GSS-API security context that authenticates the user. The reverse
(parent handle authenticates user, inner context handle authenticates
an RPC client host) MUST NOT be used. Other multi-principal parent
and inner context handle uses might eventually make sense, but they
would need to be introduced in a new revision of the RPCSEC_GSS
protocol.
The child context handle returned by a successful multi-principal
assertion binds the inner RPCSEC_GSSv3 context handle to the parent
RPCSEC_GSS context handle and MUST be treated by servers as
authenticating the GSS-API initiator principal authenticated by the
inner context handle's GSS-API security context. This principal may
be mapped to a server-side notion of user or principal.
Multi-principal binding is done by including an assertion of type
rgss3_gss_mp_auth in the RPCSEC_GSS_CREATE rgss3_create_args call
data. The inner context handle is placed in the rgmp_handle field.
A MIC of the RPC header, up to and including the credential, is
computed using the GSS-API security context associated with the inner
context handle and is placed in the rgmp_rpcheader_mic field. Note
that the rgmp_rpcheader_mic only identifies the client host GSS
context by its context handle (the parent context handle) in the RPC
header.
An RPCSEC_GSS_CREATE control procedure with a multi-principal
authentication payload MUST use the rpc_gss_svc_privacy security
service for protection. This prevents an attacker from intercepting
the RPCSEC_GSS_CREATE control procedure, reassigning the (parent)
context handle, and stealing the user's identity.
<span class="grey">Adamson & Williams Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
The target verifies the multi-principal authentication by first
confirming that the parent context used is an RPC client host
context; the target then verifies the rgmp_rpcheader_mic using the
GSS-API security context associated with the rgmp_handle field.
On successful verification, the rgss3_gss_mp_auth field in the
rgss3_create_res reply MUST be filled in with the inner RPCSEC_GSSv3
context handle as the rgmp_handle and a MIC computed over the RPC
reply header (see <a href="#section-2.3">Section 2.3</a>) using the GSS-API security context
associated with the inner handle.
On failure, the rgss3_gss_mp_auth field is not sent
(rgss3_gss_mp_auth is an optional field). A MSG_DENIED reply to the
RPCSEC_GSS_CREATE call is formulated as usual.
As described in <a href="./rfc2203#section-5.3.3.3">Section 5.3.3.3 of [RFC2203]</a>, the server maintains a
list of contexts for the clients that are currently in session with
it. When a client request comes in, there may not be a context
corresponding to its handle. When this occurs on an
RPCSEC_GSS3_CREATE request processing of the parent handle, the
server rejects the request with a reply status of MSG_DENIED with the
reject_stat of AUTH_ERROR and with an auth_stat value of
RPCSEC_GSS_CREDPROBLEM.
A new value, RPCSEC_GSS_INNER_CREDPROBLEM, has been added to the
auth_stat type. With a multi-principal authorization request, the
server must also have a context corresponding to the inner context
handle. When the server does not have a context handle corresponding
to the inner context handle of a multi-principal authorization
request, the server sends a reply status of MSG_DENIED with the
reject_stat of AUTH_ERROR and with an auth_stat value of
RPCSEC_GSS_INNER_CREDPROBLEM.
When processing the multi-principal authentication request, if the
GSS_VerifyMIC() call on the rgmp_rpcheader_mic fails to return
GSS_S_COMPLETE, the server sends a reply status of MSG_DENIED with
the reject_stat of AUTH_ERROR and with an auth_stat value of
RPCSEC_GSS_INNER_CREDPROBLEM.
<span class="grey">Adamson & Williams Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h5"><a class="selflink" id="section-2.7.1.2" href="#section-2.7.1.2">2.7.1.2</a>. Channel Binding</span>
<CODE BEGINS>
///
/// typedef opaque rgss3_chan_binding<>;
///
<CODE ENDS>
RPCSEC_GSSv3 provides a different way to do channel binding than
RPCSEC_GSSv2 [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>]. Specifically:
a. RPCSEC_GSSv3 builds on RPCSEC_GSSv1 by reusing existing,
established context handles rather than providing a different RPC
security flavor for establishing context handles.
b. Channel-bindings data is not hashed because there is now general
agreement that it is the secure channel's responsibility to
produce channel-bindings data of manageable size.
(a) is useful in keeping RPCSEC_GSSv3 simple in general, not just for
channel binding. (b) is useful in keeping RPCSEC_GSSv3 simple
specifically for channel binding.
Channel binding is accomplished as follows. The client prefixes the
channel-bindings data octet string with the channel type as described
in [<a href="./rfc5056" title=""On the Use of Channel Bindings to Secure Channels"">RFC5056</a>]; then, the client calls GSS_GetMIC() to get a MIC of the
resulting octet string, using the parent RPCSEC_GSSv3 context
handle's GSS-API security context. The MIC is then placed in the
rca_chan_bind_mic field of RPCSEC_GSS_CREATE arguments
(rgss3_create_args).
If the rca_chan_bind_mic field of the arguments of an
RPCSEC_GSS_CREATE control message is set, then the server MUST verify
the client's channel-binding MIC if the server supports this feature.
If channel-binding verification succeeds, then the server MUST
generate a new MIC of the same channel bindings and place it in the
rcr_chan_bind_mic field of the RPCSEC_GSS_CREATE rgss3_create_res
results. If channel-binding verification fails or the server doesn't
support channel binding, then the server MUST indicate this in its
reply by not including an rgss3_chan_binding value in
rgss3_create_res (rgss3_chan_binding is an optional field).
The client MUST verify the result's rcr_chan_bind_mic value by
calling GSS_VerifyMIC() with the given MIC and the channel-bindings
data (including the channel-type prefix). If client-side channel-
binding verification fails, then the client MUST call
<span class="grey">Adamson & Williams Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
RPCSEC_GSS_DESTROY. If the client requested channel binding but the
server did not include an rcr_chan_binding_mic field in the results,
then the client MAY continue to use the resulting context handle as
though channel binding had never been requested. If the client
considers channel binding critical, it MUST call RPCSEC_GSS_DESTROY.
As per RPCSEC_GSSv2 [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>]:
Once a successful [channel-binding] procedure has been performed
on an [RPCSEC_GSSv3] context handle, the initiator's
implementation may map application requests for rpc_gss_svc_none
and rpc_gss_svc_integrity to rpc_gss_svc_channel_prot credentials.
And if the secure channel has privacy enabled, requests for
rpc_gss_svc_privacy can also be mapped to
rpc_gss_svc_channel_prot.
Any RPCSEC_GSSv3 child context handle that has been bound to a secure
channel in this way SHOULD be used only with the
rpc_gss_svc_channel_prot and SHOULD NOT be used with rpc_gss_svc_none
or rpc_gss_svc_integrity -- if the secure channel does not provide
privacy protection, then the client MAY use rpc_gss_svc_privacy where
privacy protection is needed or desired.
<span class="h5"><a class="selflink" id="section-2.7.1.3" href="#section-2.7.1.3">2.7.1.3</a>. Label Assertions</span>
<CODE BEGINS>
/// struct rgss3_label {
/// rgss3_lfs rl_lfs;
/// opaque rl_label<>;
/// };
///
/// struct rgss3_lfs {
/// unsigned int rlf_lfs_id;
/// unsigned int rlf_pi_id;
/// };
///
<CODE ENDS>
The client discovers, via the RPCSEC_GSS_LIST control message, which
LFSs the server supports. Full Mode MAC is enabled when an
RPCSEC_GSS version 3 process subject label assertion is combined with
a file object label provided by the NFSv4.2 sec_label attribute.
Label encoding is specified to mirror the NFSv4.2 sec_label attribute
described in <a href="./rfc7862#section-12.2.4">Section 12.2.4 of [RFC7862]</a>. The LFS is an identifier
used by the client to establish the syntactic format of the security
<span class="grey">Adamson & Williams Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
label and the semantic meaning of its components. The Policy
Identifier (PI) is an optional part of the definition of an LFS that
allows clients and the server to identify specific security policies.
The opaque label field (rgss3_label) is dependent on the MAC model to
interpret and enforce.
If a label itself requires privacy protection (i.e., requires that
the user can assert that the label is a secret), then the client MUST
use the rpc_gss_svc_privacy protection service for the
RPCSEC_GSS_CREATE request.
RPCSEC_GSSv3 clients MAY assert a set of subject security labels in
some LFS by binding a label assertion to the RPCSEC_GSSv3 child
context handle. This is done by including an assertion of type
rgss3_label in the RPCSEC_GSS_CREATE rgss3_create_args rca_assertions
call data. The label assertion payload is the set of subject labels
asserted by the calling NFS client process. The resultant child
context is used for NFS requests asserting the client process subject
labels. The NFS server process that handles such requests then
asserts the (client) process subject label(s) as it attempts to
access a file that has associated Labeled NFS object labels.
Servers that support labeling in the requested LFS MAY map the
requested subject label to a different subject label as a result of
server-side policy evaluation.
The labels that are accepted by the target and bound to the
RPCSEC_GSSv3 context MUST be enumerated in the rcr_assertions field
of the rgss3_create_res RPCSEC_GSS_CREATE reply.
Servers that do not support labeling or that do not support the
requested LFS reject the label assertion with a reply status of
MSG_DENIED, a reject_status of AUTH_ERROR, and an auth_stat of
RPCSEC_GSS_LABEL_PROBLEM.
<span class="grey">Adamson & Williams Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h5"><a class="selflink" id="section-2.7.1.4" href="#section-2.7.1.4">2.7.1.4</a>. Structured Privilege Assertions</span>
<CODE BEGINS>
///
/// typedef opaque utf8string<>; /* UTF-8 encoding */
/// typedef utf8string utf8str_cs; /* Case-sensitive UTF-8 */
///
/// struct rgss3_privs {
/// utf8str_cs rp_name<>;
/// opaque rp_privilege<>;
/// };
<CODE ENDS>
A structured privilege is a capability defined by a specific RPC
application. To support the assertion of this privilege, by a client
using the application, in a server that also supports the
application, the application may define a private data structure that
is understood by clients and servers implementing the RPC
application.
RPCSEC_GSSv3 clients MAY assert a structured privilege by binding the
privilege to the RPCSEC_GSSv3 context handle. This is done by
including an assertion of type rgss3_privs in the RPCSEC_GSS_CREATE
rgss3_create_args rca_assertions call data.
The privilege is identified by the description string that is used by
RPCSEC_GSSv3 to identify the privilege and communicate the private
data between the relevant RPC application-specific code without
needing to be aware of the details of the structure used. Thus, as
far as RPCSEC_GSSv3 is concerned, the defined structure is passed
between client and server as opaque data encoded in the
rpc_gss3_privs rp_privilege field.
Encoding, server verification, and any server policies for structured
privileges are described by the RPC application definition. The
rp_name field of rpc_gss3_privs carries the description string used
to identify and list the privilege. The utf8str_cs definition is
from [<a href="./rfc7530" title=""Network File System (NFS) Version 4 Protocol"">RFC7530</a>].
A successful structured privilege assertion MUST be enumerated in the
rcr_assertions field of the rgss3_create_res RPCSEC_GSS_CREATE reply.
If a server receives a structured privilege assertion that it does
not recognize, the assertion is rejected with a reply status of
MSG_DENIED, a reject_status of AUTH_ERROR, and an auth_stat of
RPCSEC_GSS_UNKNOWN_MESSAGE.
<span class="grey">Adamson & Williams Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
It is assumed that a client asserting more than one structured
privilege to be bound to a context handle would not require all the
privilege assertions to succeed.
The server MUST NOT reject RPCSEC_GSS_CREATE requests containing
supported structured privilege assertions, even if some of those
assertions are rejected (e.g., for local policy reasons).
If a server receives an RPCSEC_GSS_CREATE request containing one or
more unsupported structured privilege assertions, the request MUST be
rejected with a reply status of MSG_DENIED, a reject_status of
AUTH_ERROR, and an auth_stat of RPCSEC_GSS_PRIVILEGE_PROBLEM.
<a href="./rfc7862#section-4.9.1.1">Section 4.9.1.1 of [RFC7862]</a> ("Inter-Server Copy via ONC RPC with
RPCSEC_GSSv3") shows an example of structured privilege definition
and use.
<span class="h4"><a class="selflink" id="section-2.7.2" href="#section-2.7.2">2.7.2</a>. New Control Procedure - RPCSEC_GSS_LIST</span>
<CODE BEGINS>
/// enum rgss3_list_item {
/// LABEL = 0,
/// PRIVS = 1
/// };
///
/// struct rgss3_list_args {
/// rgss3_list_item rla_list_what<>;
/// };
///
/// union rgss3_list_item_u
/// switch (rgss3_list_item itype) {
/// case LABEL:
/// rgss3_label rli_labels<>;
/// case PRIVS:
/// rgss3_privs rli_privs<>;
/// default:
/// opaque rli_ext<>;
/// };
///
/// typedef rgss3_list_item_u rgss3_list_res<>;
///
<CODE ENDS>
The call data for an RPCSEC_GSS_LIST request consists of a list of
integers (rla_list_what) indicating what assertions are to be listed,
and the reply consists of an error or the requested list.
<span class="grey">Adamson & Williams Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
The result of requesting a list of rgss3_list_item LABEL objects is a
list of LFSs supported by the server. The client can then use the
LFS list to assert labels via the RPCSEC_GSS_CREATE label assertions.
See <a href="#section-2.7.1.3">Section 2.7.1.3</a>.
<span class="h3"><a class="selflink" id="section-2.8" href="#section-2.8">2.8</a>. Extensibility</span>
Assertion types may be added in the future by adding arms to the
"rgss3_assertion_u" union (<a href="#section-2.7.1">Section 2.7.1</a>) and the "rgss3_list_item_u"
union (<a href="#section-2.7.2">Section 2.7.2</a>). Examples of other potential assertion types
include:
o Client-side assertions of identity:
* Primary client/user identity.
* Supplementary group memberships of the client/user, including
support for specifying deltas to the membership list as seen on
the server.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Operational Recommendation for Deployment</span>
RPCSEC_GSSv3 is a superset of RPCSEC_GSSv2 [<a href="./rfc5403" title=""RPCSEC_GSS Version 2"">RFC5403</a>], which in turn
is a superset of RPCSEC_GSSv1 [<a href="./rfc2203" title=""RPCSEC_GSS Protocol Specification"">RFC2203</a>], and so can be used in all
situations where RPCSEC_GSSv2 is used, or where RPCSEC_GSSv1 is used
and channel-bindings functionality is not needed. RPCSEC_GSSv3
should be used when the new functionality is needed.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Security Considerations</span>
This entire document deals with security issues.
The RPCSEC_GSSv3 protocol allows for client-side assertions of data
that is relevant to server-side authorization decisions. These
assertions must be evaluated by the server in the context of whether
the client and/or user are authenticated, whether multi-principal
authentication was used, whether the client is trusted, what ranges
of assertions are allowed for the client and the user (separately or
together), and any relevant server-side policy.
The security semantics of assertions carried by RPCSEC_GSSv3 are
application protocol-specific.
Note that RPCSEC_GSSv3 is not a complete solution for labeling: it
conveys the labels of actors but not the labels of objects. RPC
application protocols may require extending in order to carry object
label information.
<span class="grey">Adamson & Williams Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
There may be interactions with NFSv4's callback security scheme and
NFSv4.1's [<a href="./rfc5661" title=""Network File System (NFS) Version 4 Minor Version 1 Protocol"">RFC5661</a>] GSS SSV (Secret State Verifier) mechanisms.
Specifically, the NFSv4 callback scheme requires that the server
initiate GSS-API security contexts, which does not work well in
practice; in the context of client-side processes running as the same
user but with different privileges and security labels, the NFSv4
callback security scheme seems particularly unlikely to work well.
NFSv4.1 has the server use an existing, client-initiated RPCSEC_GSS
context handle to protect server-initiated callback RPCs. The
NFSv4.1 callback security scheme lacks all the problems of the NFSv4
scheme; however, it is important that the server pick an appropriate
RPCSEC_GSS context handle to protect any callbacks. Specifically, it
is important that the server use RPCSEC_GSS context handles that
authenticate the client to protect any callbacks related to server
state initiated by RPCs protected by RPCSEC_GSSv3 contexts.
As described in <a href="./rfc5661#section-2.10.10">Section 2.10.10 of [RFC5661]</a>, the client is permitted
to associate multiple RPCSEC_GSS handles with a single SSV GSS
context. RPCSEC_GSSv3 handles will work well with SSV in that the
man-in-the-middle attacks described in <a href="./rfc5661#section-2.10.10">Section 2.10.10 of [RFC5661]</a>
are solved by the new reply verifier (<a href="#section-2.3">Section 2.3</a>). Using an
RPCSEC_GSSv3 handle backed by a GSS-SSV mechanism context as a parent
handle in an RPCSEC_GSS_CREATE call, while permitted, is complicated
by the lifetime rules of SSV contexts and their associated RPCSEC_GSS
handles.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. IANA Considerations</span>
This section uses terms that are defined in [<a href="./rfc5226" title="">RFC5226</a>].
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. New RPC Authentication Status Numbers</span>
The following new RPC Authentication Status Numbers have been added
to the IANA registry:
o RPCSEC_GSS_INNER_CREDPROBLEM (15) "No credentials for
multi-principal assertion inner context user". See
<a href="#section-2.7.1.1">Section 2.7.1.1</a>.
o RPCSEC_GSS_LABEL_PROBLEM (16) "Problem with label assertion".
See <a href="#section-2.7.1.3">Section 2.7.1.3</a>.
o RPCSEC_GSS_PRIVILEGE_PROBLEM (17) "Problem with structured
privilege assertion". See <a href="#section-2.7.1.4">Section 2.7.1.4</a>.
o RPCSEC_GSS_UNKNOWN_MESSAGE (18) "Unknown structured privilege
assertion". See <a href="#section-2.7.1.4">Section 2.7.1.4</a>.
<span class="grey">Adamson & Williams Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Structured Privilege Name Definitions</span>
IANA has created a registry called the "RPCSEC_GSS Structured
Privilege Names Registry".
Structured privilege assertions (<a href="#section-2.7.1.4">Section 2.7.1.4</a>) are defined by a
specific RPC application. The namespace identifiers for these
assertions (the rp_name) are defined as string names. The
RPCSEC_GSSv3 protocol does not define the specific assignment of the
namespace for these structured privilege assertion names. The IANA
registry promotes interoperability where common interests exist.
While RPC application developers are allowed to define and use
structured privileges as needed, they are encouraged to register
structured privilege assertion names with IANA.
The registry is to be maintained using the Standards Action policy as
defined in <a href="./rfc5226#section-4.1">Section 4.1 of [RFC5226]</a>.
Under the RPCSEC_GSS version 3 specification, the name of a
structured privilege can in theory be up to 2^32 - 1 bytes in length,
but in practice RPC application clients and servers will be unable to
handle a string that long. IANA should reject any assignment request
with a structured privilege name that exceeds 128 UTF-8 characters.
To give the IESG the flexibility to set up bases of assignment of
Experimental Use, the prefix "EXPE" is Reserved. The structured
privilege with a zero-length name is Reserved.
The prefix "PRIV" is allocated for Private Use. A site that wants to
make use of unregistered named attributes without risk of conflicting
with an assignment in IANA's registry should use the prefix "PRIV" in
all of its structured privilege assertion names.
Because some RPC application clients and servers have case-
insensitive semantics, the fifteen additional lower-case and mixed-
case permutations of each of "EXPE" and "PRIV" are Reserved (e.g.,
"expe", "expE", and "exPe" are Reserved). Similarly, IANA must not
allow two assignments that would conflict if both structured
privilege names were converted to a common case.
<span class="grey">Adamson & Williams Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
The registry of structured privilege names is a list of assignments,
each containing three fields for each assignment.
1. A US-ASCII string name that is the actual name of the structured
privilege. This name must be unique. This string name can be 1
to 128 UTF-8 characters long.
2. A reference to the specification of the RPC-application-defined
structured privilege. The reference can consume up to 256 bytes
(or more if IANA permits).
3. The point of contact of the registrant. The point of contact can
consume up to 256 bytes (or more if IANA permits).
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. Initial Registry</span>
The initial registry consists of the three structured privileges
defined in [<a href="./rfc7862" title=""Network File System (NFS) Version 4 Minor Version 2 Protocol"">RFC7862</a>].
1. NAME: copy_to_auth, REFERENCE: <a href="./rfc7862">RFC 7862</a>, CONTACT: William
A.(Andy) Adamson, andros@netapp.com
2. NAME: copy_from_auth, REFERENCE: <a href="./rfc7862">RFC 7862</a>, CONTACT: William
A.(Andy) Adamson, andros@netapp.com
3. NAME: copy_confirm_auth, REFERENCE: <a href="./rfc7862">RFC 7862</a>, CONTACT: William
A.(Andy) Adamson, andros@netapp.com
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>. Updating Registrations</span>
The registrant is always permitted to update the point of contact
field. To make any other change will require Expert Review or IESG
Approval.
<span class="grey">Adamson & Williams Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. References</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC2203">RFC2203</a>] Eisler, M., Chiu, A., and L. Ling, "RPCSEC_GSS Protocol
Specification", <a href="./rfc2203">RFC 2203</a>, DOI 10.17487/RFC2203,
September 1997, <<a href="http://www.rfc-editor.org/info/rfc2203">http://www.rfc-editor.org/info/rfc2203</a>>.
[<a id="ref-RFC2743">RFC2743</a>] Linn, J., "Generic Security Service Application Program
Interface Version 2, Update 1", <a href="./rfc2743">RFC 2743</a>,
DOI 10.17487/RFC2743, January 2000,
<<a href="http://www.rfc-editor.org/info/rfc2743">http://www.rfc-editor.org/info/rfc2743</a>>.
[<a id="ref-RFC4506">RFC4506</a>] Eisler, M., Ed., "XDR: External Data Representation
Standard", STD 67, <a href="./rfc4506">RFC 4506</a>, DOI 10.17487/RFC4506,
May 2006, <<a href="http://www.rfc-editor.org/info/rfc4506">http://www.rfc-editor.org/info/rfc4506</a>>.
[<a id="ref-RFC5056">RFC5056</a>] Williams, N., "On the Use of Channel Bindings to Secure
Channels", <a href="./rfc5056">RFC 5056</a>, DOI 10.17487/RFC5056, November 2007,
<<a href="http://www.rfc-editor.org/info/rfc5056">http://www.rfc-editor.org/info/rfc5056</a>>.
[<a id="ref-RFC5403">RFC5403</a>] Eisler, M., "RPCSEC_GSS Version 2", <a href="./rfc5403">RFC 5403</a>,
DOI 10.17487/RFC5403, February 2009,
<<a href="http://www.rfc-editor.org/info/rfc5403">http://www.rfc-editor.org/info/rfc5403</a>>.
[<a id="ref-RFC5661">RFC5661</a>] Shepler, S., Ed., Eisler, M., Ed., and D. Noveck, Ed.,
"Network File System (NFS) Version 4 Minor Version 1
Protocol", <a href="./rfc5661">RFC 5661</a>, DOI 10.17487/RFC5661, January 2010,
<<a href="http://www.rfc-editor.org/info/rfc5661">http://www.rfc-editor.org/info/rfc5661</a>>.
[<a id="ref-RFC7530">RFC7530</a>] Haynes, T., Ed., and D. Noveck, Ed., "Network File System
(NFS) Version 4 Protocol", <a href="./rfc7530">RFC 7530</a>, DOI 10.17487/RFC7530,
March 2015, <<a href="http://www.rfc-editor.org/info/rfc7530">http://www.rfc-editor.org/info/rfc7530</a>>.
[<a id="ref-RFC7862">RFC7862</a>] Haynes, T., "Network File System (NFS) Version 4 Minor
Version 2 Protocol", <a href="./rfc7862">RFC 7862</a>, DOI 10.17487/RFC7862,
November 2016, <<a href="http://www.rfc-editor.org/info/rfc7862">http://www.rfc-editor.org/info/rfc7862</a>>.
<span class="grey">Adamson & Williams Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7861">RFC 7861</a> NFSv4 RPC Security November 2016</span>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Informative References</span>
[<a id="ref-AFS-RXGK">AFS-RXGK</a>]
Wilkinson, S. and B. Kaduk, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Integrating+rxgk+with+AFS%22'>"Integrating rxgk with AFS"</a>,
Work in Progress, <a href="./draft-wilkinson-afs3-rxgk-afs-08">draft-wilkinson-afs3-rxgk-afs-08</a>,
May 2015.
[<a id="ref-RFC4949">RFC4949</a>] Shirey, R., "Internet Security Glossary, Version 2",
FYI 36, <a href="./rfc4949">RFC 4949</a>, DOI 10.17487/RFC4949, August 2007,
<<a href="http://www.rfc-editor.org/info/rfc4949">http://www.rfc-editor.org/info/rfc4949</a>>.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
DOI 10.17487/RFC5226, May 2008,
<<a href="http://www.rfc-editor.org/info/rfc5226">http://www.rfc-editor.org/info/rfc5226</a>>.
[<a id="ref-RFC5531">RFC5531</a>] Thurlow, R., "RPC: Remote Procedure Call Protocol
Specification Version 2", <a href="./rfc5531">RFC 5531</a>, DOI 10.17487/RFC5531,
May 2009, <<a href="http://www.rfc-editor.org/info/rfc5531">http://www.rfc-editor.org/info/rfc5531</a>>.
Acknowledgments
Andy Adamson would like to thank NetApp, Inc. for its funding of his
time on this project.
We thank Lars Eggert, Mike Eisler, Ben Kaduk, Bruce Fields, Tom
Haynes, and Dave Noveck for their most helpful reviews.
Authors' Addresses
William A. (Andy) Adamson
NetApp
3629 Wagner Ridge Ct.
Ann Arbor, MI 48103
United States of America
Phone: +1 734 665 1204
Email: andros@netapp.com
Nico Williams
cryptonector.com
13115 Tamayo Dr.
Austin, TX 78729
United States of America
Email: nico@cryptonector.com
Adamson & Williams Standards Track [Page 26]
</pre>
|