-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
cyclonedx_xml.go
417 lines (360 loc) · 10.7 KB
/
cyclonedx_xml.go
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
// This file is part of CycloneDX Go
//
// Licensed under the Apache License, Version 2.0 (the “License”);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an “AS IS” BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) OWASP Foundation. All Rights Reserved.
package cyclonedx
import (
"encoding/xml"
"errors"
"fmt"
"io"
)
// bomReferenceXML is temporarily used for marshalling and unmarshalling
// BOMReference instances to and from XML.
type bomReferenceXML struct {
Ref string `json:"-" xml:"ref,attr"`
}
func (b BOMReference) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
return e.EncodeElement(bomReferenceXML{Ref: string(b)}, start)
}
func (b *BOMReference) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
bXML := bomReferenceXML{}
if err := d.DecodeElement(&bXML, &start); err != nil {
return err
}
*b = BOMReference(bXML.Ref)
return nil
}
func (c Copyright) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
return e.EncodeElement(c.Text, start)
}
func (c *Copyright) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
var text string
if err := d.DecodeElement(&text, &start); err != nil {
return err
}
c.Text = text
return nil
}
// dependencyXML is temporarily used for marshalling and unmarshalling
// Dependency instances to and from XML.
type dependencyXML struct {
Ref string `xml:"ref,attr"`
Dependencies *[]dependencyXML `xml:"dependency,omitempty"`
}
func (d Dependency) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
xmlDep := dependencyXML{Ref: d.Ref}
if d.Dependencies != nil && len(*d.Dependencies) > 0 {
xmlDeps := make([]dependencyXML, len(*d.Dependencies))
for i := range *d.Dependencies {
xmlDeps[i] = dependencyXML{Ref: (*d.Dependencies)[i]}
}
xmlDep.Dependencies = &xmlDeps
}
return e.EncodeElement(xmlDep, start)
}
func (d *Dependency) UnmarshalXML(dec *xml.Decoder, start xml.StartElement) error {
xmlDep := dependencyXML{}
err := dec.DecodeElement(&xmlDep, &start)
if err != nil {
return err
}
dep := Dependency{Ref: xmlDep.Ref}
if xmlDep.Dependencies != nil && len(*xmlDep.Dependencies) > 0 {
deps := make([]string, len(*xmlDep.Dependencies))
for i := range *xmlDep.Dependencies {
deps[i] = (*xmlDep.Dependencies)[i].Ref
}
dep.Dependencies = &deps
}
*d = dep
return nil
}
func (ev EnvironmentVariables) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if len(ev) == 0 {
return nil
}
err := e.EncodeToken(start)
if err != nil {
return err
}
for _, choice := range ev {
if choice.Property != nil && choice.Value != "" {
return fmt.Errorf("either property or value must be set, but not both")
}
if choice.Property != nil {
err = e.EncodeElement(choice.Property, xml.StartElement{Name: xml.Name{Local: "environmentVar"}})
if err != nil {
return err
}
} else if choice.Value != "" {
err = e.EncodeElement(choice.Value, xml.StartElement{Name: xml.Name{Local: "value"}})
if err != nil {
return err
}
}
}
return e.EncodeToken(start.End())
}
func (ev *EnvironmentVariables) UnmarshalXML(d *xml.Decoder, _ xml.StartElement) error {
envVars := make([]EnvironmentVariableChoice, 0)
for {
token, err := d.Token()
if err != nil {
if errors.Is(err, io.EOF) {
break
}
return err
}
switch tokenType := token.(type) {
case xml.StartElement:
if tokenType.Name.Local == "value" {
var value string
err = d.DecodeElement(&value, &tokenType)
if err != nil {
return err
}
envVars = append(envVars, EnvironmentVariableChoice{Value: value})
} else if tokenType.Name.Local == "environmentVar" {
var property Property
err = d.DecodeElement(&property, &tokenType)
if err != nil {
return err
}
envVars = append(envVars, EnvironmentVariableChoice{Property: &property})
} else {
return fmt.Errorf("unknown element: %s", tokenType.Name.Local)
}
}
}
*ev = envVars
return nil
}
func (l Licenses) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if len(l) == 0 {
return nil
}
if err := e.EncodeToken(start); err != nil {
return err
}
for _, choice := range l {
if choice.License != nil && choice.Expression != "" {
return fmt.Errorf("either license or expression must be set, but not both")
}
if choice.License != nil {
if err := e.EncodeElement(choice.License, xml.StartElement{Name: xml.Name{Local: "license"}}); err != nil {
return err
}
} else if choice.Expression != "" {
if err := e.EncodeElement(choice.Expression, xml.StartElement{Name: xml.Name{Local: "expression"}}); err != nil {
return err
}
}
}
return e.EncodeToken(start.End())
}
func (l *Licenses) UnmarshalXML(d *xml.Decoder, _ xml.StartElement) error {
licenses := make([]LicenseChoice, 0)
for {
token, err := d.Token()
if err != nil {
if errors.Is(err, io.EOF) {
break
}
return err
}
switch tokenType := token.(type) {
case xml.StartElement:
if tokenType.Name.Local == "expression" {
var expression string
if err = d.DecodeElement(&expression, &tokenType); err != nil {
return err
}
licenses = append(licenses, LicenseChoice{Expression: expression})
} else if tokenType.Name.Local == "license" {
var license License
if err = d.DecodeElement(&license, &tokenType); err != nil {
return err
}
licenses = append(licenses, LicenseChoice{License: &license})
} else {
return fmt.Errorf("unknown element: %s", tokenType.Name.Local)
}
}
}
*l = licenses
return nil
}
type mlDatasetChoiceRefXML struct {
Ref string `json:"-" xml:"ref"`
}
type mlDatasetChoiceXML struct {
Ref string `json:"-" xml:"ref"`
ComponentData
}
func (dc MLDatasetChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if dc.Ref != "" {
return e.EncodeElement(mlDatasetChoiceRefXML{Ref: dc.Ref}, start)
} else if dc.ComponentData != nil {
return e.EncodeElement(dc.ComponentData, start)
}
return nil
}
func (dc *MLDatasetChoice) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
var choice mlDatasetChoiceXML
err := d.DecodeElement(&choice, &start)
if err != nil {
return err
}
if choice.Ref != "" {
dc.Ref = choice.Ref
return nil
}
if choice.ComponentData != (ComponentData{}) {
dc.ComponentData = &choice.ComponentData
}
return nil
}
func (sv SpecVersion) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
return e.EncodeElement(sv.String(), start)
}
func (sv *SpecVersion) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
var v string
err := d.DecodeElement(&v, &start)
if err != nil {
return err
}
switch v {
case SpecVersion1_0.String():
*sv = SpecVersion1_0
case SpecVersion1_1.String():
*sv = SpecVersion1_1
case SpecVersion1_2.String():
*sv = SpecVersion1_2
case SpecVersion1_3.String():
*sv = SpecVersion1_3
case SpecVersion1_4.String():
*sv = SpecVersion1_4
case SpecVersion1_5.String():
*sv = SpecVersion1_5
case SpecVersion1_6.String():
*sv = SpecVersion1_6
default:
return ErrInvalidSpecVersion
}
return nil
}
// toolsChoiceMarshalXML is a helper struct for marshalling ToolsChoice.
type toolsChoiceMarshalXML struct {
LegacyTools *[]Tool `json:"-" xml:"tool,omitempty"`
Components *[]Component `json:"-" xml:"components>component,omitempty"`
Services *[]Service `json:"-" xml:"services>service,omitempty"`
}
// toolsChoiceUnmarshalXML is a helper struct for unmarshalling tools represented
// as components and / or services. It is intended to be used with the streaming XML API.
//
// <components> <-- cursor should be here when unmarshalling this!
// <component>
// <name>foo</name>
// </component>
// </components>
type toolsChoiceUnmarshalXML struct {
Components *[]Component `json:"-" xml:"component,omitempty"`
Services *[]Service `json:"-" xml:"service,omitempty"`
}
func (tc ToolsChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if tc.Tools != nil && (tc.Components != nil || tc.Services != nil) {
return fmt.Errorf("either a list of tools, or an object holding components and services can be used, but not both")
}
if tc.Tools != nil {
return e.EncodeElement(toolsChoiceMarshalXML{LegacyTools: tc.Tools}, start)
}
tools := toolsChoiceMarshalXML{
Components: tc.Components,
Services: tc.Services,
}
if tools.Components != nil || tools.Services != nil {
return e.EncodeElement(tools, start)
}
return nil
}
func (tc *ToolsChoice) UnmarshalXML(d *xml.Decoder, _ xml.StartElement) error {
var components []Component
var services []Service
legacyTools := make([]Tool, 0)
for {
token, err := d.Token()
if err != nil {
if errors.Is(err, io.EOF) {
break
}
return err
}
switch tokenType := token.(type) {
case xml.StartElement:
if tokenType.Name.Local == "tool" {
var tool Tool
if err = d.DecodeElement(&tool, &tokenType); err != nil {
return err
}
legacyTools = append(legacyTools, tool)
} else if tokenType.Name.Local == "components" {
var foo toolsChoiceUnmarshalXML
if err = d.DecodeElement(&foo, &tokenType); err != nil {
return err
}
if foo.Components != nil {
components = *foo.Components
}
} else if tokenType.Name.Local == "services" {
var foo toolsChoiceUnmarshalXML
if err = d.DecodeElement(&foo, &tokenType); err != nil {
return err
}
if foo.Services != nil {
services = *foo.Services
}
} else {
return fmt.Errorf("unknown element: %s", tokenType.Name.Local)
}
}
}
choice := ToolsChoice{}
if len(legacyTools) > 0 && (len(components) > 0 || len(services) > 0) {
return fmt.Errorf("either a list of tools, or an object holding components and services can be used, but not both")
}
if len(components) > 0 {
choice.Components = &components
}
if len(services) > 0 {
choice.Services = &services
}
if len(legacyTools) > 0 {
choice.Tools = &legacyTools
}
if choice.Tools != nil || choice.Components != nil || choice.Services != nil {
*tc = choice
}
return nil
}
var xmlNamespaces = map[SpecVersion]string{
SpecVersion1_0: "http://cyclonedx.org/schema/bom/1.0",
SpecVersion1_1: "http://cyclonedx.org/schema/bom/1.1",
SpecVersion1_2: "http://cyclonedx.org/schema/bom/1.2",
SpecVersion1_3: "http://cyclonedx.org/schema/bom/1.3",
SpecVersion1_4: "http://cyclonedx.org/schema/bom/1.4",
SpecVersion1_5: "http://cyclonedx.org/schema/bom/1.5",
SpecVersion1_6: "http://cyclonedx.org/schema/bom/1.6",
}