summaryrefslogtreecommitdiffstats
path: root/fedora2spdx.rb
blob: 7cc239825c0dbc8fd7cfda3b9de3cacd4247d453 (plain)
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
require 'csv'
require 'etc'
require 'open3'
require 'rubygems'
require 'rubygems/package'
require 'tmpdir'
require 'licensee'
# Licences.csv are from validate_ruby_files.rb and it contains what was possible to gather from upstream gemfiles and Fedora specfiles.
# This file exists to validate, that the output from gem2rpm for Fedora is the same. And possibly also validate Licensefiles, cos
# the goddamn MIT and BSD have around 20 possibilities from callaway to spdx...
csv = CSV.parse(File.read('licences.csv'), col_sep: ';', headers: true)

class ThreadWorker
  MAX_THREADS = Etc.nprocessors

  # Expecting an array of items and a block
  def initialize(items)
    raise ArgumentError, 'Worker queue received no work...' unless items

    raise ArgumentError, 'Provide block to execute in threads with items.' unless block_given?

    @items = items.to_a

    # If we more threads than items, then we can't slice it
    slices = if @items.count <= MAX_THREADS
               [@items]
             else
               # + 1 to slice size should prevent spawning more threads
               # than we have HW threads (Yes, MRI does not have hw:sw
               # mapping, but they spawn subprocesses that do execute on HW
               # thread)
               @items.each_slice((@items.count / MAX_THREADS) + 1)
             end

    @worker_pool = []

    slices.each do |slice|
      @worker_pool << Thread.new do
        yield slice
      end
    end
  end

  def gather_pool(flatten_level = 1)
    @worker_pool.map(&:value).flatten(flatten_level)
  end

  class CommandError < StandardError
    attr_reader :status, :stdout, :stderr

    def initialize(msg, stdout, stderr, status)
      super msg
      @stdout = stdout
      @stderr = stderr
      @status = status
    end
  end

  class << self
    def execute(command, pwd: nil)
      options = {}
      options[:chdir] = pwd if pwd
      $stderr.puts "Executing: #{command}"
      stdout, stderr, status = Open3.capture3(command, options)

      raise CommandError.new("Command failed: #{command}", stdout, stderr, status.exitstatus) unless status.success?

      status.exitstatus
    end
  end
end

# Fetch the Fedora sources
ThreadWorker.new(csv.to_a[1..]) do |slice|
  slice.map do |row|
    name = "rubygem-#{row[0]}"

    next if Dir.exist?(name)

    ThreadWorker.execute("fedpkg clone -a #{name}")
  end
end.gather_pool

# Sigh... they have tar as rubygem source...
EXCLUDED_SOURCES = %w[rubygem-morph-cli rubygem-krb5-auth rubygem-asciidoctor rubygem-rgen rubygem-net-irc].freeze

# Fetch the gem from lookaside cache
ThreadWorker.new(csv.to_a[1..]) do |slice|
  slice.map do |row|
    name = "rubygem-#{row[0]}"

    dir = Dir["#{name}/*.gem"]

    next unless dir.empty?

    next if EXCLUDED_SOURCES.include? name

    raise "#{dir} ; too much stuff" if dir.size > 1

    puts "sources for #{name}"
    ThreadWorker.execute("fedpkg sources", pwd: name)
  end
end.gather_pool

res = if File.exist?("gem2rpm.cache")
        File.read("gem2rpm.cache").split("\n")
      else
        # Create CSV from the gems, so that we have smth to compare.
        gems = Dir['*/*.gem']
        out = ThreadWorker.new(gems) do |slice|
          slice.map do |gem_file|
            # template:
            # <%# gem_name;gem_version;fedora_license;license_file %>
            # <%= spec.name %>;<%= spec.version %>;<%= spec.licenses.join(" and ") %>;<%= main_files.filter do |item| item.license? end.join(" ")%>
            ThreadWorker.execute("gem2rpm --template ./template.erb #{gem_file} --local")
          end
        end.gather_pool.map(&:lstrip)

        File.write("gem2rpm.cache", out.join(''))

        out.map(&:rstrip)
      end

res = res.map { |str| str.split(';') }

def licensee_mit(gem_path, license_file)
  # Match the MIT license against this text... let's see if it even helps
  curr_dir = Dir.pwd

  license = nil
  content = nil
  Dir.mktmpdir do |destination|
    the_gem = Gem::Package.new(File.join(curr_dir, gem_path))
    the_gem.contents # get the files in the gem
    the_gem.extract_files destination # extract the gem into a directory

    content = File.read(File.join(destination, license_file))
    license = Licensee.license(File.join(destination,license_file))
  # In case of an exception, it is needed to debug what went wrong (nonexistant dir, nonexistant file even despite guards...)
  rescue => e
    require 'irb'; binding.irb
  end

#   raise "\n"+license unless license.gsub(/[[:space:]]/, '') =~ regex
# rescue
  return "TRUE valid MIT" if license && license.spdx_id == "MIT"

  "FALSE, inspection required"
end

def licensee_general(gem_path, license_file)
  curr_dir = Dir.pwd

  license = nil
  content =  nil
  Dir.mktmpdir do |destination|
    the_gem = Gem::Package.new(File.join(curr_dir, gem_path))
    the_gem.contents # get the files in the gem
    the_gem.extract_files destination # extract the gem into a directory

    if license_file
      content = File.read(File.join(destination, license_file))
      license = Licensee.license(File.join(destination,license_file))
    else
      license = Licensee.license(destination)
    end
  # In case of an exception, it is needed to debug what went wrong (nonexistant dir, nonexistant file even despite guards...)
  rescue => e
    require 'irb'; binding.irb
  end

  if license && license.spdx_id != "other"
  "The license might be #{license.spdx_id}"
  else
  "Inspection required"
  end
end

# Let's check the correct licensing sometime later
# ret = res.map do |arr|
#   gem2rpm_name = arr[0]
#   gem2rpm_ver = arr[1]
#   gem2rpm_license = arr[2]
#   gem2rpm_license_file = arr[3]
#
#   fedora_gem = csv.find { |row| row["gem_name"] == gem2rpm_name }
#   fedora_name = fedora_gem["gem_name"]
#   fedora_license = fedora_gem["fedora_license"]
#   fedora_gem_license = fedora_gem["gem_license"]
#
#   raise "The names of gems differ. Leading me to this is gem2rpm: #{gem2rpm_name} fedora: #{fedora_name}" if gem2rpm_name != fedora_name
#
#   str = ''
#   if fedora_license == fedora_gem_license && fedora_license == gem2rpm_license
#     str = "fedora matches gem2rpm"
#     # validate_mit_text(gem_path, license_file_name)
#     if fedora_license =~ /MIT/ && gem2rpm_license_file && !gem2rpm_license_file.empty?
#       str += ";" + licensee_mit(Dir["rubygem-#{fedora_name}/#{fedora_name}*.gem"].sort.first, gem2rpm_license_file)
#     elsif fedora_license =~ /MIT/
#       str += ";" + "inspection required, MIT without licensefile detected"
#     elsif fedora_license == "BSD-2-Clause" || fedora_license == "BSD-3-Clause" || fedora_license == "Apache-2.0"
#       str += ";" + "Valid SPDX ID, no intervention required."
#     else
#       begin
#         # ThreadWorker.execute("license-validate #{fedora_license}")
#         str += ';' + licensee_general(Dir["rubygem-#{fedora_name}/#{fedora_name}*.gem"].sort.first, gem2rpm_license_file)
#       rescue RuntimeError => e
#         puts e.message
#       end
#     end
#     str
#   else
#     str = "Fedora does not match gem2rpm" + ";" + "Inspection needed"
#   end
#   str + ";" + fedora_name + ";" + fedora_license.to_s + ";" + gem2rpm_license.to_s
# end
res2 = Marshal.load Marshal.dump(res)

ret = ThreadWorker.new(res)do |slice|
  slice.map do |arr|
    gem2rpm_name = arr[0]
    gem2rpm_ver = arr[1]
    gem2rpm_license = arr[2]&.strip
    gem2rpm_license_file = arr[3]

    fedora_gem = csv.find { |row| row["gem_name"] == gem2rpm_name }
    fedora_name = fedora_gem["gem_name"]
    fedora_license = fedora_gem["fedora_license"]&.strip
    fedora_gem_license = fedora_gem["gem_license"]

    raise "The names of gems differ. Leading me to this is gem2rpm: #{gem2rpm_name} fedora: #{fedora_name}" if gem2rpm_name != fedora_name

    str = ''
    if fedora_license == fedora_gem_license && fedora_license == gem2rpm_license
      # Matches
      str = true.to_s

      res = begin
              status = ThreadWorker.execute("license-validate \"#{fedora_license}\"").to_s
              "#{status}"
            rescue ThreadWorker::CommandError => e
              "#{e.status}"
            end

      str += ";" + res

      str
    else
      # Doesn't match
      str = false.to_s + ";" + begin
                                 status = ThreadWorker.execute("license-validate \"#{fedora_license}\"").to_s
                                 "#{status}"
      rescue ThreadWorker::CommandError => e
        if e.status == 1 then "#{e.status}" else "#{e.stderr}######{e.stdout}" end
      end
    end
    str + ";" + fedora_name + ";" + fedora_license.to_s + ";" + gem2rpm_license.to_s
  end
end.gather_pool(2)
final = ret.sort { |a, b| c = a.split(";"); d = b.split(";"); c[1] <=> d[1] }.unshift("gem2rpm_and_fedora_matches?;license_validate_exit_code;gem_name;fedora_license;gem2rpm_license")

puts final
# The state of Fedora Rubygems (excl a few that dont have gem as their source in Fedora lookaside cache)
File.write("rubygems_fedora_spdx_state.csv", final.join("\n"))
# Where Fedora license == gem2rpm
File.write("rubygems_fedora_gem2rpm_matches.csv", final.find_all { |a| a.split(";")[0] == "true" }.join("\n"))
# Where license-check returns 0
File.write("rubygems_fedora_valid_spdx.csv", final.find_all { |a| a.split(";")[1] == "0" }.join("\n"))
# Licenses where we know there is valid SPDX and the licenses match
File.write("rubygems_fedora_valid_no_action.csv", final.find_all { |a| b = a.split(";"); b[0] == "true" && b[1] == "0" }.join("\n"))

try_convert = ThreadWorker.new(res2) do |slice|
  slice.map do |arr|
    gem2rpm_name = arr[0]
    gem2rpm_ver = arr[1]
    gem2rpm_license = arr[2]&.strip&.gsub(" and ", " AND ")&.gsub(" or ", " OR ")
    gem2rpm_license_file = arr[3]

    fedora_gem = csv.find { |row| row["gem_name"] == gem2rpm_name }
    fedora_name = fedora_gem["gem_name"]
    fedora_license = fedora_gem["fedora_license"]&.strip&.gsub(" and ", " AND ")&.gsub(" or ", " OR ")
    fedora_gem_license = fedora_gem["gem_license"]

    raise "The names of gems differ. Leading me to this is gem2rpm: #{gem2rpm_name} fedora: #{fedora_name}" if gem2rpm_name != fedora_name

    str = ''
    if fedora_license == fedora_gem_license && fedora_license == gem2rpm_license
      # Matches
      str = true.to_s

      res = begin
              status = ThreadWorker.execute("license-validate \"#{fedora_license}\"").to_s
              "#{status}"
            rescue ThreadWorker::CommandError => e
              "#{e.status}"
            end

      str += ";" + res

      str
    else
      # Doesn't match
      str = false.to_s + ";" + begin
                                 status = ThreadWorker.execute("license-validate \"#{fedora_license}\"").to_s
                                 "#{status}"
      rescue ThreadWorker::CommandError => e
        if e.status == 1 then "#{e.status}" else "#{e.stderr}######{e.stdout}" end
      end
    end
    str + ";" + fedora_name + ";" + fedora_license.to_s + ";" + gem2rpm_license.to_s
  end
end.gather_pool(2)
   .sort { |a, b| c = a.split(";"); d = b.split(";"); c[1] <=> d[1] }
   .unshift("gem2rpm_and_fedora_matches?;license_validate_exit_code;gem_name;fedora_license;gem2rpm_license")

File.write("rubygems_try_convert_conjunctions.csv", try_convert.join("\n"))