Class: SBOM Private

Inherits:
Object show all
Includes:
Utils::Output::Mixin
Defined in:
sbom.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Rather than calling new directly, use one of the class methods like SBOM.create.

Defined Under Namespace

Classes: Source

Constant Summary collapse

FILENAME =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

"sbom.spdx.json"
SCHEMA_FILE =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

T.let((HOMEBREW_LIBRARY_PATH/"data/schemas/sbom.json").freeze, Pathname)
SPDXHash =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

T.type_alias { T::Hash[String, Object] }
SPDXSymbolHash =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

T.type_alias { T::Hash[Symbol, Object] }

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utils::Output::Mixin

#issue_reporting_message, #odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #opoo_without_github_actions_annotation, #pretty_cannot_install, #pretty_deprecated, #pretty_disabled, #pretty_duration, #pretty_install_status, #pretty_installed, #pretty_uninstalled, #pretty_unmarked, #pretty_upgradable, #pretty_warning

Class Method Details

.brew_purl(full_name, version) ⇒ String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



161
162
163
164
165
166
167
168
169
# File 'sbom.rb', line 161

def self.brew_purl(full_name, version)
  namespace, _, name = full_name.rpartition("/")
  Homebrew::Vulns::Purl.new(
    type:      "brew",
    namespace: namespace.presence,
    name:,
    version:   version&.to_s,
  ).to_s
end

.create(formula, tab) ⇒ T.attached_class

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Instantiates a SBOM for a new installation of a formula.

Parameters:

Returns:

  • (T.attached_class)


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
# File 'sbom.rb', line 35

def self.create(formula, tab)
  active_spec = formula.active_spec
  active_spec_sym = formula.active_spec_sym

  new(
    name:                 formula.name,
    spdxfile:             SBOM.spdxfile(formula),
    source_modified_time: tab.source_modified_time.to_i,
    compiler:             tab.compiler,
    stdlib:               tab.stdlib,
    runtime_dependencies: SBOM.runtime_deps_hash(T.cast(Array(tab.runtime_dependencies),
                                                        T::Array[T::Hash[String, Object]])),
    license:              SPDX.license_expression_to_string(formula.license),
    built_on:             DevelopmentTools.build_system_info,
    source:               Source.new(
      path:         formula.specified_path.to_s,
      tap_name:     formula.tap&.name,
      # We can only get `tap_git_head` if the tap is installed locally
      tap_git_head: (formula.tap!.git_head if formula.tap&.installed?),
      spec:         active_spec_sym,
      patches:      active_spec.patches,
      bottle:       formula.bottle_hash,
      version:      active_spec.version,
      url:          active_spec.url,
      checksum:     active_spec.checksum,
    ),
  )
end

.exist?(formula) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:

  • (Boolean)


86
87
88
# File 'sbom.rb', line 86

def self.exist?(formula)
  spdxfile(formula).exist?
end

.github_packages_sbom_supplement_annotation(supplement, formula_full_name:, formula_name:, version:, tar_gz_sha256:, root_url:, license:, created_date:) ⇒ String?

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'sbom.rb', line 102

def self.github_packages_sbom_supplement_annotation(supplement, formula_full_name:, formula_name:, version:,
                                                    tar_gz_sha256:, root_url:, license:, created_date:)
  require "github_packages"

  add_bottle_package_to_supplement(
    supplement,
    bottle_package(
      formula_full_name,
      formula_name,
      version,
      tar_gz_sha256,
      root_url:,
      license:,
      created_date:,
    ),
  )&.to_json
end

.runtime_deps_hash(deps) ⇒ Array<Hash{String => Object}>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'sbom.rb', line 70

def self.runtime_deps_hash(deps)
  deps.map do |dep|
    full_name = dep.fetch("full_name").to_s
    dep_formula = Formula[full_name]
    {
      "full_name"           => full_name,
      "pkg_version"         => dep.fetch("pkg_version"),
      "name"                => dep_formula.name,
      "license"             => SPDX.license_expression_to_string(dep_formula.license),
      "bottle"              => dep_formula.bottle_hash,
      "formula_pkg_version" => dep_formula.pkg_version.to_s,
    }
  end
end

.schemaHash{String => T.anything}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



197
198
199
# File 'sbom.rb', line 197

def self.schema
  @schema ||= T.let(JSON.parse(SCHEMA_FILE.read, freeze: true), T.nilable(T::Hash[String, Object]))
end

.spdxfile(formula) ⇒ Pathname

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



65
66
67
# File 'sbom.rb', line 65

def self.spdxfile(formula)
  formula.prefix/FILENAME
end

.update_pour_metadata(spdxfile, homebrew_version:, time:, supplement: nil) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'sbom.rb', line 179

def self.(spdxfile, homebrew_version:, time:, supplement: nil)
  return unless spdxfile.exist?

  spdx = JSON.parse(spdxfile.read)
  return unless spdx.is_a?(Hash)

  creation_info = spdx["creationInfo"]
  return unless creation_info.is_a?(Hash)

  creation_info["created"] = Time.at(time).utc.iso8601
  creation_info["creators"] = ["Tool: https://github.com/Homebrew/brew@#{homebrew_version}"]
  merge_spdx_supplement(spdx, supplement) if supplement
  spdxfile.atomic_write(JSON.pretty_generate(spdx))
rescue JSON::ParserError
  nil
end

Instance Method Details

#schema_validation_errors(data = nil, bottling: false) ⇒ Array<String>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • data (Hash{Symbol => T.anything}, nil) (defaults to: nil)
  • bottling (Boolean) (defaults to: false)

Returns:



202
203
204
205
206
207
208
209
210
211
212
# File 'sbom.rb', line 202

def schema_validation_errors(data = nil, bottling: false)
  unless Utils::Ruby.require? "json_schemer"
    error_message = "Need json_schemer to validate SBOM, run `brew install-bundler-gems --add-groups=bottle`!"
    odie error_message if ENV["HOMEBREW_ENFORCE_SBOM"]
    return []
  end

  schemer = JSONSchemer.schema(SBOM.schema)

  schemer.validate(data || to_spdx_sbom(bottling:)).map { |error| error["error"] }
end

#to_spdx_sbom(bottling: false) ⇒ Hash{Symbol => T.anything}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • bottling (Boolean) (defaults to: false)

Returns:



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# File 'sbom.rb', line 244

def to_spdx_sbom(bottling: false)
  runtime_full = full_spdx_runtime_dependencies(bottling:)
  compiler_info = compiler_packages
  compiler_info = {} if bottling

  packages = generate_packages_json(runtime_full, compiler_info, bottling:)
  files = generate_files_json
  {
    SPDXID:            "SPDXRef-DOCUMENT",
    spdxVersion:       "SPDX-2.3",
    name:              "SBOM-SPDX-#{name}-#{spec_version}",
    creationInfo:      {
      created:  source_modified_time.iso8601,
      creators: ["Tool: https://github.com/Homebrew/brew"],
    },
    dataLicense:       "CC0-1.0",
    documentNamespace: "https://formulae.brew.sh/spdx/#{name}-#{spec_version}.json",
    documentDescribes: packages.map { |dependency| dependency[:SPDXID] },
    files:,
    packages:,
    relationships:     generate_relations_json(runtime_full, compiler_info, bottling:),
  }
end

#to_spdx_supplementSPDXHash

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



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
# File 'sbom.rb', line 269

def to_spdx_supplement
  runtime_full = full_spdx_runtime_dependencies(bottling: false)
  compiler_info = compiler_packages
  packages = runtime_full + compiler_info.values
  relationships = T.let([], T::Array[SPDXSymbolHash])
  runtime_full.each do |dependency|
    relationships << {
      spdxElementId:      dependency[:SPDXID],
      relationshipType:   "RUNTIME_DEPENDENCY_OF",
      relatedSpdxElement: bottle_spdx_id,
    }
  end

  if compiler_info["SPDXRef-Compiler"].present?
    relationships << {
      spdxElementId:      "SPDXRef-Compiler",
      relationshipType:   "BUILD_TOOL_OF",
      relatedSpdxElement: "SPDXRef-Archive-#{name}-src",
    }
  end

  if compiler_info["SPDXRef-Stdlib"].present?
    relationships << {
      spdxElementId:      "SPDXRef-Stdlib",
      relationshipType:   "DEPENDENCY_OF",
      relatedSpdxElement: bottle_spdx_id,
    }
  end

  {
    "documentDescribes" => packages.map { |package| package[:SPDXID] },
    "packages"          => packages,
    "relationships"     => relationships,
  }
end

#valid?(data = nil, bottling: false) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • data (Hash{Symbol => T.anything}, nil) (defaults to: nil)
  • bottling (Boolean) (defaults to: false)

Returns:

  • (Boolean)


215
216
217
218
219
220
221
222
223
224
225
# File 'sbom.rb', line 215

def valid?(data = nil, bottling: false)
  validation_errors = schema_validation_errors(data, bottling:)
  return true if validation_errors.empty?

  opoo "SBOM validation errors:"
  validation_errors.each { |error| $stderr.puts error }

  odie "Failed to validate SBOM against JSON schema!" if ENV["HOMEBREW_ENFORCE_SBOM"]

  false
end

#write(validate: true, bottling: false) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:

  • validate (Boolean) (defaults to: true)
  • bottling (Boolean) (defaults to: false)


228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'sbom.rb', line 228

def write(validate: true, bottling: false)
  # If this is a new installation, the cache of installed formulae
  # will no longer be valid.
  Formula.clear_cache unless spdxfile.exist?

  spdx_sbom = to_spdx_sbom(bottling:)

  if validate && !valid?(spdx_sbom, bottling:)
    opoo "SBOM is not valid, not writing to disk!"
    return
  end

  spdxfile.atomic_write(JSON.pretty_generate(spdx_sbom))
end