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
|
<pre>Internet Engineering Task Force (IETF) A. Freytag
Request for Comments: 8228 August 2017
Category: Informational
ISSN: 2070-1721
<span class="h1">Guidance on Designing Label Generation Rulesets (LGRs) Supporting</span>
<span class="h1">Variant Labels</span>
Abstract
Rules for validating identifier labels and alternate representations
of those labels (variants) are known as Label Generation Rulesets
(LGRs); they are used for the implementation of identifier systems
such as Internationalized Domain Names (IDNs). This document
describes ways to design LGRs to support variant labels. In
designing LGRs, it is important to ensure that the label generation
rules are consistent and well behaved in the presence of variants.
The design decisions can then be expressed using the XML
representation of LGRs that is defined in <a href="./rfc7940">RFC 7940</a>.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Engineering Task Force
(IETF). It has been approved for publication by the Internet
Engineering Steering Group (IESG). Not all documents approved by the
IESG are a candidate for any level of Internet Standard; see
<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/rfc8228">http://www.rfc-editor.org/info/rfc8228</a>.
<span class="grey">Freytag Informational [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
Copyright Notice
Copyright (c) 2017 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.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Variant Relations . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3">3</a>. Symmetry and Transitivity . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-4">4</a>. A Word on Notation . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-5">5</a>. Variant Mappings . . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-6">6</a>. Variant Labels . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-7">7</a>. Variant Types and Label Dispositions . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-8">8</a>. Allocatable Variants . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-9">9</a>. Blocked Variants . . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-10">10</a>. Pure Variant Labels . . . . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-11">11</a>. Reflexive Variants . . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-12">12</a>. Limiting Allocatable Variants by Subtyping . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-13">13</a>. Allowing Mixed Originals . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-14">14</a>. Handling Out-of-Repertoire Variants . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-15">15</a>. Conditional Variants . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-16">16</a>. Making Conditional Variants Well Behaved . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-17">17</a>. Variants for Sequences . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-18">18</a>. Corresponding XML Notation . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-19">19</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-20">20</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-21">21</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-21.1">21.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-21.2">21.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<span class="grey">Freytag Informational [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Label Generation Rulesets (LGRs) that define the set of permissible
labels may be applied to identifier systems that rely on labels, such
as the Domain Name System (DNS) [<a href="./rfc1034" title=""Domain names - concepts and facilities"">RFC1034</a>] [<a href="./rfc1035" title=""Domain names - implementation and specification"">RFC1035</a>]. To date, LGRs
have mostly been used to define policies for implementing
Internationalized Domain Names (IDNs) using IDNA2008 [<a href="./rfc5890" title=""Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework"">RFC5890</a>]
[<a href="./rfc5891" title=""Internationalized Domain Names in Applications (IDNA): Protocol"">RFC5891</a>] [<a href="./rfc5892" title=""The Unicode Code Points and Internationalized Domain Names for Applications (IDNA)"">RFC5892</a>] [<a href="./rfc5893" title=""Right-to-Left Scripts for Internationalized Domain Names for Applications (IDNA)"">RFC5893</a>] [<a href="./rfc5894" title=""Internationalized Domain Names for Applications (IDNA): Background, Explanation, and Rationale"">RFC5894</a>] in the DNS. This document
aims to discuss the generation of LGRs for such circumstances, but
the techniques and considerations here are almost certainly
applicable to a wider range of internationalized identifiers.
In addition to determining whether a given label is eligible, LGRs
may also define the condition under which alternate representations
of these labels, so-called "variant labels", may exist and their
status (disposition). In the most general sense, variant labels are
typically labels that are either visually or semantically
indistinguishable from another label in the context of the writing
system or script supported by the LGR. Unlike merely similar labels,
where there may be a measurable degree of similarity, variant labels
considered here represent a form of equivalence in meaning or
appearance. What constitutes an appropriate variant in any writing
system or given context, particularly in the DNS, is assumed to have
been determined ahead of time and therefore is not a subject of this
document.
Once identified, variant labels are typically delegated to some
entity together with the applied-for label, or permanently reserved,
based on the disposition derived from the LGR. Correctly defined,
variant labels can improve the security of an LGR, yet successfully
defining variant rules for an LGR so that the result is well behaved
is not always trivial. This document describes the basic
considerations and constraints that must be taken into account and
gives examples of what might be use cases for different types of
variant specifications in an LGR.
This document does not address whether variants are an appropriate
means to solve any given issue or the basis on which they should be
defined. It is intended to explain in more detail the effects of
various declarations and the trade-offs in making design choices. It
implicitly assumes that any LGR will be expressed using the XML
representation defined in [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>] and therefore conforms to any
requirements stated therein. Purely for clarity of exposition,
examples in this document use a more compact notation than the XML
syntax defined in [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>]. However, the reader is expected to have
some familiarity with the concepts described in that RFC (see
<a href="#section-4">Section 4</a>).
<span class="grey">Freytag Informational [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
The user of any identifier system, such as the DNS, interacts with it
in the context of labels; variants are experienced as variant labels,
i.e., two (or more) labels that are functionally "same as" under the
conventions of the writing system used, even though their code point
sequences are different. An LGR specification, on the other hand,
defines variant mappings between code points and, only in a secondary
step, derives the variant labels from these mappings. For a
discussion of this process, see [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>].
The designer of an LGR can control whether some or all of the variant
labels created from an original label should be allocatable, i.e.,
available for allocation (to the original applicant), or whether some
or all of these labels should be blocked instead, i.e., remain not
allocatable (to anyone). This document describes how this choice of
label disposition is accomplished (see <a href="#section-7">Section 7</a>).
The choice of desired label disposition would be based on the
expectations of the users of the particular zone; it is not the
subject of this document. Likewise, this document does not address
the possibility of an LGR defining custom label dispositions.
Instead, this document suggests ways of designing an LGR to achieve
the selected design choice for handling variants in the context of
the two standard label dispositions: "allocatable" and "blocked".
The information in this document is based on operational experience
gained in developing LGRs for a wide number of languages and scripts
using <a href="./rfc7940">RFC 7940</a>. This information is provided here as a benefit to
the wider community. It does not alter or change the specification
found in <a href="./rfc7940">RFC 7940</a> in any way.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Variant Relations</span>
A variant relation is fundamentally a "same as" relation; in other
words, it is an equivalence relation. Now, the strictest sense of
"same as" would be equality, and for any equality, we have both
symmetry
A = B => B = A
and transitivity
A = B and B = C => A = C
<span class="grey">Freytag Informational [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
The variant relation with its functional sense of "same as" must
really satisfy the same constraint. Once we say A is the "same as"
B, we also assert that B is the "same as" A. In this document, the
symbol "~" means "has a variant relation with". Thus, we get
A ~ B => B ~ A
Likewise, if we make the same claim for B and C (B ~ C), then we get
A ~ C, because if B is the "same as" both A and C, then A must be the
"same as" C:
A ~ B and B ~ C => A ~ C
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Symmetry and Transitivity</span>
Not all potential relations between labels constitute equivalence,
and those that do not are not transitive and may not be symmetric.
For example, the degree to which labels are confusable is not
transitive: two labels can be confusingly similar to a third without
necessarily being confusable with each other, such as when the third
one has a shape that is "in between" the other two. In contrast, a
relation based on identical or effectively identical appearance would
meet the criterion of transitivity, and we would consider it a
variant relation. Examples of variant relations include other forms
of equivalence, such as semantic equivalence.
Using [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>], a set of mappings could be defined that is neither
symmetric nor transitive; such a specification would be formally
valid. However, a symmetric and transitive set of mappings is
strongly preferred as a basis for an LGR, not least because of the
benefits from an implementation point of view; for example, if all
mappings are symmetric and transitive, it greatly simplifies the
check for collisions between labels with variants. For this reason,
we will limit the discussion in this document to those relations that
are symmetric and transitive. Incidentally, it is often
straightforward to verify mechanically whether an LGR is symmetric
and/or transitive and to compute any mappings required to make it so
(but see <a href="#section-15">Section 15</a>).
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. A Word on Notation</span>
[<a id="ref-RFC7940">RFC7940</a>] defines an XML schema for Label Generation Rulesets in
general and variant code points and sequences in particular (see
<a href="#section-18">Section 18</a>). That notation is rather verbose and can easily obscure
salient features to anyone not trained to read XML. For this reason,
this document uses a symbolic shorthand notation in presenting the
examples for discussion. This shorthand is merely a didactic tool
<span class="grey">Freytag Informational [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
for presentation and is not intended as an alternative to or
replacement for the XML syntax that is used in formally specifying an
LGR under [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>].
When it comes time to capture the LGR in a formal definition, the
notation used for any of the examples in this document can be
converted to the XML format as described in <a href="#section-18">Section 18</a>.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Variant Mappings</span>
So far, we have treated variant relations as simple "same as"
relations, ignoring that each relation representing equivalence would
consist of a symmetric pair of reciprocal mappings. In this
document, the symbol "-->" means "maps to".
A ~ B => A --> B, B --> A
In an LGR, these mappings are not defined directly between labels but
between code points (or code point sequences; see <a href="#section-17">Section 17</a>). In
the transitive case, given
A ~ B => A --> B, B --> A
A ~ C => A --> C, C --> A
we also get
B ~ C => B --> C, C --> B
for a total of six possible mappings. Conventionally, these are
listed in tables in order of the source code point, like so:
A --> B
A --> C
B --> A
B --> C
C --> A
C --> B
As we can see, A, B, and C can each be mapped two ways.
<span class="grey">Freytag Informational [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Variant Labels</span>
To create a variant label, each code point in the original label is
successively replaced by all variant code points defined by a mapping
from the original code point. For a label AAA (the letter "A" three
times), the variant labels (given the mappings from the transitive
example above) would be
AAB
ABA
ABB
BAA
BAB
BBA
BBB
AAC
...
CCC
So far, we have merely defined what the variant labels are, but we
have not considered their possible dispositions. In the next
section, we discuss how to set up the variant mappings so that some
variant labels are mutually exclusive (blocked), but some may be
allocated to the same applicant as the original label (allocatable).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Variant Types and Label Dispositions</span>
Assume we wanted to allow a variant relation between code points O
and A, and perhaps between O and B or O and C as well. Assuming
transitivity, this would give us:
O ~ A ~ B ~ C
Now, further assume that we would like to distinguish the case where
someone applies for OOO from the case where someone applies for the
label ABC. In this case, we would like to allocate only the applied-
for label OOO, but in the latter case, we would like to also allow
the allocation of either the label OOO or the variant label ABC, or
both, but not of any of the other possible variant labels, like OAO,
BCO, or the like. (A real-world example might be the case where O
represents an unaccented letter, while A, B, and C might represent
various accented forms of the same letter. Because unaccented
letters are a common fallback, there might be a desire to allocate an
unaccented label as a variant, but not the other way around.)
How would we specify such a distinction?
<span class="grey">Freytag Informational [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
The answer lies in labeling the mappings A --> O, B --> O, and C -->
O with the type "allocatable" and the mappings O --> A, O --> B, and
O --> C with the type "blocked". In this document, the symbol "x-->"
means "maps with type blocked", and the symbol "a-->" means "maps
with type allocatable". Thus:
O x--> A
O x--> B
O x--> C
A a--> O
B a--> O
C a--> O
When we generate all permutations of labels, we use mappings with
different types depending on which code points we start from. The
set of all permuted variant labels would be the same, but the
disposition of the variant label depends on which label we start from
(we call that label the "original" or "applied-for" label).
In creating an LGR with variants, all variant mappings should always
be labeled with a type ([<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>] does not formally require a type,
but any well-behaved LGR would be fully typed). By default, these
types correspond directly to the dispositions for variant labels,
with the most restrictive type determining the disposition of the
variant label. However, as we shall see later, it is sometimes
useful to assign types from a wider array of values than the final
dispositions for the labels and then define explicitly how to derive
label dispositions from them.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Allocatable Variants</span>
If we start with AAA and use the mappings from <a href="#section-7">Section 7</a>, the
permutation OOO will be the result of applying the mapping A a--> O
at each code point. That is, only mappings with type "a"
(allocatable) were used. To know whether we can allocate both the
label OOO and the original label AAA, we track the types of the
mappings used in generating the label.
We record the variant types for each of the variant mappings used in
creating the permutation in an ordered list. Such an ordered list of
variant types is called a "variant type list". In running text, we
often show it enclosed in square brackets. For example, [a x -]
means the variant label was derived from a variant mapping with the
"a" variant type in the first code point position, "x" in the second
code point position, and the original code point in the third
position ("-" means "no variant mapping").
<span class="grey">Freytag Informational [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
For our example permutation, we get the following variant type list
(brackets dropped):
AAA --> OOO : a a a
From the variant type list, we derive a "variant type set", denoted
by curly braces, that contains an unordered set of unique variant
types in the variant type list. For the variant type list for the
given permutation, [a a a], the variant type set is { a }, which has
a single element "a".
Deciding whether to allow the allocation of a variant label then
amounts to deriving a disposition for the variant label from the
variant type set created from the variant mappings that were used to
create the label. For example, the derivation
if "all variants" = "a" => set label disposition to "allocatable"
would allow OOO to be allocated, because the types of all variant
mappings used to create that variant label from AAA are "a".
The "all-variants" condition is tolerant of an extra "-" in the
variant set (unlike the "only-variants" condition described in
<a href="#section-10">Section 10</a>). So, had we started with AOA, OAA, or AAO, the variant
set for the permuted variant OOO would have been { a - } because in
each case one of the code points remains the same code point as the
original. The "-" means that because of the absence of a mapping O
--> O, there is no variant type for the O in each of these labels.
The "all-variants" = "a" condition ignores the "-", so using the
derivation from above, we find that OOO is an allocatable variant for
each of the labels AOA, OAA, or AAO.
Allocatable variant labels, especially large numbers of allocatable
variants per label, incur a certain cost to users of the LGR. A
well-behaved LGR will minimize the number of allocatable variants.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Blocked Variants</span>
Blocked variants are not available to another registrant. They
therefore protect the applicant of the original label from someone
else registering a label that is the "same as" under some user-
perceived metric. Blocked variants can be a useful tool even for
scripts for which no allocatable labels are ever defined.
<span class="grey">Freytag Informational [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
If we start with OOO and use the mappings from <a href="#section-7">Section 7</a>, the
permutation AAA will have been the result of applying only mappings
with type "blocked", and we cannot allocate the label AAA, only the
original label OOO. This corresponds to the following derivation:
if "any variants" = "x" => set label disposition to "blocked"
Additionally, to prevent allocating ABO as a variant label for AAA,
we need to make sure that the mapping A --> B has been defined with
type "blocked", as in
A x--> B
so that
AAA --> ABO: - x a.
Thus, the set {x a} contains at least one "x" and satisfies the
derivation of a blocked disposition for ABO when AAA is applied for.
If an LGR results in a symmetric and transitive set of variant
labels, then the task of determining whether a label or its variants
collide with another label or its variants can be implemented very
efficiently. Symmetry and transitivity imply that sets of labels
that are mutual variants of each other are disjoint from all other
such sets. Only labels within the same set can be variants of each
other. Identifying the variant set can be an O(1) operation, and
enumerating all variants is not necessary.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Pure Variant Labels</span>
Now, if we wanted to prevent allocation of AOA when we start from
AAA, we would need a rule disallowing a mix of original code points
and variant code points; this is easily accomplished by use of the
"only-variants" qualifier, which requires that the label consist
entirely of variants and that all the variants are from the same set
of types.
if "only-variants" = "a" => set label disposition to "allocatable"
The two code points A in AOA are not arrived at by variant mappings,
because the code points are unchanged and no variant mappings are
defined for A --> A. So, in our example, the set of variant mapping
types is
AAA --> AOA: - a -
<span class="grey">Freytag Informational [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
but unlike the "all-variants" condition, "only-variants" requires a
variant type set { a } corresponding to a variant type list [a a a]
(no - allowed). By adding a final derivation
else if "any-variants" = "a" => set label disposition to "blocked"
and executing that derivation only on any remaining labels, we
disallow AOA when starting from AAA but still allow OOO.
Derivation conditions are always applied in order, with later
derivations only applying to labels that did not match any earlier
conditions, as indicated by the use of "else" in the last example.
In other words, they form a cascade.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Reflexive Variants</span>
But what if we started from AOA? We would expect the original label
OOO to be allocatable, but, using the mappings from <a href="#section-7">Section 7</a>, the
variant type set would be
AOA --> OOO: a - a
because the middle O is unchanged from the original code point. Here
is where we use a reflexive mapping. Realizing that O is the "same
as" O, we can map it to itself. This is normally redundant, but
adding an explicit reflexive mapping allows us to specify a
disposition on that mapping:
O a--> O
With that, the variant type list for AOA --> OOO becomes:
AOA --> OOO: a a a
and the label OOO again passes the derivation condition
if "only-variants" = "a" => set label disposition to "allocatable"
as desired. This use of reflexive variants is typical whenever
derivations with the "only-variants" qualifier are used. If any code
point uses a reflexive variant, a well-behaved LGR would specify an
appropriate reflexive variant for all code points.
<span class="grey">Freytag Informational [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Limiting Allocatable Variants by Subtyping</span>
As we have seen, the number of variant labels can potentially be
large, due to combinatorics. Sometimes it is possible to divide
variants into categories and to stipulate that only variant labels
with variants from the same category should be allocatable. For some
LGRs, this constraint can be implemented by a rule that disallows
code points from different categories to occur in the same
allocatable label. For other LGRs, the appropriate mechanism may be
dividing the allocatable variants into subtypes.
To recap, in the standard case, a code point C can have (up to) two
types of variant mappings
C x--> X
C a--> A
where a--> means a variant mapping with type "allocatable" and x-->
means "blocked". For the purpose of the following discussion, we
name the target code point with the corresponding uppercase letter.
Subtyping allows us to distinguish among different types of
allocatable variants. For example, we can define three new types:
"s", "t", and "b". Of these, "s" and "t" are mutually incompatible,
but "b" is compatible with either "s" or "t" (in this case, "b"
stands for "both"). A real-world example for this might be variant
mappings appropriate for "simplified" or "traditional" Chinese
variants, or appropriate for both.
With subtypes defined as above, a code point C might have (up to)
four types of variant mappings
C x--> X
C s--> S
C t--> T
C b--> B
and explicit reflexive mappings of one of these types
C s--> C
C t--> C
C b--> C
As before, all mappings must have one and only one type, but each
code point may map to any number of other code points.
<span class="grey">Freytag Informational [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
We define the compatibility of "b" with "t" or "s" by our choice of
derivation conditions as follows
if "any-variants" = "x" => blocked
else if "only-variants" = "s" or "b" => allocatable
else if "only-variants" = "t" or "b" => allocatable
else if "any-variants" = "s" or "t" or "b" => blocked
An original label of four code points
CCCC
may have many variant labels, such as this example listed with its
corresponding variant type list:
CCCC --> XSTB : x s t b
This variant label is blocked because to get from C to B required
x-->. (Because variant mappings are defined for specific source code
points, we need to show the starting label for each of these
examples, not merely the code points in the variant label.) The
variant label
CCCC --> SSBB : s s b b
is allocatable, because the variant type list contains only
allocatable mappings of subtype "s" or "b", which we have defined as
being compatible by our choice of derivations. The actual set of
variant types {s, b} has only two members, but the examples are
easier to follow if we list each type. The label
CCCC --> TTBB : t t b b
is again allocatable, because the variant type set {t, b} contains
only allocatable mappings of the mutually compatible allocatable
subtypes "t" or "b". In contrast,
CCCC --> SSTT : s s t t
is not allocatable, because the type set contains incompatible
subtypes "t" and "s" and thus would be blocked by the final
derivation.
<span class="grey">Freytag Informational [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
The variant labels
CCCC --> CSBB : c s b b
CCCC --> CTBB : c t b b
are only allocatable based on the subtype for the C --> C mapping,
which is denoted here by "c" and (depending on what was chosen for
the type of the reflexive mapping) could correspond to "s", "t", or
"b".
If the subtype is "s", the first of these two labels is allocatable;
if it is "t", the second of these two labels is allocatable; if it is
"b", both labels are allocatable.
So far, the scheme does not seem to have brought any huge reduction
in allocatable variant labels, but that is because we tacitly assumed
that C could have all three types of allocatable variants "s", "t",
and "b" at the same time.
In a real-world example, the types "s", "t", and "b" are assigned so
that each code point C normally has, at most, one non-reflexive
variant mapping labeled with one of these subtypes, and all other
mappings would be assigned type "x" (blocked). This holds true for
most code points in existing tables (such as those used in current
IDN Top-Level Domains (TLDs)), although certain code points have
exceptionally complex variant relations and may have an extra
mapping.
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Allowing Mixed Originals</span>
If the desire is to allow original labels (but not variant labels)
that are s/t mixed, then the scheme needs to be slightly refined to
distinguish between reflexive and non-reflexive variants. In this
document, the symbol "r-n" means "a reflexive (identity) mapping of
type 'n'". The reflexive mappings of the preceding section thus
become:
C r-s--> C
C r-t--> C
C r-b--> C
With this convention, and redefining the derivations
if "any-variants" = "x" => blocked
else if "only-variants" = "s" or "r-s" or "b" or "r-b" => allocatable
else if "only-variants" = "t" or "r-t" or "b" or "r-b" => allocatable
else if "any-variants" = "s" or "t" or "b" => blocked
else => allocatable
<span class="grey">Freytag Informational [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
any labels that contain only reflexive mappings of otherwise mixed
type (in other words, any mixed original label) now fall through, and
their disposition is set to "allocatable" in the final derivation.
In a well-behaved LGR, it is preferable to explicitly define the
derivation for allocatable labels instead of using a fall through.
In the derivation above, code points without any variant mappings
fall through and become allocatable by default if they are part of an
original label. Especially in a large repertoire, it can be
difficult to identify which code points are affected. Instead, it is
preferable to mark them with their own reflexive mapping type
"neither" or "r-n".
C r-n--> C
With that, we can change
else => allocatable
to
else if "only-variants" = "r-s" or "r-t" or "r-b" or "r-n"
=> allocatable
else => invalid
This makes the intent more explicit, and by ensuring that all code
points in the LGR have a reflexive mapping of some kind, it is easier
to verify the correct assignment of their types.
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. Handling Out-of-Repertoire Variants</span>
At first, it may seem counterintuitive to define variants that map to
code points that are not part of the repertoire. However, for zones
for which multiple LGRs are defined, there may be situations where
labels valid under one LGR should be blocked if a label under another
LGR is already delegated. This situation can arise whether or not
the repertoires of the affected LGRs overlap and, where repertoires
overlap, whether or not the labels are both restricted to the common
subset.
In order to handle this exclusion relation through definition of
variants, it is necessary to be able to specify variant mappings to
some code point X that is outside an LGR's repertoire, R:
C x--> X : where C = elementOf(R) and X != elementOf(R)
<span class="grey">Freytag Informational [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
Because of symmetry, it is necessary to also specify the inverse
mapping in the LGR:
X x--> C : where X != elementOf(R) and C = elementOf(R)
This makes X a source of variant mappings, and it becomes necessary
to identify X as being outside the repertoire, so that any attempt to
apply for a label containing X will lead to a disposition of
"invalid", just as if X had never been listed in the LGR. The
mechanism to do this uses reflexive variants but with a new type of
reflexive mapping of "out-of-repertoire-var", shown as "r-o-->":
X r-o--> X
This indicates X != elementOf(R), as long as the LGR is provided with
a suitable derivation, so that any label containing "r-o-->" is
assigned a disposition of "invalid", just as if X was any other code
point not part of the repertoire. The derivation used is:
if "any-variant" = "out-of-repertoire-var" => invalid
It is inserted ahead of any other derivation of the "any-variant"
kind in the chain of derivations. As a result, instead of the
minimum two symmetric variants, for any out-of-repertoire variants,
there are a minimum of three variant mappings defined:
C x--> X
X x--> C
X r-o--> X
where C = elementOf(R) and X != elementOf(R).
Because no variant label with any code point outside the repertoire
could ever be allocated, the only logical choice for the non-
reflexive mappings to out-of-repertoire code points is "blocked".
<span class="h2"><a class="selflink" id="section-15" href="#section-15">15</a>. Conditional Variants</span>
Variant mappings are based on whether code points are "same as" to
the user. In some writing systems, code points change shape based on
where they occur in the word (positional forms). Some code points
have matching shapes in some positions but not in others. In such
cases, the variant mapping exists only for some possible positions
or, more generally, only for some contexts. For other contexts, the
variant mapping does not exist.
<span class="grey">Freytag Informational [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
For example, take two code points that have the same shape at the end
of a label (or in final position) but not in any other position. In
that case, they are variants only when they occur in the final
position, something we indicate like this:
final: C --> D
In cursively connected scripts, like Arabic, a code point may take
its final form when next to any following code point that interrupts
the cursive connection, not just at the end of a label. (We ignore
the isolated form to keep the discussion simple; if included, "final"
might be "final-or-isolate", for example).
From symmetry, we expect that the mapping D --> C should also exist
only when the code point D is in final position. (Similar
considerations apply to transitivity.)
Sometimes a code point has a final form that is practically the same
as that of some other code point while sharing initial and medial
forms with another.
final: C --> D
!final: C --> E
Here, the case where the condition is the opposite of final is shown
as "!final".
Because shapes differ by position, when a context is applied to a
variant mapping, it is treated independently from the same mapping in
other contexts. This extends to the assignment of types. For
example, the mapping C --> F may be "allocatable" in final position
but "blocked" in any other context:
final: C a--> F
!final: C x--> F
Now, the type assigned to the forward mapping is independent of the
reverse symmetric mapping or any transitive mappings. Imagine a
situation where the symmetric mapping is defined as F a--> C, that
is, all mappings from F to C are "allocatable":
final: F a--> C
!final: F a-->C
Why not simply write F a--> C? Because the forward mapping is
divided by context. Adding a context makes the two forward variant
mappings distinct, and that needs to be accounted for explicitly in
the reverse mappings so that human and machine readers can easily
<span class="grey">Freytag Informational [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
verify symmetry and transitivity of the variant mappings in the LGR.
(This is true even though the two opposite contexts of "final" and
"!final" should together cover all possible cases.)
<span class="h2"><a class="selflink" id="section-16" href="#section-16">16</a>. Making Conditional Variants Well Behaved</span>
To ensure that LGR with contextual variants is well behaved, it is
best to always use "fully qualified" variant mappings that always
agree in the names of the context rules for forward and reverse
mappings. It is also necessary to ensure that no label can match
more than one context for the same mapping. Using mutually exclusive
contexts, such as "final" and "!final", is an easy way to ensure
that.
However, it is not always necessary to define dual or multiple
contexts that together cover all possible cases. For example, here
are two contexts that do not cover all possible positional contexts:
final: C --> D
initial: C --> D.
A well-behaved LGR using these two contexts would define all
symmetric and transitive mappings involving C, D, and their variants
consistently in terms of the two conditions "final" and "initial" and
ensure that both cannot be satisfied at the same time by some label.
In addition to never defining the same mapping with two contexts that
may be satisfied by the same label, a well-behaved LGR never combines
a variant mapping with a context with the same variant mapping
without a context:
context: C --> D
C --> D
Inadvertent mixing of conditional and unconditional variants can be
detected and flagged by a parser, but verifying that two formally
distinct contexts are never satisfied by the same label would depend
on the interaction between labels and context rules, which means that
it will be up to the LGR designer to ensure that the LGR is well
behaved.
A well-behaved LGR never assigns conditions on a reflexive variant,
as that is effectively no different from having a context on the code
point itself; the latter is preferred.
<span class="grey">Freytag Informational [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
Finally, for symmetry to work as expected, the context must be
defined such that it is satisfied for both the original code point in
the context of the original label and for the variant code point in
the variant label. In other words, the context should be "stable
under variant substitution" anywhere in the label.
Positional contexts usually satisfy this last condition; for example,
a code point that interrupts a cursive connection would likely share
this property with any of its variants. However, as it is possible
in principle to define other kinds of contexts, it is necessary to
make sure that the LGR is well behaved in this aspect at the time the
LGR is designed.
Due to the difficulty in verifying these constraints mechanically, it
is essential that an LGR designer document the reasons why the LGR
can be expected to meet them and the details of the techniques used
to ensure that outcome. This information should be found in the
description element of the LGR.
In summary, conditional contexts can be useful for some cases, but
additional care must be taken to ensure that an LGR containing
conditional contexts is well behaved. LGR designers would be well
advised to avoid using conditional contexts and to prefer
unconditional rules whenever practical, even though it will
doubtlessly reduce the number of labels practically available.
<span class="h2"><a class="selflink" id="section-17" href="#section-17">17</a>. Variants for Sequences</span>
Variant mappings can be defined between sequences or between a code
point and a sequence. For example, one might define a "blocked"
variant between the sequence "rn" and the code point "m" because they
are practically indistinguishable in common UI fonts.
Such variants are no different from variants defined between single
code points, except if a sequence is defined such that there is a
code point or shorter sequence that is a prefix (initial subsequence)
and both it and the remainder are also part of the repertoire. In
that case, it is possible to create duplicate variants with
conflicting dispositions.
<span class="grey">Freytag Informational [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
The following shows such an example resulting in conflicting
reflexive variants:
A a--> C
AB x--> CD
where AB is a sequence with an initial subsequence of A. For
example, B might be a combining code point used in sequence AB. If B
only occurs in the sequence, there is no issue, but if B also occurs
by itself, for example:
B a--> D
then a label "AB" might correspond to either {A}{B}, that is, the two
code points, or {AB}, the sequence, where the curly braces show the
sequence boundaries as they would be applied during label validation
and variant mapping.
A label AB would then generate the "allocatable" variant label {C}{D}
and the "blocked" variant label {CD}, thus creating two variant
labels with conflicting dispositions.
For the example of a blocked variant between "m" and "rn" (and vice
versa), there is no issue as long as "r" and "n" do not have variant
mappings of their own, so that there cannot be multiple variant
labels for the same input. However, it is preferable to avoid
ambiguities altogether where possible.
The easiest way to avoid an ambiguous segmentation into sequences is
by never allowing both a sequence and all of its constituent parts
simultaneously as independent parts of the repertoire, for example,
by not defining B by itself as a member of the repertoire.
Sequences are often used for combining sequences that consist of a
base character B followed by one or more combining marks C. By
enumerating all sequences in which a certain combining mark is
expected and by not listing the combining mark by itself in the LGR,
the mark cannot occur outside of these specifically enumerated
contexts. In cases where enumeration is not possible or practicable,
other techniques can be used to prevent ambiguous segmentation, for
example, a context rule on code points that disallows B preceding C
in any label except as part of a predefined sequence or class of
sequences. The details of such techniques are outside the scope of
this document (see [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>] for information on context rules for
code points).
<span class="grey">Freytag Informational [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
<span class="h2"><a class="selflink" id="section-18" href="#section-18">18</a>. Corresponding XML Notation</span>
The XML format defined in [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>] corresponds fairly directly to
the notation used for variant mappings in this document. (There is
no notation in the RFC for variant type sets). In an LGR document, a
simple member of a repertoire that does not have any variants is
listed as:
<char cp="nnnn" />
where nnnn is the [<a href="#ref-UNICODE" title=""The Unicode Standard"">UNICODE</a>] code point value in the standard
uppercase hexadecimal notation padded to at least 4 digits and
without leading "U+". For a code point sequence of length 2, the XML
notation becomes:
<char cp="uuuu vvvvv" />
Variant mappings are defined by nesting <var> elements inside the
<char> element. For example, a variant relation of type "blocked"
C x--> X
is expressed as
<char cp="nnnn">
<var cp="mmmm" type="blocked" />
</char>
where "x-->" identifies a "blocked" type. (Other types include
"a-->" for "allocatable", for example. Here, nnnn and mmmm are the
[<a href="#ref-UNICODE" title=""The Unicode Standard"">UNICODE</a>] code point values for C and X, respectively. Either C or X
could be a code point sequence or a single code point.
A reflexive mapping is specified the same way, except that it always
uses the same code point value for both the <char> and <var> element,
for example:
X r-o--> X
would correspond to
<char cp="nnnn"><var cp="nnnn" type="out-of-repertoire-var" /></char>
Multiple <var> elements may be nested inside a single <char> element,
but their "cp" values must be distinct (unless attributes for context
rules are present and the combination of "cp" value and context
attributes are distinct).
<span class="grey">Freytag Informational [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
<char cp="nnnn">
<var cp="kkkk" type="allocatable" />
<var cp="mmmm" type="blocked" />
</char>
A set of conditional variants like
final: C a--> K
!final: C x--> K
would correspond to
<var cp="kkkk" when="final" type="allocatable" />
<var cp="kkkk" not-when="final" type="blocked" />
where the string "final" references a name of a context rule.
Context rules are defined in [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>]; they conceptually correspond
to regular expressions. The details of how to create and define
these rules are outside the scope of this document. If the label
matches the context defined in the rule, the variant mapping is valid
and takes part in further processing. Otherwise, it is invalid and
ignored. Using the "not-when" attribute inverts the sense of the
match. The two attributes are mutually exclusive.
A derivation of a variant label disposition
if "only-variants" = "s" or "b" => allocatable
is expressed as
<action disp="allocatable" only-variants= "s b" />
Instead of using "if" and "else if", the <action> elements implicitly
form a cascade, where the first action triggered defines the
disposition of the label. The order of action elements is thus
significant.
For the full specification of the XML format, see [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>].
<span class="h2"><a class="selflink" id="section-19" href="#section-19">19</a>. IANA Considerations</span>
This document does not require any IANA actions.
<span class="grey">Freytag Informational [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
<span class="h2"><a class="selflink" id="section-20" href="#section-20">20</a>. Security Considerations</span>
As described in [<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>], variants may be used as a tool to reduce
certain avenues of attack in security-relevant identifiers by
allowing certain labels to be "mutually exclusive or registered only
to the same user". However, if indiscriminately designed, variants
may themselves contribute to risks to the security or usability of
the identifiers, whether resulting from an ambiguous definition or
from allowing too many allocatable variants per label.
The information in this document is intended to allow the reader to
design a specification of an LGR that is "well behaved" with respect
to variants; as used here, this term refers to an LGR that is
predictable in its effects to the LGR author (and reviewer) and more
reliable in its implementation.
A well-behaved LGR is not merely one that can be expressed in
[<a href="./rfc7940" title=""Representing Label Generation Rulesets Using XML"">RFC7940</a>], but, in addition, it actively avoids certain edge cases
not prevented by the schema, such as those that would result in
ambiguities in the specification of the intended disposition for some
variant labels. By applying the additional considerations introduced
in this document, including adding certain declarations that are
optional under the schema and may not alter the results of processing
a label, such an LGR becomes easier to review and its implementations
easier to verify.
It should be noted that variants are an important part, but only a
part, of an LGR design. There are many other features of an LGR that
this document does not touch upon. Also, the question of whether to
define variants at all, or what labels are to be considered variants
of each other, is not addressed here.
<span class="h2"><a class="selflink" id="section-21" href="#section-21">21</a>. References</span>
<span class="h3"><a class="selflink" id="section-21.1" href="#section-21.1">21.1</a>. Normative References</span>
[<a id="ref-RFC7940">RFC7940</a>] Davies, K. and A. Freytag, "Representing Label Generation
Rulesets Using XML", <a href="./rfc7940">RFC 7940</a>, DOI 10.17487/RFC7940,
August 2016, <<a href="https://www.rfc-editor.org/info/rfc7940">https://www.rfc-editor.org/info/rfc7940</a>>.
<span class="h3"><a class="selflink" id="section-21.2" href="#section-21.2">21.2</a>. Informative References</span>
[<a id="ref-RFC1034">RFC1034</a>] Mockapetris, P., "Domain names - concepts and facilities",
STD 13, <a href="./rfc1034">RFC 1034</a>, DOI 10.17487/RFC1034, November 1987,
<<a href="https://www.rfc-editor.org/info/rfc1034">https://www.rfc-editor.org/info/rfc1034</a>>.
<span class="grey">Freytag Informational [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc8228">RFC 8228</a> Variant Rules August 2017</span>
[<a id="ref-RFC1035">RFC1035</a>] Mockapetris, P., "Domain names - implementation and
specification", STD 13, <a href="./rfc1035">RFC 1035</a>, DOI 10.17487/RFC1035,
November 1987, <<a href="https://www.rfc-editor.org/info/rfc1035">https://www.rfc-editor.org/info/rfc1035</a>>.
[<a id="ref-RFC5890">RFC5890</a>] Klensin, J., "Internationalized Domain Names for
Applications (IDNA): Definitions and Document Framework",
<a href="./rfc5890">RFC 5890</a>, DOI 10.17487/RFC5890, August 2010,
<<a href="https://www.rfc-editor.org/info/rfc5890">https://www.rfc-editor.org/info/rfc5890</a>>.
[<a id="ref-RFC5891">RFC5891</a>] Klensin, J., "Internationalized Domain Names in
Applications (IDNA): Protocol", <a href="./rfc5891">RFC 5891</a>,
DOI 10.17487/RFC5891, August 2010,
<<a href="https://www.rfc-editor.org/info/rfc5891">https://www.rfc-editor.org/info/rfc5891</a>>.
[<a id="ref-RFC5892">RFC5892</a>] Faltstrom, P., Ed., "The Unicode Code Points and
Internationalized Domain Names for Applications (IDNA)",
<a href="./rfc5892">RFC 5892</a>, DOI 10.17487/RFC5892, August 2010,
<<a href="https://www.rfc-editor.org/info/rfc5892">https://www.rfc-editor.org/info/rfc5892</a>>.
[<a id="ref-RFC5893">RFC5893</a>] Alvestrand, H., Ed. and C. Karp, "Right-to-Left Scripts
for Internationalized Domain Names for Applications
(IDNA)", <a href="./rfc5893">RFC 5893</a>, DOI 10.17487/RFC5893, August 2010,
<<a href="https://www.rfc-editor.org/info/rfc5893">https://www.rfc-editor.org/info/rfc5893</a>>.
[<a id="ref-RFC5894">RFC5894</a>] Klensin, J., "Internationalized Domain Names for
Applications (IDNA): Background, Explanation, and
Rationale", <a href="./rfc5894">RFC 5894</a>, DOI 10.17487/RFC5894, August 2010,
<<a href="https://www.rfc-editor.org/info/rfc5894">https://www.rfc-editor.org/info/rfc5894</a>>.
[<a id="ref-UNICODE">UNICODE</a>] The Unicode Consortium, "The Unicode Standard",
<<a href="http://www.unicode.org/versions/latest/">http://www.unicode.org/versions/latest/</a>>.
Acknowledgments
Contributions that have shaped this document have been provided by
Marc Blanchet, Ben Campbell, Patrik Faltstrom, Scott Hollenbeck,
Mirja Kuehlewind, Sarmad Hussain, John Klensin, Alexey Melnikov,
Nicholas Ostler, Michel Suignard, Andrew Sullivan, Wil Tan, and
Suzanne Woolf.
Author's Address
Asmus Freytag
Email: asmus@unicode.org
Freytag Informational [Page 24]
</pre>
|