-
Notifications
You must be signed in to change notification settings - Fork 0
/
draft-ietf-sacm-arch.txt
2800 lines (1871 loc) · 108 KB
/
draft-ietf-sacm-arch.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
SACM Working Group A. Montville
Internet-Draft B. Munyan
Intended status: Standards Track CIS
Expires: 8 May 2022 4 November 2021
Security Automation and Continuous Monitoring (SACM) Architecture
draft-ietf-sacm-arch-14
Abstract
This document defines an architecture enabling a cooperative Security
Automation and Continuous Monitoring (SACM) ecosystem. This work is
predicated upon information gleaned from SACM Use Cases and
Requirements ([RFC7632] and [RFC8248] respectively), and terminology
as found in [I-D.ietf-sacm-terminology].
WORKING GROUP: The source for this draft is maintained in GitHub.
Suggested changes should be submitted as pull requests at
https://github.com/sacmwg/ietf-mandm-sacm-arch/. Instructions are on
that page as well.
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 8 May 2022.
Copyright Notice
Copyright (c) 2021 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
Montville & Munyan Expires 8 May 2022 [Page 1]
Internet-Draft SACM Architecture November 2021
and restrictions with respect to this document. Code Components
extracted from this document must include Revised BSD License text as
described in Section 4.e of the Trust Legal Provisions and are
provided without warranty as described in the Revised BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 4
1.1. Requirements notation . . . . . . . . . . . . . . . . . . 4
2. Terms and Definitions . . . . . . . . . . . . . . . . . . . . 4
3. Architectural Overview . . . . . . . . . . . . . . . . . . . 8
3.1. Producer . . . . . . . . . . . . . . . . . . . . . . . . 9
3.2. Consumer . . . . . . . . . . . . . . . . . . . . . . . . 9
3.3. Integration Service . . . . . . . . . . . . . . . . . . . 9
3.4. Payload/Message . . . . . . . . . . . . . . . . . . . . . 10
3.5. Payload Categorization . . . . . . . . . . . . . . . . . 10
3.5.1. Topic-centric . . . . . . . . . . . . . . . . . . . . 10
3.5.2. Payload-centric . . . . . . . . . . . . . . . . . . . 11
3.6. Capabilities . . . . . . . . . . . . . . . . . . . . . . 11
3.7. Interaction Categories . . . . . . . . . . . . . . . . . 12
3.7.1. Broadcast . . . . . . . . . . . . . . . . . . . . . . 12
3.7.2. Directed . . . . . . . . . . . . . . . . . . . . . . 12
4. SACM Role-based Architecture . . . . . . . . . . . . . . . . 13
4.1. Architectural Roles/Components . . . . . . . . . . . . . 14
4.1.1. Manager . . . . . . . . . . . . . . . . . . . . . . . 14
4.1.2. Orchestrator(s) . . . . . . . . . . . . . . . . . . . 14
4.1.3. Repositories . . . . . . . . . . . . . . . . . . . . 15
4.1.4. Integration Service . . . . . . . . . . . . . . . . . 15
4.2. Downstream Uses . . . . . . . . . . . . . . . . . . . . . 16
4.2.1. Reporting . . . . . . . . . . . . . . . . . . . . . . 16
4.2.2. Analytics . . . . . . . . . . . . . . . . . . . . . . 16
4.3. Sub-Architectures . . . . . . . . . . . . . . . . . . . . 16
4.3.1. Collection Sub-Architecture . . . . . . . . . . . . . 16
4.3.2. Evaluation Sub-Architecture . . . . . . . . . . . . . 19
5. Ecosystem Interactions . . . . . . . . . . . . . . . . . . . 21
5.1. Manager . . . . . . . . . . . . . . . . . . . . . . . . . 21
5.2. Component Registration . . . . . . . . . . . . . . . . . 22
5.3. Administrative Interface . . . . . . . . . . . . . . . . 23
5.3.1. Capability Advertisement Handshake . . . . . . . . . 23
5.3.2. Health Check . . . . . . . . . . . . . . . . . . . . 23
5.3.3. Heartbeat . . . . . . . . . . . . . . . . . . . . . . 23
5.3.4. Capability-specific Requests . . . . . . . . . . . . 24
5.4. Status Notifications . . . . . . . . . . . . . . . . . . 24
5.5. Component Interactions . . . . . . . . . . . . . . . . . 24
5.5.1. Initiate Ad-Hoc Collection . . . . . . . . . . . . . 24
5.5.2. Coordinate Periodic Collection . . . . . . . . . . . 24
5.5.3. Coordinate Observational/Event-based Collection . . . 25
5.5.4. Persist Collected Posture Attributes . . . . . . . . 26
Montville & Munyan Expires 8 May 2022 [Page 2]
Internet-Draft SACM Architecture November 2021
5.5.5. Initiate Ad-Hoc Evaluation . . . . . . . . . . . . . 26
5.5.6. Coordinate Periodic Evaluation . . . . . . . . . . . 26
5.5.7. Coordinate Change-based Evaluation . . . . . . . . . 27
5.5.8. Queries . . . . . . . . . . . . . . . . . . . . . . . 27
6. Operations . . . . . . . . . . . . . . . . . . . . . . . . . 27
6.1. Component Registration . . . . . . . . . . . . . . . . . 27
6.1.1. Request Payload . . . . . . . . . . . . . . . . . . . 28
6.1.2. Request Processing . . . . . . . . . . . . . . . . . 28
6.1.3. Response Payload . . . . . . . . . . . . . . . . . . 29
6.1.4. Response Processing . . . . . . . . . . . . . . . . . 29
6.2. Administrative Interface . . . . . . . . . . . . . . . . 29
6.2.1. Capability Advertisement Handshake . . . . . . . . . 29
6.2.2. Health Check . . . . . . . . . . . . . . . . . . . . 31
6.2.3. Heartbeat . . . . . . . . . . . . . . . . . . . . . . 32
6.3. Status Notification . . . . . . . . . . . . . . . . . . . 33
6.3.1. Request Payload . . . . . . . . . . . . . . . . . . . 34
6.3.2. Request Processing . . . . . . . . . . . . . . . . . 34
6.3.3. Response Payload . . . . . . . . . . . . . . . . . . 34
6.3.4. Response Processing . . . . . . . . . . . . . . . . . 34
6.4. Initiate Ad-Hoc Collection . . . . . . . . . . . . . . . 34
6.4.1. SACM Producer to Orchestrator . . . . . . . . . . . . 36
6.4.2. Orchestrator to Posture Collection Service . . . . . 36
6.4.3. Posture Collection Service to Posture Attribute
Repository . . . . . . . . . . . . . . . . . . . . . 38
6.5. Initiate Ad-Hoc Evaluation . . . . . . . . . . . . . . . 39
7. Privacy Considerations . . . . . . . . . . . . . . . . . . . 39
8. Security Considerations . . . . . . . . . . . . . . . . . . . 39
9. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 39
9.1. Component Types . . . . . . . . . . . . . . . . . . . . . 39
9.2. Component Capabilities . . . . . . . . . . . . . . . . . 40
9.2.1. Heartbeat . . . . . . . . . . . . . . . . . . . . . . 40
9.2.2. Status Notification (Publish) . . . . . . . . . . . . 40
9.2.3. Status Notification (Subscribe) . . . . . . . . . . . 40
10. References . . . . . . . . . . . . . . . . . . . . . . . . . 40
10.1. Normative References . . . . . . . . . . . . . . . . . . 40
10.2. Informative References . . . . . . . . . . . . . . . . . 41
Appendix A. Security Domain Workflows . . . . . . . . . . . . . 43
A.1. IT Asset Management . . . . . . . . . . . . . . . . . . . 43
A.1.1. Components, Capabilities and Workflow(s) . . . . . . 44
A.2. Vulnerability Management . . . . . . . . . . . . . . . . 44
A.2.1. Components, Capabilities and Workflow(s) . . . . . . 45
A.3. Configuration Management . . . . . . . . . . . . . . . . 46
A.3.1. Components, Capabilities and Workflow(s) . . . . . . 47
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 49
Montville & Munyan Expires 8 May 2022 [Page 3]
Internet-Draft SACM Architecture November 2021
1. Introduction
The purpose of this draft is to define an architectural approach for
a SACM Domain, based on the spirit of use cases found in [RFC7632]
and requirements found in [RFC8248]. This approach gains the most
advantage by supporting a variety of collection systems, and intends
to enable a cooperative ecosystem of tools from disparate sources
with minimal operator configuration.
1.1. Requirements notation
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 RFC
2119, BCP 14 [RFC2119].
2. Terms and Definitions
Assessment: Defined in [RFC5209] as "the process of collecting
posture for a set of capabilities on the endpoint (e.g., host-
based firewall) such that the appropriate validators may evaluate
the posture against compliance policy."
Asset: Is a system resource, as defined in [RFC4949], that may be
composed of other assets.
Examples of Assets include: Endpoints, Software, Guidance, or
X.509 public key certificates. An asset is not necessarily owned
by an organization.
Asset Management: The IT process by which assets are provisioned,
updated, maintained and deprecated.
Attribute: Is a data element, as defined in [RFC5209], that is
atomic.
In the context of SACM, attributes are "atomic" information
elements and an equivalent to attribute-value-pairs. Attributes
can be components of Subjects.
Capability: A set of features that are available from a SACM
Component.
See also "capability" in [I-D.ietf-i2nsf-terminology].
Collector: A piece of software that acquires information about one
or more target endpoints by conducting collection tasks.
Montville & Munyan Expires 8 May 2022 [Page 4]
Internet-Draft SACM Architecture November 2021
A collector can be distributed across multiple endpoints, e.g.
across a target endpoint and a SACM component. The separate parts
of the collector can communicate with a specialized protocol, such
as PA-TNC [RFC5792]. At least one part of a distributed collector
has to take on the role of a provider of information by providing
SACM interfaces to propagate capabilities and to provide SACM
content in the form of collection results.
Configuration: A non-volatile subset of the endpoint attributes of a
endpoint that is intended to be unaffected by a normal reboot-
cycle.
Configuration is a type of imperative guidance that is stored in
files (files dedicated to contain configuration and/ or files that
are software components), directly on block devices, or on
specific hardware components that can be accessed via
corresponding software components. Modification of configuration
can be conducted manually or automatically via management (plane)
interfaces that support management protocols, such as SNMP or WMI.
A change of configuration can occur during both run-time and down-
time of an endpoint. It is common practice to scheduled a change
of configuration during or directly after the completion of a
boot-cycle via corresponding software components located on the
target endpoint itself.
Consumer: A SACM Role that requires a SACM Component to include SACM
Functions enabling it to receive information from other SACM
Components.
Endpoint: Defined in [RFC5209] as "any computing device that can be
connected to a network."
Additional Information - The [RFC5209] definition continues, "Such
devices normally are associated with a particular link layer
address before joining the network and potentially an IP address
once on the network. This includes: laptops, desktops, servers,
cell phones, or any device that may have an IP address."
To further clarify the [RFC5209] definition, an endpoint is any
physical or virtual device that may have a network address. Note
that, network infrastructure devices (e.g. switches, routers,
firewalls), which fit the definition, are also considered to be
endpoints within this document.
Physical endpoints are always composites that are composed of
Montville & Munyan Expires 8 May 2022 [Page 5]
Internet-Draft SACM Architecture November 2021
hardware components and software components. Virtual endpoints
are composed entirely of software components and rely on software
components that provide functions equivalent to hardware
components.
The SACM architecture differentiates two essential categories of
endpoints: Endpoints whose security posture is intended to be
assessed (target endpoints) and endpoints that are specifically
excluded from endpoint posture assessment (excluded endpoints).
Based on the definition of an asset, an endpoint is a type of
asset.
Endpoint Attribute: Is a discreet endpoint characteristic that is
computably observable.
Endpoint Attributes typically constitute Attributes that can be
bundled into Subject (e.g. information about a specific network
interface can be represented via a set of multiple AVP).
Endpoint Characteristics: The state, configuration and composition
of the software components and (virtual) hardware components a
target endpoint is composed of, including observable behavior,
e.g. sys-calls, log-files, or PDU emission on a network.
In SACM work-flows, (Target) Endpoint Characteristics are
represented via Information Elements.
Posture: Defined in [RFC5209] as "configuration and/or status of
hardware or software on an endpoint as it pertains to an
organization's security policy."
This term is used within the scope of SACM to represent the
configuration and state information that is collected from a
target endpoint in the form of endpoint attributes (e.g. software/
hardware inventory, configuration settings, dynamically assigned
addresses). This information may constitute one or more posture
attributes.
Posture Attributes: Defined in [RFC5209] as "attributes describing
the configuration or status (posture) of a feature of the
endpoint. A Posture Attribute represents a single property of an
observed state. For example, a Posture Attribute might describe
the version of the operating system installed on the system."
Within this document this term represents a specific assertion
Montville & Munyan Expires 8 May 2022 [Page 6]
Internet-Draft SACM Architecture November 2021
about endpoint configuration or state (e.g. configuration setting,
installed software, hardware) represented via endpoint attributes.
The phrase "features of the endpoint" highlighted above refers to
installed software or software components.
Provider: A provider is a SACM role assigned to a SACM component
that provides role-specific functions to provide information to
other SACM components.
Repository: A repository is a controller that contains functions to
consume, store and provide information of a particular kind.
Such information is typically data transported on the data plane,
but potentially also data and metadata from the control and
management plane. A single repository may provide the functions
of more than one specific repository type (i.e. configuration
baseline repository, assessment results repository, etc.)
Security Automation: The process of which security alerts can be
automated through the use of different components to monitor,
analyze and assess endpoints and network traffic for the purposes
of detecting misconfigurations, misbehaviors or threats.
Security Automation is intended to identify target endpoints that
cannot be trusted (see "trusted" in [RFC4949]. This goal is
achieved by creating and processing evidence (assessment
statements) that a target endpoint is not a trusted system
[RFC4949].
SIEM: NIST defines SIEM as an "application that provides the ability
to gather security data from information system components and
present that data as actionalbe information via a single
interface" [NISTSIEM].
SOAR: Commonly known as Security Orchestration, Automation, and
Response. SOAR is an holistic enterprise capability that exists
when threat management, automation of security operations, and
incident response are well-coordinated across all security program
components in a manner minimizing the need for human intervention.
State: A volatile set of endpoint attributes of a (target) endpoint
that is affected by a reboot-cycle.
Local state is created by the interaction of components with other
components via the control plane, via processing data plane
payload, or via the functional properties of local hardware and
software components. Dynamic configuration (e.g. IP address
distributed dynamically via an address distribution and management
Montville & Munyan Expires 8 May 2022 [Page 7]
Internet-Draft SACM Architecture November 2021
services, such as DHCP) is considered state that is the result of
the interaction with another component (e.g. provided by a DHCP
server with a specific configuration).
Target Endpoint: Is an endpoint that is under assessment at some
point in, or region of, time.
Every endpoint that is not specifically designated as an excluded
endpoint is a target endpoint. A target endpoint is not part of a
SACM domain unless it contains a SACM component (e.g. a SACM
component that publishes collection results coming from an
internal collector).
A target endpoint is similar to a device that is a Target of
Evaluation (TOE) as defined in Common Criteria and as referenced
by [RFC4949].
Vulnerability Assessment: An assessment specifically tailored to
determining whether a set of endpoints is vulnerable according to
the information contained in the vulnerability description
information.
Workflow: A workflow is a modular composition of tasks that can
contain loops, conditionals, multiple starting points and multiple
endpoints.
The most prominent workflow in SACM is the assessment workflow.
-->
3. Architectural Overview
The generic approach proposed herein recognizes the need to obtain
information from existing and future state collection systems, and
makes every attempt to respect [RFC7632] and [RFC8248]. At the
foundation of any architecture are entities, or components, that need
to communicate. They communicate by sharing information, where, in a
given flow, one or more components are consumers of information and
one or more components are providers of information. Different roles
within a cooperative ecosystem may act as both Producers and
Consumers of SACM-relevant information.
Montville & Munyan Expires 8 May 2022 [Page 8]
Internet-Draft SACM Architecture November 2021
+----------------+
| SACM Component |
| (Producer) |
+-------+--------+
|
|
+--------------v----------------+
| Integration Service |
+--------------+----------------+
|
|
+-------v--------+
| SACM Component |
| (Consumer) |
+----------------+
Figure 1: Basic Architectural Structure
3.1. Producer
A Producer can be described as an abstraction that refers to an
entity capable of sending SACM-relevant information to one or many
Consumers. In general, information (a "payload") is produced to a
particular topic, subscribed to by one or more Consumers. Producers
need not be concerned about any specifics of the payload it is
providing to a given topic. A Producer may, for example, publish
posture collection instructions to collector topics.
3.2. Consumer
A Consumer can be described as an abstraction that refers to an
entity capable of receiving SACM-relevant information from one or
many Producers. A Consumer acts as a subscriber to a given topic (or
set of topics), enabling it to receive event notifications when a
Producer provides a payload to that topic or topics. Consumers
receive payloads and act upon them according to their capabilities.
A Consumer may, for example, subscribe to a posture collection topic
to receive and act upon, collection instructions.
3.3. Integration Service
The Integration Service acts as the broker between Producers and
Consumers; acting as the destination for Producers to publish
payloads, and as the source for Consumers subscribing to those
payloads.
Montville & Munyan Expires 8 May 2022 [Page 9]
Internet-Draft SACM Architecture November 2021
SACM Components are intended to interact with other SACM Components.
These interactions can be thought of, at the architectural level, as
the combination of interfaces with their supported operations. Each
interaction will convey a classified payload of information. This
classification of payload information allows Consumers to subscribe
to only the classifications to which they are capable of handling.
The payload information should contain subdomain-specific
characteristics and/or instructions.
3.4. Payload/Message
The payload (sometimes referred to as a "message" or "message
payload") is the unit of data involved in any given interaction
between two SACM components. The payload MAY be used to convey the
semantic meaning of the operation to be performed. Protocols such as
[RFC6120] achieves this meaning through XML namespace identification
within a <message/> or <iq/> stanza. Topic-centric protocols such as
[MQTT] convey the meaning of payloads through topic naming
techniques. Both methods require connected components to verify
message payloads according to their respective capabilities.
With respect to the Integration Service, the payload is simply an
array of bytes, so the data contained within it is not required to
convey a specific format or meaning to the Integration Service. The
serialization of the payload combined with the payload categorization
provides meaning within the SACM context.
3.5. Payload Categorization
Within the SACM ecosystem, categorization of payloads and their
transport provide the context through which various capabilities are
achieved. Two types of payload categorization can be described.
3.5.1. Topic-centric
Topic-centric payload categorization allows for a broad spectrum of
payloads by characterizing those payloads through the Integration
Service topic. In this categorization, the topic name becomes a
label attached to the payload to which the Integration Service
matches against known subscriptions. The topic becomes the
operational context for the payload. Topic-centric categorization
allows for any payload to be sent to any topic, but requires that
SACM consumers parse the payloads to determine whether or not they
have the capability to act on those payloads.
When interacting using a topic-centric payload categorization, topic
naming conventions SHOULD provide an adequate amount of information
to be deterministic regarding the purpose of the interaction. For
Montville & Munyan Expires 8 May 2022 [Page 10]
Internet-Draft SACM Architecture November 2021
example, a topic named /notification/collection/oval would indicate
that (a) the topic is a broadcast/notification (publish/subscribe)
topic, (b) subscribers to this topic are performing a "collection"
action, and (c) the payloads published to the topic are represented
using the OVAL serialization format.
3.5.2. Payload-centric
Payload-centric categorization encapsulates the intent of an
interaction within the message payload itself, using an identifying
token, tag, or namespace identifier. This method allows for the
limitation of message types, and therefore increases the
extensibility of message payloads.
Payload-centric categorization allows for modularization and
specification of extensions, and for plugin-based support of
capabilities based the categorization. XMPP is an example of
utilization of payload-centric categorization, allowing only three
distinct "stanzas" (<message/>, <presence/>, and <iq/>), using
payloads defined by the various extension protocols maintained by the
XMPP standards foundation.
3.6. Capabilities
SACM components interact with each other based on their capacity to
perform specific actions. In advertising its capabilities, a SACM
component indicates its competence to understand message payloads,
perform any payload translation or normalization, and act upon that
message. For example, an Orchestration component receives a message
to initiate posture attribute collection. The Orchestrator may then
normalize those instructions to a particular collection system's
serialization. The normalized instructions are then published to the
Integration Service, notifying the appropriate subscribers.
Capabilities are described using Uniform Resource Names (URNs), which
will be maintained and enhanced via IANA tables (IANA
Considerations). Using topic-centric categorization of message
payloads, capability URNs SHOULD be associated with Integration
Service topics to which publishers, subscribers, and service
handlers, will interact. Topic naming conventions are considered
implementation details and are not considered for standardization.
Given a payload-centric categorization of message payloads,
capability URNs SHOULD be used as the identifying token, tag, or
namespace in order to distinguish specific payloads.
Montville & Munyan Expires 8 May 2022 [Page 11]
Internet-Draft SACM Architecture November 2021
3.7. Interaction Categories
Two categories of interactions SHOULD be supported by the Integration
Service: broadcast and directed. Broadcast interactions are
asynchronous by default, and directed interactions may be invoked
either synchronously or asynchronously.
3.7.1. Broadcast
A broadcast interaction, commonly referred to as publish/subscribe,
allows for a wider distribution of a message payload. When a payload
is published to the Integration Service, all subscribers to that
payload are alerted and may consume the message payload. This
category of interaction can also be described as a "unicast"
interaction when only a single subscriber exists. An example of a
broadcast interaction could be to publish Linux OVAL objects to a
posture collection topic. Subscribing consumers receive the
notification, and proceed to collect endpoint configuration posture
based on the supplied message payload.
3.7.2. Directed
The intent of a directed interaction is to enable point-to-point
communications between a producer and consumer, through the standard
interfaces provided by the Integration Service. The provider
component indicates which consumer is intended to receive the
payload, and the Integration Service routes the payload directly to
that consumer. Two "styles" of directed interaction exist, differing
only by the response from the consumer.
3.7.2.1. Synchronous
Synchronous, request/response style interaction requires that the
requesting component block and wait for the receiving component to
respond, or to time out when that response is delayed past a given
time threshold. A synchronous interaction example may be querying a
CMDB for posture attribute information in order to perform an
evaluation.
3.7.2.2. Asynchronous
An asynchronous interaction involves the payload producer directing
the message to a consumer, but not blocking or waiting for an
immediate response. This style of interaction allows the producer to
continue on to other activities without the need to wait for
responses. This style is particularly useful when the interaction
payload invokes a potentially long-running task, such as data
collection, report generation, or policy evaluation. The receiving
Montville & Munyan Expires 8 May 2022 [Page 12]
Internet-Draft SACM Architecture November 2021
component may reply later via callbacks or further interactions, but
it is not mandatory.
4. SACM Role-based Architecture
Within the cooperative SACM ecosystem, a number of roles act in
coordination to provide relevant policy/guidance, perform data
collection, storage, evaluation, and support downstream analytics and
reporting.
+-------------------------------------------+
| Manager |
+-------------------^-----------------------+
|
+-----------------+ | +--------------------+
| Orchestrator(s) | | | Repository(-ies) |
+---------^-------+ | +----------^---------+
| | | +--------------------+
| | | | Downstream Uses |
| | | | +----------------+ |
+---------v---------v-------------v---------+ | | Analytics | |
| Integration Service <------> +----------------+ |
+-----------^--------------------------^----+ | +----------------+ |
| | | | Reporting | |
| | | +----------------+ |
+-----------v-------------------+ | +--------------------+
| Collection Sub-Architecture | |
+-------------------------------+ |
+---------------v---------------+
| Evaluation Sub-Architecture |
+-------------------------------+
Figure 2: Notional Role-based Architecture
As shown in Figure 2, the SACM role-based architecture consists of
some basic SACM Components communicating using an integration
service. The integration service is expected to maximally align with
the requirements described in [RFC8248], which means that the
integration service will support brokered (i.e. point-to-point) and
proxied data exchange.
Montville & Munyan Expires 8 May 2022 [Page 13]
Internet-Draft SACM Architecture November 2021
4.1. Architectural Roles/Components
This document suggests a variety of players in a cooperative
ecosystem; known as SACM Components. SACM Components may be composed
of other SACM Components, and each SACM Component plays one, or more,
of several roles relevant to the ecosystem. Roles may act as
providers of information, consumers of information, or both provider
and consumer. Figure 2 depicts a number of SACM components which are
architecturally significant and therefore warrant discussion and
clarification. Each role depicted in Figure 2 represents the
interface to the component(s) fulfilling that role, not necessarily
any specific implementation. For example, the "Repository" figure
represents the interface to persistent storage, and not any
particular persistent storage mechanism.
4.1.1. Manager
The Manager acts as the control plane for the SACM ecosystem; a sort
of high level component capable of coordinating the actions,
notifications, and events between components. The manager controls
the administrative interfaces with the various components of the
ecosystem, acting as the central point to which all other components
will register and advertise their capabilities. It is the
responsibility of the manager to control a component's access to the
ecosystem, maintain an inventory of components attached to the
ecosystem, and to initiate the various workflows involved in the
collection and/or evaluation of posture attributes.
The manager should maintain the master set of capabilities that can
be supported within the ecosystem. These are the various collection,
evaluation, and persistence capabilities with which components may
register. The manager MAY be responsible for assigning topics for
each of the capabilities that are supported, as registering
components subsequently subscribe to, or configure service handlers
for, those topics.
The manager may act as the user interface to the ecosystem, providing
user dashboards, inventories, component management, or operational
controls within the boundary of responsibility.
4.1.2. Orchestrator(s)
Orchestration components provide the manager with resources for
delegating work across the SACM ecosystem. Orchestrators are
responsible for receiving messages from the manager, e.g. posture
attribute collection instructions, and routing those messages to the
appropriate "actions". For example, an orchestrator may support the
capability of translating posture collection instructions using the
Montville & Munyan Expires 8 May 2022 [Page 14]
Internet-Draft SACM Architecture November 2021
Open Vulnerability and Assessment Language (OVAL) and providing those
instructions to OVAL collectors. An orchestrator may support the
capability of initiating policy evaluation. Where the Manager is
configured to ask a particular set of questions, those questions are
delegated to Orchestrators, who are then capable of asking those
questions using specific dialects.
4.1.3. Repositories
Figure 2 only includes a single reference to "Repository(-ies)", but
in practice, a number of separate data repositories may exist,
including posture attribute repositories, policy repositories, local
vulnerability definition data repositories, and state assessment
results repositories. The diagrammed notion of a repository within
the SACM context represents an interface in which payloads are
provided (based on the capabilities of the producer), normalized, and
persisted.
These data repositories may exist separately or together in a single
representation, and the design of these repositories may be as
distinct as their intended purpose, such as the use of relational
database management systems (RDBMS), filesystem-based storage, or
graph/map implementations. Each implementation of a SACM repository
should focus on the relationships between data elements and implement
the SACM information and data model(s).
4.1.4. Integration Service
If each SACM component represents a set of capabilities, then the
Integration Service represents the "fabric" by which SACM components
are woven together. The Integration Service acts as a message
broker, combining a set of common message categories and
infrastructure to allow SACM components to communicate using a shared
set of interfaces. The Integration Service's brokering capabilities
enable the exchange of various information payloads, orchestration of
component capabilities, message routing, and reliable delivery
(within reason - either with persistent messaging mechanisms or by
utilizing a timeout after a configurable period of time). The
Integration Service minimizes the dependencies from one system to
another through the loose coupling of applications through messaging.
SACM components will "attach" to the Integration Service either
through native support for the integration implementation, or through
the use of "adapters" which provide a proxied attachment.
The Integration Service should provide mechanisms for both
synchronous and asynchronous request/response-style messaging, and a
publish/subscribe mechanism to implement an event-based architecture.
It is the responsibility of the Integration Service to coordinate and
Montville & Munyan Expires 8 May 2022 [Page 15]
Internet-Draft SACM Architecture November 2021
manage the sending and receiving of messages. The Integration
Service should allow components to directly connect and produce or
consume messages, or connect via message translators which can act as
a proxy, transforming messages from a component format to one
implementing a SACM data model.
The Integration Service MUST provide routing capabilities for
payloads between producers and consumers. The Integration Service
MAY provide further capabilities within the payload delivery
pipeline. Examples of these capabilities include, but are not
limited to, intermediate processing, message transformation, type
conversion, validation, or other enterprise integration patterns.
4.2. Downstream Uses
As depicted by Figure 2, a number of downstream uses exist in the
cooperative ecosystem. Each notional SACM component represents
distinct sub-architectures which will exchange information via the
integration services, using interactions described in this draft.
4.2.1. Reporting
The Reporting component represents capabilities outside of the SACM
architecture scope dealing with the query and retrieval of collected
posture attribute information, evaluation results, etc. in various
display formats that are useful to a wide range of stakeholders.
4.2.2. Analytics
The Analytics component represents capabilities outside of the SACM
architecture scope dealing with the discovery, interpretation, and
communication of any meaningful patterns of data in order to inform
effective decision making within the organization.
4.3. Sub-Architectures
Figure 2 shows two components representing sub-architectural roles
involved in a cooperative ecosystem of SACM components for the
purpose of posture assessment: Collection and Evaluation.
4.3.1. Collection Sub-Architecture
The Collection sub-architecture is, in a SACM context, the mechanism
by which posture attributes are collected from applicable endpoints
and persisted to a repository, such as a configuration management
database (CMDB). Control plane functions initiated by the Manager
will coordinate the necessary orchestration components, who will
choreograph endpoint data collection via defined interactions, using
Montville & Munyan Expires 8 May 2022 [Page 16]
Internet-Draft SACM Architecture November 2021
the Integration Service as a message broker. Instructions to perform
endpoint data collection are directed to a Posture Collection Service
capable of performing collection activities utilizing any number of
protocols, such as SNMP, NETCONF/RESTCONF, SCAP, SSH, WinRM, packet
capture, or host-based. Instructions are orchestrated with the
appropriate Posture Collection Services using serializations
supported according to the collector's capabilities.
+----------------------------------------------------------+
| Manager |
+-----------+----------------------------------------------+
|
Orchestrate
Collection
|
+-----------v-------------+ +------------------------------+
| Orchestrator(s) | | Posture Attribute Repository |
+-----------+-------------+ +--------------^---------------+
| |
Perform |
Collection Collected Data
| ^
| |
+-----------v------------------------------+---------------+
| Integration Service |
+----+------------------^------------------------------^---+
| | | |
v + v |
Perform Collected Perform Collected
Collection Data Collection Data
| ^ | ^
| | | |
+----v-----------------------+ +------------------------------+
| Posture Collection Service | | | Endpoint | |
+---^------------------------+ | +--v------------------+----+ |
| | | |Posture Collection Service| |
| | | +--------------------------+ |
Events Queries +------------------------------+
^ | (PCS resides on Endpoint)
| |
+---+-------------------v----+
| Endpoint |
+----------------------------+
(PCS does not reside on Endpoint)
Figure 3: Decomposed Collection Sub-Architecture
Montville & Munyan Expires 8 May 2022 [Page 17]
Internet-Draft SACM Architecture November 2021
4.3.1.1. Posture Collection Service
The Posture Collection Service (PCS) is a SACM component responsible
for the collection of posture attributes from an endpoint or set of
endpoints. A single PCS MAY be responsible for management of posture
attribute collection from many endpoints. The PCS will interact with
the Integration Service to receive collection instructions, and to
provide collected posture attributes for persistence to one or more
Posture Attribute Repositories. Collection instructions may be
supplied in a variety of forms, including subscription to a publish/
subscribe topic to which the Integration Service has published
instructions, or via request/response-style messaging (either
synchronous or asynchronous).
Four classifications of posture collections MAY be supported.
4.3.1.1.1. Ad-Hoc
Ad-Hoc collection is defined as a single colletion of posture
attributes, collected at a particular time. An example of ad-hoc
collection is the single collection of a specific registry key.
4.3.1.1.2. Continuous/Scheduled
Continuous/Scheduled collection is defined as the ongoing, periodic
collection of posture attributes. An example of scheduled collection
is the collection of a specific registry key value every day at a
given time.
4.3.1.1.3. Observational
This classification of collection is triggered by the observation,
external to an endpoint, of information asserting posture attribute
values for that endpoint. An example of observational collection is
examination of netflow data for particular packet captures and/or
specific information within those captures.
4.3.1.1.4. Event-based
Event-based collection may be triggered either internally or
externally to the endpoint. Internal event-based collection is
triggered when a posture attribute of interest is added, removed, or
modified on an endpoint. This modification indicates a change in the
current state of the endpoint, potentially affecting its adherence to