@mitre/hdf-extension-graph 3.0.0 → 3.1.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +55 -0
- package/README.md +19 -2
- package/dist/index.d.ts +58 -54
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +141 -164
- package/dist/index.js.map +1 -1
- package/package.json +18 -18
package/LICENSE.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
Copyright © 2025 The MITRE Corporation.
|
|
4
|
+
|
|
5
|
+
Approved for Public Release; Distribution Unlimited. Case Number 18-3678.
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
8
|
+
not use this file except in compliance with the License. You may obtain a
|
|
9
|
+
copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
15
|
+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
16
|
+
License for the specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
|
|
19
|
+
## Redistribution Terms
|
|
20
|
+
|
|
21
|
+
Redistribution and use in source and binary forms, with or without
|
|
22
|
+
modification, are permitted provided that the following conditions are
|
|
23
|
+
met:
|
|
24
|
+
|
|
25
|
+
- Redistributions of source code must retain the above copyright/digital
|
|
26
|
+
rights legend, this list of conditions and the following Notice.
|
|
27
|
+
- Redistributions in binary form must reproduce the above
|
|
28
|
+
copyright/digital rights legend, this list of conditions and the
|
|
29
|
+
following Notice in the documentation and/or other materials provided
|
|
30
|
+
with the distribution.
|
|
31
|
+
- Neither the name of The MITRE Corporation nor the names of its contributors
|
|
32
|
+
may be used to endorse or promote products derived from this software
|
|
33
|
+
without specific prior written permission.
|
|
34
|
+
|
|
35
|
+
## Notice
|
|
36
|
+
|
|
37
|
+
The MITRE Corporation grants permission to reproduce, distribute, modify, and
|
|
38
|
+
otherwise use this software to the extent permitted by the licensed terms
|
|
39
|
+
provided in the LICENSE file included with this project.
|
|
40
|
+
|
|
41
|
+
This software was produced by The MITRE Corporation for the U.S. Government
|
|
42
|
+
under contract. As such the U.S. Government has certain use and data
|
|
43
|
+
rights in this software. No use other than those granted to the U.S.
|
|
44
|
+
Government, or to those acting on behalf of the U.S. Government, under
|
|
45
|
+
these contract arrangements is authorized without the express written
|
|
46
|
+
permission of The MITRE Corporation.
|
|
47
|
+
|
|
48
|
+
Some files in this codebase were generated by generative AI, under the
|
|
49
|
+
direction and review of The MITRE Corporation employees, for the purpose of
|
|
50
|
+
development efficiency. All AI-generated code functionality was validated
|
|
51
|
+
by standard quality and assurance testing.
|
|
52
|
+
|
|
53
|
+
For further information, please contact The MITRE Corporation,
|
|
54
|
+
Contracts Management Office, 7515 Colshire Drive, McLean, VA 22102-7539,
|
|
55
|
+
(703) 983-6000.
|
package/README.md
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
# @mitre/hdf-extension-graph
|
|
2
2
|
|
|
3
|
-
Bidirectional extension graph processing for HDF baseline hierarchies.
|
|
3
|
+
Bidirectional extension graph processing for HDF baseline hierarchies.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Why this exists
|
|
6
|
+
|
|
7
|
+
HDF baseline documents can represent 'overlay' structures that form extension chains of parent baselines and their children. For example, a DISA STIG baseline defines hundreds of requirements; an organizational overlay on that DISA baseline can modify a subset for organization-specific policies; a project overlay can further tighten thresholds for a specific system. When an HDF results file contains multiple baselines linked via `parentBaseline`, understanding what each layer changed requires walking these chains bidirectionally.
|
|
8
|
+
|
|
9
|
+
Without this library, answering "did this overlay change the impact of SV-238196, or inherit it unchanged?" requires manually cross-referencing requirements across baselines by ID. The extension graph provides:
|
|
10
|
+
|
|
11
|
+
- **`root`** — jump from any overlay requirement to the original base definition
|
|
12
|
+
- **`modifications`** — which fields (impact, title, severity, effectiveImpact, disposition) an overlay changed relative to its parent
|
|
13
|
+
- **`isRedundant`** — whether an overlay re-declares a control without actually changing it
|
|
14
|
+
- **`fullCode`** — the complete code from all layers in one string
|
|
15
|
+
- **`extensionChain`** — the ordered list of baselines from root to leaf
|
|
16
|
+
|
|
17
|
+
This is the same graph algorithm that powers Heimdall's control detail panel, extracted as a standalone library.
|
|
6
18
|
|
|
7
19
|
## Installation
|
|
8
20
|
|
|
@@ -139,6 +151,11 @@ interface Modification {
|
|
|
139
151
|
}
|
|
140
152
|
```
|
|
141
153
|
|
|
154
|
+
## Notes
|
|
155
|
+
|
|
156
|
+
- **TypeScript only** — there is no Go implementation of hdf-extension-graph.
|
|
157
|
+
- The HDF schemas consumed by this package are documented at <https://mitre.github.io/hdf-libs/schemas/>.
|
|
158
|
+
|
|
142
159
|
## License
|
|
143
160
|
|
|
144
161
|
Apache-2.0
|
package/dist/index.d.ts
CHANGED
|
@@ -1,72 +1,74 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { EvaluatedBaseline, EvaluatedRequirement, HdfResults } from "@mitre/hdf-schema";
|
|
2
|
+
|
|
3
|
+
//#region src/index.d.ts
|
|
2
4
|
/** A detected change between an overlay requirement and its parent. */
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
interface Modification {
|
|
6
|
+
field: string;
|
|
7
|
+
originalValue: unknown;
|
|
8
|
+
newValue: unknown;
|
|
9
|
+
inBaseline: string;
|
|
8
10
|
}
|
|
9
11
|
/**
|
|
10
12
|
* Wraps an EvaluatedRequirement with bidirectional extension links
|
|
11
13
|
* and derived properties for navigating extension chains.
|
|
12
14
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
15
|
+
declare class ContextualizedRequirement {
|
|
16
|
+
/** The original requirement data. */
|
|
17
|
+
readonly data: EvaluatedRequirement;
|
|
18
|
+
/** The baseline this requirement belongs to. */
|
|
19
|
+
readonly sourcedFrom: ContextualizedBaseline;
|
|
20
|
+
/** Requirements in parent baselines that this requirement extends (overlays). */
|
|
21
|
+
readonly extendsFrom: ContextualizedRequirement[];
|
|
22
|
+
/** Requirements in child baselines that extend this requirement. */
|
|
23
|
+
readonly extendedBy: ContextualizedRequirement[];
|
|
24
|
+
constructor(data: EvaluatedRequirement, sourcedFrom: ContextualizedBaseline);
|
|
25
|
+
/** The root (base) requirement at the bottom of the extension chain. */
|
|
26
|
+
get root(): ContextualizedRequirement;
|
|
27
|
+
/** True if this overlay adds no new code (empty/undefined or matches root). */
|
|
28
|
+
get isRedundant(): boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Full code concatenated from all layers, with baseline name headers.
|
|
31
|
+
* Skips redundant overlay layers. Returns empty string if no code exists.
|
|
32
|
+
*/
|
|
33
|
+
get fullCode(): string;
|
|
34
|
+
/** Ordered chain of baselines from root to this requirement's baseline. */
|
|
35
|
+
get extensionChain(): ContextualizedBaseline[];
|
|
36
|
+
/** Fields that differ between this requirement and its immediate parent. */
|
|
37
|
+
get modifications(): Modification[];
|
|
36
38
|
}
|
|
37
39
|
/**
|
|
38
40
|
* Wraps an EvaluatedBaseline with bidirectional extension links
|
|
39
41
|
* and contextualized requirements.
|
|
40
42
|
*/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
43
|
+
declare class ContextualizedBaseline {
|
|
44
|
+
/** The original baseline data. */
|
|
45
|
+
readonly data: EvaluatedBaseline;
|
|
46
|
+
/** The HdfResults this baseline was sourced from. */
|
|
47
|
+
readonly sourcedFrom: HdfResults;
|
|
48
|
+
/** Parent baselines that this baseline extends. */
|
|
49
|
+
readonly extendsFrom: ContextualizedBaseline[];
|
|
50
|
+
/** Child baselines that extend this baseline. */
|
|
51
|
+
readonly extendedBy: ContextualizedBaseline[];
|
|
52
|
+
/** Contextualized wrappers for each requirement in this baseline. */
|
|
53
|
+
readonly requirements: ContextualizedRequirement[];
|
|
54
|
+
constructor(data: EvaluatedBaseline, sourcedFrom: HdfResults);
|
|
53
55
|
}
|
|
54
56
|
/**
|
|
55
57
|
* A bidirectional extension graph built from an HDF Results file.
|
|
56
58
|
* Contains all baselines and requirements with their extension relationships.
|
|
57
59
|
*/
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
60
|
+
declare class ExtensionGraph {
|
|
61
|
+
/** All contextualized baselines in the graph. */
|
|
62
|
+
readonly baselines: readonly ContextualizedBaseline[];
|
|
63
|
+
/** All contextualized requirements across all baselines. */
|
|
64
|
+
readonly requirements: readonly ContextualizedRequirement[];
|
|
65
|
+
constructor(baselines: readonly ContextualizedBaseline[], requirements: readonly ContextualizedRequirement[]);
|
|
66
|
+
/** Find a baseline by name. Returns undefined if not found. */
|
|
67
|
+
findBaseline(name: string): ContextualizedBaseline | undefined;
|
|
68
|
+
/** Find all requirements with the given id across all baselines. */
|
|
69
|
+
findRequirements(id: string): ContextualizedRequirement[];
|
|
70
|
+
/** Baselines that have no parent (root of extension chains). */
|
|
71
|
+
get rootBaselines(): ContextualizedBaseline[];
|
|
70
72
|
}
|
|
71
73
|
/**
|
|
72
74
|
* Build a bidirectional extension graph from an HDF Results file.
|
|
@@ -77,5 +79,7 @@ export declare class ExtensionGraph {
|
|
|
77
79
|
* 3. Collect all requirements into a flat array
|
|
78
80
|
* 4. Link requirements by id matching across linked baselines
|
|
79
81
|
*/
|
|
80
|
-
|
|
82
|
+
declare function buildExtensionGraph(results: HdfResults): ExtensionGraph;
|
|
83
|
+
//#endregion
|
|
84
|
+
export { ContextualizedBaseline, ContextualizedRequirement, ExtensionGraph, Modification, buildExtensionGraph };
|
|
81
85
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"mappings":";;;;UAMiB,YAAA;EACf,KAAA;EACA,aAAA;EACA,QAAA;EACA,UAAA;AAAA;;;;;cAOW,yBAAA;EAAA;EAAA,SAEF,IAAA,EAAM,oBAAA;;WAGN,WAAA,EAAa,sBAAA;EAAA;EAAA,SAGb,WAAA,EAAa,yBAAA;EAGD;EAAA,SAAZ,UAAA,EAAY,yBAAA;cAET,IAAA,EAAM,oBAAA,EAAsB,WAAA,EAAa,sBAAA;EAMzC;EAAA,IAAR,IAAA,CAAA,GAAQ,yBAAA;EAiDS;EAAA,IAxCjB,WAAA,CAAA;EAwC6B;;;;EAAA,IAzB7B,QAAA,CAAA;EAnCK;EAAA,IAoDL,cAAA,CAAA,GAAkB,sBAAA;EAjDb;EAAA,IAyDL,aAAA,CAAA,GAAiB,YAAA;AAAA;;;;;cA0BV,sBAAA;EA3EC;EAAA,SA6EH,IAAA,EAAM,iBAAA;EArDX;EAAA,SAwDK,WAAA,EAAa,UAAA;EAvCA;EAAA,SA0Cb,WAAA,EAAa,sBAAA;EAlCD;EAAA,SAqCZ,UAAA,EAAY,sBAAA;EArCY;EAAA,SAwCxB,YAAA,EAAc,yBAAA;cAEX,IAAA,EAAM,iBAAA,EAAmB,WAAA,EAAa,UAAA;AAAA;;;;;cAavC,cAAA;EAbO;EAAA,SAeT,SAAA,WAAoB,sBAAA;EAf+B;EAAA,SAkBnD,YAAA,WAAuB,yBAAA;cAG9B,SAAA,WAAoB,sBAAA,IACpB,YAAA,WAAuB,yBAAA;EApCV;EA2Cf,YAAA,CAAa,IAAA,WAAe,sBAAA;EAxCN;EA6CtB,gBAAA,CAAiB,EAAA,WAAa,yBAAA;EA1CR;EAAA,IA+ClB,aAAA,CAAA,GAAiB,sBAAA;AAAA;;;;;;;;;;iBAcP,mBAAA,CAAoB,OAAA,EAAS,UAAA,GAAa,cAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,171 +1,148 @@
|
|
|
1
|
+
//#region src/index.ts
|
|
1
2
|
/** Fields compared for modification detection between overlay and parent. */
|
|
2
|
-
const TRACKED_FIELDS = [
|
|
3
|
+
const TRACKED_FIELDS = [
|
|
4
|
+
"impact",
|
|
5
|
+
"title",
|
|
6
|
+
"severity",
|
|
7
|
+
"effectiveImpact",
|
|
8
|
+
"disposition"
|
|
9
|
+
];
|
|
3
10
|
/**
|
|
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
|
-
get modifications() {
|
|
63
|
-
if (this.extendsFrom.length === 0) {
|
|
64
|
-
return [];
|
|
65
|
-
}
|
|
66
|
-
const parent = this.extendsFrom[0];
|
|
67
|
-
const mods = [];
|
|
68
|
-
for (const field of TRACKED_FIELDS) {
|
|
69
|
-
const parentVal = parent.data[field];
|
|
70
|
-
const thisVal = this.data[field];
|
|
71
|
-
if (parentVal !== thisVal) {
|
|
72
|
-
mods.push({
|
|
73
|
-
field,
|
|
74
|
-
originalValue: parentVal,
|
|
75
|
-
newValue: thisVal,
|
|
76
|
-
inBaseline: this.sourcedFrom.data.name,
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
return mods;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
11
|
+
* Wraps an EvaluatedRequirement with bidirectional extension links
|
|
12
|
+
* and derived properties for navigating extension chains.
|
|
13
|
+
*/
|
|
14
|
+
var ContextualizedRequirement = class {
|
|
15
|
+
constructor(data, sourcedFrom) {
|
|
16
|
+
this.extendsFrom = [];
|
|
17
|
+
this.extendedBy = [];
|
|
18
|
+
this.data = data;
|
|
19
|
+
this.sourcedFrom = sourcedFrom;
|
|
20
|
+
}
|
|
21
|
+
/** The root (base) requirement at the bottom of the extension chain. */
|
|
22
|
+
get root() {
|
|
23
|
+
if (this.extendsFrom.length === 0) return this;
|
|
24
|
+
return this.extendsFrom[0].root;
|
|
25
|
+
}
|
|
26
|
+
/** True if this overlay adds no new code (empty/undefined or matches root). */
|
|
27
|
+
get isRedundant() {
|
|
28
|
+
if (this.extendsFrom.length === 0) return false;
|
|
29
|
+
const code = this.data.code;
|
|
30
|
+
if (!code) return true;
|
|
31
|
+
return code === this.root.data.code;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Full code concatenated from all layers, with baseline name headers.
|
|
35
|
+
* Skips redundant overlay layers. Returns empty string if no code exists.
|
|
36
|
+
*/
|
|
37
|
+
get fullCode() {
|
|
38
|
+
if (this.isRedundant && this.extendsFrom.length > 0) return this.extendsFrom[0].fullCode;
|
|
39
|
+
const code = this.data.code;
|
|
40
|
+
if (!code) return "";
|
|
41
|
+
const header = `# ${this.sourcedFrom.data.name}\n${code}`;
|
|
42
|
+
if (this.extendsFrom.length === 0) return header;
|
|
43
|
+
const parentCode = this.extendsFrom[0].fullCode;
|
|
44
|
+
return parentCode ? `${header}\n\n${parentCode}` : header;
|
|
45
|
+
}
|
|
46
|
+
/** Ordered chain of baselines from root to this requirement's baseline. */
|
|
47
|
+
get extensionChain() {
|
|
48
|
+
if (this.extendsFrom.length === 0) return [this.sourcedFrom];
|
|
49
|
+
return [...this.extendsFrom[0].extensionChain, this.sourcedFrom];
|
|
50
|
+
}
|
|
51
|
+
/** Fields that differ between this requirement and its immediate parent. */
|
|
52
|
+
get modifications() {
|
|
53
|
+
if (this.extendsFrom.length === 0) return [];
|
|
54
|
+
const parent = this.extendsFrom[0];
|
|
55
|
+
const mods = [];
|
|
56
|
+
for (const field of TRACKED_FIELDS) {
|
|
57
|
+
const parentVal = parent.data[field];
|
|
58
|
+
const thisVal = this.data[field];
|
|
59
|
+
if (parentVal !== thisVal) mods.push({
|
|
60
|
+
field,
|
|
61
|
+
originalValue: parentVal,
|
|
62
|
+
newValue: thisVal,
|
|
63
|
+
inBaseline: this.sourcedFrom.data.name
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
return mods;
|
|
67
|
+
}
|
|
68
|
+
};
|
|
83
69
|
/**
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
}
|
|
97
|
-
}
|
|
70
|
+
* Wraps an EvaluatedBaseline with bidirectional extension links
|
|
71
|
+
* and contextualized requirements.
|
|
72
|
+
*/
|
|
73
|
+
var ContextualizedBaseline = class {
|
|
74
|
+
constructor(data, sourcedFrom) {
|
|
75
|
+
this.extendsFrom = [];
|
|
76
|
+
this.extendedBy = [];
|
|
77
|
+
this.data = data;
|
|
78
|
+
this.sourcedFrom = sourcedFrom;
|
|
79
|
+
this.requirements = data.requirements.map((req) => new ContextualizedRequirement(req, this));
|
|
80
|
+
}
|
|
81
|
+
};
|
|
98
82
|
/**
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
83
|
+
* A bidirectional extension graph built from an HDF Results file.
|
|
84
|
+
* Contains all baselines and requirements with their extension relationships.
|
|
85
|
+
*/
|
|
86
|
+
var ExtensionGraph = class {
|
|
87
|
+
constructor(baselines, requirements) {
|
|
88
|
+
this.baselines = baselines;
|
|
89
|
+
this.requirements = requirements;
|
|
90
|
+
}
|
|
91
|
+
/** Find a baseline by name. Returns undefined if not found. */
|
|
92
|
+
findBaseline(name) {
|
|
93
|
+
return this.baselines.find((b) => b.data.name === name);
|
|
94
|
+
}
|
|
95
|
+
/** Find all requirements with the given id across all baselines. */
|
|
96
|
+
findRequirements(id) {
|
|
97
|
+
return this.requirements.filter((r) => r.data.id === id);
|
|
98
|
+
}
|
|
99
|
+
/** Baselines that have no parent (root of extension chains). */
|
|
100
|
+
get rootBaselines() {
|
|
101
|
+
return this.baselines.filter((b) => !b.data.parentBaseline);
|
|
102
|
+
}
|
|
103
|
+
};
|
|
120
104
|
/**
|
|
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
|
-
for (const parentBaseline of ctx.extendsFrom) {
|
|
161
|
-
const parentReq = parentBaseline.requirements.find((r) => r.data.id === childReq.data.id);
|
|
162
|
-
if (parentReq) {
|
|
163
|
-
childReq.extendsFrom.push(parentReq);
|
|
164
|
-
parentReq.extendedBy.push(childReq);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
return new ExtensionGraph(baselines, allRequirements);
|
|
105
|
+
* Build a bidirectional extension graph from an HDF Results file.
|
|
106
|
+
*
|
|
107
|
+
* Four phases:
|
|
108
|
+
* 1. Wrap each EvaluatedBaseline in a ContextualizedBaseline
|
|
109
|
+
* 2. Link baselines via parentBaseline name matching (bidirectional)
|
|
110
|
+
* 3. Collect all requirements into a flat array
|
|
111
|
+
* 4. Link requirements by id matching across linked baselines
|
|
112
|
+
*/
|
|
113
|
+
function buildExtensionGraph(results) {
|
|
114
|
+
const baselineMap = /* @__PURE__ */ new Map();
|
|
115
|
+
const baselines = [];
|
|
116
|
+
for (const baseline of results.baselines) {
|
|
117
|
+
const ctx = new ContextualizedBaseline(baseline, results);
|
|
118
|
+
baselines.push(ctx);
|
|
119
|
+
baselineMap.set(baseline.name, ctx);
|
|
120
|
+
}
|
|
121
|
+
for (const ctx of baselines) {
|
|
122
|
+
const parentName = ctx.data.parentBaseline;
|
|
123
|
+
if (parentName) {
|
|
124
|
+
const parent = baselineMap.get(parentName);
|
|
125
|
+
if (parent) {
|
|
126
|
+
ctx.extendsFrom.push(parent);
|
|
127
|
+
parent.extendedBy.push(ctx);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
const allRequirements = [];
|
|
132
|
+
for (const ctx of baselines) allRequirements.push(...ctx.requirements);
|
|
133
|
+
for (const ctx of baselines) {
|
|
134
|
+
if (ctx.extendsFrom.length === 0) continue;
|
|
135
|
+
for (const childReq of ctx.requirements) for (const parentBaseline of ctx.extendsFrom) {
|
|
136
|
+
const parentReq = parentBaseline.requirements.find((r) => r.data.id === childReq.data.id);
|
|
137
|
+
if (parentReq) {
|
|
138
|
+
childReq.extendsFrom.push(parentReq);
|
|
139
|
+
parentReq.extendedBy.push(childReq);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
return new ExtensionGraph(baselines, allRequirements);
|
|
170
144
|
}
|
|
145
|
+
//#endregion
|
|
146
|
+
export { ContextualizedBaseline, ContextualizedRequirement, ExtensionGraph, buildExtensionGraph };
|
|
147
|
+
|
|
171
148
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type { HdfResults, EvaluatedBaseline, EvaluatedRequirement } from '@mitre/hdf-schema';\n\n/** Fields compared for modification detection between overlay and parent. */\nconst TRACKED_FIELDS: readonly (string & keyof EvaluatedRequirement)[] = ['impact', 'title', 'severity', 'effectiveImpact', 'disposition'];\n\n/** A detected change between an overlay requirement and its parent. */\nexport interface Modification {\n field: string;\n originalValue: unknown;\n newValue: unknown;\n inBaseline: string;\n}\n\n/**\n * Wraps an EvaluatedRequirement with bidirectional extension links\n * and derived properties for navigating extension chains.\n */\nexport class ContextualizedRequirement {\n /** The original requirement data. */\n readonly data: EvaluatedRequirement;\n\n /** The baseline this requirement belongs to. */\n readonly sourcedFrom: ContextualizedBaseline;\n\n /** Requirements in parent baselines that this requirement extends (overlays). */\n readonly extendsFrom: ContextualizedRequirement[] = [];\n\n /** Requirements in child baselines that extend this requirement. */\n readonly extendedBy: ContextualizedRequirement[] = [];\n\n constructor(data: EvaluatedRequirement, sourcedFrom: ContextualizedBaseline) {\n this.data = data;\n this.sourcedFrom = sourcedFrom;\n }\n\n /** The root (base) requirement at the bottom of the extension chain. */\n get root(): ContextualizedRequirement {\n if (this.extendsFrom.length === 0) {\n return this;\n }\n // Walk to the first parent's root (first match, like Heimdall2)\n return this.extendsFrom[0]!.root;\n }\n\n /** True if this overlay adds no new code (empty/undefined or matches root). */\n get isRedundant(): boolean {\n if (this.extendsFrom.length === 0) {\n return false;\n }\n const code = this.data.code;\n if (!code) {\n return true;\n }\n return code === this.root.data.code;\n }\n\n /**\n * Full code concatenated from all layers, with baseline name headers.\n * Skips redundant overlay layers. Returns empty string if no code exists.\n */\n get fullCode(): string {\n if (this.isRedundant && this.extendsFrom.length > 0) {\n return this.extendsFrom[0]!.fullCode;\n }\n const code = this.data.code;\n if (!code) {\n return '';\n }\n const header = `# ${this.sourcedFrom.data.name}\\n${code}`;\n if (this.extendsFrom.length === 0) {\n return header;\n }\n const parentCode = this.extendsFrom[0]!.fullCode;\n return parentCode ? `${header}\\n\\n${parentCode}` : header;\n }\n\n /** Ordered chain of baselines from root to this requirement's baseline. */\n get extensionChain(): ContextualizedBaseline[] {\n if (this.extendsFrom.length === 0) {\n return [this.sourcedFrom];\n }\n return [...this.extendsFrom[0]!.extensionChain, this.sourcedFrom];\n }\n\n /** Fields that differ between this requirement and its immediate parent. */\n get modifications(): Modification[] {\n if (this.extendsFrom.length === 0) {\n return [];\n }\n const parent = this.extendsFrom[0]!;\n const mods: Modification[] = [];\n for (const field of TRACKED_FIELDS) {\n const parentVal = (parent.data as Record<string, unknown>)[field];\n const thisVal = (this.data as Record<string, unknown>)[field];\n if (parentVal !== thisVal) {\n mods.push({\n field,\n originalValue: parentVal,\n newValue: thisVal,\n inBaseline: this.sourcedFrom.data.name,\n });\n }\n }\n return mods;\n }\n}\n\n/**\n * Wraps an EvaluatedBaseline with bidirectional extension links\n * and contextualized requirements.\n */\nexport class ContextualizedBaseline {\n /** The original baseline data. */\n readonly data: EvaluatedBaseline;\n\n /** The HdfResults this baseline was sourced from. */\n readonly sourcedFrom: HdfResults;\n\n /** Parent baselines that this baseline extends. */\n readonly extendsFrom: ContextualizedBaseline[] = [];\n\n /** Child baselines that extend this baseline. */\n readonly extendedBy: ContextualizedBaseline[] = [];\n\n /** Contextualized wrappers for each requirement in this baseline. */\n readonly requirements: ContextualizedRequirement[];\n\n constructor(data: EvaluatedBaseline, sourcedFrom: HdfResults) {\n this.data = data;\n this.sourcedFrom = sourcedFrom;\n this.requirements = data.requirements.map(\n (req) => new ContextualizedRequirement(req, this)\n );\n }\n}\n\n/**\n * A bidirectional extension graph built from an HDF Results file.\n * Contains all baselines and requirements with their extension relationships.\n */\nexport class ExtensionGraph {\n /** All contextualized baselines in the graph. */\n readonly baselines: readonly ContextualizedBaseline[];\n\n /** All contextualized requirements across all baselines. */\n readonly requirements: readonly ContextualizedRequirement[];\n\n constructor(\n baselines: readonly ContextualizedBaseline[],\n requirements: readonly ContextualizedRequirement[]\n ) {\n this.baselines = baselines;\n this.requirements = requirements;\n }\n\n /** Find a baseline by name. Returns undefined if not found. */\n findBaseline(name: string): ContextualizedBaseline | undefined {\n return this.baselines.find((b) => b.data.name === name);\n }\n\n /** Find all requirements with the given id across all baselines. */\n findRequirements(id: string): ContextualizedRequirement[] {\n return this.requirements.filter((r) => r.data.id === id);\n }\n\n /** Baselines that have no parent (root of extension chains). */\n get rootBaselines(): ContextualizedBaseline[] {\n return this.baselines.filter((b) => !b.data.parentBaseline);\n }\n}\n\n/**\n * Build a bidirectional extension graph from an HDF Results file.\n *\n * Four phases:\n * 1. Wrap each EvaluatedBaseline in a ContextualizedBaseline\n * 2. Link baselines via parentBaseline name matching (bidirectional)\n * 3. Collect all requirements into a flat array\n * 4. Link requirements by id matching across linked baselines\n */\nexport function buildExtensionGraph(results: HdfResults): ExtensionGraph {\n // Phase 1: Wrap baselines\n const baselineMap = new Map<string, ContextualizedBaseline>();\n const baselines: ContextualizedBaseline[] = [];\n\n for (const baseline of results.baselines) {\n const ctx = new ContextualizedBaseline(baseline, results);\n baselines.push(ctx);\n baselineMap.set(baseline.name, ctx);\n }\n\n // Phase 2: Link baselines via parentBaseline\n for (const ctx of baselines) {\n const parentName = ctx.data.parentBaseline;\n if (parentName) {\n const parent = baselineMap.get(parentName);\n if (parent) {\n ctx.extendsFrom.push(parent);\n parent.extendedBy.push(ctx);\n }\n }\n }\n\n // Phase 3: Collect all requirements\n const allRequirements: ContextualizedRequirement[] = [];\n for (const ctx of baselines) {\n allRequirements.push(...ctx.requirements);\n }\n\n // Phase 4: Link requirements by id across linked baselines\n for (const ctx of baselines) {\n if (ctx.extendsFrom.length === 0) {\n continue;\n }\n for (const childReq of ctx.requirements) {\n for (const parentBaseline of ctx.extendsFrom) {\n const parentReq = parentBaseline.requirements.find(\n (r) => r.data.id === childReq.data.id\n );\n if (parentReq) {\n childReq.extendsFrom.push(parentReq);\n parentReq.extendedBy.push(childReq);\n }\n }\n }\n }\n\n return new ExtensionGraph(baselines, allRequirements);\n}\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mitre/hdf-extension-graph",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.1.0-rc.1",
|
|
4
4
|
"description": "Bidirectional extension graph processing for HDF profile/baseline hierarchies",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -10,24 +10,13 @@
|
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
-
"
|
|
14
|
-
"
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "pnpm clean && tsc",
|
|
22
|
-
"clean": "rimraf dist",
|
|
23
|
-
"test": "pnpm run test:ts",
|
|
24
|
-
"test:ts": "vitest run",
|
|
25
|
-
"test:watch": "vitest",
|
|
26
|
-
"test:coverage": "vitest run --coverage",
|
|
27
|
-
"type-check": "tsc --noEmit",
|
|
28
|
-
"lint": "eslint src test",
|
|
29
|
-
"lint:fix": "eslint src test --fix"
|
|
30
|
-
},
|
|
31
20
|
"repository": {
|
|
32
21
|
"type": "git",
|
|
33
22
|
"url": "https://github.com/mitre/hdf-libs.git",
|
|
@@ -36,10 +25,10 @@
|
|
|
36
25
|
"author": "MITRE Corporation",
|
|
37
26
|
"license": "Apache-2.0",
|
|
38
27
|
"dependencies": {
|
|
39
|
-
"@mitre/hdf-schema": "
|
|
28
|
+
"@mitre/hdf-schema": "^3.1.0-rc.1"
|
|
40
29
|
},
|
|
41
30
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
31
|
+
"node": ">=22.0.0"
|
|
43
32
|
},
|
|
44
33
|
"keywords": [
|
|
45
34
|
"hdf",
|
|
@@ -48,5 +37,16 @@
|
|
|
48
37
|
"overlay",
|
|
49
38
|
"profile",
|
|
50
39
|
"graph"
|
|
51
|
-
]
|
|
52
|
-
|
|
40
|
+
],
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsdown",
|
|
43
|
+
"clean": "rimraf dist",
|
|
44
|
+
"test": "pnpm run test:ts",
|
|
45
|
+
"test:ts": "vitest run",
|
|
46
|
+
"test:watch": "vitest",
|
|
47
|
+
"test:coverage": "vitest run --coverage",
|
|
48
|
+
"type-check": "tsc --noEmit",
|
|
49
|
+
"lint": "eslint src test",
|
|
50
|
+
"lint:fix": "eslint src test --fix"
|
|
51
|
+
}
|
|
52
|
+
}
|