2020-04-21 11:21:10 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
class Jwt
|
|
|
|
NOT_BEFORE_TIME = 5
|
|
|
|
DEFAULT_EXPIRE_TIME = 60 * 5
|
|
|
|
|
2020-10-22 08:08:41 -04:00
|
|
|
NoSigningKeyError = Class.new(StandardError)
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
def self.for_build(build)
|
|
|
|
self.new(build, ttl: build.metadata_timeout).encoded
|
|
|
|
end
|
|
|
|
|
2022-10-04 11:09:33 -04:00
|
|
|
def initialize(build, ttl:)
|
2020-04-21 11:21:10 -04:00
|
|
|
@build = build
|
|
|
|
@ttl = ttl
|
|
|
|
end
|
|
|
|
|
|
|
|
def payload
|
|
|
|
custom_claims.merge(reserved_claims)
|
|
|
|
end
|
|
|
|
|
|
|
|
def encoded
|
|
|
|
headers = { kid: kid, typ: 'JWT' }
|
|
|
|
|
|
|
|
JWT.encode(payload, key, 'RS256', headers)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-10-22 08:08:41 -04:00
|
|
|
attr_reader :build, :ttl
|
2020-04-21 11:21:10 -04:00
|
|
|
|
|
|
|
def reserved_claims
|
|
|
|
now = Time.now.to_i
|
|
|
|
|
|
|
|
{
|
|
|
|
jti: SecureRandom.uuid,
|
|
|
|
iss: Settings.gitlab.host,
|
|
|
|
iat: now,
|
|
|
|
nbf: now - NOT_BEFORE_TIME,
|
|
|
|
exp: now + (ttl || DEFAULT_EXPIRE_TIME),
|
|
|
|
sub: "job_#{build.id}"
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def custom_claims
|
2021-02-14 19:09:04 -05:00
|
|
|
fields = {
|
2020-04-21 11:21:10 -04:00
|
|
|
namespace_id: namespace.id.to_s,
|
|
|
|
namespace_path: namespace.full_path,
|
|
|
|
project_id: project.id.to_s,
|
|
|
|
project_path: project.full_path,
|
|
|
|
user_id: user&.id.to_s,
|
|
|
|
user_login: user&.username,
|
|
|
|
user_email: user&.email,
|
|
|
|
pipeline_id: build.pipeline.id.to_s,
|
2021-06-03 08:10:18 -04:00
|
|
|
pipeline_source: build.pipeline.source.to_s,
|
2020-04-21 11:21:10 -04:00
|
|
|
job_id: build.id.to_s,
|
|
|
|
ref: source_ref,
|
|
|
|
ref_type: ref_type,
|
|
|
|
ref_protected: build.protected.to_s
|
|
|
|
}
|
2021-02-14 19:09:04 -05:00
|
|
|
|
2021-02-17 19:09:31 -05:00
|
|
|
if environment.present?
|
2021-02-14 19:09:04 -05:00
|
|
|
fields.merge!(
|
|
|
|
environment: environment.name,
|
2022-07-07 02:10:01 -04:00
|
|
|
environment_protected: environment_protected?.to_s,
|
2022-07-29 17:08:53 -04:00
|
|
|
deployment_tier: build.environment_tier
|
2021-02-14 19:09:04 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
fields
|
2020-04-21 11:21:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def key
|
2020-10-22 08:08:41 -04:00
|
|
|
@key ||= begin
|
2022-06-16 11:09:00 -04:00
|
|
|
key_data = Gitlab::CurrentSettings.ci_jwt_signing_key
|
2020-10-22 08:08:41 -04:00
|
|
|
|
2021-03-17 17:11:29 -04:00
|
|
|
raise NoSigningKeyError unless key_data
|
2020-10-22 08:08:41 -04:00
|
|
|
|
2021-03-17 17:11:29 -04:00
|
|
|
OpenSSL::PKey::RSA.new(key_data)
|
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def public_key
|
|
|
|
key.public_key
|
|
|
|
end
|
|
|
|
|
|
|
|
def kid
|
|
|
|
public_key.to_jwk[:kid]
|
|
|
|
end
|
|
|
|
|
|
|
|
def project
|
|
|
|
build.project
|
|
|
|
end
|
|
|
|
|
|
|
|
def namespace
|
|
|
|
project.namespace
|
|
|
|
end
|
|
|
|
|
|
|
|
def user
|
|
|
|
build.user
|
|
|
|
end
|
|
|
|
|
|
|
|
def source_ref
|
|
|
|
build.pipeline.source_ref
|
|
|
|
end
|
|
|
|
|
|
|
|
def ref_type
|
|
|
|
::Ci::BuildRunnerPresenter.new(build).ref_type
|
|
|
|
end
|
2021-02-14 19:09:04 -05:00
|
|
|
|
|
|
|
def environment
|
|
|
|
build.persisted_environment
|
|
|
|
end
|
|
|
|
|
|
|
|
def environment_protected?
|
|
|
|
false # Overridden in EE
|
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-02-14 19:09:04 -05:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Gitlab::Ci::Jwt.prepend_mod_with('Gitlab::Ci::Jwt')
|