-
Notifications
You must be signed in to change notification settings - Fork 6
/
draft-ietf-sacm-information-model-01.txt
4536 lines (3034 loc) · 179 KB
/
draft-ietf-sacm-information-model-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
SACM D. Waltermire, Ed.
Internet-Draft NIST
Intended status: Informational K. Watson
Expires: August 24, 2015 DHS
C. Kahn
L. Lorenzin
Pulse Secure, LLC
February 20, 2015
SACM Information Model
draft-ietf-sacm-information-model-01
Abstract
This document proposes an information model for SACM.
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 http://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 August 24, 2015.
Copyright Notice
Copyright (c) 2015 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
(http://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.
Waltermire, et al. Expires August 24, 2015 [Page 1]
Internet-Draft SACM Information Model February 2015
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 4
1.1. Changes in Revision 01 . . . . . . . . . . . . . . . . . 5
2. Problem Statement . . . . . . . . . . . . . . . . . . . . . . 6
2.1. Mapping to SACM Use Cases . . . . . . . . . . . . . . . . 7
2.2. Referring to an Endpoint . . . . . . . . . . . . . . . . 8
2.3. Dealing with Uncertainty . . . . . . . . . . . . . . . . 8
3. Conventions used in this document . . . . . . . . . . . . . . 9
3.1. Requirements Language . . . . . . . . . . . . . . . . . . 9
4. Elements of the SACM Information Model . . . . . . . . . . . 9
4.1. Software Component . . . . . . . . . . . . . . . . . . . 12
4.2. Software Instance . . . . . . . . . . . . . . . . . . . . 13
4.3. Hardware Component . . . . . . . . . . . . . . . . . . . 14
4.4. Hardware Instance . . . . . . . . . . . . . . . . . . . . 14
4.5. Network Interface . . . . . . . . . . . . . . . . . . . . 14
4.6. Address . . . . . . . . . . . . . . . . . . . . . . . . . 15
4.7. Identity . . . . . . . . . . . . . . . . . . . . . . . . 16
4.8. Location . . . . . . . . . . . . . . . . . . . . . . . . 16
4.9. Endpoint . . . . . . . . . . . . . . . . . . . . . . . . 17
4.10. Endpoint Attribute Assertion . . . . . . . . . . . . . . 17
4.10.1. Form and Precise Meaning . . . . . . . . . . . . . . 17
4.11. Attribute-Value Pair . . . . . . . . . . . . . . . . . . 18
4.11.1. Posture Attribute . . . . . . . . . . . . . . . . . 19
4.11.2. Identifying Attributes . . . . . . . . . . . . . . . 19
4.11.3. Evaluation Result . . . . . . . . . . . . . . . . . 21
4.12. Report . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.13. SACM Component . . . . . . . . . . . . . . . . . . . . . 22
4.13.1. External Attribute Collector . . . . . . . . . . . . 22
4.13.2. Evaluator . . . . . . . . . . . . . . . . . . . . . 22
4.13.3. Report Generator . . . . . . . . . . . . . . . . . . 23
4.14. Organization? . . . . . . . . . . . . . . . . . . . . . . 23
4.15. Guidance . . . . . . . . . . . . . . . . . . . . . . . . 23
4.15.1. Internal Collection Guidance . . . . . . . . . . . . 24
4.15.2. External Collection Guidance . . . . . . . . . . . . 24
4.15.3. Evaluation Guidance . . . . . . . . . . . . . . . . 24
4.15.4. Retention Guidance . . . . . . . . . . . . . . . . . 24
4.15.5. Reporting Guidance . . . . . . . . . . . . . . . . . 24
4.16. Provenance of Information . . . . . . . . . . . . . . . . 24
4.17. Endpoint . . . . . . . . . . . . . . . . . . . . . . . . 24
4.17.1. Endpoint Identity . . . . . . . . . . . . . . . . . 25
4.17.2. Software Component . . . . . . . . . . . . . . . . . 25
4.17.2.1. Unique Software Identifier . . . . . . . . . . . 26
4.18. User . . . . . . . . . . . . . . . . . . . . . . . . . . 26
4.18.1. User Identity . . . . . . . . . . . . . . . . . . . 26
5. SACM Usage Scenario Example . . . . . . . . . . . . . . . . . 26
5.1. Graph Model for Detection of Posture Deviation . . . . . 27
5.1.1. Components . . . . . . . . . . . . . . . . . . . . . 27
Waltermire, et al. Expires August 24, 2015 [Page 2]
Internet-Draft SACM Information Model February 2015
5.1.2. Identifiers . . . . . . . . . . . . . . . . . . . . . 27
5.1.3. Metadata . . . . . . . . . . . . . . . . . . . . . . 28
5.1.4. Relationships between Identifiers and Metadata . . . 29
5.2. Workflow . . . . . . . . . . . . . . . . . . . . . . . . 29
6. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 30
6.1. Contributors . . . . . . . . . . . . . . . . . . . . . . 30
7. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 30
8. Security Considerations . . . . . . . . . . . . . . . . . . . 30
9. References . . . . . . . . . . . . . . . . . . . . . . . . . 31
9.1. Normative References . . . . . . . . . . . . . . . . . . 31
9.2. Informative References . . . . . . . . . . . . . . . . . 31
Appendix A. Security Automation with TNC IF-MAP . . . . . . . . 37
A.1. What is Trusted Network Connect? . . . . . . . . . . . . 37
A.2. What is TNC IF-MAP? . . . . . . . . . . . . . . . . . . . 37
A.3. What is the TNC Information Model? . . . . . . . . . . . 38
Appendix B. Text for Possible Inclusion in the Terminology Draft 39
B.1. Terms and Definitions . . . . . . . . . . . . . . . . . . 39
B.1.1. Pre-defined and Modified Terms . . . . . . . . . . . 39
B.1.2. New Terms . . . . . . . . . . . . . . . . . . . . . . 39
Appendix C. Text for Possible Inclusion in the Architecture or
Use Cases . . . . . . . . . . . . . . . . . . . . . 40
C.1. Introduction . . . . . . . . . . . . . . . . . . . . . . 40
C.2. Core Principles . . . . . . . . . . . . . . . . . . . . . 41
C.3. Architecture Assumptions . . . . . . . . . . . . . . . . 41
Appendix D. Text for Possible Inclusion in the Requirements
Draft . . . . . . . . . . . . . . . . . . . . . . . 45
D.1. Problem Statement . . . . . . . . . . . . . . . . . . . . 45
D.2. Problem Scope . . . . . . . . . . . . . . . . . . . . . . 45
Appendix E. Text With No Clear Home Yet . . . . . . . . . . . . 46
E.1. Operations . . . . . . . . . . . . . . . . . . . . . . . 46
E.1.1. Generalized Workflow . . . . . . . . . . . . . . . . 46
E.2. From Information Needs to Information Elements . . . . . 47
E.3. Information Model Elements . . . . . . . . . . . . . . . 47
E.3.1. Asset Identifiers . . . . . . . . . . . . . . . . . . 49
E.3.1.2. Endpoint Identification . . . . . . . . . . . . . 51
E.3.1.3. Software Identification . . . . . . . . . . . . . 52
E.3.1.4. Hardware Identification . . . . . . . . . . . . . 55
E.3.2. Other Identifiers . . . . . . . . . . . . . . . . . . 55
E.3.2.1. Platform Configuration Item Identifier . . . . . 55
E.3.2.2. Configuration Item Identifier . . . . . . . . . . 61
E.3.2.3. Vulnerability Identifier . . . . . . . . . . . . 63
E.3.3. Endpoint characterization . . . . . . . . . . . . . . 63
E.3.4. Posture Attribute Expression . . . . . . . . . . . . 67
E.3.4.2. Platform Configuration Attributes . . . . . . . . 67
E.3.5. Actual Value Representation . . . . . . . . . . . . . 69
E.3.5.1. Software Inventory . . . . . . . . . . . . . . . 69
E.3.5.2. Collected Platform Configuration Posture
Attributes . . . . . . . . . . . . . . . . . . . 70
Waltermire, et al. Expires August 24, 2015 [Page 3]
Internet-Draft SACM Information Model February 2015
E.3.6. Evaluation Guidance . . . . . . . . . . . . . . . . . 71
E.3.6.1. Configuration Evaluation Guidance . . . . . . . . 71
E.3.7. Evaluation Result Reporting . . . . . . . . . . . . . 73
E.3.7.1. Configuration Evaluation Results . . . . . . . . 73
E.3.7.2. Software Inventory Evaluation Results . . . . . . 75
Appendix F. Graph Model . . . . . . . . . . . . . . . . . . . . 75
F.1. Background: Graph Models . . . . . . . . . . . . . . . . 76
F.2. Graph Model Overview . . . . . . . . . . . . . . . . . . 77
F.3. Identifiers . . . . . . . . . . . . . . . . . . . . . . . 77
F.4. Links . . . . . . . . . . . . . . . . . . . . . . . . . . 78
F.5. Metadata . . . . . . . . . . . . . . . . . . . . . . . . 78
F.6. Use for SACM . . . . . . . . . . . . . . . . . . . . . . 79
F.7. Provenance . . . . . . . . . . . . . . . . . . . . . . . 79
F.8. Extensibility . . . . . . . . . . . . . . . . . . . . . . 79
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 80
1. Introduction
This document defines a notional information model for endpoint
posture assessment. It describes the information needed to perform
certain assessment activities. The scope of the information model is
to describe the structure of the information carried to realize the
assessment. It is meant to be a basis for the development of
specific data models. The terms information model and data model
loosely align with the definitions in RFC3444 [RFC3444].
The four primary activities to support this information model are:
1. Endpoint Identification
2. Endpoint Characterization
3. Endpoint Attribute Expression/Representation
4. Policy evaluation expression and results reporting
These activities are aimed at the level of the technology that
performs operations to support collection, evaluation, and reporting.
Review of the SACM Use Case [I-D.ietf-sacm-use-cases] usage scenarios
show a common set of business process areas that are critical to
understanding endpoint posture such that appropriate policies,
security capabilities, and decisions can be developed and
implemented.
For this information model we have chosen to focus on the following
business process areas:
Waltermire, et al. Expires August 24, 2015 [Page 4]
Internet-Draft SACM Information Model February 2015
o Endpoint Management
o Software Management
o Configuration Management
o Vulnerability Management
These management process areas are a way to connect the SACM use
cases and building blocks [I-D.ietf-sacm-use-cases] to the
organizational needs such that the definition of information
requirements has a clearly understood context.(/wandw)
The SACM information model offers a loose coupling between providers
and consumers of security information. A provider can relay what it
observes or infers, without knowing which consumers will use the
information, or how they will use it. A consumer need not know
exactly which provider generated a piece of information, or by what
method.
At the same time, a consumer *can* know these things, if necessary.
As things evolve, a provider can relay supplemental information.
Some consumers will understand and benefit from the supplemental
information; other consumers will not understand and will disregard
it.
1.1. Changes in Revision 01
Added some proposed normative text.
For provenance:
o Added a class "Method"
o Added the produced-using relationship between an AVP and a method
o Added the produced-by relationship between a Guidance and a SACM
Component
o Added the hosted-by relationship between a SACM Component and an
Endpoint
asserted-by and summarized-by have been renamed to produced-by.
"User" is now "Account". If a user has different credentials, SACM
cannot know that they belong to the same user. But, per Kim W, many
organizations do have accounts that associate credentials.
Waltermire, et al. Expires August 24, 2015 [Page 5]
Internet-Draft SACM Information Model February 2015
The multiplicity of the based-on relationships has been corrected.
More relationships now have labels, per UML convention.
The diagram no longer has causal arrows. They had become redundant
and were nonstandard and clutter.
Renamed "credential" to "identity", following industry usage. A
credential includes proof, such as a key or password. A username or
a distinguished name is called an "identity".
Removed Session, because an endpoint's network activity is not SACM's
initial focus
Removed Authorization, for the same reason
Added many-to-many relationship between Hardware Component and
Endpoint, for clarity
Added many-to-many relationship between Software Component and
Endpoint, for clarity
Added "contains" relationship between Network Interface and Network
Interface
Removed relationship between Network Interface and Account. The
endpoint knows the identity it used to gain network access. The PDP
also knows that. But they probably do not know the account.
Added relationship between Network Interface and Identity. The
endpoint and the PDP will typically know the identity.
Made identity-to-account a many-to-one relationship.
2. Problem Statement
TODO: revise
(wandw)SACM requires a large and broad set of mission and business
processes, and to make the most effective of use of technology, the
same data must support multiple processes. The activities and
processes described within this document tend to build off of each
other to enable more complex characterization and assessment. In an
effort to create an information model that serves a common set of
management processes represented by the usage scenarios in the SACM
Use Cases document, we have narrowed down the scope of this
model.(/wandw) [What does "narrowed down the scope of this model"
mean? - LL]
Waltermire, et al. Expires August 24, 2015 [Page 6]
Internet-Draft SACM Information Model February 2015
Administrators can't get technology from disparate sources to work
together; they need information to make decisions, but the
information is not available. Everyone is collecting the same data,
but storing it as different information. Administrators therefore
need to collect data and craft their own information, which may not
be accurate or interoperable because it's customized by each
administrator, not shared. A standard information model enables
flexibility in collecting, storing, and sharing information despite
platform differences.
A way is needed to exchange information that (a) has breadth, meaning
the pieces of the notation are useful about a variety of endpoints
and software components, and (b) has longevity, meaning that the
pieces of the notation will stay useful over time.
When creating standards, it's not sufficient to go from requirements
directly to protocol; the standards must eliminate ambiguity in the
information transported. This is the purpose of information models
generally. The SACM problem space is about integrating many
information sources. This information model addresses the need to
integrate security components, support multiple data models, and
provide interoperability in a way that is platform agnostic, scales,
and works over time.
2.1. Mapping to SACM Use Cases
TODO: revise
(wandw)This information model directly corresponds to all four use
cases defined in the SACM Use Cases draft [I-D.ietf-sacm-use-cases].
It uses these use cases in coordination to achieve a small set of
well-defined tasks.
Sections [removed] thru [removed] address each of the process areas.
For each process area, a "Process Area Description" sub-section
represent an end state that is consistent with all the General
Requirements and many of the Use Case Requirements identified in the
requirements draft [I-D.ietf-sacm-requirements].
The management process areas and supporting operations defined in
this memo directly support REQ004 Endpoint Discovery; REQ005-006
Attribute and Information Based Queries, and REQ0007 Asynchronous
Publication.
In addition, the operations that defined for each business process in
this memo directly correlate with the typical workflow identified in
the SACM Use Case document.(/wandw)
Waltermire, et al. Expires August 24, 2015 [Page 7]
Internet-Draft SACM Information Model February 2015
2.2. Referring to an Endpoint
How to refer to an endpoint is problematic. Ideally, an endpoint
would have a unique identifier. These identifiers would have a one-
to-one relationship with endpoints. Every observation of an
endpoint, or inference about an endpoint would be labeled with its
identifier.
However:
o An external posture attribute collector typically cannot observe
the unique identifier directly. An external posture attribute
collector should be able to report exactly what it has observed,
unembellished. It should not have to *infer* which endpoint it
has observed; that inference should be leavable to other SACM
components. So, SACM cannot require that every observation
include the unique endpoint identifier.
o Internal posture attribute collectors are not present on all
endpoints. They are not present on "dumb" devices such as
Internet of Things (IoT) devices, or on Bring Your Own Device
(BYOD) devices. In these cases, *no* observers have direct access
to the unique endpoint identifier.
o An endpoint identifier is generally subject to cloning, when a
system image is cloned. Then it is no longer unique.
o Suppose the endpoint identifier is highly clone resistant -- such
a unique certificate within a trusted platform module TPM). Even
so, it is possible to replace all of the software -- for example,
changing a Windows machine to a Linux machine. Is it still the
same endpoint? For SACM purposes, it isn't really the same
endpoint.
So SACM components must be able to put disparate observations
together and form a picture of an endpoint -- somewhat like a
detective. The SACM information model must facilitate this.
2.3. Dealing with Uncertainty
With many information models, the information is considered certain.
So it is OK to blur the difference between the representation and the
thing represented.
In SACM, information is not certain. Attackers may develop
countermeasures to fool some SACM components. Attackers may
compromise some SACM components.
Waltermire, et al. Expires August 24, 2015 [Page 8]
Internet-Draft SACM Information Model February 2015
So the model must let SACM components and humans reason with
uncertainty. There are no facts, only assertions.
SACM components must be able to cross check observations and
inferences against each other. They should be able to give weight if
an observation or inference is corroborated by more than one method.
Although SACM will probably not prescribe *how* to do this cross
checking, SACM should provide the components with provenance
information.
SACM components must be able to consider the reputation of the
observer or inferrer. That reputation should account for the method
of observing or inferring, the implementer of the SACM component that
made the observation or inference, and the compliance status of the
endpoint on which the observation or inference was made. For
example, if some observers are found to be vulnerable to a Day 1
exploit, observations from those observers deserve less weight. The
details of reputation technology may be out of scope for SACM.
However, again, SACM should provide components with provenance
information.
3. Conventions used in this document
3.1. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [RFC2119].
4. Elements of the SACM Information Model
The SACM Information Model contains several elements of the
architecture, including:
o SACM Components, which may be Collectors, Evaluators, etc.
Collectors may be internal (performed within the endpoint itself)
or external (performed outside of the endpoint, such as by a
hypervisor or remote sensor)
o Guidance, which tells SACM components what to do
o Posture, in the form of posture attributes and evaluation results
o Additional information about the endpoint, such as a
representation of a software component, endpoint identity, user
identity, address, location, and authorization constraining the
endpoint
Waltermire, et al. Expires August 24, 2015 [Page 9]
Internet-Draft SACM Information Model February 2015
The SACM Information Model does not (in this draft) specify how long
information is retained. Historical information is modeled the same
way as current information. Historical information may be
represented differently in an implementation, but that difference
would be in data models, not in the information model.
Figure 1 the the information model.
Waltermire, et al. Expires August 24, 2015 [Page 10]
Internet-Draft SACM Information Model February 2015
+---------+*______in>_______*+-----+
|Hardware | |! !|
|Component| +---------+ |! !| +--------+*________________
+---------+ |Software |in> |! !|*_____*|Location|___________ <in|
1| |Component|____|! !| in> +--------+* <in *| |
| +---------+* *|! !| +-------+ |
| 1| |! !| |Account| |
| *| | | +----------+ +-------+ |
| +---------+ |End- |*_____*| Identity |_________|0..1 |
*| |Software |in> |point| acts +----------+* belongs |
+---------+ |Instance |____| | for> 0..1|^ to> |
|Hardware | +---------+* 1|! !| |acts |
|Instance |__________________|! !| *|for |*
+---------+* in> 1|! !|_______+---------+ +-------+
|! !|1 <in *|Network |1_______*|Address|
|! !|____ |Interface| <bound +-------+
|! !|0..1| +---------+ to
+-----+ | *| |0..1
1| |* | |___|
____________________| |_______| in>
| in>
.......|..............................................................
| |0..1
| |
| |*
| +-----+ +---------+___________________
| | AVP |____________|Endpoint |* <based-on |
^| +-----+1..* 1|Attribute|________ |
hosted-by| *| |Assertion|* | |
| | +---------+ | |
| |produced-using |* |* | *|
| 1|V | |__________| +-------+
| +--------+ | <based-on |Summary|
| | Method | | +-------+
| +--------+ |produced-by *|
|____________________ |V |
|* 1| |
+--------+1____________*+-----------+ |
| | guides> | SACM |__________________________|
|Guidance| | Component |1 <produced-by
+--------+*____________1+-----------+
<produced-by
-------------------------------------------------------------
..... Above this line is the monitorable world
-------------------------------------------------------------
Figure 1: The Information Model
Waltermire, et al. Expires August 24, 2015 [Page 11]
Internet-Draft SACM Information Model February 2015
Note: UML 2 is specified by [UML].
TODO: update text to match new figure:
Need to be clear in the description that - of some of the
relationships, will need some language and guidance to the interfaces
and relationships we expect to have happen, MUSTs and SHOULDs, as
well as explaining the extensibility that other relationships can
exist, show examples of how that can happen. Others that we haven't
thought of yet, might be added by another RFC or in another way
CEK: I suddenly wonder whether all of the relationships in the upper
right corner of the diagram are needed. At present, AVPs mostly
mention instances of the classes in the upper half. The only
relationship an endpoint attribute assertion expresses is that a set
of AVPs are all true of some endpoint. We don't have a way to say
that an address is bound to a particular interface. Such structures
*can* be modeled, using YANG, for example. But do we require that?
If we do, why? I do think we need to be able to relate a software
instance to the software component, and a hardware instance to the
hardware component.
The following subsections discuss the elements and relationships
found in Figure 1.
4.1. Software Component
An endpoint contains and runs software components.
Relationship:
o If an endpoint has an instance of a software component, we say
that the software component is "in" the endpoint. This is a
shorthand.
Some software components are assets. "Asset" is defined in RFC4949
[RFC4949] as "a system resource that is (a) required to be protected
by an information system's security policy, (b) intended to be
protected by a countermeasure, or (c) required for a system's
mission."
An examination of software needs to consider both (a) software assets
and (b) software that may do harm. A posture attribute collector may
not know (a) from (b). It is useful to define Software Component as
the union of (a) and (b).
Examples of Software Assets:
Waltermire, et al. Expires August 24, 2015 [Page 12]
Internet-Draft SACM Information Model February 2015
o An application
o A patch
o The operating system kernel
o A boot loader
o Firmware that controls a disk drive
o A piece of JavaScript found in a web page the user visits
Examples of harmful software components:
o A malicious entertainment app
o A malicious executable
o A web page that contains malicious JavaScript
o A business application that shipped with a virus
Software components SHOULD be disjoint from each other. In other
words, software componenns SHOULD be so defined that a given byte of
software on an endpoint belongs to only one software component.
Different versions of the same piece of software MUST be modeled as
different components. Software versioning is not built into the
information model.
Each separately installable piece of software SHOULD be modeled as a
component. Sometimes it may be better to divide more finely: what an
installer installs MAY be modeled as several components.
A data model MAY identify a software component by parts of an ISO
SWID tag.
4.2. Software Instance
Each copy of a piece of software is called a software instance. The
configuration of a software instance is regarded as part of the
software instance. Configuration can strongly affect security
posture.
A data model MUST support the following relationships:
o A software instance is an "instance of" a software component.
Waltermire, et al. Expires August 24, 2015 [Page 13]
Internet-Draft SACM Information Model February 2015
o A software instance is "in" an endpoint.
A data model MAY use ISO SWID tags to identify software instances.
4.3. Hardware Component
Hardware components may also be assets and/or harmful. For example,
a USB port on a system may be disabled to prevent information flow
into our out of a particular system; this provides an additional
layer of protection that can complement software based protections.
Other such assets may include access to or modification of storage
media, hardware key stores, microphones and cameras. Like software
assets, we can consider these hardware components both from the
perspective of (a) an asset that needs protection and (b) an asset
that can be compromised in some way to do harm.
A data model MAY designate a hardware component by its manufacturer
and a part number.
4.4. Hardware Instance
A hardware instance is just an instance of a particular component.
A data model MUST support the following relationships:
o A hardware instance is an "instance of" a hardware component.
o A hardware instance is "in" an endpoint.
Hardware instances may need to be modeled because (a) an endpoint may
have multiple instances of a hardware component, (b) a hardware
instance may be compromised, whereas other instances may remain
intact.
A data model MAY designate a hardware instance by its component and a
unique serial number.
4.5. Network Interface
CEK: I am not sure how to use network interfaces for endpoint
identification. As for compliance, is this too advanced for SACM at
this time?
An endpoint generally has at least one network interface.
Interfaces nest. A virtual interface can nest in a physical
interface.
Waltermire, et al. Expires August 24, 2015 [Page 14]
Internet-Draft SACM Information Model February 2015
A data model MUST support the following relationships:
o A network interface is "in" an endpoint.
o A network interface is "in" another network interface; this is for
a nested interface. CEK: And this allows representing compliance
policies that are worthwhile. But is this too advanced for the
initial set of SACM RFCs?
o A network interface "acts for" an identity. This occurs, for
example, when the network interface is online because of
successful 802.1X. An internal collector may be aware of the
identity. An external collector (such as a RADIUS server) will be
aware of the identity.
4.6. Address
As used in this document, an address is any of:
o A layer 2 address; a data model MUST support MAC addresses, and
MAY support others
o A layer 3 address; a data model MUST support IPv4 and IPv6
addresses, and MAY support others
o A layer 4 address; a data model MUST support an IP-address-
protocol-port combination, where protocol is TCP or UDP. It MAY
support others
Addresses from other layers may be added in the future.
These addresses are not necessarily globally unique. Therefore, a
data model SHOULD allow an address to be qualified with a scope.
o A data model SHOULD allow qualifying a MAC address with its
layer-2 broadcast domain. This MAY take the form of a VLAN ID and
an administratively assigned string denoting the LAN.
o A data model SHOULD allow qualifying an IP address with an
administratively assigned string denoting the IP routing domain.
A data model MUST support the following relationships:
o An address is "bound to" a network interface.
o An address is considered "bound to" an endpoint just if the
address is "bound to" an interface that is "in" the endpoint.
Waltermire, et al. Expires August 24, 2015 [Page 15]
Internet-Draft SACM Information Model February 2015
o An address may be "in" one or more locations.
4.7. Identity
An identity is the non-secret part of a credential. Examples are a
username, an X.500 distinguished name, and a public key. Passwords,
private keys, and other secrets are not considered part of an
identity.
A data model MUST support the following relationships:
o An endpoint may "act for" an identity. This SHALL mean that the
endpoint claims or proves that it has this identity. For example,
if the endpoint is part of an Active Directory domain and Alice
logs into the endpoint with her AD username (alice) and password,
the endpoint "acts for" alice. An endpoint MAY "act for" more
than one identity at once, such as a machine identity and a user
identity.
o A identity may "belong to" an account. For example, an enterprise
may have a database that maps identities to accounts. CEK: Is
this relevant? I don't see how we'd use the notion of an account
in identifying an endpoint or in specifying compliance
measurements to be taken.
4.8. Location
Location can be logical or physical. Location can be a clue to an
endpoint's identity.
A data model MUST support the following relationships:
o An endpoint may be "in" a location
o A location may be "in" one or more locations
o A network address may be "in" a location
o An account may be "in" a location; this would happen if the
account represents a user, and a physical access control system
reports on the user's location
Examples of location:
o The switch, access point, VPN gateway, or cell tower to which the
endpoint is linked
o The switch port where the endpoint is plugged in
Waltermire, et al. Expires August 24, 2015 [Page 16]
Internet-Draft SACM Information Model February 2015
o The location of the endpoint's IP address in the network topology
o The geographic location of the endpoint (which is often self-
reported)
o A user location (may be reported by a physical access control
system)
CEK: The last three examples seem too advanced for the first set of
SACM RFCs. I do not know a notation that would be interoperable and
useful for endpoint identification. Should we drop them?
CEK: If we do drop them, all we have left is the device and port at
which the endpoint is linked to the network. Maybe we should regard
that as a kind of address.
A data model MUST support switch + port number, access point, and VPN
gateway as locations. The other examples are optional.
More than one of kind of location may pertain to an endpoint.
Endpoint has a many-to-many relationship with Location.
4.9. Endpoint
An endpoint is the hollow center of the model. An endpoint is an
abstract ideal. Any endpoint attribute assertion that mentions an
endpoint mentions it by specifying identifying attributes. Even if
there is one preferred endpoint identity, that is modeled as an
identity. We do not anticipate any AVP whose attribute type is
"endpoint".
4.10. Endpoint Attribute Assertion
Represents a direct observation by an attribute collector, or a
conclusion drawn by an evaluator. It asserts that specified posture
attribute-value pairs were true of an identified endpoint, at a
specific time or throughout a specified time interval.
CEK: I think it asserts that there exists an endpoint for which all
of the AVPs are true. The times and time intervals are features of
the AVPs, not of the endpoint attribute assertion.
4.10.1. Form and Precise Meaning
An endpoint attribute assertion MUST have:
o One or more attribute-value pairs (AVPs) (see section XXX)
Waltermire, et al. Expires August 24, 2015 [Page 17]
Internet-Draft SACM Information Model February 2015
o Provenance information, including: (see section XXX)
Asserted attributes and their associated values are used to both
identify the target endpoint and to communicate aspects of the
endpoint's posture. This distinction is further explained in section
XXX(AVPs).
4.11. Attribute-Value Pair
DW: Pair is not a good word for this information since more than two
data points are required. We should consider a better term.
An attribute-value pair (AVP) is a tuple of information asserting an
observed aspect of endpoint posture and/or identity.
Each AVP MUST include the following data:
o Identification of a posture or identification attribute (see
section [Posture Attribute])
o The value(s) associated with the posture or identification
attribute at the time the observation was made.
* The value MAY be structured. For example, it may something
like XML.
* Some attributes will be multi-valued. Data models implementing
this information model MUST support multiple values.
o Temporal information bounding the observation. Temporal
information MUST consist of one of the following:
* A timestamp indicating the point-in-time the observation was
made, or
* An interval establishing the duration for which the value(s)
have existed.
* Information about the method used to derive the assertion. (see
section [method])
If posture assertions are generated by monitoring a system for
changes, describing the interval for which a given state was found to
be consistent enables additional information to be expressed over a