-
Notifications
You must be signed in to change notification settings - Fork 1
/
draft-ietf-anima-brski-async-enroll-00.txt
1960 lines (1354 loc) · 83.9 KB
/
draft-ietf-anima-brski-async-enroll-00.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
ANIMA WG S. Fries
Internet-Draft H. Brockhaus
Intended status: Standards Track Siemens
Expires: January 10, 2021 E. Lear
Cisco Systems
July 9, 2020
Support of asynchronous Enrollment in BRSKI (BRSKI-AE)
draft-ietf-anima-brski-async-enroll-00
Abstract
This document describes enhancements of bootstrapping a remote secure
key infrastructure (BRSKI) to also operate in domains featuring no or
only timely limited connectivity between involved components. It
addresses connectivity to backend services supporting enrollment like
a Public Key Infrastructure (PKI) and also to the connectivity
between pledge and registrar. For this it enhances the use of
authenticated self-contained objects in BRSKI also for request and
distribution of deployment domain specific device certificates. The
defined approach is agnostic regarding the utilized enrollment
protocol allowing the application of existing and potentially new
certificate management protocols.
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 January 10, 2021.
Copyright Notice
Copyright (c) 2020 IETF Trust and the persons identified as the
document authors. All rights reserved.
Fries, et al. Expires January 10, 2021 [Page 1]
Internet-Draft BRSKI-AE July 2020
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.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . 6
3. Scope of solution . . . . . . . . . . . . . . . . . . . . . . 7
3.1. Supported environment . . . . . . . . . . . . . . . . . . 7
3.2. Application Examples . . . . . . . . . . . . . . . . . . 7
3.2.1. Rolling stock . . . . . . . . . . . . . . . . . . . . 7
3.2.2. Building automation . . . . . . . . . . . . . . . . . 8
3.2.3. Substation automation . . . . . . . . . . . . . . . . 8
3.2.4. Electric vehicle charging infrastructure . . . . . . 8
3.2.5. Infrastructure isolation policy . . . . . . . . . . . 9
3.2.6. Less operational security in the deployment domain . 9
4. Requirement discussion and mapping to solution elements . . . 9
5. Architectural Overview and Communication Exchanges . . . . . 12
5.1. Use Case 1: Support of off-site PKI service . . . . . . . 12
5.1.1. Behavior of a pledge . . . . . . . . . . . . . . . . 15
5.1.2. Pledge - Registrar discovery and voucher exchange . . 15
5.1.3. Registrar - MASA voucher exchange . . . . . . . . . . 16
5.1.4. Pledge - Registrar - RA/CA certificate enrollment . . 16
5.1.5. Addressing Scheme Enhancements . . . . . . . . . . . 19
5.2. Use Case 2: pledge-agent . . . . . . . . . . . . . . . . 19
5.2.1. Behavior of a pledge . . . . . . . . . . . . . . . . 23
5.2.2. Behavior of a pledge-agent . . . . . . . . . . . . . 24
5.2.3. Registrar discovery . . . . . . . . . . . . . . . . . 24
5.2.4. Handling voucher request and certification requests . 24
5.3. Discovery of supported enrollment options at domain
registrar . . . . . . . . . . . . . . . . . . . . . . . . 27
6. Example mappings to existing enrollment protocols . . . . . . 28
6.1. EST Handling . . . . . . . . . . . . . . . . . . . . . . 29
6.2. Lightweight CMP Handling . . . . . . . . . . . . . . . . 29
7. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 30
8. Privacy Considerations . . . . . . . . . . . . . . . . . . . 30
9. Security Considerations . . . . . . . . . . . . . . . . . . . 30
10. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 30
11. References . . . . . . . . . . . . . . . . . . . . . . . . . 30
11.1. Normative References . . . . . . . . . . . . . . . . . . 30
11.2. Informative References . . . . . . . . . . . . . . . . . 31
Fries, et al. Expires January 10, 2021 [Page 2]
Internet-Draft BRSKI-AE July 2020
Appendix A. History of changes [RFC Editor: please delete] . . . 32
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 34
1. Introduction
BRSKI as defined in [I-D.ietf-anima-bootstrapping-keyinfra] specifies
a solution for secure zero-touch (automated) bootstrapping of devices
(pledges) in a target deployment domain. This includes the discovery
of network elements in the deployment domain, time synchronization,
and the exchange of security information necessary to establish trust
between a pledge and the domain and to adopt a pledge as new network
and application element. Security information about the deployment
domain, specifically the deployment domain certificate (domain root
certificate), is exchanged utilizing voucher objects as defined in
[RFC8366]. These vouchers are authenticated self-contained (signed)
objects, which may be provided online (synchronous) or offline
(asynchronous) via the domain registrar to the pledge and originate
from a Manufacturer's Authorized Signing Authority (MASA). The MASA
signed voucher contains the target domain certificate and can be
verified by the pledge due to the possession of a manufacturer root
certificate. It facilitates the enrollment of the pledge in the
deployment domain and is used to establish trust from the pledge to
the domain.
For the enrollment of devices BRSKI relies on EST [RFC7030] to
request and distribute deployment domain specific device
certificates. EST in turn relies on a binding of the certification
request to an underlying TLS connection between the EST client and
the EST server. According to BRSKI the domain registrar acts as EST
server and is also acting as registration authority (RA) or local
registration authority (LRA). The binding to TLS is used to protect
the exchange of a certification request (for an LDevID certificate)
and to provide data origin authentication to support the
authorization decision for processing the certification request. The
TLS connection is mutually authenticated and the client side
authentication utilizes the pledge's manufacturer issued device
certificate (IDevID certificate). This approach requires an on-site
availability of a local asset or inventory management system
performing the authorization decision based on tuple of the
certification request and the pledge authentication using the IDevID
certificate, to issue a domain specific certificate to the pledge.
The reason bases on the EST server (the domain registrar) terminating
the security association with the pledge and thus the local binding
between the certification request and the authentication of the
pledge. This type of enrollment utilizing an online connection to
the PKI is considered as synchronous enrollment.
Fries, et al. Expires January 10, 2021 [Page 3]
Internet-Draft BRSKI-AE July 2020
For certain use cases on-site support of a RA/CA component and/or an
asset management is not available and rather provided by an
operator's backend and may be provided timely limited or completely
through offline interactions. This may be due to higher security
requirements for operating the certification authority. The
authorization of a certification request based on an asset management
in this case will not / can not be performed on-site at enrollment
time. Enrollment, which cannot be performed in a (timely) consistent
fashion is considered as asynchronous enrollment in this document.
It requires the support of a store and forward functionality of
certification request together with the requester authentication
information. This enables processing of the request at a later point
in time. A similar situation may occur through network segmentation,
which is utilized in industrial systems to separate domains with
different security needs. Here, a similar requirement arises if the
communication channel carrying the requester authentication is
terminated before the RA/CA authorization handling of the
certification request. If a second communication channel is opened
to forward the certification request to the issuing RA/ CA, the
requester authentication information needs to be retained and ideally
bound to the certification request. This uses case is independent
from timely limitations of the first use case. For both cases, it is
assumed that the requester authentication information is utilized in
the process of authorization of a certification request. There are
different options to perform store and forward of certification
requests including the requester authentication information:
o Providing a trusted component (e.g., an LRA) in the deployment
domain, which stores the certification request combined with the
requester authentication information (based on the IDevID) and
potentially the information about a successful proof of possession
(of the corresponding private key) in a way prohibiting changes to
the combined information. Note that the assumption is that the
information elements may not be cryptographically bound together.
Once connectivity to the backend is available, the trusted
component forwards the certification request together with the
requester information (authentication and proof of possession) to
the off-site PKI for further processing. It is assumed that the
off-site PKI in this case relies on the local pledge
authentication result and thus performs the authorization and
issues the requested certificate. In BRSKI the trusted component
may be the EST server residing co-located with the registrar in
the deployment domain.
o Utilization of authenticated self-contained objects for the
enrollment, binding the certification request and the requester
authentication in a cryptographic way. This approach reduces the
necessary trust in a domain component to storage and delivery.
Fries, et al. Expires January 10, 2021 [Page 4]
Internet-Draft BRSKI-AE July 2020
Unauthorized modifications of the requester information (request
and authentication) can be detected during the verification of the
authenticated self-contained object. An example for such an
object is a signed CMS wrapped object (as the voucher).
This targets environments, in which connectivity to a PKI is only
temporary or not directly available, by specifying support for
handling authenticated self-contained objects for enrollment. As it
is intended to enhance BRSKI it is named BRSKI-AE, where AE stands
for asynchronous enrollment. As BRSKI, BRSKI-AE results in the
pledge storing a X.509 root certificate sufficient for verifying the
domain registrar / proxy identity (LDevID CA Certificate) as well as
an domain specific X.509 device certificate (LDevID EE certificate).
Based on the proposed approach, a second set of scenarios can be
addressed, in which the pledge has no direct communication path to
the domain registrar, e.g., due to no network connectivity or a
different technology stack as the domain registrar, but is considered
to be managed by the domain registrar regarding the pledge domain
credentials. For this, an additional component is introduced acting
as an agent for the pledge towards the domain registrar, e.g., a
commissioning tool. In contrast to BRSKI here the credentials may be
pushed to the pledge instead of the pull approach taken by BRSKI.
The goal is to enhance BRSKI to either allow other existing
certificate management protocols supporting authenticated self-
contained objects to be applied or to allow other types of encoding
for the certificate management information exchange. This is
addressed by
o enhancing the well-known URI approach with additional path' for
the utilized enrollment protocol.
o defining a certificate waiting indication and handling, if the
certifying component is (temporarily) not available.
o allowing to utilize credentials different from the pledge's IDevID
to establish a connection to the domain registrar.
Note that in contrast to BRSKI, BRSKI-AE assumes support of multiple
enrollment protocols on the infrastructure side, allowing the pledge
manufacturer to select the most appropriate. Thus, BRSKI-AE can be
applied for both, asynchronous and synchronous enrollment.
Fries, et al. Expires January 10, 2021 [Page 5]
Internet-Draft BRSKI-AE July 2020
2. Terminology
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
[RFC2119].
This document relies on the terminology defined in
[I-D.ietf-anima-bootstrapping-keyinfra]. The following terms are
defined additionally:
CA: Certification authority, issues certificates.
RA: Registration authority, an optional system component to which a
CA delegates certificate management functions such as
authorization checks.
LRA: Local registration authority, an optional RA system component
with proximity to end entities.
IED: Intelligent Electronic Device (in essence a pledge).
on-site: Describes a component or service or functionality available
in the target deployment domain.
off-site: Describes a component or service or functionality
available in an operator domain different from the target
deployment domain. This may be a central side, to which only a
temporarily connection is available, or which is in a different
administrative domain.
asynchronous communication: Describes a timely interrupted
communication between an end entity and a PKI component.
synchronous communication: Describes a timely uninterrupted
communication between an end entity and a PKI component.
authenticated self-contained object: Describes an object, which is
cryptographically bound to the IDevID EE credential of a pledge.
The binding is assumed to be provided through a digital signature
using the corresponding private key of the IDevID to wrap the
actual object. Note that depending on the availability of a
LDevID EE credential, the binding may also be achieved using
corresponding private key of the LDevID. This can be utilized in
for instance in the context of an initial certification request or
a certificate update.
Fries, et al. Expires January 10, 2021 [Page 6]
Internet-Draft BRSKI-AE July 2020
3. Scope of solution
3.1. Supported environment
This solution is intended to be used in domains with limited support
of on-site PKI services and comprises use cases in which:
o there is no registration authority available in the deployment
domain. The connectivity to the backend RA may only be
temporarily available. A local store and forward device is used
for the communication with the backend services.
o authoritative actions of a LRA are limited and may not comprise
authorization of certification requests of pledges. Final
authorization is done at the RA residing in the backend operator
domain.
o the target deployment domain already uses a certificate management
approach that shall be reused to be consistent throughout the life
cycle.
In addition, the solution is intended to be applicable in domains in
which pledges have no direct connection to the domain registrar, but
are expected to be managed by the registrar. This can be motivated
by pledges featuring a different technology stack or by pledges
without an existing connection to the domain registrar during
onboarding.
3.2. Application Examples
The following examples are intended to motivate the support of
different enrollment approaches in general and asynchronous
enrollment specifically, by introducing industrial applications
cases, which could leverage BRSKI as such but also require support of
asynchronous operation as intended with BRSKI-AE.
3.2.1. Rolling stock
Rolling stock or railroad cars contain a variety of sensors,
actuators, and controller, which communicate within the railroad car
but also exchange information between railroad cars building a train
or with a backend. These devices are typically unaware of backend
connectivity. Managing certificates may be done during maintenance
cycles of the railroad car, but can already be prepared during
operation. The preparation may comprise the generation of
certification requests by the components, which are collected and
forwarded for processing once the railroad car is connected to the
operator backend. The authorization of the certification request is
Fries, et al. Expires January 10, 2021 [Page 7]
Internet-Draft BRSKI-AE July 2020
then done based on the operator's asset/inventory information in the
backend.
3.2.2. Building automation
In building automation a use case can be described by a detached
building or the basement of a building equipped with sensor,
actuators, and controllers connected, but with only limited or no
connection to the centralized building management system. This
limited connectivity may be during the installation time but also
during operation time. During the installation in the basement, a
service technician collects the necessary information from the
basement network and provides them to the central building management
system, e.g., using a laptop or even a mobile phone to transport the
information. This information may comprise parameters and settings
required in the operational phase of the sensors/actuators, like a
certificate issued by the operator to authenticate against other
components and services.
The collected information may be provided by a domain registrar
already existing in the installation network. In this case
connectivity to the backend PKI may be facilitated by the service
technician's laptop. Contrary, the information can also be collected
from the pledges directly and provided to a domain registrar deployed
in the main network. In this cases connectivity to the domain
registrar may be facilitated by the service technician's laptop.
3.2.3. Substation automation
In substation automation a control center typically hosts PKI
services to issue certificates for Intelligent Electronic Devices
(IED)s in a substation. Communication between the substation and
control center is done through a proxy/gateway/DMZ, which terminates
protocol flows. Note that NERC CIP-005-5 [NERC-CIP-005-5] requires
inspection of protocols at the boundary of a security perimeter (the
substation in this case). In addition, security management in
substation automation assumes central support of different enrollment
protocols to facilitate the capabilities of IEDs from different
vendors. The IEC standard IEC62351-9 [IEC-62351-9] specifies the
mandatory support of two enrollment protocols, SCEP
[I-D.gutmann-scep] and EST [RFC7030] for the infrastructure side,
while the IED must only support one of the two.
3.2.4. Electric vehicle charging infrastructure
For the electric vehicle charging infrastructure protocols have been
defined for the interaction between the electric vehicle (EV) and the
charging point (e.g., ISO 15118-2 [ISO-IEC-15118-2]) as well as
Fries, et al. Expires January 10, 2021 [Page 8]
Internet-Draft BRSKI-AE July 2020
between the charging point and the charging point operator (e.g.
OCPP [OCPP]). Depending on the authentication model, unilateral or
mutual authentication is required. In both cases the charging point
authenticates uses an X.509 certificate to authenticate in the
context of a TLS connection between the EV and the charging point.
The management of this certificate depends (beyond others) on the
selected backend connectivity protocol. Specifically, in case of
OCPP it is intended as single communication protocol between the
charging point and the backend carrying all information to control
the charging operations and maintain the charging point itself. This
means that the certificate management is intended to be handled in-
band of OCPP. This requires to be able to encapsulate the
certificate management exchanges in a transport independent way.
Authenticated self-containment will ease this by allowing the
transport without a separate communication protocol. For the purpose
of certificate management CMP [RFC4210] is intended to be used.
3.2.5. Infrastructure isolation policy
This refers to any case in which network infrastructure is normally
isolated from the Internet as a matter of policy, most likely for
security reasons. In such a case, limited access to external PKI
resources will be allowed in carefully controlled short periods of
time, for example when a batch of new devices are deployed, but
impossible at other times.
3.2.6. Less operational security in the deployment domain
The registration point performing the authorization of a certificate
request is a critical PKI component and therefore implicates higher
operational security than other components utilizing the issued
certificates for their security features. CAs may also demand higher
security in the registration procedures. Especially the CA/Browser
forum currently increases the security requirements in the
certificate issuance procedures for publicly trusted certificates.
There may be the situation that the deployment domain does not offer
enough security to operate a registration point and therefore wants
to transfer this service to a backend.
4. Requirement discussion and mapping to solution elements
For the requirements discussion it is assumed that the domain
registrar receiving a certification request as authenticated self-
contained object is not the authorization point for this
certification request. If the domain registrar is the authorization
point, BRSKI can be used directly. Note that BRSKI-AE could also be
used in this case.
Fries, et al. Expires January 10, 2021 [Page 9]
Internet-Draft BRSKI-AE July 2020
Based on the intended deployment environment described in Section 3.1
and the motivated application examples described in Section 3.2 the
following base requirements are derived to support authenticated
self-contained objects as container carrying the certification
request and further information to support asynchronous operation.
At least the following properties are required:
o Proof of Possession: utilizing the private key corresponding to
the public key contained in the certification request.
o Proof of Identity: utilizing an existing IDevID credential bound
to the certification request. Certificate updates may utilize the
LDevID credential.
Solution examples (not complete) based on existing technology are
provided with the focus on existing IETF documents:
o Certification request objects: Certification requests are
structures protecting only the integrity of the contained data
providing a proof-of-private-key-possession for locally generated
key pairs. Examples for certification requests are:
* PKCS#10 [RFC2986]: Defines a structure for a certification
request. The structure is signed to ensure integrity
protection and proof of possession of the private key of the
requester that corresponds to the contained public key.
* CRMF [RFC4211]: Defines a structure for the certification
request message. The structure supports integrity protection
and proof of possession, through a signature generated over
parts of the structure by using the private key corresponding
to the contained public key.
Note that the integrity of the certification request is bound to
the public key contained in the certification request by
performing the signature operation with the corresponding private
key. In the considered application examples, this is not
sufficient and needs to be bound to the existing credential of the
pledge (IDevID) additionally. This binding supports the
authorization decision for the certification request through the
provisioning of a proof of identity. The binding of data origin
authentication to the certification request may be delegated to
the protocol used for certificate management.
o Proof of Identity options: The certification request should be
bound to an existing credential (here IDevID) to enable a proof of
identity and based on it an the authorization of the certification
Fries, et al. Expires January 10, 2021 [Page 10]
Internet-Draft BRSKI-AE July 2020
request. The binding may be realized through a security options
in an underlying transport protocol if the authorization of the
the certification request is done at the next communication hop.
Alternatively, this binding can be done by a wrapping signature
employing an existing credential (initial: IDevID, renewal:
LDevID). This requirement is addressed by existing enrollment
protocols in different ways, for instance:
* EST [RFC7030]: Utilizes PKCS#10 to encode the certification
request. The Certificate Signing Request (CSR) may contain a
binding to the underlying TLS by including the tls-unique value
in the self-signed CSR structure. The tls-unique value is one
result of the TLS handshake. As the TLS handshake is performed
mutually authenticated and the pledge utilized its IDevID for
it, the proof of identity can be provided by the binding to the
TLS session. This is supported in EST using simpleenroll. To
avoid the binding to the underlying authentication in the
transport layer EST offers the support of a wrapping the CSR
with an existing certificate by using fullcmc.
* SCEP [I-D.gutmann-scep]: Provides the option to utilize either
an existing secret (password) or an existing certificate to
protect the CSR based on SCEP Secure Message Objects using CMS
wrapping ([RFC5652]). Note that the wrapping using an existing
IDevID credential in SCEP is referred to as renewal. SCEP
therefore does not rely on the security of an underlying
transport.
* CMP [RFC4210] Provides the option to utilize either an existing
secret (password) or an existing certificate to protect the
PKIMessage containing the certification request. The
certification request is encoded utilizing CRMF. PKCS#10 is
optionally supported. The proof of identity of the PKIMessage
containing the certification request can be achieved by using
IDevID credentials to calculate a signature over the header and
the body of the PKIMessage utilizing the protectionAlg signaled
in the PKIMessage header and the PKIProtection carrying the
actual signature value. CMP therefore does not rely on the
security of an underlying transport.
* CMC [RFC5272] Provides the option to utilize either an existing
secret (password) or an existing certificate to protect the
certification request (either in CRMF or PKCS#10) based on CMS
[RFC5652]). Here a FullCMCRequest can be used, which allows
signing with an existing IDevID credential to provide a proof
of identity. CMC therefore does not rely on the security of an
underlying transport.
Fries, et al. Expires January 10, 2021 [Page 11]
Internet-Draft BRSKI-AE July 2020
Note that besides the already existing enrollment protocols there
ongoing work in the ACE WG to define an encapsulation of EST in
OSCORE to result in a TLS independent way of protecting EST. This
approach [I-D.selander-ace-coap-est-oscore] may be considered as
further variant.
5. Architectural Overview and Communication Exchanges
To support asynchronous enrollment, the base system architecture
defined in BRSKI [I-D.ietf-anima-bootstrapping-keyinfra] is enhanced
to facilitate the two target use cases.
o Use case 1 (PULL case): the pledge requests certificates from a
PKI operated off-site via the domain registrar.
o Use case 2 (PUSH/PULL case): allows delayed (delegated) onboarding
using a pledge-agent instead a direct connection to the domain
registrar. The communication model between pledge-agent and
pledge depends on the specified interface and may use a PULL or
PUSH approach. This interaction in terms of a protocol
specification is out of scope of this document.
Note that the terminology PUSH and PULL relates to the pledge
behavior. In PULL the pledge requests data objects as in BRSKI,
while in the PUSH case the pledge may be provisioned with the
necessary data objects. The pledge-agent as it represents the pledge
always acts in a PULL mode to the domain registrar. Both use cases
are described in the next subsections. They utilize the existing
BRSKI architecture elements as much as possible. Necessary
enhancements to support authenticated self-contained objects for
certificate enrollment are kept on a minimum to ensure reuse of
already defined architecture elements and interactions.
For the authenticated self-contained objects used for the
certification request, BRSKI-AE relies on the defined message
wrapping mechanisms of the enrollment protocols stated in Section 4
above.
5.1. Use Case 1: Support of off-site PKI service
One assumption of BRSKI-AE is that the authorization of a
certification request is performed based on an authenticated self-
contained object, binding the certification request to the
authentication using the IDevID. This supports interaction with off-
site or off-line PKI (RA/CA) components. In addition, the
authorization of the certification request may not be done by the
domain registrar but by a PKI residing in the backend of the domain
operator (off-site) as described in Section 3.1. This leads to
Fries, et al. Expires January 10, 2021 [Page 12]
Internet-Draft BRSKI-AE July 2020
changes in the placement or enhancements of the logical elements as
shown in Figure 1.
+------------------------+
+--------------Drop Ship--------------->| Vendor Service |
| +------------------------+
| | M anufacturer| |
| | A uthorized |Ownership|
| | S igning |Tracker |
| | A uthority | |
| +--------------+---------+
| ^
| |
V |
+--------+ ......................................... |
| | . . | BRSKI-
| | . +------------+ +------------+ . | MASA
| Pledge | . | Join | | Domain <-----+
| | . | Proxy | | Registrar/ | .
| <-------->............<-------> Enrollment | .
| | . | BRSKI-AE | Proxy | .
| IDevID | . | | +------^-----+ .
| | . +------------+ | .
| | . | .
+--------+ ...............................|.........
"on-site domain" components |
|e.g., RFC 7030,
| RFC 4210, ...
.............................................|.....................
. +---------------------------+ +--------v------------------+ .
. | Public Key Infrastructure |<----+ PKI RA | .
. | PKI CA |---->+ | .
. +---------------------------+ +---------------------------+ .
...................................................................
"off-site domain" components
Figure 1: Architecture overview using off-site PKI components
The architecture overview in Figure 1 utilizes the same logical
elements as BRSKI but with a different placement in the deployment
architecture for some of the elements. The main difference is the
placement of the PKI RA/CA component, which is performing the
authorization decision for the certification request message. It is
placed in the off-site domain of the operator (not the deployment
site directly), which may have no or only temporary connectivity to
the deployment or on-site domain of the pledge. This is to underline
the authorization decision for the certification request in the
Fries, et al. Expires January 10, 2021 [Page 13]
Internet-Draft BRSKI-AE July 2020
backend rather than on-site. The following list describes the
components in the deployment domain:
o Join Proxy: same functionality as described in BRSKI.
o Domain Registrar / Enrollment Proxy: In general the domain
registrar proxy has a similar functionality regarding the
imprinting of the pledge in the deployment domain to facilitate
the communication of the pledge with the MASA and the PKI.
Different is the authorization of the certification request.
BRSKI-AE allows to perform this in the operators backend (off-
site), and not directly at the domain registrar.
* Voucher exchange: The voucher exchange with the MASA via the
domain registrar is performed as described in BRSKI
[I-D.ietf-anima-bootstrapping-keyinfra] .
* Certificate enrollment: For the pledge enrollment the domain
registrar in the deployment domain supports the adoption of the
pledge in the domain based on the voucher request.
Nevertheless, it may not have sufficient information for
authorizing the certification request. If the authorization is
done in the off-site domain, the domain registrar forwards the
certification request to the RA to perform the authorization.
The domain registrar in this acts as an enrollment proxy or
local registration authority. It is also able to handle the
case having temporarily no connection to an off-site PKI by
storing the certification request and forwarding it to the RA
upon regaining connectivity. As authenticated self-contained
objects are used, it requires an enhancement of the domain
registrar. This is done by supporting alternative enrollment
approaches (protocol options, protocols, encoding) by enhancing
the addressing scheme to communicate with the domain registrar
(see Section 5.1.5) and also by providing a discover scheme to
allow the pledge to enumerate the supported enrollment options
(see Section 5.3).
The following list describes the vendor related components/service
outside the deployment domain:
o MASA: general functionality as described in BRSKI. Assumption
that the interaction with the MASA may be synchronous (voucher
request with nonce) or asynchronous (voucher request without
nonce).
o Ownership tracker: as defined in BRSKI.
Fries, et al. Expires January 10, 2021 [Page 14]
Internet-Draft BRSKI-AE July 2020
The following list describes the operator related components/service
operated in the backend:
o PKI RA: Performs certificate management functions (validation of
certification requests, interaction with inventory/asset
management for authorization of certification requests, etc.) for
issuing, updating, and revoking certificates for a domain as a
centralized infrastructure for the domain operator. The inventory
(asset) management may be a separate component or integrated into
the RA directly.
o PKI CA: Performs certificate generation by signing the certificate
structure provided in the certification request.
Based on BRSKI and the architectural changes the original protocol
flow is divided into three phases showing commonalities and
differences to the original approach as depicted in the following.
o Discovery phase (same as BRSKI)
o Voucher exchange with deployment domain registrar (same as BRSKI).
o Enrollment phase (changed to accompany the application of
authenticated self-contained objects).
5.1.1. Behavior of a pledge
The behavior of a pledge as described in
[I-D.ietf-anima-bootstrapping-keyinfra] is kept with one exception.
After finishing the imprinting phase (4) the enrollment phase (5) is
performed with a method supporting authenticated self-contained
objects. Using EST with simpleenroll cannot be applied here, as it
binds the pledge authentication with the existing IDevID to the
transport channel (TLS) rather than to the certification request
object directly. This authentication in the transport layer is not
visible / verifiable at the authorization point in the off-site
domain. Section 6 discusses potential enrollment protocols and
options applicable.
5.1.2. Pledge - Registrar discovery and voucher exchange
The discovery phase is applied as specified in
[I-D.ietf-anima-bootstrapping-keyinfra].
Fries, et al. Expires January 10, 2021 [Page 15]
Internet-Draft BRSKI-AE July 2020
5.1.3. Registrar - MASA voucher exchange
The voucher exchange is performed as specified in
[I-D.ietf-anima-bootstrapping-keyinfra].
5.1.4. Pledge - Registrar - RA/CA certificate enrollment
As stated in Section 4 the enrollment shall be performed using an
authenticated self-contained object providing:
o Proof of Possession: utilizing the private key corresponding to
the public key contained in the certification request.
o Proof of Identity: utilizing the existing IDevID credential to
generate a signature of the initial certification request.
Certificate updates may utilize the LDevID credential.
Fries, et al. Expires January 10, 2021 [Page 16]
Internet-Draft BRSKI-AE July 2020
+--------+ +---------+ +------------+ +------------+
| Pledge | | Circuit | | Domain | | Operator |
| | | Join | | Registrar | | RA/CA |
| | | Proxy | | (JRC) | | (OPKI) |
+--------+ +---------+ +------------+ +------------+
/--> | |
[Request of CA Certificates] | |
|---------- CA Certs Request ------------>| |
| [if connection to operator domain is available] |
| |-Request CA Certs ->|
| |<- CA Certs Response|
|<-------- CA Certs Response--------------| |
/--> | |
[Request of Certificate Attributes to be included] |
|---------- Attribute Request ----------->| |
| [if connection to operator domain is available] |
| |Attribute Request ->|
| |<-Attribute Response|
|<--------- Attribute Response -----------| |
/--> | |
[Certification request] | |
|-------------- Cert Request ------------>| |
| [if connection to operator domain is available] |
| |--- Cert Request -->|
| |<-- Cert Response --|
[Optional Certification waiting indication] | |
/--> | |
|<---------- Cert Waiting ----------------| |
|-- Cert Polling (with orig request ID) ->| |
| [if connection to operator domain is available] |
| |--- Cert Request -->|
| |<-- Cert Response --|
/--> | |
|<------------- Cert Response ------------| |
/--> | |
[Certification confirmation] | |
|-------------- Cert Confirm ------------>| |
| /--> |
| |[optional] |
| |--- Cert Confirm -->|
| |<-- PKI Confirm ----|
|<------------- PKI/Registrar Confirm ----| |
Figure 2: Certificate enrollment
The following list provides an abstract description of the flow
depicted in Figure 2.
Fries, et al. Expires January 10, 2021 [Page 17]
Internet-Draft BRSKI-AE July 2020
o CA Cert Request: The pledge SHOULD request the full distribution
of CA Certificates. This ensures that the pledge has the complete
set of current CA certificates beyond the pinned-domain-cert.
o CA Cert Response: Contains at least one CA certificate of the
issuing CA.
o Attribute Request: Typically, the automated bootstrapping occurs
without local administrative configuration of the pledge.
Nevertheless, there are cases, in which the pledge may also
include additional attributes specific to the deployment domain
into the certification request. To get these attributes in
advance, the attribute request SHOULD be used.
o Attribute Response: Contains the attributes to be included in the
certification request message.
o Cert Request: Depending on the utilized enrollment protocol, this
certification request contains the authenticated self-contained
object ensuring both, proof-of-possession of the corresponding
private key and proof-of-identity of the requester.
o Cert Response: certification response message containing the
requested certificate and potentially further information like
certificates of intermediary CAs on the certification path.
o Cert Waiting: waiting indication for the pledge to retry after a
given time. For this a request identifier is necessary. This
request identifier may bei either part of the enrollment protocol
or build based on the certification request.
o Cert Polling: querying the registrar, if the certificate request
was already processed; can be answered either with another Cert
Waiting, or a Cert Response.
o Cert Confirm: confirmation message from pledge after receiving and
verifying the certificate.
o PKI/Registrar Confirm: confirmation message from PKI/registrar
about reception of the pledge's certificate confirmation.
[RFC Editor: please delete] /*
Open Issues: