2018-11-09 13:39:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-14 05:51:34 -04:00
|
|
|
module Gitlab
|
|
|
|
module Gpg
|
|
|
|
class Commit
|
2018-02-28 11:56:00 -05:00
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2017-08-24 08:21:26 -04:00
|
|
|
def initialize(commit)
|
|
|
|
@commit = commit
|
2017-06-14 05:51:34 -04:00
|
|
|
|
2018-01-18 09:10:17 -05:00
|
|
|
repo = commit.project.repository.raw_repository
|
2018-02-28 11:56:00 -05:00
|
|
|
@signature_data = Gitlab::Git::Commit.extract_signature_lazily(repo, commit.sha || commit.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def signature_text
|
|
|
|
strong_memoize(:signature_text) do
|
|
|
|
@signature_data&.itself && @signature_data[0]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def signed_text
|
|
|
|
strong_memoize(:signed_text) do
|
|
|
|
@signature_data&.itself && @signature_data[1]
|
|
|
|
end
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def has_signature?
|
2018-02-28 11:56:00 -05:00
|
|
|
!!(signature_text && signed_text)
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-06-14 05:51:34 -04:00
|
|
|
def signature
|
2017-06-15 03:16:50 -04:00
|
|
|
return unless has_signature?
|
|
|
|
|
2017-08-15 07:22:55 -04:00
|
|
|
return @signature if @signature
|
2017-06-15 04:28:28 -04:00
|
|
|
|
2017-08-24 08:21:26 -04:00
|
|
|
cached_signature = GpgSignature.find_by(commit_sha: @commit.sha)
|
2017-08-15 07:22:55 -04:00
|
|
|
return @signature = cached_signature if cached_signature.present?
|
|
|
|
|
|
|
|
@signature = create_cached_signature!
|
2017-06-15 07:37:03 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-06-15 07:37:03 -04:00
|
|
|
|
2017-06-15 08:18:00 -04:00
|
|
|
def update_signature!(cached_signature)
|
|
|
|
using_keychain do |gpg_key|
|
2018-07-02 06:43:06 -04:00
|
|
|
cached_signature.update!(attributes(gpg_key))
|
2018-12-01 02:20:00 -05:00
|
|
|
@signature = cached_signature
|
2017-06-15 08:18:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-15 07:37:03 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def using_keychain
|
2017-06-14 05:51:34 -04:00
|
|
|
Gitlab::Gpg.using_tmp_keychain do
|
|
|
|
# first we need to get the keyid from the signature to query the gpg
|
|
|
|
# key belonging to the keyid.
|
|
|
|
# This way we can add the key to the temporary keychain and extract
|
|
|
|
# the proper signature.
|
2017-10-04 11:34:50 -04:00
|
|
|
# NOTE: the invoked method is #fingerprint but it's only returning
|
|
|
|
# 16 characters (the format used by keyid) instead of 40.
|
2018-12-01 02:20:00 -05:00
|
|
|
fingerprint = verified_signature&.fingerprint
|
|
|
|
|
|
|
|
break unless fingerprint
|
|
|
|
|
|
|
|
gpg_key = find_gpg_key(fingerprint)
|
2017-06-14 05:51:34 -04:00
|
|
|
|
|
|
|
if gpg_key
|
|
|
|
Gitlab::Gpg::CurrentKeyChain.add(gpg_key.key)
|
2018-12-01 02:20:00 -05:00
|
|
|
clear_memoization(:verified_signature)
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
|
|
|
|
2017-06-15 07:37:03 -04:00
|
|
|
yield gpg_key
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def verified_signature
|
2018-12-01 02:20:00 -05:00
|
|
|
strong_memoize(:verified_signature) { gpgme_signature }
|
|
|
|
end
|
|
|
|
|
|
|
|
def gpgme_signature
|
|
|
|
GPGME::Crypto.new.verify(signature_text, signed_text: signed_text) do |verified_signature|
|
|
|
|
# Return the first signature for now: https://gitlab.com/gitlab-org/gitlab-ce/issues/54932
|
2017-07-06 02:03:16 -04:00
|
|
|
break verified_signature
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
2018-12-01 02:20:00 -05:00
|
|
|
rescue GPGME::Error
|
|
|
|
nil
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
|
|
|
|
2017-08-15 07:22:55 -04:00
|
|
|
def create_cached_signature!
|
|
|
|
using_keychain do |gpg_key|
|
2019-02-05 12:22:25 -05:00
|
|
|
attributes = attributes(gpg_key)
|
|
|
|
break GpgSignature.new(attributes) if Gitlab::Database.read_only?
|
|
|
|
|
|
|
|
GpgSignature.safe_create!(attributes)
|
2017-08-15 07:22:55 -04:00
|
|
|
end
|
2017-07-13 09:22:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def attributes(gpg_key)
|
|
|
|
user_infos = user_infos(gpg_key)
|
2017-08-24 08:21:30 -04:00
|
|
|
verification_status = verification_status(gpg_key)
|
2017-07-13 09:22:15 -04:00
|
|
|
|
|
|
|
{
|
2017-08-24 08:21:26 -04:00
|
|
|
commit_sha: @commit.sha,
|
|
|
|
project: @commit.project,
|
2017-06-14 05:51:34 -04:00
|
|
|
gpg_key: gpg_key,
|
2018-12-01 02:20:00 -05:00
|
|
|
gpg_key_primary_keyid: gpg_key&.keyid || verified_signature&.fingerprint,
|
2017-07-13 09:22:15 -04:00
|
|
|
gpg_key_user_name: user_infos[:name],
|
|
|
|
gpg_key_user_email: user_infos[:email],
|
2017-08-24 08:21:30 -04:00
|
|
|
verification_status: verification_status
|
2017-07-13 09:22:15 -04:00
|
|
|
}
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
2017-06-15 08:18:00 -04:00
|
|
|
|
2017-08-24 08:21:30 -04:00
|
|
|
def verification_status(gpg_key)
|
2017-08-24 08:22:19 -04:00
|
|
|
return :unknown_key unless gpg_key
|
|
|
|
return :unverified_key unless gpg_key.verified?
|
2018-12-01 02:20:00 -05:00
|
|
|
return :unverified unless verified_signature&.valid?
|
2017-08-24 08:21:46 -04:00
|
|
|
|
|
|
|
if gpg_key.verified_and_belongs_to_email?(@commit.committer_email)
|
2017-08-24 08:22:19 -04:00
|
|
|
:verified
|
2017-08-24 08:21:46 -04:00
|
|
|
elsif gpg_key.user.all_emails.include?(@commit.committer_email)
|
2017-08-24 08:22:19 -04:00
|
|
|
:same_user_different_email
|
2017-08-24 08:21:30 -04:00
|
|
|
else
|
2017-08-24 08:22:19 -04:00
|
|
|
:other_user
|
2017-08-24 08:21:30 -04:00
|
|
|
end
|
2017-06-15 08:18:00 -04:00
|
|
|
end
|
2017-07-13 09:22:15 -04:00
|
|
|
|
|
|
|
def user_infos(gpg_key)
|
|
|
|
gpg_key&.verified_user_infos&.first || gpg_key&.user_infos&.first || {}
|
|
|
|
end
|
2017-09-27 20:45:19 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-09-27 20:45:19 -04:00
|
|
|
def find_gpg_key(keyid)
|
|
|
|
GpgKey.find_by(primary_keyid: keyid) || GpgKeySubkey.find_by(keyid: keyid)
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-06-14 05:51:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|