-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraft-coretta-oiddir-radit-01.txt
2263 lines (1585 loc) · 87.3 KB
/
draft-coretta-oiddir-radit-01.txt
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
RADIT J. Coretta
Internet-Draft August 27, 2024
Intended status: Experimental
Obsoletes: X660LDAP
Expires: February 23, 2025
The OID Directory: The RA DIT
draft-coretta-oiddir-radit-01.txt
Abstract
In service to the "OID Directory" I-D series, this I-D covers design
strategies and requirements relating to the Registration Authority
Directory Information Tree.
See the RADIR I-D for a complete draft series manifest.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on February 23, 2025.
Copyright Notice
Copyright (c) 2024 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(https://trustee.ietf.org/license-info) 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.
Coretta Expires February 23, 2025 [Page 1]
Internet-Draft The OID Directory: RA DIT August 2024
Table of Contents
1. Introduction ....................................................2
1.1. Conventions ................................................2
1.2. Acronyms Used ..............................................3
1.2.1. Definitions ...........................................3
1.3. Intended Audience ..........................................3
1.4. Allocations ................................................3
2. Assessments .....................................................3
2.1. Schema Availability ........................................4
2.2. Implementation Size and Coverage ...........................4
2.3. Content Capacity and Location ..............................5
2.4. User Base ..................................................5
2.5. Class and Attribute Usage ..................................5
2.6. Content Sourcing ...........................................6
3. The RA DIT ......................................................6
3.1. Directory Models ...........................................7
3.1.1. Choosing the Appropriate Model ........................7
3.1.2. The Two Dimensional Model .............................7
3.1.3. The Three Dimensional Model ...........................9
3.2. Entry Content ..............................................9
3.2.1. Registrants ..........................................10
3.2.2. Registrations ........................................13
3.2.3. Value Forms ..........................................23
3.2.4. Special Attributes ...................................25
4. IANA Considerations ............................................36
5. Security Considerations ........................................36
5.1. Access Control ............................................36
5.2. Creation and Modification Identities ......................36
6. References .....................................................36
6.1. Normative References ......................................36
6.2. Informative References ....................................37
Author's Address ..................................................38
1. Introduction
The X.500 Directory Information Tree is an abstract data structure
comprised of hierarchical contexts called entries. Each entry bears
an unambiguous reference -- a distinguished name -- to its location
within the structure.
Within the terms of this I-D series, this structure represents -- or
houses -- an information base of OID registrations and registrants
in the context of ITU-T Recommendations [X.660] and [X.680], et al.
1.1. Conventions
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY",
and "OPTIONAL" in this document are to be interpreted as described
in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in
all capitals, as shown here.
Coretta Expires February 23, 2025 [Page 2]
Internet-Draft The OID Directory: RA DIT August 2024
1.2. Acronyms Used
See Section 1.3 of the RADIR I-D for all acronym references.
1.2.1. Definitions
The composite acronym, "RA DIT", is hereby introduced within this
I-D. The acronym abbreviates the 'Registration Authority Directory
Information Tree' term, which describes the directory tree structure
that has been created or leveraged for storage of registration and
registrant data in accordance with this I-D series.
The composite acronym "RA DSA" used throughout this I-D is defined in
Section 1.2.1 of the RADSA I-D.
The composite acronym "RA DUA" used throughout this I-D is defined in
Section 1.2.1 of the RADUA I-D.
1.3. Intended Audience
This I-D is specifically geared towards directory professionals, such
as administrators, architects or application developers tasked with
managing and/or implementing an RA DIT.
General familiarity with the standards of X.500 and LDAP, as well
as with the RASCHEMA, RADUA and RADSA I-Ds is STRONGLY RECOMMENDED.
1.4. Allocations
This specification extends the previously defined I-D series OID root
'1.3.6.1.4.1.56521.101', defined in Section 1.6 of the RADIR I-D, in
the following manner:
- 1.3.6.1.4.1.56521.101.3 (rA-DIT)
- 1.3.6.1.4.1.56521.101.3.1 (models)
- 1.3.6.1.4.1.56521.101.3.1.2 (twoDimensional)
- 1.3.6.1.4.1.56521.101.3.1.3 (threeDimensional)
OIDs defined in this I-D correlate to the section numbers of origin.
Should this I-D be elevated to RFC status, the aforementioned I-D
root OID prefix shall be rendered obsolete in favor of an IANA
assigned OID, at which point this I-D will be updated to reference
the literal 'IANA-ASSIGNED-OID' placeholder prefix where appropriate.
2. Assessments
Implementation of this I-D should not be taken lightly. Certain key
design decisions need to be made well in advance of use.
To aid in this process, the following subsections outline relevant
assessment categories for consideration.
Coretta Expires February 23, 2025 [Page 3]
Internet-Draft The OID Directory: RA DIT August 2024
2.1. Schema Availability
Complete access and usage capabilities for all schema definitions
found throughout Section 2 of the RASCHEMA I-D is REQUIRED for
the design and ongoing maintenance of the RA DIT.
Adopters MUST confirm positive access to these definitions.
Adopters are also advised to confirm positive support for DIT
Content Rule, DIT Structure Rule and Name Form definitions by the
respective RA DSA implementation if their use is necessary.
At an absolute minimum, access to all attribute types and object
classes defined within Sections 2.3 and 2.5 of the RASCHEMA I-D
respectively are REQUIRED for the effective construction of the RA
DIT.
2.2. Implementation Size and Coverage
The overall "size" of the planned implementation is a very important
consideration. Adopters should decide how thorough their planned RA
DIT shall be in terms of content.
- Which of the three (3) ITU-T Rec. [X.660] root arcs will
be implemented?
- Will subordinate registrations be retained indiscriminately, or
are only specific arcs targeted?
- Will all attribute types be leveraged for entries, or only a
limited subset?
Root arc entries, ostensibly those bearing the 'rootArc' STRUCTURAL
class defined in Section 2.5.2 of the RASCHEMA I-D, are intended to
store registrations of like ancestry only.
In the RECOMMENDED three dimensional model, this is REQUIRED. Here,
all registrations of the same ancestry or "lineage" of the desired
entry -- from root to immediate parent -- MUST be created in order to
conform to the requisite tree structure. In other words, if '1.3.6'
is desired for registration, '1.3' and '1' MUST exist hierarchically
beforehand, even if they are unnecessary in context.
When using the STRONGLY DISCOURAGED two dimensional model, only
specific (desired) registrations need to be created -- NOT their
entire ancestry. The result is a collection of sibling entries
with no hierarchically significant placement.
With these considerations in mind, adopters should decide the extent
to which such incorporation shall occur in terms of directory content
maintained and its effective footprint.
Coretta Expires February 23, 2025 [Page 4]
Internet-Draft The OID Directory: RA DIT August 2024
2.3. Content Capacity and Location
Adopters are advised to consider the long-term implications of the
planned RA DIT in terms of capacity provided by the hosting RA DSA(s)
and take measures to ensure a scalable operating environment.
Based on the assessments made in Section 2.2, adopters may wish to
consider whether a particularly large RA DIT may be better suited
for context segmentation, whether or not distribution is indicated,
to allow for larger portions of the RA DIT to function independently
with dedicated resources and specialized security policies.
ITU-T Rec. [X.518] defines the concepts of the distributed directory.
2.4. User Base
The targeted user base of an implementation can influence its nature.
A private RA -- for example, one administered under the governance of
a private corporation for internal use -- may be exposed to a largely
vetted and fairly small user base. If so, it may be acceptable to
relax certain restrictions, such as registrant privacy controls.
In the case of public-facing RA -- for example, one meant to serve an
unvetted and potentially hostile user base -- the requirements for a
practical and secure implementation become far more complicated.
Lack of an effective access control model employed by the RA DSA MUST
preclude the storage of sensitive content within any RA DIT that is
potentially vulnerable to hostile entities. Design of the RA DIT in
this manner depends on positive support for suitable access controls
by the RA DSA. Adopters are advised to confirm availability and
effective operation of such controls under the expected conditions.
The effective mass and vitality of the user base is also a point of
consideration. Adopters are advised to consider whether subtrees
of a particularly volatile nature may be better suited for placement
within a separate RA DSA or environment, which may or may not involve
use of a distributed model or shadowed context.
2.5. Class and Attribute Usage
Not all attribute types defined in the RASCHEMA I-D are required for
use within an RA DIT. For example, only one (1) attribute type --
'n', per Section 2.3.1 of the RASCHEMA I-D -- is truly REQUIRED
for all entries bearing the 'registration' ABSTRACT class. However,
such stringent use of the types made available through the I-D series
would likely result in an unhelpful implementation.
While attribute types have been defined for most contingencies, the
incorporation of these types within an RA DIT is entirely up to the
adopter(s).
Coretta Expires February 23, 2025 [Page 5]
Internet-Draft The OID Directory: RA DIT August 2024
Consult Section 2.3 of the RASCHEMA I-D for the particulars of the
named attribute types in the following subsections.
Consult Section 2.5 of the RASCHEMA I-D for definitions of object
class instances which allow assignment of (non-collective) types
defined in Section 2.3 of the RASCHEMA I-D to eligible entries.
Consult Section 3.2 of this I-D for examples of object class and
attribute type usage as complete entries, as well as an overview of
use cases for specific types.
2.6. Content Sourcing
This I-D acknowledges that -- even in complete implementations -- no
single RA manages ALL of the OID tree directly. Most, if not all of
this content is under the authority of external entities.
As such, this I-D assumes some mechanism may be in place meant to
obtain and synchronize content from appropriate sources by way of:
- Replication agreements spanning implementations of this I-D
- Regular data file receipt and processing (e.g.: LDIF, XML, CSV)
- Direct parsing of originating standard, I-D or module
- Remote (proprietary) API requests
- Remote AXFR [RFC5936] or IXFR [RFC1995] requests for ORS
While the particulars of such synchronization and/or incorporation of
content external to this I-D are well outside of the scope intended,
this I-D acknowledges that such sourcing methods are often necessary.
Adopters SHOULD determine if any external registration content is
worthy of incorporation and in what manner.
Conversely, if the RA is responsible for any number of registrations
that are public-facing in nature, the RA SHOULD make registrations
available for consumption by external parties by some means.
3. The RA DIT
The RA DIT is a traditional directory information tree served by way
of an RA DSA with which clients may interact.
The RA DIT may or may not contain unrelated content such as employee
accounts, user groups or other data. This I-D series has no official
position as it relates to the presence of such content.
The following subsections cover the various forms an RA DIT may take,
and will highlight the benefits and drawbacks associated with certain
approaches.
Coretta Expires February 23, 2025 [Page 6]
Internet-Draft The OID Directory: RA DIT August 2024
3.1. Directory Models
The appropriate DIT structure for any scenario depends upon the scope
of implementation in the long-term. Directory models defined within
this I-D series are meant to provide an indication to clients (DUAs)
regarding the governing structure of the implementation.
DUAs optimized for use within the terms of this I-D series, known as
RA DUAs, will use this information to define the operating methods
exercised during routine operation.
3.1.1. Choosing the Appropriate Model
This introductory section aids the reader in choosing the appropriate
model for their implementation. Generally this decision is made well
in advance of any tangible implementation.
The three dimensional model, as defined in Section 3.1.3, is the most
likely candidate for adoption if ANY of the following are considered
TRUE:
- The RA is operating as an official, or widely recognized, public
service that conforms to all relevant standards
- Consistent, unambiguous DN-based registration references for an
entire ancestry is required
- Reliable, bidirectional client-based conversion (or "resolution")
between DNs and numeric OIDs for an entire ancestry is desired
- RA DIT scalability and flexibility is a non-trivial concern
- The distribution (or "segmentation") of select DIT content is
in effect, or may be desirable, across multiple RA DSAs
- A single RA DIT is logically divided into multiple subordinate
naming contexts within an RA DSA
- The implementation will be thorough, spanning more than a single
root arc, with an ever-increasing number of registrations being
stored and served
- Collective Attribute support is desired
- Content privileges are complex, highly regimented and/or will
vary across different registration hierarchies
- Sparse or fractional replication agreements are possible
- Ranged registrations are present or expected
Should NONE of the above scenarios apply, the implementation is to
be regarded as non-standard and may be an appropriate candidate for
the two dimensional model described in Section 3.1.2.
3.1.2. The Two Dimensional Model
The two dimensional model is advertised, or identified, using the
following leaf OID assigned to an instance of 'rADirectoryModel':
1.3.6.1.4.1.56521.101.3.1.2
Coretta Expires February 23, 2025 [Page 7]
Internet-Draft The OID Directory: RA DIT August 2024
Per Section 3.1.1, this model is available for informal, unofficial
or otherwise non-standard implementations of this I-D. Use of this
model is STRONGLY DISCOURAGED.
The two dimensional model describes a simple "list" of registration
entries, all accessible exactly one (1) level below the top-level
registration root. The concept of subtrees beyond this magnitude
does not apply in this model.
The ideal DN syntax for use with this model involves use of the
'dotNotation' attribute type as the principal RDN component of the
entry DN.
For example, the following DN would reference the OID registration
for "dod":
dotNotation=1.3.6,ou=Registrations,o=rA
If the DN syntax used the 'identifier' value, it might appear as:
identifier=dod,ou=Registrations,o=rA
Registrations are stored with no regard for vertical or horizontal
relationships. Sibling, subordinate and superior registrations may
be stored within the same naming context and the same hierarchical
"level":
dotNotation=2.1,ou=Registrations,o=rA
dotNotation=1.3.6,ou=Registrations,o=rA
n=0,ou=Registrations,o=rA
dotNotation=1.3,ou=Registrations,o=rA
dotNotation=0.9,ou=Registrations,o=rA
This model does NOT scale well. Beyond the basic organization of OID
registrations within their respective roots, hierarchically-based OID
registration organization is NOT practical, as this technique would
almost certainly produce absurdly long and/or counterintuitive DNs.
Contiguity of superior registrations is not implicitly guaranteed as
it is when using the three dimensional model. For example, if the
registration for '1.3.6' ("dod") is present, this does not guarantee
the superior registration '1.3' ("identified-organization") exists in
the RA DIT.
This model is NEVER RECOMMENDED for official implementations, nor
in any scenario even approaching the severity of mission-critical.
Only private implementations of especially weak definition or those
of an ephemeral nature should ever truly consider adoption of this
directory model.
Coretta Expires February 23, 2025 [Page 8]
Internet-Draft The OID Directory: RA DIT August 2024
3.1.3. The Three Dimensional Model
The three dimensional model is advertised, or identified, using the
following leaf OID assigned to an instance of 'rADirectoryModel':
1.3.6.1.4.1.56521.101.3.1.3
The three dimensional model describes a registration hierarchy that
mirrors the hierarchical nature of the OIDs directly, with absolute
root arc registrations superior to all subordinate arc registrations.
Per Section 3.1.1, this model is STRONGLY RECOMMENDED for complete,
thorough or official implementations of this I-D. It is also quite
suitable for general use, though at the risk of some interactive
tedium if a suitable RA DUA or optimized SDK is not made available.
The three dimensional model imposes very strict and well-defined DN
syntax requirements. In particular, the 'n' attribute type is an
important component in the formation of a valid and unambiguous
reference to a single registration and its ancestry.
The result is a model that fosters seamless bidirectional conversion
-- performed by the RA DUA -- between DNs and numeric OIDs.
For example, the following DN represents OID '1.3.6.1.4.1.56521.999'.
In this scenario, a DN is divided into two (2) logical abstractions:
n=999,n=56521,n=1,n=4,n=1,n=6,n=3,n=1 ,ou=Registrations,o=rA
------------------------------------- ----------------------
Registration Ancestry Registration Base
The conversion process from numeric OID to string DN is as follows:
1. Reverse OID (becomes 999.56521.1.4.1.6.3.1)
2. Swap all ASCII "%x2e" (".") instances with ASCII "%x2c" (",")
3. Preface each ASCII "%x2c"-delimited integer with 'n=', which
completes assembly of the registration ancestry
4. Append ASCII "%x2c" (",") and the appropriate registration base
In the obverse -- or "unreversed" -- context, the following process
converts a string DN to a numeric OID:
1. Discard registration base leading ASCII "%x2c" delimiter (","),
leaving only the registration ancestry
2. Discard all occurrences of 'n='
3. Swap all ASCII "%x2c" (",") instances with ASCII "%x2e" (".")
4. Reverse values (becomes OID 1.3.6.1.4.1.56521.999)
3.2. Entry Content
The following subsections discuss various topics that pertain to DIT
content management within the spirit of this I-D series.
Coretta Expires February 23, 2025 [Page 9]
Internet-Draft The OID Directory: RA DIT August 2024
Certain examples are defined for consumption by adopters of this I-D.
These examples are expressed as LDIF, and may employ indenting and
line-wrapping of attribute values whose lengths exceed the maximum
size permitted by the RFC I-D standard format. This condition does
not invalidate the usability or syntactical conformity of these
instances.
3.2.1. Registrants
Registrants are documented authorities of various forms involved
in the ownership, allocation and/or general management of an OID.
Whether directly or through inheritance, all OIDs have an authority
of some form. This I-D allows for flexible and scalable management
of such content.
3.2.1.1. Registrant Strategy
Per ITU-T Rec. [X.660], there are three (3) types of authorities:
- Current
- Previous (First)
- Sponsor
To parallel these authority types, three (3) AUXILIARY object classes
are defined within Section 2.5 of the RASCHEMA I-D:
- 'currentAuthorityContext'
- 'firstAuthorityContext'
- 'sponsorContext'
Use of any number of these object classes will result in related
contact and identity attribute types being made available for use
within the class bearing entry.
Generally, authorities manifest as any of the following entities:
- An individual
- A public or private organization, institution or working group
- A document (e.g.: a standard or I-D, e.g.: [RFC4519])
Implementations of this I-D may choose either of the following models
to govern registrant-related DIT content:
- Dedicated (independent) entry model
- Combined (inline) entry model
Coretta Expires February 23, 2025 [Page 10]
Internet-Draft The OID Directory: RA DIT August 2024
3.2.1.1.1. Dedicated Registrants
In this model, every distinct registrant is expressed using a single
dedicated directory entry bearing the 'registrant' STRUCTURAL object
class and is uniquely identifiable by way of a 'registrantID' value,
ideally assigned as the leaf-node RDN component of the entry.
This is the RECOMMENDED strategy for all implementations and models
in which registrant information is present.
For any practical use, each 'registrant' entry SHOULD bear one (1) or
more of the following AUXILIARY object class definitions previously
mentioned:
- 'currentAuthorityContext'
- 'firstAuthorityContext'
- 'sponsorContext'
For example, consider the following 'registrant' entry describing the
author of this I-D series:
dn: registrantID=a0efcce18a,ou=Registrants,o=rA
objectClass: registrant
objectClass: firstAuthorityContext
firstAuthorityStartTimestamp: 20210930124105Z
firstAuthorityCommonName: Jesse Coretta
firstAuthorityEmail: jesse.coretta@icloud.com
Use of the 'registrantID' attribute type as the principal RDN type
is STRONGLY RECOMMENDED as shown.
The concept of a dedicated registrant entry is unfixed. Attribute
types related to authority information extended via the RASCHEMA
I-D are present largely for convenience and reasons of clarity.
Adopters of the RA DIT MAY choose to forego use of some or all of
these types in favor of those defined within official standards such
as [RFC4519] and [RFC4524].
It is RECOMMENDED that in this case, use of such attribute types that
serve as super types of the replaced RASCHEMA types be observed. For
example, the appropriate replacement type for 'sponsorCommonName' is
'cn', because 'cn' is its super type.
Some types defined within the RASCHEMA I-D are unique in nature and
may not be derived from any super type. An example of this is the
'firstAuthorityStartTimestamp' attribute type. Continued use of
these types is likely indicated. Use of non-standard replacement
types other than those defined within recognized standards is NOT
RECOMMENDED due to the potential impact to RA DUA compatibility.
This consideration may, however, be moot in proprietary scenarios.
Coretta Expires February 23, 2025 [Page 11]
Internet-Draft The OID Directory: RA DIT August 2024
Use of the 'extensibleObject' AUXILIARY object class defined within
Section 4.3 of [RFC4512] is likely indicated where this replacement
strategy is employed. Continued use of the 'registrant' STRUCTURAL
object class is REQUIRED for compatibility reasons relating to the
RA DUA.
To offer a more complete example of this alternative use, the above
'registrant' entry bearing the 'registrantID' value of "a0efcce18a"
implements 'cn' and 'mail' over their sub typed counterparts defined
within the RASCHEMA I-D.
dn: registrantID=e2ef220b3b,ou=Registrants,o=rA
objectClass: registrant
objectClass: extensibleObject
objectClass: firstAuthorityContext
firstAuthorityStartTimestamp: 20210930124105Z
cn: Jesse Coretta
mail: jesse.coretta@icloud.com
The drawback of this replacement strategy is that this 'registrant'
entry cannot combine the ITU-T Rec. [X.660] authority classifications
within the bounds of a single 'registrant' entry any longer.
For example, observe how two (2) distinct authority contexts reside
within this single 'registrant' entry:
dn: registrantID=aec17eef17,ou=Registrants,o=rA
objectClass: registrant
objectClass: firstAuthorityContext
objectClass: currentAuthorityContext
currentAuthorityOrg: ITU-T SG 17 & ISO/IEC JTC 1/SC 6
firstAuthorityOrg: ITU-T SG 7 & ISO/IEC JTC 1/SC 33
If the implementation, instead, favors use of the indicated super
types, the context of the above 'registrant' entry will have to be
split into two (2) distinct entries:
dn: registrantID=b7ea16ef5e,ou=Registrants,o=rA
objectClass: registrant
objectClass: extensibleObject
objectClass: currentAuthorityContext
o: ITU-T SG 17 & ISO/IEC JTC 1/SC 6
dn: registrantID=e1f0ffb677,ou=Registrants,o=rA
objectClass: registrant
objectClass: extensibleObject
objectClass: firstAuthorityContext
o: ITU-T SG 7 & ISO/IEC JTC 1/SC 33
Coretta Expires February 23, 2025 [Page 12]
Internet-Draft The OID Directory: RA DIT August 2024
With a cogent "dedicated registrant" policy devised, 'registration'
entries may reference appropriate entries through DN referencing in
the context of appropriate authority classification by way of the
following attribute types:
- 'currentAuthority' and/or 'c-currentAuthority'
- 'firstAuthority' and/or 'c-firstAuthority'
- 'sponsor' and/or 'c-sponsor'
It is permitted for 'registration' entries to bear both collective
and non-collective equivalent instances of these attribute types.
For example, the presence of instances of both the 'sponsor' and
'c-sponsor' types within a single 'registration' entry is permitted.
A practical use case might involve collective value assignment to a
large number of entries, with non-collective supplemental authority
references added in ad hoc fashion, as needed.
3.2.1.1.2. Combined Registrants
In this model, 'registration' entries are assigned one (1) or more of
the following AUXILIARY object class definitions:
- 'currentAuthorityContext'
- 'firstAuthorityContext'
- 'sponsorContext'
Unlike the RECOMMENDED registrant approach shown in Section 3.2.1,
contact and identity attribute types are stored directly within the
given 'registration' entry. Essentially, this merges the concepts
of 'registration' entries and 'registrant' entries into a singular
construct.
This model is highly inefficient, and would only apply to limited
use-cases within the STRONGLY DISCOURAGED two dimensional model,
and ONLY if the footprint is particularly small with registrant
data that is unique and non-repeating in form.
Limited examples of this registrant model are shown in Section 3.2.2.
In general, use of this model is STRONGLY DISCOURAGED.
3.2.2. Registrations
Registrations are official allocations of ASN.1 object identifiers.
Within the context of this I-D, a registration manifests through a
directory entry bearing the 'registration' STRUCTURAL class and
any number of supporting attribute type instances.
Coretta Expires February 23, 2025 [Page 13]
Internet-Draft The OID Directory: RA DIT August 2024
3.2.2.1. Root Arcs
Regardless of the implemented dimensional model, certain scenarios
will call for the creation of so-called root registrations, or root
arcs. These are special entries -- of which there can only be three
(3) -- meant to represent the absolute superior root context of any
and all registrations of origin.
The three (3) root arcs -- defined within ITU-T Rec. [X.660] -- are
covered in the following subsections, expressed as LDIF entries. Use
of line-wrapping and indentation is in effect for large values.
These registration forms are dimension neutral, meaning they manifest
no differently regardless of directory model employed.
Root 'registration' entries are based upon the 'rootArc' STRUCTURAL
object class. Be advised that root registration entries cannot bear
instances of the 'dotNotation' attribute type due to syntactical
limitations. The standard OID syntax for LDAP requires at least two
(2) number form instances in dot notation for any legal OID value.
Because 'dotNotation' was defined upon this syntax, this precludes
any single root arc -- such as 2 -- being used to identify a root
OID. This is why the 'n' attribute type is RECOMMENDED for the leaf
node RDN component of all 'registration' entries -- including roots.
It is generally discouraged to use any attribute type OTHER THAN 'n'
for the RDN attribute type of the 'registration' DN within the three
dimensional model. Using types such as 'identifier', 'unicodeValue'
or others, can interfere with DN/OID conversion and extrapolation,
and may introduce ambiguity in large implementations.
3.2.2.1.1. ITU-T
dn: n=0,ou=Registrations,o=rA
objectClass: registration
objectClass: rootArc
objectClass: x660Context
objectClass: x680Context
objectClass: registrationSupplement
description: International Telecommunication Union -
Telecommunication standardization sector (ITU-T)
unicodeValue: ITU-T
identifier: itu-t
iRI: /ITU-T
iRI: /ITU-R
aSN1Notation: {itu-t(0)}
secondaryIdentifier: ccitt
standardizedNameForm: {itu-t}
additionalUnicodeValue: ITU-R
registrationClassification: Standards development organization
Coretta Expires February 23, 2025 [Page 14]
Internet-Draft The OID Directory: RA DIT August 2024
This registration may also be expressed in minimalistic form:
dn: n=0,ou=Registrations,o=rA
objectClass: registration
objectClass: rootArc
3.2.2.1.2. ISO
dn: n=1,ou=Registrations,o=rA
objectClass: registration
objectClass: rootArc
objectClass: x660Context
objectClass: x680Context
objectClass: registrationSupplement
description: International Organization for Standardization (ISO)
unicodeValue: ISO
identifier: iso
iRI: /ISO
aSN1Notation: {iso(1)}
standardizedNameForm: {iso}
registrationClassification: Standards development organization
This registration may also be expressed in minimalistic form:
dn: n=1,ou=Registrations,o=rA
objectClass: registration
objectClass: rootArc
3.2.2.1.3. Joint ISO/ITU-T
dn: n=2,ou=Registrations,o=rA
objectClass: registration
objectClass: rootArc
objectClass: x660Context
objectClass: x680Context
objectClass: registrationSupplement
description: Areas of joint work between ISO/IEC (International
Organization for Standardization/International Electrotechnical
Commission) and ITU-T (International Telecommunication Union -
Telecommunication standardization sector), and other intl. work
firstAuthority: registrantID=e1f0ffb677,ou=Registrants,o=rA
currentAuthority: registrantID=b7ea16ef5e,ou=Registrants,o=rA
unicodeValue: Joint-ISO-ITU-T
identifier: joint-iso-itu-t
iRI: /Joint-ISO-ITU-T
aSN1Notation: {joint-iso-itu-t(2)}
secondaryIdentifier: joint-iso-ccitt
standardizedNameForm: {joint-iso-itu-t}
registrationClassification: Standards development organization
Coretta Expires February 23, 2025 [Page 15]
Internet-Draft The OID Directory: RA DIT August 2024
See Section 3.2.1.1.1 for authority entry examples referenced here.
If using the (generally) DISCOURAGED "combined registrants" strategy,
the following object classes and attribute types may be added to this
entry instead of the above authority-related DN references:
objectClass: firstAuthorityContext
objectClass: currentAuthorityContext
currentAuthorityOrg: ITU-T SG 17 & ISO/IEC JTC 1/SC 6
firstAuthorityOrg: ITU-T SG 7 & ISO/IEC JTC 1/SC 33
This registration may also be expressed in minimalistic form:
dn: n=2,ou=Registrations,o=rA
objectClass: registration
objectClass: rootArc
3.2.2.2. Subordinate Arcs
Also referred to as 'sub arcs' and 'non-root arcs', these entries
represent the majority of content that comprises the typical RA DIT.
These registration forms -- unlike their root counterparts -- may
manifest in slightly different manners depending on the directory
model employed by the RA DIT in question. The following sections
that outline examples of these entries will include remarks which
relate to any indicated dimensional considerations. These sections
also cite certain well-known registrations relevant to the examples.
Subordinate arcs may incorporate additional attribute types and
object classes not permitted for use by root arcs described within
Section 3.2.2.1 -- whether due to schema restrictions or by virtue
of logical context.
In particular, arcs bear the 'arc' STRUCTURAL object class instead of
the 'rootArc' object class, and MAY bear one (1) of the following
AUXILIARY classes only. Implementations may select or impose the
appropriate AUXILIARY class according to the leading digit of the
effective numeric OID for the given registration:
- 'iTUTRegistration' (0)
- 'iSORegistration' (1)
- 'jointISOITUTRegistration' (2)
When compared to 'root arcs', additional permitted attribute types
include, but are not limited to:
- 'dotNotation'
- 'isLeafNode'
- 'registrationRange'
- 'topArc' or 'c-topArc'
- 'supArc' or 'c-supArc'
Coretta Expires February 23, 2025 [Page 16]
Internet-Draft The OID Directory: RA DIT August 2024
3.2.2.2.1. Identified-Organization
dn: n=3,n=1,ou=Registrations,o=rA
objectClass: registration
objectClass: arc
objectClass: iSORegistration
objectClass: x660Context
objectClass: x680Context
objectClass: registrationSupplement
description: Organization identification schemes registered
according to ISO/IEC 6523-2
aSN1Notation: {iso(1) identified-organization(3)}
isFrozen: TRUE
dotNotation: 1.3
dotEncoding:: BgEr
unicodeValue: Identified-Organization
registrationModified: 20120101000000Z
registrationCreated: 19870101000000Z
standardizedNameForm: {identified-organization}
iRI: /ISO/Identified-Organization
If using the STRONGLY DISCOURAGED two dimensional directory model,
"Identified-Organization" SHOULD express the RECOMMENDED DN syntax
for this model:
dotNotation=1.3,ou=Registrations,o=rA
3.2.2.2.2. ASN.1
dn: n=1,n=2,ou=Registrations,o=rA
objectClass: registration
objectClass: arc
objectClass: jointISOITUTRegistration
objectClass: x660Context
objectClass: x680Context
n: 1
description: ASN.1 standards
aSN1Notation: {joint-iso-itu-t(2) asn1(1)}
dotNotation: 2.1
iRI: /ASN.1
longArc: /ASN.1
unicodeValue: ASN.1
If using the STRONGLY DISCOURAGED two dimensional directory model,
"ASN.1" SHOULD express the RECOMMENDED DN syntax indicated:
dotNotation=2.1,ou=Registrations,o=rA
Coretta Expires February 23, 2025 [Page 17]
Internet-Draft The OID Directory: RA DIT August 2024
3.2.2.2.3. X
dn: n=24,n=0,n=0,ou=Registrations,o=rA
objectClass: registration
objectClass: arc
objectClass: iTUTRegistration
objectClass: x660Context
objectClass: x680Context
n: 24
description: Series X of ITU-T Recommendations "Data networks,